You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Carlos Rueda edited this page Jul 29, 2014
·
5 revisions
Modeling
The CF standard names are basically captured as SKOS Concept instances. This is done via a :Standard_Name subclass of skos:Concept, and constructing an instance of :Standard_Name for each entry in the original XML file.
<entryid="sea_surface_temperature">
<canonical_units>K</canonical_units>
<description>Sea surface temperature is usually abbreviated as "SST"...</description>
</entry>
is converted to the following RDF representation:
:sea_surface_temperature
a :Standard_Name ;
:canonical_units "K" ;
skos:definition "Sea surface temperature is usually abbreviated as \"SST\"..." .