├── .gitignore ├── LICENSE ├── README.md ├── charters ├── .gitkeep ├── draft │ └── charter_collection_descriptions_tg_DRAFT.md └── task_group_charter │ └── tg_charter.md ├── docs ├── assets │ └── images │ │ ├── latimer_nyanfly_logo.png │ │ ├── latimer_nyanfly_logo.svg │ │ ├── latimer_nyanfly_logo_tdwg2022.png │ │ ├── latimer_nyanfly_logo_tdwg2022.svg │ │ └── readme.md ├── termlist │ └── .gitkeep └── terms │ └── .gitkeep ├── documents ├── DOCUMENT_LINKS.md ├── ExtendingCD_GroupedCollections.pdf ├── draft │ └── IssuesChallengesREADME.md ├── final │ ├── .gitkeep │ └── Deliverable D2.3 ICEDIG - Design of a Collection Digitisation Dashboard v1.0.docx └── historical │ ├── NCD_V0.34_dccap.xls │ ├── SHNHNCD2.ppt │ └── draft_cd_tg_tasks_2019-02-18.pdf ├── examples ├── .gitkeep ├── archived │ ├── cd_agents_test_2021-04-22.json │ └── cd_agents_test_2021-04-22_reversed.json ├── class-level json examples │ ├── address-example.json │ ├── chronometric-age-example.json │ ├── collection-description-scheme-example.json │ ├── collection-status-history-example.json │ ├── contact-detail-example.json │ ├── event-example.json │ ├── geographic-origin-example.json │ ├── geological-context-example.json │ ├── identifier-example.json │ ├── measurement-or-fact-example.json │ ├── object-classification-example.json │ ├── object-group-example.json │ ├── organisational-unit-example.json │ ├── person-example.json │ ├── person-role-example.json │ ├── record-level-example.json │ ├── reference-example.json │ ├── resource-relationship-example.json │ ├── scheme-measurement-or-fact-example.json │ ├── scheme-term-example.json │ ├── storage-location-example.json │ ├── taxon-example.json │ └── temporal-coverage-example.json ├── documentation examples │ ├── flat │ │ ├── metric_digitisation_level_percentage_example.csv │ │ └── metric_object_count_example.csv │ └── json │ │ ├── contact_detail_example.json │ │ ├── identifiers_institution_example.json │ │ ├── identifiers_person_example.json │ │ └── identifiers_taxon_example.json ├── draft │ ├── Example BGBM Institution and herbarium.csv │ ├── GGBN Example Consortium.csv │ └── GGBN Example biobank.csv ├── implementation examples │ ├── flat │ │ ├── MeasurementOrFact_LtC_Standard_Metrics.csv │ │ ├── MeasurementOrFact_MIDS_Metrics.csv │ │ ├── MeasurementOrFact_McGinley_Metrics.csv │ │ ├── fmnh_accession_carpenter_example.csv │ │ ├── fmnh_institution_example.csv │ │ ├── fmnh_institution_formattedexample.md │ │ ├── fmnh_institutional_collection_example.csv │ │ ├── fmnh_invertebrate_collection_example.csv │ │ ├── fmnh_mammal_collection_example.csv │ │ ├── nhm_join_the_dots_ltc_object_groups.csv │ │ └── nhm_join_the_dots_ltc_scheme.csv │ └── json │ │ ├── fmnh_accession_carpenter_example.json │ │ ├── nhm_challenger_expedition.json │ │ ├── nhm_join_the_dots.json │ │ └── nhm_uk_json_example.json └── recipes.md ├── meetings ├── 2018-11-14_tg_remote.md ├── 2019-03-27_tg_remote.md ├── 2019-04-18_model_task_remote.md ├── 2019-04-24_tg_remote.md └── 2019-09-10+11_london_physical_meeting │ ├── 2019-09-10_london_meeting_day_1.md │ └── meeting_resources │ ├── 9-11Sept2019_CDTGmtg_LondonNHM_dpaul.pptx │ ├── Introduction_wikibase.pptx │ ├── cd_meeting_intro_2019-09-10.pptx │ └── cds_summary_2019-09-10.pptx ├── mids └── README.md ├── reference ├── FAQ.md ├── REFERENCE_LINKS.md ├── crosswalks │ ├── BiodiversityRegistryDatafieldCrosswalk_21Sep2015.xlsx │ ├── Copy of NCD_ABCD_Elements.xlsx │ ├── IPT-Metadata-Profile-Additions_v3_GBIFDocumentForNCD.doc │ ├── NCD-crosswalk-to-DublinCore__based-on-NCD-v0.34_DC-v1.1.xlsx │ ├── NCD_EAD.xls │ ├── README.md │ └── Required NCD elements.doc ├── humanVmachine.md ├── ncd │ └── ncd_normative_standard.xlsx ├── papers │ ├── AnAnalyticalModelOfCollectionsAndTheirCatalogues_Jan2000.pdf │ ├── Collection Level Description - the Museum Perspective.pdf │ ├── CollectionDescriptionFocus_BriefingPaper_2002.pdf │ ├── oclcresearch-archives-special-collections-linked-data.pdf │ └── readme.md └── use_cases │ └── README.md ├── standard ├── data_model │ ├── .gitkeep │ ├── Definitions │ │ ├── BiologicalTaxonomy.md │ │ ├── CollectionContact.md │ │ ├── CollectionDescription.md │ │ ├── CollectionDescriptionMetric.md │ │ ├── CollectionDescriptionScheme.md │ │ ├── CollectionHistory.md │ │ ├── CollectionIdentifier.md │ │ ├── Collector.md │ │ ├── GeographicOrigin.md │ │ ├── GeologicalTimeRange.md │ │ ├── Institution.md │ │ ├── ObjectClassification.md │ │ ├── OrganisationalUnit.md │ │ ├── Person.md │ │ ├── RelatedDatasetIdentifier.md │ │ ├── SpecimenIdentifierSystem.md │ │ └── StorageLocation.md │ ├── README.md │ └── TDWG CD conceptual data model v0.1 2019-11-25.pdf ├── json-schema │ ├── address.json │ ├── chronometric-age.json │ ├── collection-description-scheme.json │ ├── collection-status-history.json │ ├── contact-detail.json │ ├── event.json │ ├── geographic-origin.json │ ├── geological-context.json │ ├── identifier.json │ ├── measurement-or-fact.json │ ├── measurementor-fact.json │ ├── object-classification.json │ ├── object-group.json │ ├── organisational-unit.json │ ├── person-role.json │ ├── person.json │ ├── record-level.json │ ├── reference.json │ ├── resource-relationship.json │ ├── scheme-measurement-or-fact.json │ ├── scheme-term.json │ ├── storage-location.json │ ├── taxon.json │ └── temporal-coverage.json ├── landing_page.md ├── skos_mapping │ └── LtC SKOS decision tree.png ├── termlist-header.md ├── terms │ ├── by_namespace │ │ ├── abcd.csv │ │ ├── dc.csv │ │ ├── dwc.csv │ │ ├── ltc.csv │ │ └── schema.csv │ ├── ltc_categories.csv │ ├── ltc_datatypes.csv │ ├── ltc_skos_mapping.csv │ ├── ltc_sssom_mapping.csv │ └── ltc_standard_terms_draft.csv ├── vocabularies │ └── .gitkeep └── wiki_archive │ ├── .gitkeep │ └── version_1 │ ├── Ltc_wiki_v1.pdf │ └── markdown │ ├── 1.1-LtC-Glossary.md │ ├── 2.1-Audiences.md │ ├── 2.2-Collection-description-schemes.md │ ├── 2.3-Summary-of-LtC-classes.md │ ├── 2.4-Core-elements-of-the-standard.md │ ├── 2.5-Ranges-and-class-level-properties.md │ ├── 2.6-Repeatable-properties-and-classes.md │ ├── 2.7-Linking-ObjectGroups.md │ ├── 2.8-Modelling-approaches.md │ ├── 3.-Relationships-with-other-standards.md │ ├── 4.-Extending-the-standard.md │ ├── 5.-Reference-examples-and-implementations.md │ ├── 6.-Use-Cases.md │ ├── 7.-Release-Notes.md │ ├── Home.md │ └── Home_Footer.md └── tools ├── Latimer Core browser.pbix ├── README.MD ├── TDWG CD standard browser.pbix ├── TDWG CD standard report.xlsx ├── TDWG definition conversion.xlsx └── csv_to_json ├── .env.example ├── README.md ├── csv_to_json.py ├── csv_to_json_spec.py ├── requirements.txt ├── test_json_schema_output ├── address.json ├── chronometric-age.json ├── collection-description-scheme.json ├── collection-status-history.json ├── contact-detail.json ├── event.json ├── geographic-origin.json ├── geological-context.json ├── identifier.json ├── measurementor-fact.json ├── object-classification.json ├── object-group.json ├── organisational-unit.json ├── person-role.json ├── person.json ├── record-level.json ├── reference.json ├── resource-relationship.json ├── scheme-measurement-or-fact.json ├── scheme-term.json ├── storage-location.json ├── taxon.json └── temporal-coverage.json ├── test_spec_input └── test_spec_terms_draft.csv └── test_spec_json_output ├── address.json ├── chronometric-age.json ├── collection-description-scheme.json ├── collection-status-history.json ├── contact-detail.json ├── event.json ├── geographic-origin.json ├── geological-context.json ├── identifier.json ├── measurement-or-fact.json ├── object-classification.json ├── object-group.json ├── organisational-unit.json ├── person-role.json ├── person.json ├── record-level.json ├── reference.json ├── resource-relationship.json ├── scheme-measurement-or-fact.json ├── scheme-term.json ├── storage-location.json ├── taxon.json └── temporal-coverage.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .env 3 | .pylintrc 4 | .vscode 5 | venv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/README.md -------------------------------------------------------------------------------- /charters/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charters/draft/charter_collection_descriptions_tg_DRAFT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/charters/draft/charter_collection_descriptions_tg_DRAFT.md -------------------------------------------------------------------------------- /charters/task_group_charter/tg_charter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/charters/task_group_charter/tg_charter.md -------------------------------------------------------------------------------- /docs/assets/images/latimer_nyanfly_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/docs/assets/images/latimer_nyanfly_logo.png -------------------------------------------------------------------------------- /docs/assets/images/latimer_nyanfly_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/docs/assets/images/latimer_nyanfly_logo.svg -------------------------------------------------------------------------------- /docs/assets/images/latimer_nyanfly_logo_tdwg2022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/docs/assets/images/latimer_nyanfly_logo_tdwg2022.png -------------------------------------------------------------------------------- /docs/assets/images/latimer_nyanfly_logo_tdwg2022.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/docs/assets/images/latimer_nyanfly_logo_tdwg2022.svg -------------------------------------------------------------------------------- /docs/assets/images/readme.md: -------------------------------------------------------------------------------- 1 | Images, logos & other assets related to Latimer Core docs 2 | -------------------------------------------------------------------------------- /docs/termlist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/terms/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documents/DOCUMENT_LINKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/documents/DOCUMENT_LINKS.md -------------------------------------------------------------------------------- /documents/ExtendingCD_GroupedCollections.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/documents/ExtendingCD_GroupedCollections.pdf -------------------------------------------------------------------------------- /documents/draft/IssuesChallengesREADME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/documents/draft/IssuesChallengesREADME.md -------------------------------------------------------------------------------- /documents/final/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documents/final/Deliverable D2.3 ICEDIG - Design of a Collection Digitisation Dashboard v1.0.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/documents/final/Deliverable D2.3 ICEDIG - Design of a Collection Digitisation Dashboard v1.0.docx -------------------------------------------------------------------------------- /documents/historical/NCD_V0.34_dccap.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/documents/historical/NCD_V0.34_dccap.xls -------------------------------------------------------------------------------- /documents/historical/SHNHNCD2.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/documents/historical/SHNHNCD2.ppt -------------------------------------------------------------------------------- /documents/historical/draft_cd_tg_tasks_2019-02-18.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/documents/historical/draft_cd_tg_tasks_2019-02-18.pdf -------------------------------------------------------------------------------- /examples/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/archived/cd_agents_test_2021-04-22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/archived/cd_agents_test_2021-04-22.json -------------------------------------------------------------------------------- /examples/archived/cd_agents_test_2021-04-22_reversed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/archived/cd_agents_test_2021-04-22_reversed.json -------------------------------------------------------------------------------- /examples/class-level json examples/address-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/address-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/chronometric-age-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/chronometric-age-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/collection-description-scheme-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/collection-description-scheme-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/collection-status-history-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/collection-status-history-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/contact-detail-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/contact-detail-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/event-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/event-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/geographic-origin-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/geographic-origin-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/geological-context-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/geological-context-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/identifier-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/identifier-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/measurement-or-fact-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/measurement-or-fact-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/object-classification-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/object-classification-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/object-group-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/object-group-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/organisational-unit-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/organisational-unit-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/person-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/person-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/person-role-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/person-role-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/record-level-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/record-level-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/reference-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/reference-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/resource-relationship-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/resource-relationship-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/scheme-measurement-or-fact-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/scheme-measurement-or-fact-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/scheme-term-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/scheme-term-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/storage-location-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/storage-location-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/taxon-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/taxon-example.json -------------------------------------------------------------------------------- /examples/class-level json examples/temporal-coverage-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/class-level json examples/temporal-coverage-example.json -------------------------------------------------------------------------------- /examples/documentation examples/flat/metric_digitisation_level_percentage_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/documentation examples/flat/metric_digitisation_level_percentage_example.csv -------------------------------------------------------------------------------- /examples/documentation examples/flat/metric_object_count_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/documentation examples/flat/metric_object_count_example.csv -------------------------------------------------------------------------------- /examples/documentation examples/json/contact_detail_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/documentation examples/json/contact_detail_example.json -------------------------------------------------------------------------------- /examples/documentation examples/json/identifiers_institution_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/documentation examples/json/identifiers_institution_example.json -------------------------------------------------------------------------------- /examples/documentation examples/json/identifiers_person_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/documentation examples/json/identifiers_person_example.json -------------------------------------------------------------------------------- /examples/documentation examples/json/identifiers_taxon_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/documentation examples/json/identifiers_taxon_example.json -------------------------------------------------------------------------------- /examples/draft/Example BGBM Institution and herbarium.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/draft/Example BGBM Institution and herbarium.csv -------------------------------------------------------------------------------- /examples/draft/GGBN Example Consortium.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/draft/GGBN Example Consortium.csv -------------------------------------------------------------------------------- /examples/draft/GGBN Example biobank.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/draft/GGBN Example biobank.csv -------------------------------------------------------------------------------- /examples/implementation examples/flat/MeasurementOrFact_LtC_Standard_Metrics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/implementation examples/flat/MeasurementOrFact_LtC_Standard_Metrics.csv -------------------------------------------------------------------------------- /examples/implementation examples/flat/MeasurementOrFact_MIDS_Metrics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/implementation examples/flat/MeasurementOrFact_MIDS_Metrics.csv -------------------------------------------------------------------------------- /examples/implementation examples/flat/MeasurementOrFact_McGinley_Metrics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/implementation examples/flat/MeasurementOrFact_McGinley_Metrics.csv -------------------------------------------------------------------------------- /examples/implementation examples/flat/fmnh_accession_carpenter_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/implementation examples/flat/fmnh_accession_carpenter_example.csv -------------------------------------------------------------------------------- /examples/implementation examples/flat/fmnh_institution_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/implementation examples/flat/fmnh_institution_example.csv -------------------------------------------------------------------------------- /examples/implementation examples/flat/fmnh_institution_formattedexample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/implementation examples/flat/fmnh_institution_formattedexample.md -------------------------------------------------------------------------------- /examples/implementation examples/flat/fmnh_institutional_collection_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/implementation examples/flat/fmnh_institutional_collection_example.csv -------------------------------------------------------------------------------- /examples/implementation examples/flat/fmnh_invertebrate_collection_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/implementation examples/flat/fmnh_invertebrate_collection_example.csv -------------------------------------------------------------------------------- /examples/implementation examples/flat/fmnh_mammal_collection_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/implementation examples/flat/fmnh_mammal_collection_example.csv -------------------------------------------------------------------------------- /examples/implementation examples/flat/nhm_join_the_dots_ltc_object_groups.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/implementation examples/flat/nhm_join_the_dots_ltc_object_groups.csv -------------------------------------------------------------------------------- /examples/implementation examples/flat/nhm_join_the_dots_ltc_scheme.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/implementation examples/flat/nhm_join_the_dots_ltc_scheme.csv -------------------------------------------------------------------------------- /examples/implementation examples/json/fmnh_accession_carpenter_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/implementation examples/json/fmnh_accession_carpenter_example.json -------------------------------------------------------------------------------- /examples/implementation examples/json/nhm_challenger_expedition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/implementation examples/json/nhm_challenger_expedition.json -------------------------------------------------------------------------------- /examples/implementation examples/json/nhm_join_the_dots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/implementation examples/json/nhm_join_the_dots.json -------------------------------------------------------------------------------- /examples/implementation examples/json/nhm_uk_json_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/implementation examples/json/nhm_uk_json_example.json -------------------------------------------------------------------------------- /examples/recipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/examples/recipes.md -------------------------------------------------------------------------------- /meetings/2018-11-14_tg_remote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/meetings/2018-11-14_tg_remote.md -------------------------------------------------------------------------------- /meetings/2019-03-27_tg_remote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/meetings/2019-03-27_tg_remote.md -------------------------------------------------------------------------------- /meetings/2019-04-18_model_task_remote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/meetings/2019-04-18_model_task_remote.md -------------------------------------------------------------------------------- /meetings/2019-04-24_tg_remote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/meetings/2019-04-24_tg_remote.md -------------------------------------------------------------------------------- /meetings/2019-09-10+11_london_physical_meeting/2019-09-10_london_meeting_day_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/meetings/2019-09-10+11_london_physical_meeting/2019-09-10_london_meeting_day_1.md -------------------------------------------------------------------------------- /meetings/2019-09-10+11_london_physical_meeting/meeting_resources/9-11Sept2019_CDTGmtg_LondonNHM_dpaul.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/meetings/2019-09-10+11_london_physical_meeting/meeting_resources/9-11Sept2019_CDTGmtg_LondonNHM_dpaul.pptx -------------------------------------------------------------------------------- /meetings/2019-09-10+11_london_physical_meeting/meeting_resources/Introduction_wikibase.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/meetings/2019-09-10+11_london_physical_meeting/meeting_resources/Introduction_wikibase.pptx -------------------------------------------------------------------------------- /meetings/2019-09-10+11_london_physical_meeting/meeting_resources/cd_meeting_intro_2019-09-10.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/meetings/2019-09-10+11_london_physical_meeting/meeting_resources/cd_meeting_intro_2019-09-10.pptx -------------------------------------------------------------------------------- /meetings/2019-09-10+11_london_physical_meeting/meeting_resources/cds_summary_2019-09-10.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/meetings/2019-09-10+11_london_physical_meeting/meeting_resources/cds_summary_2019-09-10.pptx -------------------------------------------------------------------------------- /mids/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/mids/README.md -------------------------------------------------------------------------------- /reference/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/reference/FAQ.md -------------------------------------------------------------------------------- /reference/REFERENCE_LINKS.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reference/crosswalks/BiodiversityRegistryDatafieldCrosswalk_21Sep2015.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/reference/crosswalks/BiodiversityRegistryDatafieldCrosswalk_21Sep2015.xlsx -------------------------------------------------------------------------------- /reference/crosswalks/Copy of NCD_ABCD_Elements.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/reference/crosswalks/Copy of NCD_ABCD_Elements.xlsx -------------------------------------------------------------------------------- /reference/crosswalks/IPT-Metadata-Profile-Additions_v3_GBIFDocumentForNCD.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/reference/crosswalks/IPT-Metadata-Profile-Additions_v3_GBIFDocumentForNCD.doc -------------------------------------------------------------------------------- /reference/crosswalks/NCD-crosswalk-to-DublinCore__based-on-NCD-v0.34_DC-v1.1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/reference/crosswalks/NCD-crosswalk-to-DublinCore__based-on-NCD-v0.34_DC-v1.1.xlsx -------------------------------------------------------------------------------- /reference/crosswalks/NCD_EAD.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/reference/crosswalks/NCD_EAD.xls -------------------------------------------------------------------------------- /reference/crosswalks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/reference/crosswalks/README.md -------------------------------------------------------------------------------- /reference/crosswalks/Required NCD elements.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/reference/crosswalks/Required NCD elements.doc -------------------------------------------------------------------------------- /reference/humanVmachine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/reference/humanVmachine.md -------------------------------------------------------------------------------- /reference/ncd/ncd_normative_standard.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/reference/ncd/ncd_normative_standard.xlsx -------------------------------------------------------------------------------- /reference/papers/AnAnalyticalModelOfCollectionsAndTheirCatalogues_Jan2000.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/reference/papers/AnAnalyticalModelOfCollectionsAndTheirCatalogues_Jan2000.pdf -------------------------------------------------------------------------------- /reference/papers/Collection Level Description - the Museum Perspective.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/reference/papers/Collection Level Description - the Museum Perspective.pdf -------------------------------------------------------------------------------- /reference/papers/CollectionDescriptionFocus_BriefingPaper_2002.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/reference/papers/CollectionDescriptionFocus_BriefingPaper_2002.pdf -------------------------------------------------------------------------------- /reference/papers/oclcresearch-archives-special-collections-linked-data.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/reference/papers/oclcresearch-archives-special-collections-linked-data.pdf -------------------------------------------------------------------------------- /reference/papers/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/reference/papers/readme.md -------------------------------------------------------------------------------- /reference/use_cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/reference/use_cases/README.md -------------------------------------------------------------------------------- /standard/data_model/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standard/data_model/Definitions/BiologicalTaxonomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/Definitions/BiologicalTaxonomy.md -------------------------------------------------------------------------------- /standard/data_model/Definitions/CollectionContact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/Definitions/CollectionContact.md -------------------------------------------------------------------------------- /standard/data_model/Definitions/CollectionDescription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/Definitions/CollectionDescription.md -------------------------------------------------------------------------------- /standard/data_model/Definitions/CollectionDescriptionMetric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/Definitions/CollectionDescriptionMetric.md -------------------------------------------------------------------------------- /standard/data_model/Definitions/CollectionDescriptionScheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/Definitions/CollectionDescriptionScheme.md -------------------------------------------------------------------------------- /standard/data_model/Definitions/CollectionHistory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/Definitions/CollectionHistory.md -------------------------------------------------------------------------------- /standard/data_model/Definitions/CollectionIdentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/Definitions/CollectionIdentifier.md -------------------------------------------------------------------------------- /standard/data_model/Definitions/Collector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/Definitions/Collector.md -------------------------------------------------------------------------------- /standard/data_model/Definitions/GeographicOrigin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/Definitions/GeographicOrigin.md -------------------------------------------------------------------------------- /standard/data_model/Definitions/GeologicalTimeRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/Definitions/GeologicalTimeRange.md -------------------------------------------------------------------------------- /standard/data_model/Definitions/Institution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/Definitions/Institution.md -------------------------------------------------------------------------------- /standard/data_model/Definitions/ObjectClassification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/Definitions/ObjectClassification.md -------------------------------------------------------------------------------- /standard/data_model/Definitions/OrganisationalUnit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/Definitions/OrganisationalUnit.md -------------------------------------------------------------------------------- /standard/data_model/Definitions/Person.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/Definitions/Person.md -------------------------------------------------------------------------------- /standard/data_model/Definitions/RelatedDatasetIdentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/Definitions/RelatedDatasetIdentifier.md -------------------------------------------------------------------------------- /standard/data_model/Definitions/SpecimenIdentifierSystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/Definitions/SpecimenIdentifierSystem.md -------------------------------------------------------------------------------- /standard/data_model/Definitions/StorageLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/Definitions/StorageLocation.md -------------------------------------------------------------------------------- /standard/data_model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/README.md -------------------------------------------------------------------------------- /standard/data_model/TDWG CD conceptual data model v0.1 2019-11-25.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/data_model/TDWG CD conceptual data model v0.1 2019-11-25.pdf -------------------------------------------------------------------------------- /standard/json-schema/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/address.json -------------------------------------------------------------------------------- /standard/json-schema/chronometric-age.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/chronometric-age.json -------------------------------------------------------------------------------- /standard/json-schema/collection-description-scheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/collection-description-scheme.json -------------------------------------------------------------------------------- /standard/json-schema/collection-status-history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/collection-status-history.json -------------------------------------------------------------------------------- /standard/json-schema/contact-detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/contact-detail.json -------------------------------------------------------------------------------- /standard/json-schema/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/event.json -------------------------------------------------------------------------------- /standard/json-schema/geographic-origin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/geographic-origin.json -------------------------------------------------------------------------------- /standard/json-schema/geological-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/geological-context.json -------------------------------------------------------------------------------- /standard/json-schema/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/identifier.json -------------------------------------------------------------------------------- /standard/json-schema/measurement-or-fact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/measurement-or-fact.json -------------------------------------------------------------------------------- /standard/json-schema/measurementor-fact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/measurementor-fact.json -------------------------------------------------------------------------------- /standard/json-schema/object-classification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/object-classification.json -------------------------------------------------------------------------------- /standard/json-schema/object-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/object-group.json -------------------------------------------------------------------------------- /standard/json-schema/organisational-unit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/organisational-unit.json -------------------------------------------------------------------------------- /standard/json-schema/person-role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/person-role.json -------------------------------------------------------------------------------- /standard/json-schema/person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/person.json -------------------------------------------------------------------------------- /standard/json-schema/record-level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/record-level.json -------------------------------------------------------------------------------- /standard/json-schema/reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/reference.json -------------------------------------------------------------------------------- /standard/json-schema/resource-relationship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/resource-relationship.json -------------------------------------------------------------------------------- /standard/json-schema/scheme-measurement-or-fact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/scheme-measurement-or-fact.json -------------------------------------------------------------------------------- /standard/json-schema/scheme-term.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/scheme-term.json -------------------------------------------------------------------------------- /standard/json-schema/storage-location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/storage-location.json -------------------------------------------------------------------------------- /standard/json-schema/taxon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/taxon.json -------------------------------------------------------------------------------- /standard/json-schema/temporal-coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/json-schema/temporal-coverage.json -------------------------------------------------------------------------------- /standard/landing_page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/landing_page.md -------------------------------------------------------------------------------- /standard/skos_mapping/LtC SKOS decision tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/skos_mapping/LtC SKOS decision tree.png -------------------------------------------------------------------------------- /standard/termlist-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/termlist-header.md -------------------------------------------------------------------------------- /standard/terms/by_namespace/abcd.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/terms/by_namespace/abcd.csv -------------------------------------------------------------------------------- /standard/terms/by_namespace/dc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/terms/by_namespace/dc.csv -------------------------------------------------------------------------------- /standard/terms/by_namespace/dwc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/terms/by_namespace/dwc.csv -------------------------------------------------------------------------------- /standard/terms/by_namespace/ltc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/terms/by_namespace/ltc.csv -------------------------------------------------------------------------------- /standard/terms/by_namespace/schema.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/terms/by_namespace/schema.csv -------------------------------------------------------------------------------- /standard/terms/ltc_categories.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/terms/ltc_categories.csv -------------------------------------------------------------------------------- /standard/terms/ltc_datatypes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/terms/ltc_datatypes.csv -------------------------------------------------------------------------------- /standard/terms/ltc_skos_mapping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/terms/ltc_skos_mapping.csv -------------------------------------------------------------------------------- /standard/terms/ltc_sssom_mapping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/terms/ltc_sssom_mapping.csv -------------------------------------------------------------------------------- /standard/terms/ltc_standard_terms_draft.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/terms/ltc_standard_terms_draft.csv -------------------------------------------------------------------------------- /standard/vocabularies/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standard/wiki_archive/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standard/wiki_archive/version_1/Ltc_wiki_v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/wiki_archive/version_1/Ltc_wiki_v1.pdf -------------------------------------------------------------------------------- /standard/wiki_archive/version_1/markdown/1.1-LtC-Glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/wiki_archive/version_1/markdown/1.1-LtC-Glossary.md -------------------------------------------------------------------------------- /standard/wiki_archive/version_1/markdown/2.1-Audiences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/wiki_archive/version_1/markdown/2.1-Audiences.md -------------------------------------------------------------------------------- /standard/wiki_archive/version_1/markdown/2.2-Collection-description-schemes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/wiki_archive/version_1/markdown/2.2-Collection-description-schemes.md -------------------------------------------------------------------------------- /standard/wiki_archive/version_1/markdown/2.3-Summary-of-LtC-classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/wiki_archive/version_1/markdown/2.3-Summary-of-LtC-classes.md -------------------------------------------------------------------------------- /standard/wiki_archive/version_1/markdown/2.4-Core-elements-of-the-standard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/wiki_archive/version_1/markdown/2.4-Core-elements-of-the-standard.md -------------------------------------------------------------------------------- /standard/wiki_archive/version_1/markdown/2.5-Ranges-and-class-level-properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/wiki_archive/version_1/markdown/2.5-Ranges-and-class-level-properties.md -------------------------------------------------------------------------------- /standard/wiki_archive/version_1/markdown/2.6-Repeatable-properties-and-classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/wiki_archive/version_1/markdown/2.6-Repeatable-properties-and-classes.md -------------------------------------------------------------------------------- /standard/wiki_archive/version_1/markdown/2.7-Linking-ObjectGroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/wiki_archive/version_1/markdown/2.7-Linking-ObjectGroups.md -------------------------------------------------------------------------------- /standard/wiki_archive/version_1/markdown/2.8-Modelling-approaches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/wiki_archive/version_1/markdown/2.8-Modelling-approaches.md -------------------------------------------------------------------------------- /standard/wiki_archive/version_1/markdown/3.-Relationships-with-other-standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/wiki_archive/version_1/markdown/3.-Relationships-with-other-standards.md -------------------------------------------------------------------------------- /standard/wiki_archive/version_1/markdown/4.-Extending-the-standard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/wiki_archive/version_1/markdown/4.-Extending-the-standard.md -------------------------------------------------------------------------------- /standard/wiki_archive/version_1/markdown/5.-Reference-examples-and-implementations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/wiki_archive/version_1/markdown/5.-Reference-examples-and-implementations.md -------------------------------------------------------------------------------- /standard/wiki_archive/version_1/markdown/6.-Use-Cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/wiki_archive/version_1/markdown/6.-Use-Cases.md -------------------------------------------------------------------------------- /standard/wiki_archive/version_1/markdown/7.-Release-Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/wiki_archive/version_1/markdown/7.-Release-Notes.md -------------------------------------------------------------------------------- /standard/wiki_archive/version_1/markdown/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/wiki_archive/version_1/markdown/Home.md -------------------------------------------------------------------------------- /standard/wiki_archive/version_1/markdown/Home_Footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/standard/wiki_archive/version_1/markdown/Home_Footer.md -------------------------------------------------------------------------------- /tools/Latimer Core browser.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/Latimer Core browser.pbix -------------------------------------------------------------------------------- /tools/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/README.MD -------------------------------------------------------------------------------- /tools/TDWG CD standard browser.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/TDWG CD standard browser.pbix -------------------------------------------------------------------------------- /tools/TDWG CD standard report.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/TDWG CD standard report.xlsx -------------------------------------------------------------------------------- /tools/TDWG definition conversion.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/TDWG definition conversion.xlsx -------------------------------------------------------------------------------- /tools/csv_to_json/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/.env.example -------------------------------------------------------------------------------- /tools/csv_to_json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/README.md -------------------------------------------------------------------------------- /tools/csv_to_json/csv_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/csv_to_json.py -------------------------------------------------------------------------------- /tools/csv_to_json/csv_to_json_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/csv_to_json_spec.py -------------------------------------------------------------------------------- /tools/csv_to_json/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/requirements.txt -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/address.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/chronometric-age.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/chronometric-age.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/collection-description-scheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/collection-description-scheme.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/collection-status-history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/collection-status-history.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/contact-detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/contact-detail.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/event.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/geographic-origin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/geographic-origin.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/geological-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/geological-context.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/identifier.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/measurementor-fact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/measurementor-fact.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/object-classification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/object-classification.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/object-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/object-group.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/organisational-unit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/organisational-unit.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/person-role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/person-role.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/person.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/record-level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/record-level.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/reference.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/resource-relationship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/resource-relationship.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/scheme-measurement-or-fact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/scheme-measurement-or-fact.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/scheme-term.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/scheme-term.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/storage-location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/storage-location.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/taxon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/taxon.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_json_schema_output/temporal-coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_json_schema_output/temporal-coverage.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_input/test_spec_terms_draft.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_input/test_spec_terms_draft.csv -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/address.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/chronometric-age.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/chronometric-age.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/collection-description-scheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/collection-description-scheme.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/collection-status-history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/collection-status-history.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/contact-detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/contact-detail.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/event.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/geographic-origin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/geographic-origin.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/geological-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/geological-context.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/identifier.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/measurement-or-fact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/measurement-or-fact.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/object-classification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/object-classification.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/object-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/object-group.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/organisational-unit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/organisational-unit.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/person-role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/person-role.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/person.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/record-level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/record-level.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/reference.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/resource-relationship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/resource-relationship.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/scheme-measurement-or-fact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/scheme-measurement-or-fact.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/scheme-term.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/scheme-term.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/storage-location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/storage-location.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/taxon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/taxon.json -------------------------------------------------------------------------------- /tools/csv_to_json/test_spec_json_output/temporal-coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdwg/cd/HEAD/tools/csv_to_json/test_spec_json_output/temporal-coverage.json --------------------------------------------------------------------------------