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

Provide URI for metadata elements #268

Open
ferrighi opened this issue Nov 29, 2024 · 1 comment
Open

Provide URI for metadata elements #268

ferrighi opened this issue Nov 29, 2024 · 1 comment
Labels
MMD-v4 issues to be solved in MMD-v4

Comments

@ferrighi
Copy link
Collaborator

We should add information on URI for some of our MMD elements. There are some easy to achieve:

  • KEYWORD_URI (these are keywords that are not GCMD)
  • PARAMETER_URI (GCMD Science keywords)
  • ORGANIZATION_URI
@ferrighi ferrighi added the MMD-v4 issues to be solved in MMD-v4 label Nov 29, 2024
@ferrighi
Copy link
Collaborator Author

For keyword and parameters we have all info into vocab (also mapping to authoritative sources).

For example:

using nerc/nasa:

<keywords vocabulary="CFSTDN">  
   <keyword uri="http://vocab.nerc.ac.uk/collection/P07/current/CFSN0023/">air_temperature</keyword>  
</keywords>

<keywords vocabulary="GCMDSK">  
   <keyword uri="https://gcmd.earthdata.nasa.gov/kms/concept/f634ab55-de40-4d0b-93bc-691bf5408ccb">EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC TEMPERATURE > SURFACE TEMPERATURE > AIR TEMPERATURE</keyword>  
</keywords>

OR using vocab.met

<keywords vocabulary="CFSTDN">
   <keyword uri="https://vocab.met.no/CFSTDN/air_temperature">air_temperature</keyword>
</keywords>
<keywords vocabulary="GCMDSK">
   <keyword uri="https://vocab.met.no/GCMDSK/f634ab55-de40-4d0b-93bc-691bf5408ccb">EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC TEMPERATURE > SURFACE TEMPERATURE > AIR TEMPERATURE</keyword>
</keywords>

OR using id and resource

<keywords vocabulary="CFSTDN">  
   <keyword id="CFSN0023">air_temperature</keyword>  
   <resource>http://vocab.nerc.ac.uk/collection/P07/current/</resource>  
</keywords>

<keywords vocabulary="GCMDSK">  
   <keyword id="f634ab55-de40-4d0b-93bc-691bf5408ccb">EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC TEMPERATURE > SURFACE TEMPERATURE > AIR TEMPERATURE</keyword>  
   <resource>https://gcmd.earthdata.nasa.gov/kms/concept/</resource>  
</keywords>

For organisation we can do something similar and develop https://vocab.met.no/mmd/en/page/Organisation adding aliases and ROR ids

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
MMD-v4 issues to be solved in MMD-v4
Projects
None yet
Development

No branches or pull requests

1 participant