Skip to content

Commit

Permalink
add examples from EarthRef and SnowTerm
Browse files Browse the repository at this point in the history
shows examples from other vocabularies with differnt structures. EarthRef does not have URI's associated with terms; SnowTerm (from Chantelle Verhey's list) has URLs for terms, and ARK IDs, but the ARKS don't dereference through the standard N2t.net resolver....
  • Loading branch information
smrgeoinfo committed Sep 30, 2021
1 parent 7112ca7 commit 57e0e13
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions guides/Dataset.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,7 @@ If you have information about a controlled vocabulary from which keywords come f
* [url](https://schema.org/url) - The canonical URL for the keyword. (Optional)
* [termCode](https://schema.org/termCode) - A representative code for this keyword in the controlled vocabulary (Optional)

As an example, we demonstrate these fields using the `oceans` keyword from the NASA GCMD Keywrods vocabulary.
<pre>
As an example, we demonstrate these fields using the `oceans` keyword from the NASA GCMD Keyword vocabulary, `ice core studies` from [SnowTerm](https://vocabularyserver.com/cnr/ml/snowterm/en/index.php), and `Baked Clay` from [EarthRef controlled vocabulary](https://www2.earthref.org/vocabularies/controlled).
{
"@context": {
"@vocab": "https://schema.org/"
Expand All @@ -124,7 +123,20 @@ As an example, we demonstrate these fields using the `oceans` keyword from the N
"inDefinedTermSet": "https://gcmd.earthdata.nasa.gov/kms/concepts/concept_scheme/sciencekeywords",
"url": "https://gcmd.earthdata.nasa.gov/kms/concept/91697b7d-8f2b-4954-850e-61d5f61c867d",
"termCode": "91697b7d-8f2b-4954-850e-61d5f61c867d"
}
},
{
"@type": "DefinedTerm",
"name": "ice core studies",
"inDefinedTermSet": "https://vocabularyserver.com/cnr/ml/snowterm/en/",
"url": "https://vocabularyserver.com/cnr/ml/snowterm/en/index.php?tema=29330",
"identifier": "ark:/99152/t3v4yo3eeqepj0"
},
{
"@type": "DefinedTerm",
"name": "Baked Clay",
"inDefinedTermSet": "https://www2.earthref.org/vocabularies/controlled"
},

]</strong>
}
</pre>
Expand Down

2 comments on commit 57e0e13

@ashepherd
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome, @smrgeoinfo !!! Great to have more examples. I've got it on my list to add these to the full dataset.jsonld example file.

One question for you. Should we follow the identifier guidance for Dataset with the ARK on the ice core studies example? What do you think?

@smrgeoinfo
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I updated the identifier encoding for the ARK

Please sign in to comment.