Skip to content

Commit 0f18aeb

Browse files
committed
comment out inverse properties and clean up qudt:hasUnit
1 parent 5f66ef1 commit 0f18aeb

3 files changed

Lines changed: 22 additions & 35 deletions

File tree

implementation/example_data/egad-sites-samples-schema.ttl

Lines changed: 11 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -208,9 +208,6 @@ skos:altLabel rdf:type owl:DatatypeProperty .
208208
# Classes
209209
#################################################################
210210

211-
### http://qudt.org/schema/qudt/Enumeration
212-
qudt:Enumeration rdf:type owl:Class .
213-
214211

215212
### http://qudt.org/schema/qudt/Quantity
216213
qudt:Quantity rdf:type owl:Class .
@@ -292,15 +289,13 @@ me_egad:EGAD-AggregatePFAS-Concentration rdf:type owl:Class ;
292289

293290
### http://w3id.org/sawgraph/v1/me-egad#EGAD-AnalysisMethod
294291
me_egad:EGAD-AnalysisMethod rdf:type owl:Class ;
295-
rdfs:subClassOf qudt:Enumeration ,
296-
coso:AnalysisMethod ;
292+
rdfs:subClassOf coso:AnalysisMethod ;
297293
rdfs:label "EGAD - Analysis Method" .
298294

299295

300296
### http://w3id.org/sawgraph/v1/me-egad#EGAD-ConcentrationQualifier
301297
me_egad:EGAD-ConcentrationQualifier rdf:type owl:Class ;
302-
rdfs:subClassOf qudt:Enumeration ,
303-
coso:ResultQualifier ;
298+
rdfs:subClassOf coso:ResultQualifier ;
304299
rdfs:label "EGAD - Lab Qualifier" .
305300

306301

@@ -320,8 +315,7 @@ me_egad:EGAD-PFAS-Observation rdf:type owl:Class ;
320315

321316
### http://w3id.org/sawgraph/v1/me-egad#EGAD-PFAS-ParameterName
322317
me_egad:EGAD-PFAS-ParameterName rdf:type owl:Class ;
323-
rdfs:subClassOf qudt:Enumeration ,
324-
coso:Substance ;
318+
rdfs:subClassOf coso:Substance ;
325319
rdfs:label "EGAD - PFAS Parameter Name" .
326320

327321

@@ -339,8 +333,7 @@ me_egad:EGAD-ReportingLimit rdf:type owl:Class ;
339333

340334
### http://w3id.org/sawgraph/v1/me-egad#EGAD-ResultType
341335
me_egad:EGAD-ResultType rdf:type owl:Class ;
342-
rdfs:subClassOf qudt:Enumeration ,
343-
coso:ObservationAnnotation ;
336+
rdfs:subClassOf coso:ObservationAnnotation ;
344337
rdfs:label "EGAD - Result Type" .
345338

346339

@@ -352,29 +345,25 @@ me_egad:EGAD-Sample rdf:type owl:Class ;
352345

353346
### http://w3id.org/sawgraph/v1/me-egad#EGAD-SampleCollectionMethod
354347
me_egad:EGAD-SampleCollectionMethod rdf:type owl:Class ;
355-
rdfs:subClassOf qudt:Enumeration ,
356-
coso:SampleAnnotation ;
348+
rdfs:subClassOf coso:SampleAnnotation ;
357349
rdfs:label "EGAD - Sample Collection Method" .
358350

359351

360352
### http://w3id.org/sawgraph/v1/me-egad#EGAD-SampleDetailedLocation
361353
me_egad:EGAD-SampleDetailedLocation rdf:type owl:Class ;
362-
rdfs:subClassOf qudt:Enumeration ,
363-
coso:SampleAnnotation ;
354+
rdfs:subClassOf coso:SampleAnnotation ;
364355
rdfs:label "EGAD - Sample Detailed Location" .
365356

366357

367358
### http://w3id.org/sawgraph/v1/me-egad#EGAD-SampleMaterialType
368359
me_egad:EGAD-SampleMaterialType rdf:type owl:Class ;
369-
rdfs:subClassOf qudt:Enumeration ,
370-
coso:SampleMaterialType ;
360+
rdfs:subClassOf coso:SampleMaterialType ;
371361
rdfs:label "EGAD - Sample Material Type" .
372362

