Skip to content

Instantly share code, notes, and snippets.

@wstrinz
Last active December 18, 2015 08:29
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save wstrinz/cd20661a8d1fda123e2b to your computer and use it in GitHub Desktop.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix qb: <http://purl.org/linked-data/cube#> .
@prefix : <http://www.rqtl.org/ns/#> .
@prefix prop: <http://www.rqtl.org/dc/properties/> .
@prefix cs: <http://www.rqtl.org/dc/cs/> .
:dsd-mr a qb:DataStructureDefinition ;
rdfs:label "A Data Structure Definition"@en ;
qb:component cs:refRow ,
cs:char ,
cs:lod .
cs:refRow a qb:ComponentSpecification ;
rdfs:label "Component Specification of Row" ;
qb:dimension prop:refRow .
cs:lod a qb:ComponentSpecification ;
rdfs:label "Component Specification of lod" ;
qb:measure prop:lod .
cs:char a qb:ComponentSpecification ;
rdfs:label "Component Specification of char" ;
qb:measure prop:char .
:dataset-mr a qb:DataSet ;
rdfs:label "mr"@en ;
qb:structure :dsd-mr .
prop:refRow a rdf:Property, qb:DimensionProperty ;
rdfs:label "Row"@en .
prop:lod a rdf:Property, qb:MeasureProperty ;
rdfs:label "lod"@en .
prop:char a rdf:Property, qb:MeasureProperty ;
rdfs:label "char"@en .
:obs1D10M44 a qb:Observation ;
qb:dataSet :dataset-mr ;
prop:refRow :D10M44 ;
prop:lod 0.4572564427044421 ;
prop:char 12 ;
.
:D10M44 a prop:refRow ;
rdfs:label "D10M44"@en .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment