-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagriProperty.ttl
1720 lines (1225 loc) · 89.5 KB
/
agriProperty.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <https://w3id.org/cybele/> .
@prefix qb: <http://purl.org/linked-data/cube#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ssn: <http://www.w3.org/ns/ssn/> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix sosa: <http://www.w3.org/ns/sosa/> .
@prefix stat: <http://data.europa.eu/m8g/> .
@prefix saref: <https://w3id.org/saref#> .
@prefix common: <http://portele.de/ont/inspire/baseInspire#> .
@prefix fiware: <https://uri.fiware.org/ns/data-models#> .
@prefix foodie: <http://foodie-cloud.com/model/foodie#> .
@prefix schema: <http://schema.org/> .
@prefix iso19103: <http://def.seegrid.csiro.au/isotc211/iso19103/2005/basic#> .
@prefix iso19109: <http://def.seegrid.csiro.au/isotc211/iso19109/2005/feature#> .
@prefix af-inspire: <http://inspire.ec.europa.eu/schemas/af/3.0#> .
@prefix iso19150-2: <http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#> .
@prefix saref4agri: <https://w3id.org/def/saref4agri#> .
@prefix act-inspire: <http://inspire.ec.europa.eu/schemas/act-core/3.0#> .
@base <http://www.w3.org/2002/07/owl#> .
[ rdf:type owl:Ontology ;
dct:contributor [ schema:affiliation "ICCS" ;
foaf:name "George Routis"
] ,
[ schema:affiliation [ foaf:name "OGC"
] ;
foaf:name "Rob Atkinson"
] ,
[ schema:affiliation [ foaf:name "ICCS"
] ;
foaf:name "Ioanna Roussaki"
] ;
dct:creator [ schema:affiliation [ foaf:name "PSNC"
] ;
rdfs:seeAlso <http://orcid.org/0000-0003-4289-4922> ;
foaf:name "Raul Palma"
] ;
dct:description "The DEMETER AgriProperty is one of the agri profiles of DEMETER AIM. This profile was created by reusing and aligning well-known ontologies and vocabularies"@en ;
dct:rights "This vocabulary is distributed under Creative Commons Attribution 4.0 License - http://creativecommons.org/licenses/by/4.0"@en ;
dct:title "DEMETER AgriProperty"@en ;
rdfs:comment "The DEMETER Agriculture Information Model (AIM) is the common vocabulary in DEMETER project providing the basis for semantic interoperability across smart farming solutions"@en ;
owl:versionInfo "1.0" ;
foaf:maker [ foaf:homepage <https://h2020-demeter.eu/> ;
foaf:name "DEMETER project"
]
] .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/elements/1.1/identifier
<http://purl.org/dc/elements/1.1/identifier> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/source
<http://purl.org/dc/elements/1.1/source> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/contributor
dct:contributor rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
dct:creator rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
dct:description rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/rights
dct:rights rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
dct:title rdf:type owl:AnnotationProperty .
### http://schema.org/affiliation
schema:affiliation rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#definition
skos:definition rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#example
skos:example rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#inScheme
skos:inScheme rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#note
skos:note rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#prefLabel
skos:prefLabel rdf:type owl:AnnotationProperty .
### http://xmlns.com/foaf/0.1/depiction
foaf:depiction rdf:type owl:AnnotationProperty .
### http://xmlns.com/foaf/0.1/homepage
foaf:homepage rdf:type owl:AnnotationProperty .
### http://xmlns.com/foaf/0.1/maker
foaf:maker rdf:type owl:AnnotationProperty .
### http://xmlns.com/foaf/0.1/name
foaf:name rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://foodie-cloud.com/model/foodie#productionAmount
foodie:productionAmount rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf saref:relatesToMeasurement .
### http://foodie-cloud.com/model/foodie#productionProperty
foodie:productionProperty rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf saref:hasProperty ;
rdfs:range foodie:PropertyType ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
skos:prefLabel "productionProperty"@en .
### http://foodie-cloud.com/model/foodie#propertyType
foodie:propertyType rdf:type owl:ObjectProperty ;
rdfs:range foodie:PropertyTypeValue ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
skos:prefLabel "propertyType"@en .
### http://foodie-cloud.com/model/foodie#quantitativeProperty
foodie:quantitativeProperty rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf saref:relatesToMeasurement ;
rdfs:range iso19103:Measure ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
skos:prefLabel "quantitativeProperty"@en .
### http://foodie-cloud.com/model/foodie#soilProperty
foodie:soilProperty rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf saref:hasProperty ;
rdfs:range foodie:PropertyType ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
skos:prefLabel "soilProperty"@en .
### http://purl.oclc.org/NET/ssnx/qu/qu#generalQuantityKind
<http://purl.oclc.org/NET/ssnx/qu/qu#generalQuantityKind> rdf:type owl:ObjectProperty .
### http://purl.oclc.org/NET/ssnx/qu/qu#propertyType
<http://purl.oclc.org/NET/ssnx/qu/qu#propertyType> rdf:type owl:ObjectProperty .
### http://purl.oclc.org/NET/ssnx/ssn#hasProperty
<http://purl.oclc.org/NET/ssnx/ssn#hasProperty> rdf:type owl:ObjectProperty .
### http://purl.oclc.org/NET/ssnx/ssn#isPropertyOf
<http://purl.oclc.org/NET/ssnx/ssn#isPropertyOf> rdf:type owl:ObjectProperty .
### https://uri.fiware.org/ns/data-models#hasDevice
fiware:hasDevice rdf:type owl:ObjectProperty ;
rdfs:comment "Reference to the IoT devices associated with this greenhouse i.e. sensors, controls." ;
rdfs:isDefinedBy <https://github.com/GSMADeveloper/NGSI-LD-Entities/blob/master/definitions/Agri-Parcel-Record.md> ;
rdfs:label "hasDevice"@en .
### https://uri.fiware.org/ns/data-models#recordHasAgriParcel
fiware:recordHasAgriParcel rdf:type owl:ObjectProperty ;
rdfs:comment "Reference to the AgriParcel to which this entity relates." ;
rdfs:isDefinedBy <https://github.com/GSMADeveloper/NGSI-LD-Entities/blob/master/definitions/Agri-Parcel-Record.md> ;
rdfs:label "recordHasAgriParcel"@en .
### https://uri.fiware.org/ns/data-models#refDevice
fiware:refDevice rdf:type owl:ObjectProperty ;
owl:equivalentProperty saref:measurementMadeBy ;
rdfs:comment "A reference to the device(s) which captured this observation." ;
rdfs:isDefinedBy <https://fiware.github.io/data-models/specs/Weather/WeatherObserved/doc/spec.html> ;
rdfs:label "refDevice"@en .
### https://uri.fiware.org/ns/data-models#refPointOfInterest
fiware:refPointOfInterest rdf:type owl:ObjectProperty ;
rdfs:comment "A reference to a point of interest (usually a weather station) associated to this observation" ;
rdfs:isDefinedBy <https://fiware.github.io/data-models/specs/Weather/WeatherObserved/doc/spec.html> ;
rdfs:label "refPointOfInterest"@en .
### https://w3id.org/saref#controlsProperty
saref:controlsProperty rdf:type owl:ObjectProperty ;
rdfs:isDefinedBy saref: ;
rdfs:label "controls property"@en .
### https://w3id.org/saref#hasFeatureOfInterest
saref:hasFeatureOfInterest rdf:type owl:ObjectProperty ;
owl:inverseOf saref:isFeatureOfInterestOf ;
rdfs:comment "Relation between a measurement and the feature of interest being measured."@en ;
rdfs:isDefinedBy saref: ;
rdfs:label "has feature of interest"@en .
### https://w3id.org/saref#hasProperty
saref:hasProperty rdf:type owl:ObjectProperty ;
owl:inverseOf saref:isPropertyOf ;
rdfs:comment "Relation between a feature of interest and its properties."@en ;
rdfs:isDefinedBy saref: ;
rdfs:label "has property"@en .
### https://w3id.org/saref#isControlledByDevice
saref:isControlledByDevice rdf:type owl:ObjectProperty ;
rdfs:isDefinedBy saref: ;
rdfs:label "is controlled by device"@en .
### https://w3id.org/saref#isFeatureOfInterestOf
saref:isFeatureOfInterestOf rdf:type owl:ObjectProperty .
### https://w3id.org/saref#isMeasuredByDevice
saref:isMeasuredByDevice rdf:type owl:ObjectProperty ;
rdfs:isDefinedBy saref: ;
rdfs:label "is measured by device"@en .
### https://w3id.org/saref#isMeasuredIn
saref:isMeasuredIn rdf:type owl:ObjectProperty ;
rdfs:isDefinedBy saref: ;
rdfs:label "is measured in"@en .
### https://w3id.org/saref#isPropertyOf
saref:isPropertyOf rdf:type owl:ObjectProperty ;
rdfs:comment "Relation between a property and a feature of interest in which such property appears."@en ;
rdfs:isDefinedBy saref: ;
rdfs:label "is property of"@en .
### https://w3id.org/saref#makesMeasurement
saref:makesMeasurement rdf:type owl:ObjectProperty ;
owl:inverseOf saref:measurementMadeBy ;
rdfs:isDefinedBy saref: ;
rdfs:label "makes measurement"@en .
### https://w3id.org/saref#measurementMadeBy
saref:measurementMadeBy rdf:type owl:ObjectProperty ;
rdfs:comment "Relation between a measurement and the device that made it."@en ;
rdfs:isDefinedBy saref: ;
rdfs:label "measurement made by"@en .
### https://w3id.org/saref#measuresProperty
saref:measuresProperty rdf:type owl:ObjectProperty ;
rdfs:isDefinedBy saref: ;
rdfs:label "measures property"@en .
### https://w3id.org/saref#relatesToMeasurement
saref:relatesToMeasurement rdf:type owl:ObjectProperty ;
rdfs:isDefinedBy saref: ;
rdfs:label "relates to measurement"@en .
### https://w3id.org/saref#relatesToProperty
saref:relatesToProperty rdf:type owl:ObjectProperty ;
rdfs:isDefinedBy saref: ;
rdfs:label "relates to property"@en .
#################################################################
# Data properties
#################################################################
### http://foodie-cloud.com/model/foodie#analysisDate
foodie:analysisDate rdf:type owl:DatatypeProperty ;
owl:equivalentProperty saref:hasTimestamp ;
rdfs:range xsd:dateTime ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
skos:prefLabel "analysisDate"@en .
### http://foodie-cloud.com/model/foodie#nonQuantitativeProperty
foodie:nonQuantitativeProperty rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf saref:hasValue ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
skos:prefLabel "nonQuantitativeProperty"@en .
### http://foodie-cloud.com/model/foodie#propertyName
foodie:propertyName rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf fiware:name ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
skos:prefLabel "propertyName"@en .
### https://uri.fiware.org/ns/data-models#airTemperature
fiware:airTemperature rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf saref:hasValue ;
rdfs:comment "The observed air temperature (in the shade) nominally in degrees centigrade." ;
rdfs:isDefinedBy <https://github.com/GSMADeveloper/NGSI-LD-Entities/blob/master/definitions/Agri-Parcel-Record.md> ;
rdfs:label "airTemperature"@en .
### https://uri.fiware.org/ns/data-models#atmosphericPressure
fiware:atmosphericPressure rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf saref:hasValue ;
rdfs:comment "Atmospheric Pressure nominally in units of hecto Pascals." ,
"The atmospheric pressure observed measured in Hecto Pascals" ;
rdfs:isDefinedBy <https://fiware.github.io/data-models/specs/Weather/WeatherObserved/doc/spec.html> ,
<https://github.com/GSMADeveloper/NGSI-LD-Entities/blob/master/definitions/Agri-Parcel-Record.md> ;
rdfs:label "atmosphericPressure"@en .
### https://uri.fiware.org/ns/data-models#dateObserved
fiware:dateObserved rdf:type owl:DatatypeProperty ;
owl:equivalentProperty saref:hasTimestamp ;
rdfs:comment "The date and time of this observation in ISO8601 UTCformat. It can be represented by an specific time instant or by an ISO8601 interval." ;
rdfs:isDefinedBy <https://fiware.github.io/data-models/specs/Weather/WeatherObserved/doc/spec.html> ;
rdfs:label "dateObserved"@en .
### https://uri.fiware.org/ns/data-models#dewPoint
fiware:dewPoint rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf saref:hasValue ;
rdfs:comment "The dew point encoded as a number." ;
rdfs:isDefinedBy <https://fiware.github.io/data-models/specs/Weather/WeatherObserved/doc/spec.html> ;
rdfs:label "dewPoint"@en .
### https://uri.fiware.org/ns/data-models#illuminance
fiware:illuminance rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf saref:hasValue ;
rdfs:comment "The illumninance observed measured in lux (lx) or lumens per square metre (cd·sr·m−2)" ;
rdfs:isDefinedBy <https://fiware.github.io/data-models/specs/Weather/WeatherObserved/doc/spec.html> ;
rdfs:label "illuminance"@en .
### https://uri.fiware.org/ns/data-models#name
fiware:name rdf:type owl:DatatypeProperty .
### https://uri.fiware.org/ns/data-models#observedAt
fiware:observedAt rdf:type owl:DatatypeProperty ;
owl:equivalentProperty saref:hasTimestamp ;
rdfs:comment "Indicates the date/time the record was observed/ last observed." ;
rdfs:isDefinedBy <https://github.com/GSMADeveloper/NGSI-LD-Entities/blob/master/definitions/Agri-Parcel-Record.md> ;
rdfs:label "observedAt"@en .
### https://uri.fiware.org/ns/data-models#pressureTendency
fiware:pressureTendency rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf saref:hasValue ;
rdfs:comment "Is the pressure rising or falling? It can be expressed in quantitative terms or qualitative terms (raising, falling, steady)" ;
rdfs:isDefinedBy <https://fiware.github.io/data-models/specs/Weather/WeatherObserved/doc/spec.html> ;
rdfs:label "pressureTendency"@en .
### https://uri.fiware.org/ns/data-models#relativeHumidity
fiware:relativeHumidity rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf saref:hasValue ;
rdfs:comment "Air’s relative humidity observed (percentage, expressed in parts per one)." ,
"Relative Humidity a number between 0 and 1 representing the range of 0% to 100%. 0 ≤ relativeHumidity ≤ 1" ;
rdfs:isDefinedBy <https://fiware.github.io/data-models/specs/Weather/WeatherObserved/doc/spec.html> ,
<https://github.com/GSMADeveloper/NGSI-LD-Entities/blob/master/definitions/Agri-Parcel-Record.md> ;
rdfs:label "relativeHumidity"@en .
### https://uri.fiware.org/ns/data-models#snowHeight
fiware:snowHeight rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf saref:hasValue ;
rdfs:comment "The snow height observed by generic snow depth measurement sensors, expressed in centimeters." ;
rdfs:isDefinedBy <https://fiware.github.io/data-models/specs/Weather/WeatherObserved/doc/spec.html> ;
rdfs:label "snowHeight"@en .
### https://uri.fiware.org/ns/data-models#soilMoistureEc
fiware:soilMoistureEc rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf saref:hasValue ;
rdfs:comment "Measured as Electrical Conductivity, EC nominally in units of Siemens per meter (S/m)." ;
rdfs:isDefinedBy <https://github.com/GSMADeveloper/NGSI-LD-Entities/blob/master/definitions/Agri-Parcel-Record.md> ;
rdfs:label "soilMoistureEc"@en .
### https://uri.fiware.org/ns/data-models#soilMoistureVwc
fiware:soilMoistureVwc rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf saref:hasValue ;
rdfs:comment "Measured as Volumetric Water Content, VWC as a percentage. 0 ≤soilMoistureVwc ≤ 1" ;
rdfs:isDefinedBy <https://github.com/GSMADeveloper/NGSI-LD-Entities/blob/master/definitions/Agri-Parcel-Record.md> ;
rdfs:label "soilMoistureVwc"@en .
### https://uri.fiware.org/ns/data-models#soilTemperature
fiware:soilTemperature rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf saref:hasValue ;
rdfs:comment "The observed soil temperature nominally in degrees centigrade." ;
rdfs:isDefinedBy <https://github.com/GSMADeveloper/NGSI-LD-Entities/blob/master/definitions/Agri-Parcel-Record.md> ;
rdfs:label "soilTemperature"@en .
### https://uri.fiware.org/ns/data-models#temperature
fiware:temperature rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf saref:hasValue ;
rdfs:comment "Air’s temperature observed" ;
rdfs:isDefinedBy <https://fiware.github.io/data-models/specs/Weather/WeatherObserved/doc/spec.html> ;
rdfs:label "temperature"@en .
### https://uri.fiware.org/ns/data-models#visibility
fiware:visibility rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf saref:hasValue ;
rdfs:comment "Visibility reported (veryPoor, poor, moderate, good, veryGood, excellent)" ;
rdfs:isDefinedBy <https://fiware.github.io/data-models/specs/Weather/WeatherObserved/doc/spec.html> ;
rdfs:label "visibility"@en .
### https://uri.fiware.org/ns/data-models#weatherType
fiware:weatherType rdf:type owl:DatatypeProperty ;
rdfs:comment "The observed weather type. It is represented by a comma separated list of weather statuses, for instance overcast, lightRain." ;
rdfs:isDefinedBy <https://fiware.github.io/data-models/specs/Weather/WeatherObserved/doc/spec.html> ;
rdfs:label "weatherType"@en .
### https://uri.fiware.org/ns/data-models#windDirection
fiware:windDirection rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf saref:hasValue ;
rdfs:comment "The wind direction expressed in decimal degrees compared to geographic North (measured clockwise), encoded as a Number. Range 0 to 360." ;
rdfs:isDefinedBy <https://fiware.github.io/data-models/specs/Weather/WeatherObserved/doc/spec.html> ;
rdfs:label "windDirection"@en .
### https://uri.fiware.org/ns/data-models#windSpeed
fiware:windSpeed rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf saref:hasValue ;
rdfs:comment "The observed wind speed in m/s, encoded as a Number." ;
rdfs:isDefinedBy <https://fiware.github.io/data-models/specs/Weather/WeatherObserved/doc/spec.html> ;
rdfs:label "windSpeed"@en .
### https://w3id.org/saref#hasTimestamp
saref:hasTimestamp rdf:type owl:DatatypeProperty ;
rdfs:isDefinedBy saref: ;
rdfs:label "has timestamp"@en .
### https://w3id.org/saref#hasValue
saref:hasValue rdf:type owl:DatatypeProperty ;
rdfs:isDefinedBy saref: ;
rdfs:label "has value"@en .
#################################################################
# Classes
#################################################################
### http://def.seegrid.csiro.au/isotc211/iso19103/2005/basic#Measure
iso19103:Measure rdf:type owl:Class ;
owl:equivalentClass saref:Measurement .
### http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#Codelist
iso19150-2:Codelist rdf:type owl:Class .
### http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#Datatype
iso19150-2:Datatype rdf:type owl:Class .
### http://foodie-cloud.com/model/foodie#PropertyType
foodie:PropertyType rdf:type owl:Class ;
owl:equivalentClass saref:Property ;
rdfs:subClassOf iso19150-2:Datatype ,
[ rdf:type owl:Restriction ;
owl:onProperty foodie:propertyType ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty foodie:quantitativeProperty ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty foodie:analysisDate ;
owl:cardinality "1"^^xsd:nonNegativeInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty foodie:propertyName ;
owl:cardinality "1"^^xsd:nonNegativeInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty foodie:nonQuantitativeProperty ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger
] ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
skos:prefLabel "PropertyType"@en .
### http://foodie-cloud.com/model/foodie#PropertyTypeValue
foodie:PropertyTypeValue rdf:type owl:Class ;
rdfs:subClassOf iso19150-2:Codelist ,
skos:Concept ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
skos:prefLabel "PropertyTypeValue"@en .
### http://purl.oclc.org/NET/ssnx/cf/cf-feature#Layer
<http://purl.oclc.org/NET/ssnx/cf/cf-feature#Layer> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/cf/cf-feature#Medium
<http://purl.oclc.org/NET/ssnx/cf/cf-feature#Medium> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/cf/cf-feature#Precipitation
<http://purl.oclc.org/NET/ssnx/cf/cf-feature#Precipitation> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/qu/dim#Acceleration
<http://purl.oclc.org/NET/ssnx/qu/dim#Acceleration> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/qu/dim#Compressibility
<http://purl.oclc.org/NET/ssnx/qu/dim#Compressibility> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/qu/dim#Concentration
<http://purl.oclc.org/NET/ssnx/qu/dim#Concentration> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/qu/dim#Density
<http://purl.oclc.org/NET/ssnx/qu/dim#Density> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/qu/dim#Dimensionless
<http://purl.oclc.org/NET/ssnx/qu/dim#Dimensionless> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/qu/dim#Distance
<http://purl.oclc.org/NET/ssnx/qu/dim#Distance> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/qu/dim#EnergyDensity
<http://purl.oclc.org/NET/ssnx/qu/dim#EnergyDensity> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/qu/dim#EnergyFlux
<http://purl.oclc.org/NET/ssnx/qu/dim#EnergyFlux> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/qu/dim#MassPerTimePerArea
<http://purl.oclc.org/NET/ssnx/qu/dim#MassPerTimePerArea> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/qu/dim#Power
<http://purl.oclc.org/NET/ssnx/qu/dim#Power> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/qu/dim#RadianceExposure
<http://purl.oclc.org/NET/ssnx/qu/dim#RadianceExposure> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/qu/dim#SpecificEntropy
<http://purl.oclc.org/NET/ssnx/qu/dim#SpecificEntropy> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/qu/dim#StressOrPressure
<http://purl.oclc.org/NET/ssnx/qu/dim#StressOrPressure> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/qu/dim#SurfaceDensity
<http://purl.oclc.org/NET/ssnx/qu/dim#SurfaceDensity> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/qu/dim#Temperature
<http://purl.oclc.org/NET/ssnx/qu/dim#Temperature> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/qu/dim#ThermalConductivity
<http://purl.oclc.org/NET/ssnx/qu/dim#ThermalConductivity> rdf:type owl:Class .
### http://purl.oclc.org/NET/ssnx/qu/dim#VelocityOrSpeed
<http://purl.oclc.org/NET/ssnx/qu/dim#VelocityOrSpeed> rdf:type owl:Class .
### http://www.semanticweb.org/georg/ontologies/2020/3/untitled-ontology-56#AlertMessage
<http://www.semanticweb.org/georg/ontologies/2020/3/untitled-ontology-56#AlertMessage> rdf:type owl:Class ;
rdfs:subClassOf <http://www.semanticweb.org/georg/ontologies/2020/3/untitled-ontology-56#Weather> ;
rdfs:comment "Alert message for urgent weather conditions" .
### http://www.semanticweb.org/georg/ontologies/2020/3/untitled-ontology-56#Weather
<http://www.semanticweb.org/georg/ontologies/2020/3/untitled-ontology-56#Weather> rdf:type owl:Class .
### http://www.w3.org/2004/02/skos/core#Concept
skos:Concept rdf:type owl:Class .
### http://www.w3.org/ns/sosa/Procedure
sosa:Procedure rdf:type owl:Class ;
rdfs:comment "A workflow, protocol, plan, algorithm, or computational method specifying how to make an Observation, create a Sample, or make a change to the state of the world (via an Actuator). A Procedure is re-usable, and might be involved in many Observations, Samplings, or Actuations. It explains the steps to be carried out to arrive at reproducible results."@en ;
rdfs:isDefinedBy sosa: ;
rdfs:label "Procedure"@en ;
skos:definition "A workflow, protocol, plan, algorithm, or computational method specifying how to make an Observation, create a Sample, or make a change to the state of the world (via an Actuator). A Procedure is re-usable, and might be involved in many Observations, Samplings, or Actuations. It explains the steps to be carried out to arrive at reproducible results."@en ;
skos:example "The measured wind speed differs depending on the height of the sensor above the surface, e.g., due to friction. Consequently, procedures for measuring wind speed define a standard height for anemometers above ground, typically 10m for meteorological measures and 2m in Agrometeorology. This definition of height, sensor placement, and so forth are defined by the Procedure."@en ;
skos:note "Many observations may be created via the same Procedure, the same way as many tables are assembled using the same instructions (as information objects, not their concrete realization)."@en .
### https://uri.fiware.org/ns/data-models#AgriParcelRecord
fiware:AgriParcelRecord rdf:type owl:Class ;
rdfs:comment "This entity contains a harmonised description of the conditions recorded on a generic parcel of land. This entity is primarily associated with the agricultural vertical and related IoT applications." ;
rdfs:isDefinedBy <https://github.com/GSMADeveloper/NGSI-LD-Entities/blob/master/definitions/Agri-Parcel-Record.md> ;
rdfs:label "AgriParcelRecord" .
### https://uri.fiware.org/ns/data-models#WeatherForecast
fiware:WeatherForecast rdf:type owl:Class ;
rdfs:subClassOf saref:FeatureOfInterest ;
rdfs:comment "A weather forecast for a period of time and a location." ;
rdfs:isDefinedBy <https://fiware.github.io/data-models/specs/Weather/WeatherForecast/doc/spec.html> ;
rdfs:label "WeatherForecast" .
### https://uri.fiware.org/ns/data-models#WeatherObserved
fiware:WeatherObserved rdf:type owl:Class ;
rdfs:subClassOf saref:FeatureOfInterest ;
rdfs:comment "A weather observation made over a period of time at a specific location" ;
rdfs:isDefinedBy <https://fiware.github.io/data-models/specs/Weather/WeatherObserved/doc/spec.html> ;
rdfs:label "WeatherObserved" .
### https://w3id.org/saref#Device
saref:Device rdf:type owl:Class ;
rdfs:isDefinedBy saref: ;
rdfs:label "Device"@en .
### https://w3id.org/saref#FeatureOfInterest
saref:FeatureOfInterest rdf:type owl:Class ;
rdfs:isDefinedBy saref: ;
rdfs:label "Feature of interest"@en .
### https://w3id.org/saref#Humidity
saref:Humidity rdf:type owl:Class ;
rdfs:subClassOf saref:Property ;
rdfs:comment "A saref:Property related to some measurements that are characterized by a certain value that is measured in a humidity unit" ;
rdfs:label "Humidiy"@en .
### https://w3id.org/saref#Measurement
saref:Measurement rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty saref:hasFeatureOfInterest ;
owl:allValuesFrom saref:FeatureOfInterest
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:relatesToProperty ;
owl:allValuesFrom saref:Property
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:relatesToProperty ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass saref:Property
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:hasTimestamp ;
owl:allValuesFrom xsd:dateTime
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:hasValue ;
owl:cardinality "1"^^xsd:nonNegativeInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:hasValue ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:float
] ;
owl:disjointWith saref:Property ;
rdfs:comment "Represents the measured value made over a property. It is also linked to the unit of measure in which the value is expressed and the timestamp of the measurement."@en ;
rdfs:isDefinedBy saref: ;
rdfs:label "Measurement"@en .
### https://w3id.org/saref#Property
saref:Property rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty saref:isControlledByDevice ;
owl:allValuesFrom saref:Device
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:isMeasuredByDevice ;
owl:allValuesFrom saref:Device
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:isPropertyOf ;
owl:allValuesFrom saref:FeatureOfInterest
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:relatesToMeasurement ;
owl:allValuesFrom saref:Measurement
] ;
rdfs:comment "An aspect of an entity that can be observable by a sensor."@en ,
"Anything that can be sensed, measured or controlled in households, common public buildings or offices. We propose here a list of properties that are relevant for the purpose of SAREF, but this list can be extended." ;
rdfs:isDefinedBy saref: ;
rdfs:label "Property" ,
"Property"@en .
### https://w3id.org/saref#Temperature
saref:Temperature rdf:type owl:Class ;
rdfs:subClassOf saref:Property ;
rdfs:comment "A saref:Property related to some measurements that are characterized by a certain value that is measured in a temperature unit (degree_Celsius, degree_Fahrenheit, or degree_kelvin)" ;
rdfs:label "Temperature"@en .
#################################################################
# Individuals
#################################################################
### http://dbpedia.org/resource/DBM
<http://dbpedia.org/resource/DBM> rdf:type owl:NamedIndividual ;
rdfs:label "decibel-milliwatts"@en .
### http://foodie-cloud.com/model/foodie/code/PropertyTypeValue/electricConductivity
<http://foodie-cloud.com/model/foodie/code/PropertyTypeValue/electricConductivity> rdf:type owl:NamedIndividual ,
skos:Concept ,
saref:Property ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
skos:inScheme "http://foodie-cloud.com/model/foodie/code/PropertyTypeValue" ;
skos:prefLabel "electricConductivity"@en .
### http://foodie-cloud.com/model/foodie/code/PropertyTypeValue/pH
<http://foodie-cloud.com/model/foodie/code/PropertyTypeValue/pH> rdf:type owl:NamedIndividual ,
skos:Concept ,
saref:Property ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
skos:inScheme "http://foodie-cloud.com/model/foodie/code/PropertyTypeValue" ;
skos:prefLabel "pH"@en .
### http://foodie-cloud.com/model/foodie/code/PropertyTypeValue/soilTexture
<http://foodie-cloud.com/model/foodie/code/PropertyTypeValue/soilTexture> rdf:type owl:NamedIndividual ,
skos:Concept ,
saref:Property ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
skos:inScheme "http://foodie-cloud.com/model/foodie/code/PropertyTypeValue" ;
skos:prefLabel "soilTexture"@en .
### http://foodie-cloud.com/model/foodie/code/PropertyTypeValue/soilType
<http://foodie-cloud.com/model/foodie/code/PropertyTypeValue/soilType> rdf:type owl:NamedIndividual ,
skos:Concept ,
saref:Property ;
rdfs:isDefinedBy <http://foodie-cloud.com/model/foodie> ;
skos:inScheme "http://foodie-cloud.com/model/foodie/code/PropertyTypeValue" ;
skos:prefLabel "soilType"@en .
### http://purl.oclc.org/NET/ssnx/cf/cf-feature#air
<http://purl.oclc.org/NET/ssnx/cf/cf-feature#air> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-feature#snowfall
<http://purl.oclc.org/NET/ssnx/cf/cf-feature#snowfall> rdf:type owl:NamedIndividual ,
<http://purl.oclc.org/NET/ssnx/cf/cf-feature#Precipitation> ;
<http://purl.oclc.org/NET/ssnx/ssn#hasProperty> <http://purl.oclc.org/NET/ssnx/cf/cf-property#convective_snowfall_amount> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#convective_snowfall_flux> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#large_scale_snowfall_amount> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#large_scale_snowfall_flux> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_convective_snowfall_rate> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_large_scale_snowfall_rate> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_snowfall_rate> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_convective_snowfall_amount> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_large_scale_snowfall_amount> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_snowfall_amount> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#snowfall_amount> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#snowfall_flux> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#thickness_of_convective_snowfall_amount> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#thickness_of_large_scale_snowfall_amount> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#thickness_of_snowfall_amount> ;
rdfs:label "snowfall" .
### http://purl.oclc.org/NET/ssnx/cf/cf-feature#soil
<http://purl.oclc.org/NET/ssnx/cf/cf-feature#soil> rdf:type owl:NamedIndividual ,
<http://purl.oclc.org/NET/ssnx/cf/cf-feature#Medium> ;
<http://purl.oclc.org/NET/ssnx/ssn#hasProperty> <http://purl.oclc.org/NET/ssnx/cf/cf-property#downward_heat_flux_in_soil> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_soil_moisture_content> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#mass_concentration_of_condensed_water_in_soil> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#soil_albedo> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#soil_carbon_content> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#soil_frozen_water_content> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#soil_hydraulic_conductivity_at_saturation> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#soil_moisture_content_at_field_capacity> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#soil_porosity> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#soil_suction_at_saturation> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#soil_temperature> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#soil_thermal_capacity> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#soil_thermal_conductivity> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#volume_fraction_of_clay_in_soil> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#volume_fraction_of_condensed_water_in_soil> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#volume_fraction_of_condensed_water_in_soil_at_critical_point> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#volume_fraction_of_condensed_water_in_soil_at_field_capacity> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#volume_fraction_of_condensed_water_in_soil_at_wilting_point> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#volume_fraction_of_frozen_water_in_soil> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#volume_fraction_of_sand_in_soil> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#volume_fraction_of_silt_in_soil> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#water_evaporation_flux_from_soil> ;
rdfs:label "soil" .
### http://purl.oclc.org/NET/ssnx/cf/cf-feature#soil_layer
<http://purl.oclc.org/NET/ssnx/cf/cf-feature#soil_layer> rdf:type owl:NamedIndividual ,
<http://purl.oclc.org/NET/ssnx/cf/cf-feature#Layer> ;
<http://purl.oclc.org/NET/ssnx/ssn#hasProperty> <http://purl.oclc.org/NET/ssnx/cf/cf-property#frozen_water_content_of_soil_layer> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#liquid_water_content_of_soil_layer> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_frozen_water_content_of_soil_layer> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_moisture_content_of_soil_layer> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#moisture_content_of_soil_layer> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#moisture_content_of_soil_layer_at_field_capacity> ;
rdfs:label "soil layer" .
### http://purl.oclc.org/NET/ssnx/cf/cf-feature#soil_pores
<http://purl.oclc.org/NET/ssnx/cf/cf-feature#soil_pores> rdf:type owl:NamedIndividual ,
<http://purl.oclc.org/NET/ssnx/cf/cf-feature#Medium> ;
<http://purl.oclc.org/NET/ssnx/ssn#hasProperty> <http://purl.oclc.org/NET/ssnx/cf/cf-property#volume_fraction_of_condensed_water_in_soil_pores> ;
rdfs:label "soil pores" .
### http://purl.oclc.org/NET/ssnx/cf/cf-feature#vegetation
<http://purl.oclc.org/NET/ssnx/cf/cf-feature#vegetation> rdf:type owl:NamedIndividual ,
<http://purl.oclc.org/NET/ssnx/cf/cf-feature#Layer> ;
<http://purl.oclc.org/NET/ssnx/ssn#hasProperty> <http://purl.oclc.org/NET/ssnx/cf/cf-property#vegetation_area_fraction> ,
<http://purl.oclc.org/NET/ssnx/cf/cf-property#vegetation_carbon_content> ;
rdfs:label "vegetation" .
### http://purl.oclc.org/NET/ssnx/cf/cf-feature#water
<http://purl.oclc.org/NET/ssnx/cf/cf-feature#water> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#air_density
<http://purl.oclc.org/NET/ssnx/cf/cf-property#air_density> rdf:type owl:NamedIndividual ,
<http://purl.oclc.org/NET/ssnx/qu/dim#Density> .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#atmosphere_mass_content_of_carbon_dioxide
<http://purl.oclc.org/NET/ssnx/cf/cf-property#atmosphere_mass_content_of_carbon_dioxide> rdf:type owl:NamedIndividual ,
<http://purl.oclc.org/NET/ssnx/qu/dim#SurfaceDensity> .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#atmosphere_mass_content_of_carbon_monoxide
<http://purl.oclc.org/NET/ssnx/cf/cf-property#atmosphere_mass_content_of_carbon_monoxide> rdf:type owl:NamedIndividual ,
<http://purl.oclc.org/NET/ssnx/qu/dim#SurfaceDensity> .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#atmosphere_water_vapor_content
<http://purl.oclc.org/NET/ssnx/cf/cf-property#atmosphere_water_vapor_content> rdf:type owl:NamedIndividual ,
<http://purl.oclc.org/NET/ssnx/qu/dim#SurfaceDensity> .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#convective_snowfall_amount
<http://purl.oclc.org/NET/ssnx/cf/cf-property#convective_snowfall_amount> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#convective_snowfall_flux
<http://purl.oclc.org/NET/ssnx/cf/cf-property#convective_snowfall_flux> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#downward_heat_flux_in_soil
<http://purl.oclc.org/NET/ssnx/cf/cf-property#downward_heat_flux_in_soil> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#frozen_water_content_of_soil_layer
<http://purl.oclc.org/NET/ssnx/cf/cf-property#frozen_water_content_of_soil_layer> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#large_scale_snowfall_amount
<http://purl.oclc.org/NET/ssnx/cf/cf-property#large_scale_snowfall_amount> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#large_scale_snowfall_flux
<http://purl.oclc.org/NET/ssnx/cf/cf-property#large_scale_snowfall_flux> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#liquid_water_content_of_soil_layer
<http://purl.oclc.org/NET/ssnx/cf/cf-property#liquid_water_content_of_soil_layer> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_convective_snowfall_rate
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_convective_snowfall_rate> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_large_scale_snowfall_rate
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_large_scale_snowfall_rate> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_snowfall_rate
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_snowfall_rate> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_convective_snowfall_amount
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_convective_snowfall_amount> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_frozen_water_content_of_soil_layer
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_frozen_water_content_of_soil_layer> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_large_scale_snowfall_amount
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_large_scale_snowfall_amount> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_moisture_content_of_soil_layer
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_moisture_content_of_soil_layer> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_snowfall_amount
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_snowfall_amount> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_soil_moisture_content
<http://purl.oclc.org/NET/ssnx/cf/cf-property#lwe_thickness_of_soil_moisture_content> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#mass_concentration_of_condensed_water_in_soil
<http://purl.oclc.org/NET/ssnx/cf/cf-property#mass_concentration_of_condensed_water_in_soil> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#moisture_content_of_soil_layer
<http://purl.oclc.org/NET/ssnx/cf/cf-property#moisture_content_of_soil_layer> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#moisture_content_of_soil_layer_at_field_capacity
<http://purl.oclc.org/NET/ssnx/cf/cf-property#moisture_content_of_soil_layer_at_field_capacity> rdf:type owl:NamedIndividual .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#snow_density
<http://purl.oclc.org/NET/ssnx/cf/cf-property#snow_density> rdf:type owl:NamedIndividual ,
<http://purl.oclc.org/NET/ssnx/qu/dim#Density> ;
<http://purl.oclc.org/NET/ssnx/qu/qu#generalQuantityKind> <http://purl.oclc.org/NET/ssnx/qu/quantity#density> ;
<http://purl.oclc.org/NET/ssnx/qu/qu#propertyType> <http://purl.oclc.org/NET/ssnx/qu/quantity#scalar> ;
<http://purl.org/dc/elements/1.1/source> "Climate and Forecast (CF)" ;
rdfs:label "snow density" .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#snow_grain_size
<http://purl.oclc.org/NET/ssnx/cf/cf-property#snow_grain_size> rdf:type owl:NamedIndividual ,
<http://purl.oclc.org/NET/ssnx/qu/dim#Distance> ;
<http://purl.oclc.org/NET/ssnx/qu/qu#generalQuantityKind> <http://purl.oclc.org/NET/ssnx/qu/quantity#distance> ;
<http://purl.oclc.org/NET/ssnx/qu/qu#propertyType> <http://purl.oclc.org/NET/ssnx/qu/quantity#scalar> ;
<http://purl.org/dc/elements/1.1/source> "Climate and Forecast (CF)" ;
rdfs:label "snow grain size" .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#snow_soot_content
<http://purl.oclc.org/NET/ssnx/cf/cf-property#snow_soot_content> rdf:type owl:NamedIndividual ,
<http://purl.oclc.org/NET/ssnx/qu/dim#SurfaceDensity> ;
<http://purl.oclc.org/NET/ssnx/qu/qu#generalQuantityKind> <http://purl.oclc.org/NET/ssnx/qu/quantity#surfaceDensity> ;
<http://purl.org/dc/elements/1.1/source> "Climate and Forecast (CF)" ;
rdfs:comment "\"Content\" indicates a quantity per unit area." ;
rdfs:label "snow soot content" .
### http://purl.oclc.org/NET/ssnx/cf/cf-property#snow_temperature
<http://purl.oclc.org/NET/ssnx/cf/cf-property#snow_temperature> rdf:type owl:NamedIndividual ,
<http://purl.oclc.org/NET/ssnx/qu/dim#Temperature> ;
<http://purl.oclc.org/NET/ssnx/qu/qu#generalQuantityKind> <http://purl.oclc.org/NET/ssnx/qu/quantity#temperature> ;