Difference between revisions of "ToolMatch Model"

From Earth Science Information Partners (ESIP)
(Created page with "== Model V 0.1 in Turtle == <nowiki>@prefix :        <http://esipfed.org/ontologies/ToolMatch#> . @prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> . @prefix owl...")
 
Line 1: Line 1:
== Model V 0.1 in Turtle ==
+
== Model Version 0.1 ==
<nowiki>@prefix :        <http://esipfed.org/ontologies/ToolMatch#> .
+
* [[Media:ToolMatch.ttl | Turtle]]
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
+
* [[Media:ToolMatch.rdf| RDF/XML]]
@prefix owl:     <http://www.w3.org/2002/07/owl#> .
 
@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
 
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
 
@prefix daml:    <http://www.daml.org/2001/03/daml+oil#> .
 
@prefix giss:    <http://www.giss.nasa.gov/tools/> .
 
@prefix gdaac:   <http://disc.gsfc.nasa.gov/data/> .
 
 
 
:DataTool
 
     rdf:type owl:Class ;
 
    :worksWith :DataAccess ;
 
     :worksWith :DataCollection .
 
 
 
:DataCollection
 
     rdf:type owl:Class ;
 
     :hasDOI "xsd:string" ;
 
     :hasGcmdDif "xsd:string" ;
 
    :hasDataAccess :DataAccess .
 
 
 
:DataAccess
 
    rdf:type owl:Class .
 
 
 
:visualizes
 
     rdfs:subPropertyOf :worksWith .
 
 
 
:drawsMapsOf
 
     rdfs:subPropertyOf :visualizes .
 
 
 
gdaac:AIRX3STDv005
 
     rdf:type :DataCollection ;
 
    :hasDapAccess gdaac:AIRX3STDv005_DAP ;
 
    :hasNetcdfAccess gdaac:AIRX3STDv005_netCDF ;
 
     :hasGcmdDif "GES_DISC_AIRX3STD_V005" .
 
 
 
gdaac:AIRX3STDv005_DAP
 
    a :DataAccess .
 
 
 
gdaac:AIRX3STDv005_netCDF
 
    a :DataAccess .
 
 
 
giss:panoply
 
    :drawsMapsOf gdaac:AIRX3STDv005_DAP ;
 
    :drawsMapsOf gdaac:AIRX3STDv005_netCDF ;
 
     rdf:type :DataTool .
 
</nowiki>
 

Revision as of 13:11, February 28, 2012

Model Version 0.1