-
Notifications
You must be signed in to change notification settings - Fork 4
Example: CSIRO Ocean Colour DPN
Jonathan Yu edited this page Feb 7, 2017
·
1 revision
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dpn: <http://purl.org/dpn#> .
@prefix dpns: <http://purl.org/dpn/services#> .
@prefix ds: <http://purl.org/dpn/dataset#> .
@prefix oc: <http://ereefs.info/id/oc-dpn/> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://ereefs.info/data/ereefs-mwq>
rdf:type ds:Dataset ;
rdfs:label "EREEFS MWQ"^^xsd:string ;
skos:altLabel "ereefs-mwq"^^xsd:string .
<http://ereefs.info/id/group/csiro-ocean-colour>
rdf:type org:Organization ;
rdfs:label "CSIRO Ocean Colour Group"^^xsd:string ;
dpn:hostsNode <http://ereefs.info/id/node/ocean-colour> .
<http://ereefs.info/id/node/ocean-colour>
rdf:type dpn:Node ;
rdfs:label "Ocean Colour node"^^xsd:string ;
dpn:exposesService <http://ereefs.info/id/service/OC_THREDDS_Service> .
oc: rdf:type owl:Ontology ;
owl:imports <http://purl.org/dpn/services> , <http://purl.org/dpn> ;
owl:versionInfo "eReefs Ocean Colour DPN metadata test"^^xsd:string .
oc:oc-thredds-catalog
rdf:type dpns:ThreddsCatalog ;
rdfs:label "OC THREDDS Service Catalog"^^xsd:string ;
dpn:endpoint <http://aodaac1-mel.vic.csiro.au:8080/thredds/catalog.xml> .
<http://ereefs.info/id/service/OC_THREDDS_Service>
rdf:type dpns:THREDDS ;
rdfs:label "OC THREDDS Service"^^xsd:string ;
dpn:catalog oc:oc-thredds-catalog ;
dpn:endpoint <http://aodaac1-mel.vic.csiro.au:8080/thredds> ;
dpn:hostsDataset <http://ereefs.info/data/ereefs-mwq> .