From bb3d93d4c9752f56e02bf09fdec3be5f56edb80a Mon Sep 17 00:00:00 2001 From: Steve Baskauf Date: Thu, 5 Aug 2021 21:30:03 -0500 Subject: [PATCH 1/3] replace convert links fn with fns in QRG build script --- build/build-termlist.py | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) diff --git a/build/build-termlist.py b/build/build-termlist.py index 8b62828..c6ba009 100644 --- a/build/build-termlist.py +++ b/build/build-termlist.py @@ -68,6 +68,25 @@ def createLinks(text): result = re.sub(pattern, repl, text) return result +# 2021-08-05 Replace the createLinks() function with functions copied from the QRG build script written by S. Van Hoey +def convert_code(text_with_backticks): + """Takes all back-quoted sections in a text field and converts it to + the html tagged version of code blocks ... + """ + return re.sub(r'`([^`]*)`', r'\1', text_with_backticks) + +def convert_link(text_with_urls): + """Takes all links in a text field and converts it to the html tagged + version of the link + """ + def _handle_matched(inputstring): + """quick hack version of url handling on the current prime versions data""" + url = inputstring.group() + return "{}".format(url, url) + + regx = "(http[s]?://[\w\d:#@%/;$()~_?\+-;=\\\.&]*)(?\n' text += '\t\t\tNotes\n' - text += '\t\t\t' + createLinks(row['dcterms_description']) + '\n' - #text += '\t\t\t' + createLinks(row['notes']) + '\n' + text += '\t\t\t' + convert_link(convert_code(row['dcterms_description'])) + '\n' + #text += '\t\t\t' + convert_link(convert_code(row['notes'])) + '\n' text += '\t\t\n' if row['examples'] != '': #if row['usage'] != '': text += '\t\t\n' text += '\t\t\tExamples\n' - text += '\t\t\t' + createLinks(row['examples']) + '\n' - #text += '\t\t\t' + createLinks(row['usage']) + '\n' + text += '\t\t\t' + convert_link(convert_code(row['examples'])) + '\n' + #text += '\t\t\t' + convert_link(convert_code(row['usage'])) + '\n' text += '\t\t\n' if row['tdwgutility_abcdEquivalence'] != '': text += '\t\t\n' text += '\t\t\tABCD equivalence\n' - text += '\t\t\t' + createLinks(row['tdwgutility_abcdEquivalence']) + '\n' + text += '\t\t\t' + convert_link(convert_code(row['tdwgutility_abcdEquivalence'])) + '\n' text += '\t\t\n' if vocab_type == 2 or vocab_type ==3: # controlled vocabulary From 75ed3a2a9d6c85541116cdcd5d571a1877483e8a Mon Sep 17 00:00:00 2001 From: Steve Baskauf Date: Thu, 5 Aug 2021 21:32:21 -0500 Subject: [PATCH 2/3] regenerate list of terms with fixed backticks --- docs/list/index.md | 446 ++++++++++++++++++++++----------------------- 1 file changed, 223 insertions(+), 223 deletions(-) diff --git a/docs/list/index.md b/docs/list/index.md index 9ab6231..23bea01 100644 --- a/docs/list/index.md +++ b/docs/list/index.md @@ -799,7 +799,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Tamias minimus` (valid name for Eutamias minimus). + Tamias minimus (valid name for Eutamias minimus). ABCD equivalence @@ -845,7 +845,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `tsn:41107` (ITIS), `urn:lsid:ipni.org:names:320035-2` (IPNI), `2704179` (GBIF), `6W3C4` (COL) + tsn:41107 (ITIS), urn:lsid:ipni.org:names:320035-2 (IPNI), 2704179 (GBIF), 6W3C4 (COL) ABCD equivalence @@ -1243,7 +1243,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `not-for-profit use only`, `https://www.fieldmuseum.org/field-museum-natural-history-conditions-and-suggested-norms-use-collections-data-and-images` + not-for-profit use only, https://www.fieldmuseum.org/field-museum-natural-history-conditions-and-suggested-norms-use-collections-data-and-images ABCD equivalence @@ -1361,7 +1361,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `https://arctos.database.museum/media/10520962 | https://arctos.database.museum/media/10520964` + https://arctos.database.museum/media/10520962 | https://arctos.database.museum/media/10520964 ABCD equivalence @@ -1411,7 +1411,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `"parasite collected from":"https://arctos.database.museum/guid/MSB:Mamm:215895?seid=950760"`, `"encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3175067" | "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177393" | "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177394" | "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177392" | "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3609139"` + "parasite collected from":"https://arctos.database.museum/guid/MSB:Mamm:215895?seid=950760", "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3175067" | "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177393" | "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177394" | "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177392" | "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3609139" ABCD equivalence @@ -1465,7 +1465,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `"sibling of":"http://arctos.database.museum/guid/DMNS:Mamm:14171"`, `"parent of":"http://arctos.database.museum/guid/MSB:Mamm:196208" | "parent of":"http://arctos.database.museum/guid/MSB:Mamm:196523" | "sibling of":"http://arctos.database.museum/guid/MSB:Mamm:142638"` + "sibling of":"http://arctos.database.museum/guid/DMNS:Mamm:14171", "parent of":"http://arctos.database.museum/guid/MSB:Mamm:196208" | "parent of":"http://arctos.database.museum/guid/MSB:Mamm:196523" | "sibling of":"http://arctos.database.museum/guid/MSB:Mamm:142638" ABCD equivalence @@ -1515,7 +1515,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `http://www.sciencemag.org/cgi/content/abstract/322/5899/261`, `Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767.`, `Steven R. Hoofer and Ronald A. Van Den Bussche. 2001. Phylogenetic Relationships of Plecotine Bats and Allies Based on Mitochondrial Ribosomal Sequences. Journal of Mammalogy 82(1):131-137. | Walker, Faith M., Jeffrey T. Foster, Kevin P. Drees, Carol L. Chambers. 2014. Spotted bat (Euderma maculatum) microsatellite discovery using illumina sequencing. Conservation Genetics Resources.` + http://www.sciencemag.org/cgi/content/abstract/322/5899/261, Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767., Steven R. Hoofer and Ronald A. Van Den Bussche. 2001. Phylogenetic Relationships of Plecotine Bats and Allies Based on Mitochondrial Ribosomal Sequences. Journal of Mammalogy 82(1):131-137. | Walker, Faith M., Jeffrey T. Foster, Kevin P. Drees, Carol L. Chambers. 2014. Spotted bat (Euderma maculatum) microsatellite discovery using illumina sequencing. Conservation Genetics Resources. ABCD equivalence @@ -1561,7 +1561,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `http://www.ncbi.nlm.nih.gov/nuccore/U34853.1`, `http://www.ncbi.nlm.nih.gov/nuccore/GU328060 | http://www.ncbi.nlm.nih.gov/nuccore/AF326093` + http://www.ncbi.nlm.nih.gov/nuccore/U34853.1, http://www.ncbi.nlm.nih.gov/nuccore/GU328060 | http://www.ncbi.nlm.nih.gov/nuccore/AF326093 ABCD equivalence @@ -1607,7 +1607,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `"host":"Quercus alba"`, `"host":"gbif.org/species/2879737"`,`"parasitoid of":"Cyclocephala signaticollis" | "predator of":"Apis mellifera"` + "host":"Quercus alba", "host":"gbif.org/species/2879737","parasitoid of":"Cyclocephala signaticollis" | "predator of":"Apis mellifera" ABCD equivalence @@ -1745,7 +1745,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `PreservedSpecimen`, `FossilSpecimen`, `LivingSpecimen`, `MaterialSample`, `Event`, `HumanObservation`, `MachineObservation`, `Taxon`, `Occurrence`, `MaterialCitation` + PreservedSpecimen, FossilSpecimen, LivingSpecimen, MaterialSample, Event, HumanObservation, MachineObservation, Taxon, Occurrence, MaterialCitation ABCD equivalence @@ -1795,7 +1795,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Harlem coal` + Harlem coal ABCD equivalence @@ -1879,7 +1879,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `roosting`, `foraging`, `running` + roosting, foraging, running ABCD equivalence @@ -1925,7 +1925,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - Occurrence example: `Museum of Vertebrate Zoology, UC Berkeley. MVZ Mammal Collection (Arctos). Record ID: http://arctos.database.museum/guid/MVZ:Mamm:165861?seid=101356. Source: http://ipt.vertnet.org:8080/ipt/resource.do?r=mvz_mammal.` Taxon example: `https://www.gbif.org/species/2439608 Source: GBIF Taxonomic Backbone`, Event example: `Rand, K.M., Logerwell, E.A. The first demersal trawl survey of benthic fish and invertebrates in the Beaufort Sea since the late 1970s. Polar Biol 34, 475–488 (2011). https://doi.org/10.1007/s00300-010-0900-2` + Occurrence example: Museum of Vertebrate Zoology, UC Berkeley. MVZ Mammal Collection (Arctos). Record ID: http://arctos.database.museum/guid/MVZ:Mamm:165861?seid=101356. Source: http://ipt.vertnet.org:8080/ipt/resource.do?r=mvz_mammal. Taxon example: https://www.gbif.org/species/2439608 Source: GBIF Taxonomic Backbone, Event example: Rand, K.M., Logerwell, E.A. The first demersal trawl survey of benthic fish and invertebrates in the Beaufort Sea since the late 1970s. Polar Biol 34, 475–488 (2011). https://doi.org/10.1007/s00300-010-0900-2 ABCD equivalence @@ -2009,7 +2009,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `145732`, `145732a`, `2008.1334`, `R-4313` + 145732, 145732a, 2008.1334, R-4313 ABCD equivalence @@ -2089,7 +2089,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Mammalia`, `Hepaticopsida` + Mammalia, Hepaticopsida ABCD equivalence @@ -2131,7 +2131,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Mammals`, `Hildebrandt`, `EBIRD`, `VP` + Mammals, Hildebrandt, EBIRD, VP ABCD equivalence @@ -2177,7 +2177,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `http://biocol.org/urn:lsid:biocol.org:col:1001`, `http://grbio.org/cool/p5fp-c036` + http://biocol.org/urn:lsid:biocol.org:col:1001, http://grbio.org/cool/p5fp-c036 ABCD equivalence @@ -2223,7 +2223,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Africa`, `Antarctica`, `Asia`, `Europe`, `North America`, `Oceania`, `South America` + Africa, Antarctica, Asia, Europe, North America, Oceania, South America ABCD equivalence @@ -2265,7 +2265,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `0.00001` (normal GPS limit for decimal degrees). `0.000278` (nearest second). `0.01667` (nearest minute). `1.0` (nearest degree). + 0.00001 (normal GPS limit for decimal degrees). 0.000278 (nearest second). 0.01667 (nearest minute). 1.0 (nearest degree). ABCD equivalence @@ -2307,7 +2307,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `30` (reasonable lower limit on or after 2020-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time). `100` (reasonable lower limit before 2020-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time). `71` (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system). + 30 (reasonable lower limit on or after 2020-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time). 100 (reasonable lower limit before 2020-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time). 71 (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system). ABCD equivalence @@ -2353,7 +2353,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Denmark`, `Colombia`, `España` + Denmark, Colombia, España ABCD equivalence @@ -2399,7 +2399,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `AR`, `SV` + AR, SV ABCD equivalence @@ -2445,7 +2445,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Missoula`, `Los Lagos`, `Mataró` + Missoula, Los Lagos, Mataró ABCD equivalence @@ -2491,7 +2491,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `King Edward` (for scientificName "Solanum tuberosum 'King Edward'" and taxonRank "cultivar"); `Mishmiense` (for scientificName "Rhododendron boothii Mishmiense Group" and taxonRank "cultivar group"); `Atlantis` (for scientificName "Paphiopedilum Atlantis grex" and taxonRank "grex"). + King Edward (for scientificName "Solanum tuberosum 'King Edward'" and taxonRank "cultivar"); Mishmiense (for scientificName "Rhododendron boothii Mishmiense Group" and taxonRank "cultivar group"); Atlantis (for scientificName "Paphiopedilum Atlantis grex" and taxonRank "grex"). ABCD equivalence @@ -2537,7 +2537,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Coordinates generalized from original GPS coordinates to the nearest half degree grid cell`. + Coordinates generalized from original GPS coordinates to the nearest half degree grid cell. ABCD equivalence @@ -2659,7 +2659,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `b15d4952-7d20-46f1-8a3e-556a512b04c5` + b15d4952-7d20-46f1-8a3e-556a512b04c5 ABCD equivalence @@ -2701,7 +2701,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Grinnell Resurvey Mammals`, `Lacey Ctenomys Recaptures` + Grinnell Resurvey Mammals, Lacey Ctenomys Recaptures ABCD equivalence @@ -2747,7 +2747,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007). + 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007). ABCD equivalence @@ -2793,7 +2793,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `9`, `28` + 9, 28 ABCD equivalence @@ -2835,7 +2835,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `-41.0983423` + -41.0983423 ABCD equivalence @@ -2877,7 +2877,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `-121.1761111` + -121.1761111 ABCD equivalence @@ -2923,7 +2923,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `http://rs.tdwg.org/dwcdoe/values/d003`, `http://rs.tdwg.org/dwcdoe/values/d005` + http://rs.tdwg.org/dwcdoe/values/d003, http://rs.tdwg.org/dwcdoe/values/d005 ABCD equivalence @@ -2973,7 +2973,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `native`, `captive`, `cultivated`, `released`, `failing`, `casual`, `reproducing`, `established`, `colonising`, `invasive`, `widespreadInvasive` + native, captive, cultivated, released, failing, casual, reproducing, established, colonising, invasive, widespreadInvasive Type @@ -3061,7 +3061,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `in collection`, `missing`, `voucher elsewhere`, `duplicates elsewhere` + in collection, missing, voucher elsewhere, duplicates elsewhere ABCD equivalence @@ -3145,7 +3145,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `{"heightInMeters":1.5}`, `{"tragusLengthInMeters":0.014, "weightInGrams":120}`, `{"natureOfID":"expert identification", "identificationEvidence":"cytochrome B sequence"}`, `{"relativeHumidity":28, "airTemperatureInCelsius":22, "sampleSizeInKilograms":10}`, `{"aspectHeading":277, "slopeInDegrees":6}`, `{"iucnStatus":"vulnerable", "taxonDistribution":"Neuquén, Argentina"}` + {"heightInMeters":1.5}, {"tragusLengthInMeters":0.014, "weightInGrams":120}, {"natureOfID":"expert identification", "identificationEvidence":"cytochrome B sequence"}, {"relativeHumidity":28, "airTemperatureInCelsius":22, "sampleSizeInKilograms":10}, {"aspectHeading":277, "slopeInDegrees":6}, {"iucnStatus":"vulnerable", "taxonDistribution":"Neuquén, Argentina"} ABCD equivalence @@ -3191,7 +3191,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Atlantic`, `Boreal`, `Skullrockian` + Atlantic, Boreal, Skullrockian ABCD equivalence @@ -3279,7 +3279,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Phanerozoic`, `Proterozoic` + Phanerozoic, Proterozoic ABCD equivalence @@ -3321,7 +3321,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Holocene`, `Pleistocene`, `Ibexian Series` + Holocene, Pleistocene, Ibexian Series ABCD equivalence @@ -3363,7 +3363,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Cenozoic`, `Mesozoic` + Cenozoic, Mesozoic ABCD equivalence @@ -3447,7 +3447,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Neogene`, `Tertiary`, `Quaternary` + Neogene, Tertiary, Quaternary ABCD equivalence @@ -3489,7 +3489,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `1` (1 January). `32` (1 February). `366` (31 December). `365` (30 December in a leap year, 31 December in a non-leap year). + 1 (1 January). 32 (1 February). 366 (31 December). 365 (30 December in a leap year, 31 December in a non-leap year). ABCD equivalence @@ -3581,7 +3581,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `http://rs.tdwg.org/dwcem/values/e001`, `http://rs.tdwg.org/dwcem/values/e005` + http://rs.tdwg.org/dwcem/values/e001, http://rs.tdwg.org/dwcem/values/e005 ABCD equivalence @@ -3631,7 +3631,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `native`, `nativeReintroduced`, `introduced`, `introducedAssistedColonisation`, `vagrant`, `uncertain` + native, nativeReintroduced, introduced, introducedAssistedColonisation, vagrant, uncertain ABCD equivalence @@ -4171,7 +4171,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007). + 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007). ABCD equivalence @@ -4213,7 +4213,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `INBO:VIS:Ev:00009375` + INBO:VIS:Ev:00009375 ABCD equivalence @@ -4661,7 +4661,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `After the recent rains the river is nearly at flood stage.` + After the recent rains the river is nearly at flood stage. ABCD equivalence @@ -4707,7 +4707,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `14:07-0600` (2:07pm in the time zone six hours earlier than UTC). `08:40:21Z` (8:40:21am UTC). `13:00:00Z/15:30:00Z` (the interval between 1pm UTC and 3:30pm UTC). + 14:07-0600 (2:07pm in the time zone six hours earlier than UTC). 08:40:21Z (8:40:21am UTC). 13:00:00Z/15:30:00Z (the interval between 1pm UTC and 3:30pm UTC). ABCD equivalence @@ -4749,7 +4749,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Felidae`, `Monocleaceae` + Felidae, Monocleaceae ABCD equivalence @@ -4833,7 +4833,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Notes available in the Grinnell-Miller Library.` + Notes available in the Grinnell-Miller Library. ABCD equivalence @@ -4917,7 +4917,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `RV Sol 87-03-08` + RV Sol 87-03-08 ABCD equivalence @@ -4963,7 +4963,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `0`, `1`, `1.5708` + 0, 1, 1.5708 ABCD equivalence @@ -5051,11 +5051,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`. It is also permitted to provide the SRS in Well-Known-Text, especially if no EPSG code provides the necessary values for the attributes of the SRS. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, nor of any verbatim coordinates - use the geodeticDatum and verbatimSRS instead. + Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown. It is also permitted to provide the SRS in Well-Known-Text, especially if no EPSG code provides the necessary values for the attributes of the SRS. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, nor of any verbatim coordinates - use the geodeticDatum and verbatimSRS instead. Examples - `epsg:4326`, `GEOGCS["GCS_WGS_1984", DATUM["D_WGS_1984", SPHEROID["WGS_1984",6378137,298.257223563]], PRIMEM["Greenwich",0], UNIT["Degree",0.0174532925199433]]` (WKT for the standard WGS84 Spatial Reference System EPSG:4326) + epsg:4326, GEOGCS["GCS_WGS_1984", DATUM["D_WGS_1984", SPHEROID["WGS_1984",6378137,298.257223563]], PRIMEM["Greenwich",0], UNIT["Degree",0.0174532925199433]] (WKT for the standard WGS84 Spatial Reference System EPSG:4326) ABCD equivalence @@ -5143,7 +5143,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `POLYGON ((10 20, 11 20, 11 21, 10 21, 10 20))` (the one-degree bounding box with opposite corners at longitude=10, latitude=20 and longitude=11, latitude=21) + POLYGON ((10 20, 11 20, 11 21, 10 21, 10 20)) (the one-degree bounding box with opposite corners at longitude=10, latitude=20 and longitude=11, latitude=21) ABCD equivalence @@ -5185,7 +5185,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Notch Peak Formation`, `House Limestone`, `Fillmore Formation` + Notch Peak Formation, House Limestone, Fillmore Formation ABCD equivalence @@ -5365,7 +5365,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Felis` (for scientificName "Felis concolor", with accompanying values of "Puma concolor" in acceptedNameUsage and "Puma" in genus). + Felis (for scientificName "Felis concolor", with accompanying values of "Puma concolor" in acceptedNameUsage and "Puma" in genus). ABCD equivalence @@ -5411,7 +5411,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Puma`, `Monoclea` + Puma, Monoclea ABCD equivalence @@ -5453,11 +5453,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`. + Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown. Examples - `EPSG:4326`, `WGS84`, `NAD27`, `Campo Inchauspe`, `European 1950`, `Clarke 1866`, `unknown` + EPSG:4326, WGS84, NAD27, Campo Inchauspe, European 1950, Clarke 1866, unknown ABCD equivalence @@ -5499,11 +5499,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to use an IRI for the EPSG code of the SRS, if known. Otherwise use an IRI or controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use an IRI or controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`. + Recommended best practice is to use an IRI for the EPSG code of the SRS, if known. Otherwise use an IRI or controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use an IRI or controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown. Examples - `https://epsg.io/4326` + https://epsg.io/4326 ABCD equivalence @@ -5591,7 +5591,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `https://opencontext.org/subjects/e54377f7-4452-4315-b676-40679b10c4d9` + https://opencontext.org/subjects/e54377f7-4452-4315-b676-40679b10c4d9 ABCD equivalence @@ -5633,11 +5633,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to separate the values in a list with space vertical bar space (` | `). + Recommended best practice is to separate the values in a list with space vertical bar space ( | ). Examples - `Brad Millen (ROM)`, `Kristina Yamamoto | Janet Fang` + Brad Millen (ROM), Kristina Yamamoto | Janet Fang ABCD equivalence @@ -5729,7 +5729,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007). + 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007). ABCD equivalence @@ -5775,7 +5775,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Georeferencing Quick Reference Guide (Zermoglio et al. 2020, https://doi.org/10.35035/e09p-h128)` + Georeferencing Quick Reference Guide (Zermoglio et al. 2020, https://doi.org/10.35035/e09p-h128) ABCD equivalence @@ -5859,7 +5859,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Assumed distance by road (Hwy. 101)`. + Assumed distance by road (Hwy. 101). ABCD equivalence @@ -5943,11 +5943,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to separate the values in a list with space vertical bar space (` | `). + Recommended best practice is to separate the values in a list with space vertical bar space ( | ). Examples - `https://www.geonames.org/`, `USGS 1:24000 Florence Montana Quad 1967 | Terrametrics 2008 on Google Earth`, `GeoLocate` + https://www.geonames.org/, USGS 1:24000 Florence Montana Quad 1967 | Terrametrics 2008 on Google Earth, GeoLocate ABCD equivalence @@ -6043,7 +6043,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `unable to georeference`, `requires georeference`, `requires verification`, `verified by data custodian`, `verified by contributor` + unable to georeference, requires georeference, requires verification, verified by data custodian, verified by contributor ABCD equivalence @@ -6089,7 +6089,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Bathurst`, `Lower Wealden` + Bathurst, Lower Wealden ABCD equivalence @@ -6131,7 +6131,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `oak savanna`, `pre-cordilleran steppe` + oak savanna, pre-cordilleran steppe ABCD equivalence @@ -6215,11 +6215,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to separate the values in a list with space vertical bar space (` | `), with terms in order from the highest taxonomic rank to the lowest. + Recommended best practice is to separate the values in a list with space vertical bar space ( | ), with terms in order from the highest taxonomic rank to the lowest. Examples - `Plantae | Tracheophyta | Magnoliopsida | Ranunculales | Ranunculaceae | Ranunculus`, `Animalia`, `Animalia | Chordata | Vertebrata | Mammalia | Theria | Eutheria | Rodentia | Hystricognatha | Hystricognathi | Ctenomyidae | Ctenomyini | Ctenomys` + Plantae | Tracheophyta | Magnoliopsida | Ranunculales | Ranunculaceae | Ranunculus, Animalia, Animalia | Chordata | Vertebrata | Mammalia | Theria | Eutheria | Rodentia | Hystricognatha | Hystricognathi | Ctenomyidae | Ctenomyini | Ctenomys ABCD equivalence @@ -6265,11 +6265,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to separate the values in a list with space vertical bar space (` | `), with terms in order from least specific to most specific. + Recommended best practice is to separate the values in a list with space vertical bar space ( | ), with terms in order from least specific to most specific. Examples - `North Atlantic Ocean`. `South America | Argentina | Patagonia | Parque Nacional Nahuel Huapi | Neuquén | Los Lagos` (with accompanying values `South America` in continent, `Argentina` in country, `Neuquén` in stateProvince, and `Los Lagos` in county. + North Atlantic Ocean. South America | Argentina | Patagonia | Parque Nacional Nahuel Huapi | Neuquén | Los Lagos (with accompanying values South America in continent, Argentina in country, Neuquén in stateProvince, and Los Lagos in county. ABCD equivalence @@ -6319,7 +6319,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `http://vocab.getty.edu/tgn/1002002` (Antártida e Islas del Atlántico Sur, Territorio Nacional de la Tierra del Fuego, Argentina). + http://vocab.getty.edu/tgn/1002002 (Antártida e Islas del Atlántico Sur, Territorio Nacional de la Tierra del Fuego, Argentina). ABCD equivalence @@ -6571,7 +6571,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Blancan` + Blancan ABCD equivalence @@ -6747,7 +6747,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `9992` + 9992 ABCD equivalence @@ -6831,7 +6831,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `aff. agrifolia var. oxyadenia` (for `Quercus aff. agrifolia var. oxyadenia` with accompanying values `Quercus` in genus, `agrifolia` in specificEpithet, `oxyadenia` in infraspecificEpithet, and `var.` in taxonRank. `cf. var. oxyadenia` for `Quercus agrifolia cf. var. oxyadenia` with accompanying values `Quercus` in genus, `agrifolia` in specificEpithet, `oxyadenia` in infraspecificEpithet, and `var.` in taxonRank. + aff. agrifolia var. oxyadenia (for Quercus aff. agrifolia var. oxyadenia with accompanying values Quercus in genus, agrifolia in specificEpithet, oxyadenia in infraspecificEpithet, and var. in taxonRank. cf. var. oxyadenia for Quercus agrifolia cf. var. oxyadenia with accompanying values Quercus in genus, agrifolia in specificEpithet, oxyadenia in infraspecificEpithet, and var. in taxonRank. ABCD equivalence @@ -6877,11 +6877,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to separate the values in a list with space vertical bar space (` | `). + Recommended best practice is to separate the values in a list with space vertical bar space ( | ). Examples - `Aves del Noroeste Patagonico. Christie et al. 2004.`, `Stebbins, R. Field Guide to Western Reptiles and Amphibians. 3rd Edition. 2003. | Irschick, D.J. and Shaffer, H.B. (1997). The polytypic species revisited: Morphological differentiation among tiger salamanders (Ambystoma tigrinum) (Amphibia: Caudata). Herpetologica, 53(1), 30-49.` + Aves del Noroeste Patagonico. Christie et al. 2004., Stebbins, R. Field Guide to Western Reptiles and Amphibians. 3rd Edition. 2003. | Irschick, D.J. and Shaffer, H.B. (1997). The polytypic species revisited: Morphological differentiation among tiger salamanders (Ambystoma tigrinum) (Amphibia: Caudata). Herpetologica, 53(1), 30-49. ABCD equivalence @@ -6927,7 +6927,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Distinguished between Anthus correndera and Anthus hellmayri based on the comparative lengths of the uñas.` + Distinguished between Anthus correndera and Anthus hellmayri based on the comparative lengths of the uñas. ABCD equivalence @@ -6973,7 +6973,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `0` ("unverified" in HISPID/ABCD). + 0 ("unverified" in HISPID/ABCD). ABCD equivalence @@ -7061,11 +7061,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to separate the values in a list with space vertical bar space (` | `). + Recommended best practice is to separate the values in a list with space vertical bar space ( | ). Examples - `James L. Patton`, `Theodore Pappenfuss | Robert Macey` + James L. Patton, Theodore Pappenfuss | Robert Macey ABCD equivalence @@ -7161,7 +7161,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `https://orcid.org/0000-0002-1825-0097` (for an individual), `https://orcid.org/0000-0002-1825-0097 | https://orcid.org/0000-0002-1825-0098` (for a list of people). + https://orcid.org/0000-0002-1825-0097 (for an individual), https://orcid.org/0000-0002-1825-0097 | https://orcid.org/0000-0002-1825-0098 (for a list of people). ABCD equivalence @@ -7295,7 +7295,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `http://vocab.getty.edu/tgn/1019987` + http://vocab.getty.edu/tgn/1019987 ABCD equivalence @@ -7337,7 +7337,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `0`, `1`, `25` + 0, 1, 25 ABCD equivalence @@ -7475,7 +7475,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `location information not given for endangered species`, `collector identities withheld | ask about tissue samples` + location information not given for endangered species, collector identities withheld | ask about tissue samples ABCD equivalence @@ -7517,11 +7517,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - The term infragenericEpithet should be used in conjunction with genericName, specificEpithet, infraspecificEpithet, taxonRank and scientificNameAuthorship to represent the individual elements of the complete scientificName. It can be used to indicate the subgenus placement of a species, which in zoology is often given in parentheses. Can also be used to share infrageneric names such as botanical sections (e.g., `Vicia sect. Cracca`). + The term infragenericEpithet should be used in conjunction with genericName, specificEpithet, infraspecificEpithet, taxonRank and scientificNameAuthorship to represent the individual elements of the complete scientificName. It can be used to indicate the subgenus placement of a species, which in zoology is often given in parentheses. Can also be used to share infrageneric names such as botanical sections (e.g., Vicia sect. Cracca). Examples - `Abacetillus` (for scientificName "Abacetus (Abacetillus) ambiguus", `Cracca` (for scientificName "Vicia sect. Cracca") + Abacetillus (for scientificName "Abacetus (Abacetillus) ambiguus", Cracca (for scientificName "Vicia sect. Cracca") ABCD equivalence @@ -7567,11 +7567,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - In botany, where there can be more than one infraspecific rank, name strings may be provided, in literature and in identifications, that have more than two epithets. Only the last of these epithets is the infraspecificEpithet and only the first and the last epithets belong to the scientificName. For example: the infraspecificEpithet in the string "Indigofera charlieriana subsp. sessilis var. scaberrima" is `scaberrima` and the scientificName is `Indigophera charlieriana var. scaberrima`. + In botany, where there can be more than one infraspecific rank, name strings may be provided, in literature and in identifications, that have more than two epithets. Only the last of these epithets is the infraspecificEpithet and only the first and the last epithets belong to the scientificName. For example: the infraspecificEpithet in the string "Indigofera charlieriana subsp. sessilis var. scaberrima" is scaberrima and the scientificName is Indigophera charlieriana var. scaberrima. Examples - `concolor` (for scientificName "Puma concolor concolor"), `oxyadenia` (for scientificName "Quercus agrifolia var. oxyadenia"), `laxa` (for scientificName "Cheilanthes hirta f. laxa"), `scaberrima` (for scientificName "Indigofera charlieriana var. scaberrima"). + concolor (for scientificName "Puma concolor concolor"), oxyadenia (for scientificName "Quercus agrifolia var. oxyadenia"), laxa (for scientificName "Cheilanthes hirta f. laxa"), scaberrima (for scientificName "Indigofera charlieriana var. scaberrima"). ABCD equivalence @@ -7613,7 +7613,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `MVZ`, `FMNH`, `CLO`, `UCMP` + MVZ, FMNH, CLO, UCMP ABCD equivalence @@ -7659,7 +7659,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `http://biocol.org/urn:lsid:biocol.org:col:34777`, `http://grbio.org/cool/km06-gtbn` + http://biocol.org/urn:lsid:biocol.org:col:34777, http://grbio.org/cool/km06-gtbn ABCD equivalence @@ -7705,7 +7705,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Nosy Be`, `Bikini Atoll`, `Vancouver`, `Viti Levu`, `Zanzibar` + Nosy Be, Bikini Atoll, Vancouver, Viti Levu, Zanzibar ABCD equivalence @@ -7751,7 +7751,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Alexander Archipelago`, `Archipiélago Diego Ramírez`, `Seychelles` + Alexander Archipelago, Archipiélago Diego Ramírez, Seychelles ABCD equivalence @@ -7793,7 +7793,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Animalia`, `Archaea`, `Bacteria`, `Chromista`, `Fungi`, `Plantae`, `Protozoa`, `Viruses` + Animalia, Archaea, Bacteria, Chromista, Fungi, Plantae, Protozoa, Viruses ABCD equivalence @@ -7839,7 +7839,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `en` (for English), `es` (for Spanish) + en (for English), es (for Spanish) ABCD equivalence @@ -7931,7 +7931,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Atlantic`, `Boreal`, `Skullrockian` + Atlantic, Boreal, Skullrockian ABCD equivalence @@ -8019,7 +8019,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Phanerozoic`, `Proterozoic` + Phanerozoic, Proterozoic ABCD equivalence @@ -8061,7 +8061,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Holocene`, `Pleistocene`, `Ibexian Series` + Holocene, Pleistocene, Ibexian Series ABCD equivalence @@ -8103,7 +8103,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Cenozoic`, `Mesozoic` + Cenozoic, Mesozoic ABCD equivalence @@ -8187,7 +8187,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Neogene`, `Tertiary`, `Quaternary` + Neogene, Tertiary, Quaternary ABCD equivalence @@ -8229,7 +8229,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `http://creativecommons.org/publicdomain/zero/1.0/legalcode`, `http://creativecommons.org/licenses/by/4.0/legalcode` + http://creativecommons.org/publicdomain/zero/1.0/legalcode, http://creativecommons.org/licenses/by/4.0/legalcode ABCD equivalence @@ -8279,7 +8279,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `zygote`, `larva`, `juvenile`, `adult`, `seedling`, `flowering`, `fruiting` + zygote, larva, juvenile, adult, seedling, flowering, fruiting ABCD equivalence @@ -8367,7 +8367,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Pleistocene-Weichselien` + Pleistocene-Weichselien ABCD equivalence @@ -8459,7 +8459,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)`, `Queets Rainforest, Olympic National Park` + Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237), Queets Rainforest, Olympic National Park ABCD equivalence @@ -8543,7 +8543,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Getty Thesaurus of Geographic Names`, `GADM` + Getty Thesaurus of Geographic Names, GADM ABCD equivalence @@ -8669,7 +8669,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `https://opencontext.org/subjects/768A875F-E205-4D0B-DE55-BAB7598D0FD1` + https://opencontext.org/subjects/768A875F-E205-4D0B-DE55-BAB7598D0FD1 ABCD equivalence @@ -8711,7 +8711,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `under water since 2005` + under water since 2005 ABCD equivalence @@ -8753,7 +8753,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Maastrichtian` + Maastrichtian ABCD equivalence @@ -8945,7 +8945,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `06809dc5-f143-459a-be1a-6f03e63fc083` + 06809dc5-f143-459a-be1a-6f03e63fc083 ABCD equivalence @@ -8991,7 +8991,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `0`, `200` + 0, 200 ABCD equivalence @@ -9033,7 +9033,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `-1.5` (below the surface). `4.2` (above the surface). For a 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation: verbatimElevation: `300m` minimumElevationInMeters: `300`, maximumElevationInMeters: `300`, verbatimDepth: `20m`, minimumDepthInMeters: `20`, maximumDepthInMeters: `20`, minimumDistanceAboveSurfaceInMeters: `0`, maximumDistanceAboveSurfaceInMeters: `-1.5`. + -1.5 (below the surface). 4.2 (above the surface). For a 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation: verbatimElevation: 300m minimumElevationInMeters: 300, maximumElevationInMeters: 300, verbatimDepth: 20m, minimumDepthInMeters: 20, maximumDepthInMeters: 20, minimumDistanceAboveSurfaceInMeters: 0, maximumDistanceAboveSurfaceInMeters: -1.5. ABCD equivalence @@ -9075,7 +9075,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `-205`, `1236` + -205, 1236 ABCD equivalence @@ -9117,7 +9117,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `0.01`, `normal distribution with variation of 2 m` + 0.01, normal distribution with variation of 2 m ABCD equivalence @@ -9201,11 +9201,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to separate the values in a list with space vertical bar space (` | `). + Recommended best practice is to separate the values in a list with space vertical bar space ( | ). Examples - `Rob Guralnick`, `Peter Desmet | Stijn Van Hoey` + Rob Guralnick, Peter Desmet | Stijn Van Hoey ABCD equivalence @@ -9255,7 +9255,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007). + 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007). ABCD equivalence @@ -9297,7 +9297,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `9c752d22-b09a-11e8-96f8-529269fb1459` + 9c752d22-b09a-11e8-96f8-529269fb1459 ABCD equivalence @@ -9339,7 +9339,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `minimum convex polygon around burrow entrances` (for a home range area). `barometric altimeter` (for an elevation). + minimum convex polygon around burrow entrances (for a home range area). barometric altimeter (for an elevation). ABCD equivalence @@ -9473,7 +9473,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `tip of tail missing` + tip of tail missing ABCD equivalence @@ -9519,7 +9519,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `tail length`, `temperature`, `trap line length`, `survey area`, `trap type` + tail length, temperature, trap line length, survey area, trap type ABCD equivalence @@ -9607,7 +9607,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `mm`, `C`, `km`, `ha` + mm, C, km, ha ABCD equivalence @@ -9691,7 +9691,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `45`, `20`, `1`, `14.5`, `UV-light` + 45, 20, 1, 14.5, UV-light ABCD equivalence @@ -9737,7 +9737,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `http://vocab.nerc.ac.uk/collection/L22/current/TOOL0960/` + http://vocab.nerc.ac.uk/collection/L22/current/TOOL0960/ ABCD equivalence @@ -9783,7 +9783,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Lava Dam Member`, `Hellnmaria Member` + Lava Dam Member, Hellnmaria Member ABCD equivalence @@ -9825,7 +9825,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `0`, `100` + 0, 100 ABCD equivalence @@ -9867,7 +9867,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `-1.5` (below the surface). `4.2` (above the surface). For a 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation: verbatimElevation: `300m` minimumElevationInMeters: `300`, maximumElevationInMeters: `300`, verbatimDepth: `20m`, minimumDepthInMeters: `20`, maximumDepthInMeters: `20`, minimumDistanceAboveSurfaceInMeters: `0`, maximumDistanceAboveSurfaceInMeters: `-1.5`. + -1.5 (below the surface). 4.2 (above the surface). For a 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation: verbatimElevation: 300m minimumElevationInMeters: 300, maximumElevationInMeters: 300, verbatimDepth: 20m, minimumDepthInMeters: 20, maximumDepthInMeters: 20, minimumDistanceAboveSurfaceInMeters: 0, maximumDistanceAboveSurfaceInMeters: -1.5. ABCD equivalence @@ -9909,7 +9909,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `-100`, `802` + -100, 802 ABCD equivalence @@ -9955,7 +9955,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007). + 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007). ABCD equivalence @@ -10001,7 +10001,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `1` (January). `10` (October). + 1 (January). 10 (October). ABCD equivalence @@ -10047,7 +10047,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Holzminden`, `Araçatuba`, `Ga-Segonyana` + Holzminden, Araçatuba, Ga-Segonyana ABCD equivalence @@ -10089,11 +10089,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - This term provides context to the `scientificName`. Together with the `scientificName`, separated by ‘sensu’ or ‘sec.’, it forms the taxon concept label, which may be seen as having the same relationship to `taxonConceptID` as, for example, `acceptedNameUsage` has to `acceptedNameUsageID`. When not provided, in Taxon Core data sets the `nameAccordingTo` can be taken to be the data set. In this case the data set mostly provides sufficient context to infer the delimitation of the taxon and its relationship with other taxa. In Occurrence Core data sets, when not provided, `nameAccordingTo` can be an underlying taxonomy of the data set, e.g. Plants of the World Online (http://powo.science.kew.org/) for vascular plant records in iNaturalist (in which case it should be provided), or, which is the case for most `PreservedSpecimen` data sets, the `Identification`, in which case there is no further context. + This term provides context to the scientificName. Together with the scientificName, separated by ‘sensu’ or ‘sec.’, it forms the taxon concept label, which may be seen as having the same relationship to taxonConceptID as, for example, acceptedNameUsage has to acceptedNameUsageID. When not provided, in Taxon Core data sets the nameAccordingTo can be taken to be the data set. In this case the data set mostly provides sufficient context to infer the delimitation of the taxon and its relationship with other taxa. In Occurrence Core data sets, when not provided, nameAccordingTo can be an underlying taxonomy of the data set, e.g. Plants of the World Online (http://powo.science.kew.org/) for vascular plant records in iNaturalist (in which case it should be provided), or, which is the case for most PreservedSpecimen data sets, the Identification, in which case there is no further context. Examples - `Franz NM, Cardona-Duque J (2013) Description of two new species and phylogenetic reassessment of Perelleschus Wibmer & O’Brien, 1986 (Coleoptera: Curculionidae), with a complete taxonomic concept history of Perelleschus sec. Franz & Cardona-Duque, 2013. Syst Biodivers. 11: 209–236.` (as the full citation of the Franz & Cardona-Duque (2013) in Perelleschus splendida sec. Franz & Cardona-Duque (2013)) + Franz NM, Cardona-Duque J (2013) Description of two new species and phylogenetic reassessment of Perelleschus Wibmer & O’Brien, 1986 (Coleoptera: Curculionidae), with a complete taxonomic concept history of Perelleschus sec. Franz & Cardona-Duque, 2013. Syst Biodivers. 11: 209–236. (as the full citation of the Franz & Cardona-Duque (2013) in Perelleschus splendida sec. Franz & Cardona-Duque (2013)) ABCD equivalence @@ -10139,7 +10139,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `https://doi.org/10.1016/S0269-915X(97)80026-2` + https://doi.org/10.1016/S0269-915X(97)80026-2 ABCD equivalence @@ -10227,7 +10227,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388`, `Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886` + Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388, Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886 ABCD equivalence @@ -10307,7 +10307,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `1915`, `2008` + 1915, 2008 ABCD equivalence @@ -10357,7 +10357,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `ICN`, `ICZN`, `BC`, `ICNCP`, `BioCode` + ICN, ICZN, BC, ICNCP, BioCode ABCD equivalence @@ -10399,7 +10399,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `nom. ambig.`, `nom. illeg.`, `nom. subnud.` + nom. ambig., nom. illeg., nom. subnud. ABCD equivalence @@ -10579,7 +10579,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `http://arctos.database.museum/guid/MSB:Mamm:233627`, `000866d2-c177-4648-a200-ead4007051b9`, `urn:catalog:UWBM:Bird:89776` + http://arctos.database.museum/guid/MSB:Mamm:233627, 000866d2-c177-4648-a200-ead4007051b9, urn:catalog:UWBM:Bird:89776 ABCD equivalence @@ -11019,7 +11019,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `found dead on road` + found dead on road ABCD equivalence @@ -11107,7 +11107,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `present`, `absent` + present, absent ABCD equivalence @@ -11149,7 +11149,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Carnivora`, `Monocleales` + Carnivora, Monocleales ABCD equivalence @@ -11241,7 +11241,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `http://arctos.database.museum/guid/WNMU:Mamm:1249` + http://arctos.database.museum/guid/WNMU:Mamm:1249 ABCD equivalence @@ -11287,7 +11287,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Huberta`, `Boab Prison Tree`, `J pod` + Huberta, Boab Prison Tree, J pod ABCD equivalence @@ -11337,7 +11337,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `27` (organismQuantity) with `individuals` (organismQuantityType). `12.5` (organismQuantity) with `% biomass` (organismQuantityType). `r` (organismQuantity) with `Braun Blanquet Scale` (organismQuantityType). `many` (organismQuantity) with `individuals` (organismQuantityType). + 27 (organismQuantity) with individuals (organismQuantityType). 12.5 (organismQuantity) with % biomass (organismQuantityType). r (organismQuantity) with Braun Blanquet Scale (organismQuantityType). many (organismQuantity) with individuals (organismQuantityType). ABCD equivalence @@ -11429,7 +11429,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `27` (organismQuantity) with `individuals` (organismQuantityType). `12.5` (organismQuantity) with `%biomass` (organismQuantityType). `r` (organismQuantity) with `BraunBlanquetScale` (organismQuantityType). + 27 (organismQuantity) with individuals (organismQuantityType). 12.5 (organismQuantity) with %biomass (organismQuantityType). r (organismQuantity) with BraunBlanquetScale (organismQuantityType). ABCD equivalence @@ -11475,7 +11475,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `One of a litter of six` + One of a litter of six ABCD equivalence @@ -11525,7 +11525,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `multicellular organism`, `virus`, `clone`, `pack`, `colony` + multicellular organism, virus, clone, pack, colony ABCD equivalence @@ -11575,7 +11575,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Pinus abies`, `Gasterosteus saltatrix Linnaeus 1768` + Pinus abies, Gasterosteus saltatrix Linnaeus 1768 ABCD equivalence @@ -11621,7 +11621,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `tsn:41107` (ITIS), `urn:lsid:ipni.org:names:320035-2` (IPNI), `2704179` (GBIF), `6W3C4` (COL) + tsn:41107 (ITIS), urn:lsid:ipni.org:names:320035-2 (IPNI), 2704179 (GBIF), 6W3C4 (COL) ABCD equivalence @@ -11663,11 +11663,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to separate the values in a list with space vertical bar space (` | `). + Recommended best practice is to separate the values in a list with space vertical bar space ( | ). Examples - `FMNH:Mammal:1234`, `NPS YELLO6778 | MBG 33424` + FMNH:Mammal:1234, NPS YELLO6778 | MBG 33424 ABCD equivalence @@ -11713,7 +11713,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `NPS`, `APN`, `InBio` + NPS, APN, InBio ABCD equivalence @@ -11759,7 +11759,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `A1` (parentEventID to identify the main Whittaker Plot in nested samples, each with its own eventID - `A1:1`, `A1:2`). + A1 (parentEventID to identify the main Whittaker Plot in nested samples, each with its own eventID - A1:1, A1:2). ABCD equivalence @@ -11805,7 +11805,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Rubiaceae`, `Gruiformes`, `Testudinae` + Rubiaceae, Gruiformes, Testudinae ABCD equivalence @@ -11851,7 +11851,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `tsn:41074` (ITIS), `urn:lsid:ipni.org:names:30001404-2` (IPNI), `2704173` (GBIF), `6T8N` (COL) + tsn:41074 (ITIS), urn:lsid:ipni.org:names:30001404-2 (IPNI), 2704173 (GBIF), 6T8N (COL) ABCD equivalence @@ -11897,7 +11897,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `releasedForUse`, `otherEscape`, `transportContaminant`, `transportStowaway`, `corridor`, `unaided` + releasedForUse, otherEscape, transportContaminant, transportStowaway, corridor, unaided Type @@ -11943,7 +11943,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `http://rs.tdwg.org/dwcpw/values/p002`, `http://rs.tdwg.org/dwcpw/values/p046` + http://rs.tdwg.org/dwcpw/values/p002, http://rs.tdwg.org/dwcpw/values/p046 ABCD equivalence @@ -11989,7 +11989,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Chordata` (phylum). `Bryophyta` (division). + Chordata (phylum). Bryophyta (division). ABCD equivalence @@ -12035,7 +12035,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `0`, `1`, `1.5708` + 0, 1, 1.5708 ABCD equivalence @@ -12119,11 +12119,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to separate the values in a list with space vertical bar space (` | `). + Recommended best practice is to separate the values in a list with space vertical bar space ( | ). Examples - `fossil`, `cast`, `photograph`, `DNA extract`, `skin | skull | skeleton`, `whole animal (ETOH) | tissue (EDTA)` + fossil, cast, photograph, DNA extract, skin | skull | skeleton, whole animal (ETOH) | tissue (EDTA) ABCD equivalence @@ -12265,11 +12265,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to separate the values in a list with space vertical bar space (` | `). + Recommended best practice is to separate the values in a list with space vertical bar space ( | ). Examples - `Chalepidae`, `Pinus abies`, `Anthus sp., field ID by G. Iglesias | Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology` + Chalepidae, Pinus abies, Anthus sp., field ID by G. Iglesias | Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology ABCD equivalence @@ -12319,11 +12319,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to separate the values in a list with space vertical bar space (` | `). + Recommended best practice is to separate the values in a list with space vertical bar space ( | ). Examples - `José E. Crespo`. `Oliver P. Pearson | Anita K. Pearson` (where the value in recordNumber `OPP 7101` corresponds to the collector number for the specimen in the field catalog of Oliver P. Pearson). + José E. Crespo. Oliver P. Pearson | Anita K. Pearson (where the value in recordNumber OPP 7101 corresponds to the collector number for the specimen in the field catalog of Oliver P. Pearson). ABCD equivalence @@ -12415,7 +12415,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `https://orcid.org/0000-0002-1825-0097` (for an individual); `https://orcid.org/0000-0002-1825-0097 | https://orcid.org/0000-0002-1825-0098` (for a list of people). + https://orcid.org/0000-0002-1825-0097 (for an individual); https://orcid.org/0000-0002-1825-0097 | https://orcid.org/0000-0002-1825-0098 (for a list of people). ABCD equivalence @@ -12503,7 +12503,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `OPP 7101` + OPP 7101 ABCD equivalence @@ -12549,7 +12549,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - MaterialSample example: `http://arctos.database.museum/guid/MVZ:Mamm:165861`, Taxon example: `https://www.catalogueoflife.org/data/taxon/32664` + MaterialSample example: http://arctos.database.museum/guid/MVZ:Mamm:165861, Taxon example: https://www.catalogueoflife.org/data/taxon/32664 ABCD equivalence @@ -12637,7 +12637,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `dc609808-b09b-11e8-96f8-529269fb1459` + dc609808-b09b-11e8-96f8-529269fb1459 ABCD equivalence @@ -12721,7 +12721,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Julie Woodruff` + Julie Woodruff ABCD equivalence @@ -12767,7 +12767,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007). + 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007). ABCD equivalence @@ -12813,7 +12813,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `sameAs`, `duplicate of`, `mother of`, `offspring of`, `sibling of`, `parasite of`, `host of`, `valid synonym of`, `located within`, `pollinator of members of taxon`, `pollinated specific plant`, `pollinated by members of taxon` + sameAs, duplicate of, mother of, offspring of, sibling of, parasite of, host of, valid synonym of, located within, pollinator of members of taxon, pollinated specific plant, pollinated by members of taxon ABCD equivalence @@ -12859,7 +12859,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `http://purl.obolibrary.org/obo/RO_0002456` (for the relation "pollinated by"), `http://purl.obolibrary.org/obo/RO_0002455` (for the relation "pollinates"), `https://www.inaturalist.org/observation_fields/879` (for the relation "eaten by") + http://purl.obolibrary.org/obo/RO_0002456 (for the relation "pollinated by"), http://purl.obolibrary.org/obo/RO_0002455 (for the relation "pollinates"), https://www.inaturalist.org/observation_fields/879 (for the relation "eaten by") ABCD equivalence @@ -12905,7 +12905,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `mother and offspring collected from the same nest`, `pollinator captured in the act` + mother and offspring collected from the same nest, pollinator captured in the act ABCD equivalence @@ -12951,7 +12951,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `non-reproductive`, `pregnant`, `in bloom`, `fruit-bearing` + non-reproductive, pregnant, in bloom, fruit-bearing ABCD equivalence @@ -13035,7 +13035,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `f809b9e0-b09b-11e8-96f8-529269fb1459` + f809b9e0-b09b-11e8-96f8-529269fb1459 ABCD equivalence @@ -13127,7 +13127,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `04b16710-b09c-11e8-96f8-529269fb1459` + 04b16710-b09c-11e8-96f8-529269fb1459 ABCD equivalence @@ -13223,7 +13223,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `The Regents of the University of California` + The Regents of the University of California ABCD equivalence @@ -13663,11 +13663,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - A sampleSizeUnit must have a corresponding sampleSizeValue, e.g., `5` for sampleSizeValue with `metre` for sampleSizeUnit. + A sampleSizeUnit must have a corresponding sampleSizeValue, e.g., 5 for sampleSizeValue with metre for sampleSizeUnit. Examples - `minute`, `hour`, `day`, `metre`, `square metre`, `cubic metre` + minute, hour, day, metre, square metre, cubic metre ABCD equivalence @@ -13759,7 +13759,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `5` for sampleSizeValue with `metre` for sampleSizeUnit. + 5 for sampleSizeValue with metre for sampleSizeUnit. ABCD equivalence @@ -13885,7 +13885,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `40 trap-nights`, `10 observer-hours`, `10 km by foot`, `30 km by car` + 40 trap-nights, 10 observer-hours, 10 km by foot, 30 km by car ABCD equivalence @@ -14229,7 +14229,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `https://doi.org/10.1111/j.1466-8238.2009.00467.x` + https://doi.org/10.1111/j.1466-8238.2009.00467.x ABCD equivalence @@ -14279,7 +14279,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `UV light trap`, `mist net`, `bottom trawl`, `ad hoc observation | point count`, `Penguins from space: faecal stains reveal the location of emperor penguin colonies, https://doi.org/10.1111/j.1466-8238.2009.00467.x`, `Takats et al. 2001. Guidelines for Nocturnal Owl Monitoring in North America. Beaverhill Bird Observatory and Bird Studies Canada, Edmonton, Alberta. 32 pp., http://www.bsc-eoc.org/download/Owl.pdf` + UV light trap, mist net, bottom trawl, ad hoc observation | point count, Penguins from space: faecal stains reveal the location of emperor penguin colonies, https://doi.org/10.1111/j.1466-8238.2009.00467.x, Takats et al. 2001. Guidelines for Nocturnal Owl Monitoring in North America. Beaverhill Bird Observatory and Bird Studies Canada, Edmonton, Alberta. 32 pp., http://www.bsc-eoc.org/download/Owl.pdf ABCD equivalence @@ -14329,7 +14329,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Coleoptera` (order). `Vespertilionidae` (family). `Manis` (genus). `Ctenomys sociabilis` (genus + specificEpithet). `Ambystoma tigrinum diaboli` (genus + specificEpithet + infraspecificEpithet). `Roptrocerus typographi (Györfi, 1952)` (genus + specificEpithet + scientificNameAuthorship), `Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell` (genus + specificEpithet + taxonRank + infraspecificEpithet + scientificNameAuthorship). + Coleoptera (order). Vespertilionidae (family). Manis (genus). Ctenomys sociabilis (genus + specificEpithet). Ambystoma tigrinum diaboli (genus + specificEpithet + infraspecificEpithet). Roptrocerus typographi (Györfi, 1952) (genus + specificEpithet + scientificNameAuthorship), Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell (genus + specificEpithet + taxonRank + infraspecificEpithet + scientificNameAuthorship). ABCD equivalence @@ -14375,7 +14375,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `(Torr.) J.T. Howell`, `(Martinovský) Tzvelev`, `(Györfi, 1952)` + (Torr.) J.T. Howell, (Martinovský) Tzvelev, (Györfi, 1952) ABCD equivalence @@ -14417,7 +14417,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `urn:lsid:ipni.org:names:37829-1:1.3` + urn:lsid:ipni.org:names:37829-1:1.3 ABCD equivalence @@ -14555,7 +14555,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `female`, `male`, `hermaphrodite` + female, male, hermaphrodite ABCD equivalence @@ -14601,7 +14601,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `concolor`, `gottschei` + concolor, gottschei ABCD equivalence @@ -14643,7 +14643,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `1` (1 January). `366` (31 December), `365` (30 December in a leap year, 31 December in a non-leap year). + 1 (1 January). 366 (31 December), 365 (30 December in a leap year, 31 December in a non-leap year). ABCD equivalence @@ -14735,7 +14735,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Montana`, `Minas Gerais`, `Córdoba` + Montana, Minas Gerais, Córdoba ABCD equivalence @@ -14777,7 +14777,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Periptyctinae`, `Orchidoideae`, `Sphindociinae` + Periptyctinae, Orchidoideae, Sphindociinae ABCD equivalence @@ -14823,7 +14823,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Strobus`, `Amerigo`, `Pilosella` + Strobus, Amerigo, Pilosella ABCD equivalence @@ -14995,7 +14995,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `8fa58e08-08de-4ac1-b69c-1235340b7001` + 8fa58e08-08de-4ac1-b69c-1235340b7001 ABCD equivalence @@ -15079,7 +15079,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `8fa58e08-08de-4ac1-b69c-1235340b7001`, `32567`, `https://www.gbif.org/species/212` + 8fa58e08-08de-4ac1-b69c-1235340b7001, 32567, https://www.gbif.org/species/212 ABCD equivalence @@ -15163,7 +15163,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `invalid`, `misapplied`, `homotypic synonym`, `accepted` + invalid, misapplied, homotypic synonym, accepted ABCD equivalence @@ -15209,7 +15209,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `subspecies`, `varietas`, `forma`, `species`, `genus` + subspecies, varietas, forma, species, genus ABCD equivalence @@ -15251,7 +15251,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `this name is a misspelling in common use` + this name is a misspelling in common use ABCD equivalence @@ -15397,7 +15397,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `StillImage`, `MovingImage`, `Sound`, `PhysicalObject`, `Event`, `Text` + StillImage, MovingImage, Sound, PhysicalObject, Event, Text ABCD equivalence @@ -15447,11 +15447,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to separate the values in a list with space vertical bar space (` | `). + Recommended best practice is to separate the values in a list with space vertical bar space ( | ). Examples - `holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388`, `holotype of Pinus abies | holotype of Picea abies` + holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388, holotype of Pinus abies | holotype of Picea abies ABCD equivalence @@ -15539,7 +15539,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `41 05 54S 121 05 34W`, `17T 630000 4833400` + 41 05 54S 121 05 34W, 17T 630000 4833400 ABCD equivalence @@ -15627,7 +15627,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `decimal degrees`, `degrees decimal minutes`, `degrees minutes seconds`, `UTM` + decimal degrees, degrees decimal minutes, degrees minutes seconds, UTM ABCD equivalence @@ -15669,7 +15669,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `100-200 m` + 100-200 m ABCD equivalence @@ -15711,7 +15711,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `100-200 m` + 100-200 m ABCD equivalence @@ -15753,7 +15753,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `spring 1910`, `Marzo 2002`, `1999-03-XX`, `17IV1934` + spring 1910, Marzo 2002, 1999-03-XX, 17IV1934 ABCD equivalence @@ -15795,11 +15795,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - This term is meant to allow the capture of an unaltered original identification/determination, including identification qualifiers, hybrid formulas, uncertainties, etc. This term is meant to be used in addition to `scientificName` (and `identificationQualifier` etc.), not instead of it. + This term is meant to allow the capture of an unaltered original identification/determination, including identification qualifiers, hybrid formulas, uncertainties, etc. This term is meant to be used in addition to scientificName (and identificationQualifier etc.), not instead of it. Examples - `Peromyscus sp.`, `Ministrymon sp. nov. 1`, `Anser anser X Branta canadensis`, `Pachyporidae?` + Peromyscus sp., Ministrymon sp. nov. 1, Anser anser X Branta canadensis, Pachyporidae? ABCD equivalence @@ -15845,7 +15845,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `41 05 54.03S` + 41 05 54.03S ABCD equivalence @@ -15887,7 +15887,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `25 km NNE Bariloche por R. Nac. 237` + 25 km NNE Bariloche por R. Nac. 237 ABCD equivalence @@ -15929,7 +15929,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `121d 10' 34" W` + 121d 10' 34" W ABCD equivalence @@ -16059,11 +16059,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`. + Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown. Examples - `unknown`, `EPSG:4326`, `WGS84`, `NAD27`, `Campo Inchauspe`, `European 1950`, `Clarke 1866` + unknown, EPSG:4326, WGS84, NAD27, Campo Inchauspe, European 1950, Clarke 1866 ABCD equivalence @@ -16105,7 +16105,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Agamospecies`, `sub-lesus`, `prole`, `apomict`, `nothogrex`, `sp.`, `subsp.`, `var.` + Agamospecies, sub-lesus, prole, apomict, nothogrex, sp., subsp., var. ABCD equivalence @@ -16147,7 +16147,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Andean Condor`, `Condor Andino`, `American Eagle`, `Gänsegeier` + Andean Condor, Condor Andino, American Eagle, Gänsegeier ABCD equivalence @@ -16197,7 +16197,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `EGM84`, `EGM96`, `EGM2008`, `PGM2000A`, `PGM2004`, `PGM2006`, `PGM2007`, `epsg:7030`, `unknown` + EGM84, EGM96, EGM2008, PGM2000A, PGM2004, PGM2006, PGM2007, epsg:7030, unknown ABCD equivalence @@ -16293,7 +16293,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `Indian Ocean`, `Baltic Sea`, `Hudson River`, `Lago Nahuel Huapi` + Indian Ocean, Baltic Sea, Hudson River, Lago Nahuel Huapi ABCD equivalence @@ -16335,7 +16335,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - `1160`, `2008` + 1160, 2008 ABCD equivalence From 52bb256f8e56a9bff58a82df4cb6c1138c749db0 Mon Sep 17 00:00:00 2001 From: Steve Baskauf Date: Fri, 6 Aug 2021 07:42:13 -0500 Subject: [PATCH 3/3] add comment about flaw in hyperlink function --- build/build-termlist.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build/build-termlist.py b/build/build-termlist.py index c6ba009..cbd29b3 100644 --- a/build/build-termlist.py +++ b/build/build-termlist.py @@ -56,7 +56,8 @@ display_id = ['record_level', 'dc', 'dcterms', 'occurrence', 'organism', 'materi # Function definitions # --------------- -# replace URL with link +# replace URL with link (function used with Audubon Core list of terms build script) +# Does not correctly handle URLs with close parens ) characters. # def createLinks(text): def repl(match): @@ -64,7 +65,7 @@ def createLinks(text): return '' + match.group(1)[:-1] + '.' return '' + match.group(1) + '' - pattern = '(https?://[^\s,;\)"]*)' + pattern = '(https?://[^\s,;\)"<]*)' result = re.sub(pattern, repl, text) return result @@ -75,6 +76,8 @@ def convert_code(text_with_backticks): """ return re.sub(r'`([^`]*)`', r'\1', text_with_backticks) +# 2021-08-06 Discovered when using this with Audubon Core list of terms build script that it does not +# correctly handle trailing commas that follow a URL. I don't understand the regex well enough to fix it def convert_link(text_with_urls): """Takes all links in a text field and converts it to the html tagged version of the link