373363

374364
### http://w3id.org/sawgraph/v1/me-egad#EGAD-SampleMaterialTypeQualifier
375365
me_egad:EGAD-SampleMaterialTypeQualifier rdf:type owl:Class ;
376-
rdfs:subClassOf qudt:Enumeration ,
377-
coso:SampleMaterialType ;
366+
rdfs:subClassOf coso:SampleMaterialType ;
378367
rdfs:label "EGAD - Sample Material Type Qualifier" .
379368

380369

@@ -386,8 +375,7 @@ me_egad:EGAD-SamplePoint rdf:type owl:Class ;
386375

387376
### http://w3id.org/sawgraph/v1/me-egad#EGAD-SamplePointType
388377
me_egad:EGAD-SamplePointType rdf:type owl:Class ;
389-
rdfs:subClassOf qudt:Enumeration ,
390-
coso:FeatureType ;
378+
rdfs:subClassOf coso:FeatureType ;
391379
rdfs:label "EGAD - Sample Point Type" .
392380

393381

@@ -417,14 +405,13 @@ me_egad:EGAD-Site rdf:type owl:Class ;
417405

418406
### http://w3id.org/sawgraph/v1/me-egad#EGAD-SiteType
419407
me_egad:EGAD-SiteType rdf:type owl:Class ;
420-
rdfs:subClassOf qudt:Enumeration ;
408+
rdfs:subclassOf coso:FeatureType ;
421409
rdfs:label "EGAD - Site Type" .
422410

423411

424412
### http://w3id.org/sawgraph/v1/me-egad#EGAD-ValidationLevel
425413
me_egad:EGAD-ValidationLevel rdf:type owl:Class ;
426-
rdfs:subClassOf qudt:Enumeration ,
427-
coso:ResultQualifier ;
414+
rdfs:subClassOf coso:ResultQualifier ;
428415
rdfs:label "EGAD - Validation Level" .
429416

430417

implementation/reuse/qudt_lite.ttl

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -287,23 +287,23 @@ qudt:unit
287287
rdfs:label "unit" ;
288288
rdfs:range qudt:Unit .
289289

290-
qudt:unitFor
291-
a owl:ObjectProperty ;
292-
owl:inverseOf qudt:unit ;
293-
rdfs:isDefinedBy <http://qudt.org/2.1/schema/qudt> ;
294-
rdfs:label "unit for" .
290+
#qudt:unitFor
291+
# a owl:ObjectProperty ;
292+
# owl:inverseOf qudt:unit ;
293+
# rdfs:isDefinedBy <http://qudt.org/2.1/schema/qudt> ;
294+
# rdfs:label "unit for" .
295295

296296
qudt:quantityValue
297297
a owl:ObjectProperty ;
298298
rdfs:isDefinedBy <http://qudt.org/2.1/schema/qudt> ;
299299
rdfs:label "quantity value" ;
300300
rdfs:range qudt:QuantityValue .
301301

302-
qudt:valueQuantity
303-
a owl:ObjectProperty ;
304-
owl:inverseOf qudt:quantityValue ;
305-
rdfs:isDefinedBy <http://qudt.org/2.1/schema/qudt> ;
306-
rdfs:label "value for quantity" .
302+
#qudt:valueQuantity
303+
# a owl:ObjectProperty ;
304+
# owl:inverseOf qudt:quantityValue ;
305+
# rdfs:isDefinedBy <http://qudt.org/2.1/schema/qudt> ;
306+
# rdfs:label "value for quantity" .
307307

308308
qudt:cardinality
309309
a owl:ObjectProperty ;

v1/contaminoso_full.ttl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ qudt:quantityValue rdf:type owl:ObjectProperty .
5656

5757

5858
### http://qudt.org/schema/qudt/unit
59-
qudt:unit rdf:type owl:ObjectProperty .
59+
qudt:hasUnit rdf:type owl:ObjectProperty .
6060

6161

6262
### http://w3id.org/coso/v1/contaminoso#observedAtSamplePoint

0 commit comments

Comments
 (0)