Skip to content

Commit

Permalink
Add distinction between min/max depth (emo-bon/observatory-profile#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurianvm committed Oct 22, 2024
1 parent 3cb1228 commit ef3c181
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions sampling.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
.


<{{baseuri}}/{{name}}#samplingDepth>
<{{baseuri}}/{{name}}#minSamplingDepth>
a owl:DatatypeProperty ;
rdfs:isDefinedBy <{{baseuri}}/{{name}}> ;
rdfs:comment "Measument of the sampling depth of the water column in meters"@en ;
Expand All @@ -184,11 +184,30 @@
rdfs:range xsd:nonNegativeInteger ;
.

<{{baseuri}}/{{name}}#sampleDepth>
<{{baseuri}}/{{name}}#maxSamplingDepth>
a owl:DatatypeProperty ;
rdfs:isDefinedBy <{{baseuri}}/{{name}}> ;
rdfs:comment "Measument of the maximum sampling depth of the water column in meters"@en ;
rdfs:label "Max sampling depth of water column"@en ;
rdfs:domain sosa:Sampling;
rdfs:range xsd:nonNegativeInteger ;
.


<{{baseuri}}/{{name}}#minSampleDepth>
a owl:DatatypeProperty ;
rdfs:isDefinedBy <{{baseuri}}/{{name}}> ;
rdfs:comment "Measument of the sample depth of the water column in meters"@en ;
rdfs:label "Sampling depth of water column"@en ;
rdfs:comment "Measument of the minimum sample depth of the water column in meters"@en ;
rdfs:label "Min sampling depth of water column"@en ;
rdfs:domain sosa:Sample;
rdfs:range xsd:nonNegativeInteger ;
.

<{{baseuri}}/{{name}}#maxSampleDepth>
a owl:DatatypeProperty ;
rdfs:isDefinedBy <{{baseuri}}/{{name}}> ;
rdfs:comment "Measument of the maximum sample depth of the water column in meters"@en ;
rdfs:label "Max sampling depth of water column"@en ;
rdfs:domain sosa:Sample;
rdfs:range xsd:nonNegativeInteger ;
.
Expand Down

0 comments on commit ef3c181

Please sign in to comment.