Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add RO-crate inspired examples #94

Merged
merged 3 commits into from
Mar 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@ jobs:
uses: actions/checkout@v4
- name: Codespell
uses: codespell-project/actions-codespell@v2
with:
ignore_words_list: crate
27 changes: 16 additions & 11 deletions src/examples/dataset-version/DatasetVersionObject-affiliation.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
{
"was_attributed_to": [
{
"meta_code": "doe",
"meta_type": "dlco:ResearchContributorObject",
"name": "Jane Doe",
"email": "[email protected]",
"affiliation": "DFG"
},
{
"meta_code": "DFG",
"meta_type": "dlco:OrganizationObject",
"name": "Deutsche Forschungsgemeinschaft"
}
],
"qualified_attribution": [
{
"agent": {
"meta_type": "dlco:ResearchContributorObject",
"name": "Jane Doe",
"email": "[email protected]",
"affiliation": "DFG"
},
"agent": "doe",
"had_role": [
"marcrel:aut"
]
},
{
"agent": {
"meta_type": "dlco:OrganizationObject",
"name": "Deutsche Forschungsgemeinschaft",
"meta_code": "DFG"
},
"agent": "DFG",
"had_role": [
"marcrel:sht"
]
Expand Down
22 changes: 12 additions & 10 deletions src/examples/dataset-version/DatasetVersionObject-affiliation.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
description: >-
Some key facts about the data
was_attributed_to:
- meta_type: dlco:ResearchContributorObject
meta_code: doe
name: Jane Doe
email: [email protected]
# reference organization by meta_code
affiliation: DFG
- meta_type: dlco:OrganizationObject
meta_code: DFG
name: Deutsche Forschungsgemeinschaft
qualified_attribution:
- agent:
meta_type: dlco:ResearchContributorObject
name: Jane Doe
email: [email protected]
# reference organization by meta_code
affiliation: DFG
- agent: doe
had_role:
- marcrel:aut
- agent:
meta_type: dlco:OrganizationObject
meta_code: DFG
name: Deutsche Forschungsgemeinschaft
- agent: DFG
had_role:
# Supporting host
- marcrel:sht
20 changes: 12 additions & 8 deletions src/examples/dataset-version/DatasetVersionObject-funding.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
{
"qualified_relation": [
{
"entity": {
"meta_type": "dlco:GrantObject",
"identifier": "https://gepris.dfg.de/gepris/projekt/431549029",
"sponsor": {
"name": "Deutsche Forschungsgemeinschaft"
},
"name": "SFB1451"
},
"entity": "sfb1451",
"had_role": [
"schema:funding"
]
}
],
"relation": [
{
"meta_code": "sfb1451",
"meta_type": "dlco:GrantObject",
"identifier": "https://gepris.dfg.de/gepris/projekt/431549029",
"sponsor": {
"name": "Deutsche Forschungsgemeinschaft"
},
"name": "SFB1451"
}
],
"description": "Some key facts about the data",
"@type": "DatasetVersionObject"
}
14 changes: 8 additions & 6 deletions src/examples/dataset-version/DatasetVersionObject-funding.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
description: >-
Some key facts about the data
relation:
- meta_type: dlco:GrantObject
meta_code: sfb1451
name: SFB1451
identifier: https://gepris.dfg.de/gepris/projekt/431549029
sponsor:
name: Deutsche Forschungsgemeinschaft
qualified_relation:
- entity:
meta_type: dlco:GrantObject
name: SFB1451
identifier: https://gepris.dfg.de/gepris/projekt/431549029
sponsor:
name: Deutsche Forschungsgemeinschaft
- entity: sfb1451
had_role:
- schema:funding
157 changes: 89 additions & 68 deletions src/examples/dataset-version/DatasetVersionObject-penguins.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,131 +63,152 @@
"identifier": [
"https://doi.org/10.5281/zenodo.3960218"
],
"was_attributed_to": [
{
"meta_code": "ahorst",
"meta_type": "dlco:ResearchContributorObject",
"name": "Allison Horst",
"email": "[email protected]",
"affiliation": "UCSB",
"orcid": "0000-0002-6047-5564"
},
{
"meta_code": "ahill",
"meta_type": "dlco:ResearchContributorObject",
"name": "Allison Hill",
"email": "[email protected]",
"affiliation": "Rstudio",
"orcid": "0000-0002-8082-1890"
},
{
"meta_code": "kgorman",
"meta_type": "dlco:ResearchContributorObject",
"name": "Kirsten Gorman",
"email": "[email protected]",
"affiliation": "UAF",
"orcid": "0000-0002-0258-9264"
},
{
"meta_code": "UCSB",
"meta_type": "dlco:OrganizationObject",
"name": "UC Santa Barbara: Santa Barbara, CA, US"
},
{
"meta_code": "RStudio",
"meta_type": "dlco:OrganizationObject",
"name": "RStudio: Boston, MA, US"
},
{
"meta_code": "UAF",
"meta_type": "dlco:OrganizationObject",
"name": "University of Alaska Fairbanks: Fairbanks, AK, US"
}
],
"qualified_attribution": [
{
"agent": {
"meta_type": "dlco:ResearchContributorObject",
"name": "Allison Horst",
"email": "[email protected]",
"affiliation": "UCSB",
"orcid": "0000-0002-6047-5564"
},
"agent": "ahorst",
"had_role": [
"marcrel:aut",
"dpv:DataController"
]
},
{
"agent": {
"meta_type": "dlco:ResearchContributorObject",
"name": "Allison Hill",
"email": "[email protected]",
"affiliation": "Rstudio",
"orcid": "0000-0002-8082-1890"
},
"agent": "ahill",
"had_role": [
"marcrel:aut"
]
},
{
"agent": {
"meta_type": "dlco:ResearchContributorObject",
"name": "Kirsten Gorman",
"email": "[email protected]",
"affiliation": "UAF",
"orcid": "0000-0002-0258-9264"
},
"agent": "kgorman",
"had_role": [
"marcrel:aut",
"marcrel:cre"
]
},
{
"agent": {
"meta_type": "dlco:OrganizationObject",
"name": "UC Santa Barbara: Santa Barbara, CA, US",
"meta_code": "UCSB"
},
"agent": "UCSB",
"had_role": [
"marcrel:sht"
]
},
{
"agent": {
"meta_type": "dlco:OrganizationObject",
"name": "RStudio: Boston, MA, US",
"meta_code": "RStudio"
},
"agent": "RStudio",
"had_role": [
"marcrel:sht"
]
},
{
"agent": {
"meta_type": "dlco:OrganizationObject",
"name": "University of Alaska Fairbanks: Fairbanks, AK, US",
"meta_code": "UAF"
},
"agent": "UAF",
"had_role": [
"marcrel:sht"
]
}
],
"qualified_relation": [
{
"entity": {
"meta_type": "dlco:GrantObject",
"identifier": "0217282",
"sponsor": {
"name": "NSF Office of Polar Programs"
},
"name": "LTER: PALMER, ANTARCTICA LTER: Climate Change, Ecosystem Migration and Teleconnections in an Ice-Dominated Environment",
"cites_as_authority": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=0217282&HistoricalAwards=false"
},
"entity": "nsf0217282",
"had_role": [
"schema:funding"
]
},
{
"entity": {
"meta_type": "dlco:GrantObject",
"identifier": "0823101",
"sponsor": {
"name": "NSF Office of Polar Programs"
},
"name": "Palmer, Antarctica Long Term Ecological Research Project",
"cites_as_authority": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=0823101"
},
"entity": "nsf0823101",
"had_role": [
"schema:funding"
]
},
{
"entity": {
"meta_type": "dlco:GrantObject",
"identifier": "0741351",
"sponsor": {
"name": "NSF Office of Polar Programs"
},
"name": "Collaborative Research: Possible Climate-induced Change in the Distribution of Pleuragramma Antarcticum on the Western Antarctic Peninsula Shelf",
"cites_as_authority": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=0741351"
},
"entity": "nsf0741351",
"had_role": [
"schema:funding"
]
},
{
"entity": {
"meta_type": "dlco:PublicationObject",
"citation": "'Gorman KB, Williams TD, Fraser WR (2014) Ecological Sexual Dimorphism and Environmental Variability within a Community of Antarctic Penguins (Genus Pygoscelis). PLoS ONE 9(3): e90081.'",
"doi": "https://doi.org/10.1371/journal.pone.0090081"
},
"entity": "gormanetal",
"had_role": [
"CiTO:citesAsAuthority",
"CiTO:isCitedAsDataSourceBy"
]
}
],
"relation": [
{
"meta_code": "nsf0217282",
"meta_type": "dlco:GrantObject",
"identifier": "0217282",
"sponsor": {
"name": "NSF Office of Polar Programs"
},
"name": "LTER: PALMER, ANTARCTICA LTER: Climate Change, Ecosystem Migration and Teleconnections in an Ice-Dominated Environment",
"cites_as_authority": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=0217282&HistoricalAwards=false"
},
{
"meta_code": "nsf0823101",
"meta_type": "dlco:GrantObject",
"identifier": "0823101",
"sponsor": {
"name": "NSF Office of Polar Programs"
},
"name": "Palmer, Antarctica Long Term Ecological Research Project",
"cites_as_authority": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=0823101"
},
{
"meta_code": "nsf0741351",
"meta_type": "dlco:GrantObject",
"identifier": "0741351",
"sponsor": {
"name": "NSF Office of Polar Programs"
},
"name": "Collaborative Research: Possible Climate-induced Change in the Distribution of Pleuragramma Antarcticum on the Western Antarctic Peninsula Shelf",
"cites_as_authority": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=0741351"
},
{
"meta_code": "gormanetal",
"meta_type": "dlco:PublicationObject",
"citation": "'Gorman KB, Williams TD, Fraser WR (2014) Ecological Sexual Dimorphism and Environmental Variability within a Community of Antarctic Penguins (Genus Pygoscelis). PLoS ONE 9(3): e90081.'",
"doi": "https://doi.org/10.1371/journal.pone.0090081"
}
],
"description": "The goal of palmerpenguins is to provide a great dataset for data exploration and visualization, as an alternative to iris. Data were collected and made available by Dr. Kristen Gorman and the Palmer Station, Antarctica LTER, a member of the Long Term Ecological Research Network.",
"keyword": [
"penguins",
Expand Down
Loading
Loading