-
Notifications
You must be signed in to change notification settings - Fork 1
/
ontology.rdf
1942 lines (1406 loc) · 111 KB
/
ontology.rdf
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
<?xml version="1.0"?>
<rdf:RDF xmlns="http://ns.inria.fr/meteo/ontology#"
xml:base="http://ns.inria.fr/meteo/ontology"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:ssn="http://www.w3.org/ns/ssn/"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:qudt="http://qudt.org/schema/qudt/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:schema="http://schema.org/"
xmlns:property="http://ns.inria.fr/meteo/ontology/property/">
<owl:Ontology rdf:about="http://ns.inria.fr/meteo/ontology">
<owl:imports rdf:resource="http://www.w3.org/2006/time#2016"/>
<owl:imports rdf:resource="http://www.w3.org/ns/sosa/"/>
<owl:imports rdf:resource="http://www.w3.org/ns/ssn/"/>
<terms:title xml:lang="en">WeKG Ontology and Vocabulary</terms:title>
<rdfs:comment xml:lang="en">The WeKG ontology is a modular ontology that re-uses and extends standard ontologies, such as GeoSPARQL ontology for spatial features, the Time ontology for temporal entities, the Sensor, Observation, Sample, and Actuator (SOSA) and Semantic Sensor Network (SSN) ontologies for sensors and observations. Individuals of weo:WeatherProperty and weo:MeteorologicalFeature classes are declared in a separate namespace as skos:Concept.
The WeKG ontology and vocabulary are generic enough to be adopted and extended by meteorological data providers to publish and integrate their sources while complying with Linked Data principles.</rdfs:comment>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/elements/1.1/source -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/source"/>
<!-- http://qudt.org/schema/qudt/plainTextDescription -->
<owl:AnnotationProperty rdf:about="http://qudt.org/schema/qudt/plainTextDescription"/>
<!-- http://qudt.org/schema/qudt/ucumCode -->
<owl:AnnotationProperty rdf:about="http://qudt.org/schema/qudt/ucumCode"/>
<!-- http://www.w3.org/2004/02/skos/core#altLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#altLabel"/>
<!-- http://www.w3.org/2004/02/skos/core#broader -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#broader"/>
<!-- http://www.w3.org/2004/02/skos/core#exactMatch -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#exactMatch"/>
<!-- http://www.w3.org/2004/02/skos/core#prefLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#prefLabel"/>
<!-- http://www.w3.org/2004/02/skos/core#related -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#related"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://qudt.org/schema/qudt/UCUMcs -->
<rdfs:Datatype rdf:about="http://qudt.org/schema/qudt/UCUMcs"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://ns.inria.fr/meteo/ontology/madeByStation -->
<owl:ObjectProperty rdf:about="http://ns.inria.fr/meteo/ontology/madeByStation">
<rdfs:domain>
<owl:Restriction>
<owl:onProperty rdf:resource="http://ns.inria.fr/meteo/ontology/madeByStation"/>
<owl:minQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minQualifiedCardinality>
<owl:onClass rdf:resource="http://ns.inria.fr/meteo/ontology/MeteorologicalObservation"/>
</owl:Restriction>
</rdfs:domain>
<rdfs:range>
<owl:Restriction>
<owl:onProperty rdf:resource="http://ns.inria.fr/meteo/ontology/madeByStation"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="http://ns.inria.fr/meteo/ontology/WeatherStation"/>
</owl:Restriction>
</rdfs:range>
<rdfs:label xml:lang="en">Made By Station</rdfs:label>
</owl:ObjectProperty>
<!-- http://ns.inria.fr/meteo/ontology/property/applicableWMOcode -->
<owl:ObjectProperty rdf:about="http://ns.inria.fr/meteo/ontology/property/applicableWMOcode"/>
<!-- http://qudt.org/schema/qudt/applicableUnit -->
<owl:ObjectProperty rdf:about="http://qudt.org/schema/qudt/applicableUnit"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://ns.inria.fr/meteo/ontology/property/hasAbbreviation -->
<owl:DatatypeProperty rdf:about="http://ns.inria.fr/meteo/ontology/property/hasAbbreviation">
<rdfs:label xml:lang="en">has Abbreviation</rdfs:label>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://ns.inria.fr/meteo/ontology#agricultural_meteorological_station -->
<owl:Class rdf:about="http://ns.inria.fr/meteo/ontology#agricultural_meteorological_station">
<rdfs:subClassOf rdf:resource="http://ns.inria.fr/meteo/ontology/WeatherStation"/>
<rdfs:label xml:lang="en">agricultural meteorological station</rdfs:label>
<rdfs:label xml:lang="fr">station de meteorologie agricole</rdfs:label>
<skos:definition xml:lang="en">A station that provides meteorological data for agricultural and/or biological purposes and makes other meteorological observations under the programmes of Agrometeorological Research Centres and other relevant organizations.</skos:definition>
<skos:definition xml:lang="fr">Station qui fournit des données météorologiques à des fins agricoles et/ou biologiques et qui effectue d'autres observations météorologiques au titre des programmes des centres de recherche en météorologie agricole et d'autres organisations intéressées.</skos:definition>
</owl:Class>
<!-- http://ns.inria.fr/meteo/ontology/AgroClimaticIndicator -->
<owl:Class rdf:about="http://ns.inria.fr/meteo/ontology/AgroClimaticIndicator">
<rdfs:label xml:lang="en">Agroclimatic index</rdfs:label>
<rdfs:label xml:lang="fr">indice agroclimatique</rdfs:label>
<skos:definition xml:lang="en">An index relating some particular agricultural aspect or operation with one or more elements of the local climate.</skos:definition>
<skos:definition xml:lang="fr">Indice reliant un aspect particulier ou une certaine opération en agriculture a un ou plusieurs éléments du climat local.</skos:definition>
</owl:Class>
<!-- http://ns.inria.fr/meteo/ontology/Interval10m -->
<owl:Class rdf:about="http://ns.inria.fr/meteo/ontology/Interval10m">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Interval"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hasDuration"/>
<owl:allValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Duration"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#unitType"/>
<owl:hasValue rdf:resource="http://www.w3.org/2006/time#unitMinute"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#numericDuration"/>
<owl:hasValue rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">10.0</owl:hasValue>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:label xml:lang="en">10-minute interval</rdfs:label>
<rdfs:label xml:lang="fr">Intervalle de 10 minutes</rdfs:label>
</owl:Class>
<!-- http://ns.inria.fr/meteo/ontology/Interval12h -->
<owl:Class rdf:about="http://ns.inria.fr/meteo/ontology/Interval12h">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Interval"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hasDuration"/>
<owl:allValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Duration"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#unitType"/>
<owl:hasValue rdf:resource="http://www.w3.org/2006/time#unitHour"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#numericDuration"/>
<owl:hasValue rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">12.0</owl:hasValue>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Interval"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hasDuration"/>
<owl:allValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Duration"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hours"/>
<owl:hasValue rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">12.0</owl:hasValue>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:label xml:lang="en">12-hours interval</rdfs:label>
<rdfs:label xml:lang="fr">Intervalle de 12 heures</rdfs:label>
</owl:Class>
<!-- http://ns.inria.fr/meteo/ontology/Interval18h -->
<owl:Class rdf:about="http://ns.inria.fr/meteo/ontology/Interval18h">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Interval"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hasDuration"/>
<owl:allValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Duration"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#unitType"/>
<owl:hasValue rdf:resource="http://www.w3.org/2006/time#unitHour"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#numericDuration"/>
<owl:hasValue rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">18.0</owl:hasValue>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Interval"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hasDuration"/>
<owl:allValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Duration"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hours"/>
<owl:hasValue rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">18.0</owl:hasValue>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:label xml:lang="en">18-hours interval</rdfs:label>
<rdfs:label xml:lang="fr">Intervalle de 18 heures</rdfs:label>
</owl:Class>
<!-- http://ns.inria.fr/meteo/ontology/Interval24h -->
<owl:Class rdf:about="http://ns.inria.fr/meteo/ontology/Interval24h">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Interval"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hasDuration"/>
<owl:allValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Duration"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#unitType"/>
<owl:hasValue rdf:resource="http://www.w3.org/2006/time#unitHour"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#numericDuration"/>
<owl:hasValue rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">24.0</owl:hasValue>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Interval"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hasDuration"/>
<owl:allValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Duration"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hours"/>
<owl:hasValue rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">24.0</owl:hasValue>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:label xml:lang="en">24-hours interval</rdfs:label>
<rdfs:label xml:lang="fr">Intervalle de 24 heures</rdfs:label>
</owl:Class>
<!-- http://ns.inria.fr/meteo/ontology/Interval3h -->
<owl:Class rdf:about="http://ns.inria.fr/meteo/ontology/Interval3h">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Interval"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hasDuration"/>
<owl:allValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Duration"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#unitType"/>
<owl:hasValue rdf:resource="http://www.w3.org/2006/time#unitHour"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#numericDuration"/>
<owl:hasValue rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">3.0</owl:hasValue>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Interval"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hasDuration"/>
<owl:allValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Duration"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hours"/>
<owl:hasValue rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">3.0</owl:hasValue>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:label xml:lang="en">3-hours interval</rdfs:label>
<rdfs:label xml:lang="fr">Intervalle de 3 heures</rdfs:label>
</owl:Class>
<!-- http://ns.inria.fr/meteo/ontology/Interval6h -->
<owl:Class rdf:about="http://ns.inria.fr/meteo/ontology/Interval6h">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Interval"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hasDuration"/>
<owl:allValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Duration"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#unitType"/>
<owl:hasValue rdf:resource="http://www.w3.org/2006/time#unitHour"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#numericDuration"/>
<owl:hasValue rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">6.0</owl:hasValue>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Interval"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hasDuration"/>
<owl:allValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Duration"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hours"/>
<owl:hasValue rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">6.0</owl:hasValue>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:label xml:lang="en">6-hours interval</rdfs:label>
<rdfs:label xml:lang="fr">Intervalle de 6 heures</rdfs:label>
</owl:Class>
<!-- http://ns.inria.fr/meteo/ontology/Interval9h -->
<owl:Class rdf:about="http://ns.inria.fr/meteo/ontology/Interval9h">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Interval"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hasDuration"/>
<owl:allValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Duration"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#unitType"/>
<owl:hasValue rdf:resource="http://www.w3.org/2006/time#unitHour"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#numericDuration"/>
<owl:hasValue rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">9.0</owl:hasValue>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Interval"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hasDuration"/>
<owl:allValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Duration"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/2006/time#hours"/>
<owl:hasValue rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">9.0</owl:hasValue>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:label xml:lang="en">9-hours interval</rdfs:label>
<rdfs:label xml:lang="fr">Intervalle de 9 heures</rdfs:label>
</owl:Class>
<!-- http://ns.inria.fr/meteo/ontology/MeteorologicalFeature -->
<owl:Class rdf:about="http://ns.inria.fr/meteo/ontology/MeteorologicalFeature">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/sosa/FeatureOfInterest"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/ns/ssn/hasProperty"/>
<owl:allValuesFrom rdf:resource="http://ns.inria.fr/meteo/ontology/WeatherProperty"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/ns/ssn/hasProperty"/>
<owl:minQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minQualifiedCardinality>
<owl:onClass rdf:resource="http://ns.inria.fr/meteo/ontology/WeatherProperty"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:comment xml:lang="en">For each Meteorological feature such as wind or precipitations, at least one property (precipitation amount) need to be defined</rdfs:comment>
<rdfs:label xml:lang="en">Meteorological Feature</rdfs:label>
<skos:definition xml:lang="en">The meteorological phenomenon whose property is being measured or observed in the course of an observation.</skos:definition>
</owl:Class>
<!-- http://ns.inria.fr/meteo/ontology/MeteorologicalObservation -->
<owl:Class rdf:about="http://ns.inria.fr/meteo/ontology/MeteorologicalObservation">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/sosa/Observation"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/ns/sosa/hasFeatureOfInterest"/>
<owl:allValuesFrom rdf:resource="http://ns.inria.fr/meteo/ontology/MeteorologicalFeature"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/ns/sosa/observedProperty"/>
<owl:allValuesFrom rdf:resource="http://ns.inria.fr/meteo/ontology/WeatherProperty"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/ns/sosa/hasFeatureOfInterest"/>
<owl:minQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minQualifiedCardinality>
<owl:onClass rdf:resource="http://ns.inria.fr/meteo/ontology/MeteorologicalFeature"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/ns/sosa/observedProperty"/>
<owl:minQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minQualifiedCardinality>
<owl:onClass rdf:resource="http://ns.inria.fr/meteo/ontology/WeatherProperty"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:comment xml:lang="en">A meterological observation is an observation which is linked to exactly one weather property and one meteorological feature.</rdfs:comment>
<rdfs:label xml:lang="en">Meteorological Observation</rdfs:label>
<rdfs:label xml:lang="fr">Observation météorologique</rdfs:label>
</owl:Class>
<!-- http://ns.inria.fr/meteo/ontology/WeatherProperty -->
<owl:Class rdf:about="http://ns.inria.fr/meteo/ontology/WeatherProperty">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/sosa/ObservableProperty"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/ns/ssn/isPropertyOf"/>
<owl:allValuesFrom rdf:resource="http://ns.inria.fr/meteo/ontology/MeteorologicalFeature"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.w3.org/ns/ssn/isPropertyOf"/>
<owl:minQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minQualifiedCardinality>
<owl:onClass rdf:resource="http://ns.inria.fr/meteo/ontology/MeteorologicalFeature"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:label xml:lang="en">Weather Property</rdfs:label>
</owl:Class>
<!-- http://ns.inria.fr/meteo/ontology/WeatherStation -->
<owl:Class rdf:about="http://ns.inria.fr/meteo/ontology/WeatherStation">
<rdfs:subClassOf rdf:resource="http://www.opengis.net/ont/geosparql#Feature"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/sosa/Platform"/>
<rdfs:comment xml:lang="en">Weather Station</rdfs:comment>
<rdfs:label xml:lang="fr">Station Météorologique</rdfs:label>
<rdfs:label xml:lang="en">Weather Station</rdfs:label>
</owl:Class>
<!-- http://qudt.org/schema/qudt/QuantityKind -->
<owl:Class rdf:about="http://qudt.org/schema/qudt/QuantityKind">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="http://qudt.org/schema/qudt/applicableUnit"/>
<owl:someValuesFrom rdf:resource="http://qudt.org/schema/qudt/Unit"/>
</owl:Restriction>
</owl:equivalentClass>
</owl:Class>
<!-- http://qudt.org/schema/qudt/Unit -->
<owl:Class rdf:about="http://qudt.org/schema/qudt/Unit">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty>
<rdf:Description>
<owl:inverseOf rdf:resource="http://qudt.org/schema/qudt/applicableUnit"/>
</rdf:Description>
</owl:onProperty>
<owl:someValuesFrom rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</owl:Restriction>
</owl:equivalentClass>
</owl:Class>
<!-- http://www.opengis.net/ont/geosparql#Feature -->
<owl:Class rdf:about="http://www.opengis.net/ont/geosparql#Feature"/>
<!-- http://www.w3.org/2004/02/skos/core#Concept -->
<owl:Class rdf:about="http://www.w3.org/2004/02/skos/core#Concept"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Individuals
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://ns.inria.fr/meteo/ontology/mean_daily_maximum_temperature_for_a_month -->
<owl:NamedIndividual rdf:about="http://ns.inria.fr/meteo/ontology/mean_daily_maximum_temperature_for_a_month">
<rdf:type rdf:resource="http://ns.inria.fr/meteo/ontology/AgroClimaticIndicator"/>
<qudt:applicableUnit rdf:resource="http://qudt.org/vocab/unit/DEG_C"/>
<qudt:applicableUnit rdf:resource="http://qudt.org/vocab/unit/K"/>
<dc:source rdf:resource="https://library.wmo.int/doc_num.php?explnum_id=4712"/>
<skos:definition xml:lang="en">Mean of the daily maximum temperatures observed during a specific calendar month, either in a specific year or over a specific period of years.</skos:definition>
<skos:definition xml:lang="fr">Moyenne des températures maximales quotidiennes observées au cours d'un mois déterminé, pendant une année déterminée ou un nombre d'années déterminé.</skos:definition>
<skos:prefLabel xml:lang="en">Mean daily maximum temperature for a month</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Temperature maximale quotidienne moyenne mensuelle</skos:prefLabel>
</owl:NamedIndividual>
<!-- http://ns.inria.fr/meteo/ontology/mean_daily_minimum_temperature_for_a_month -->
<owl:NamedIndividual rdf:about="http://ns.inria.fr/meteo/ontology/mean_daily_minimum_temperature_for_a_month">
<rdf:type rdf:resource="http://ns.inria.fr/meteo/ontology/AgroClimaticIndicator"/>
<qudt:applicableUnit rdf:resource="http://qudt.org/vocab/unit/DEG_C"/>
<qudt:applicableUnit rdf:resource="http://qudt.org/vocab/unit/K"/>
<dc:source rdf:resource="https://library.wmo.int/doc_num.php?explnum_id=4712"/>
<rdfs:label xml:lang="en">Mean daily minimum temperature for a month</rdfs:label>
<rdfs:label xml:lang="fr">Température minimale quotidienne moyenne mensuelle</rdfs:label>
<skos:broader rdf:resource="http://ns.inria.fr/meteo/vocab/weatherproperty/minAirTemperature"/>
<skos:definition xml:lang="en">Mean of the daily minimum temperatures observed during a specific calendar month, either in a specific year or over a specific period of years.</skos:definition>
<skos:definition xml:lang="en">Moyenne des températures minimales quotidiennes observées au cours d'un mois déterminé, pendant une année déterminée ou un nombre d'années déterminé.</skos:definition>
</owl:NamedIndividual>
<!-- http://ns.inria.fr/meteo/vocab/agroclimatic/airTemperatureRange -->
<owl:NamedIndividual rdf:about="http://ns.inria.fr/meteo/vocab/agroclimatic/airTemperatureRange">
<rdf:type rdf:resource="http://ns.inria.fr/meteo/ontology/AgroClimaticIndicator"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:altLabel xml:lang="fr">Amplitude thermique</skos:altLabel>
<skos:broader rdf:resource="http://ns.inria.fr/meteo/vocab/weatherproperty/airTemperature"/>
<skos:definition xml:lang="en">Difference between the maximum and minimum temperatures, or betweem the highest and lowest mean temperatures, during a specific time interval.</skos:definition>
<skos:definition xml:lang="fr">Différence entre la température et minimale, ou entre la température moyenne la plus élevée et la plus basse, au cours d'un intervalle de temps déterminé</skos:definition>
<skos:prefLabel xml:lang="en">Temperature range</skos:prefLabel>
<skos:prefLabel xml:lang="fr">amplitude la temperature</skos:prefLabel>
</owl:NamedIndividual>
<!-- http://ns.inria.fr/meteo/vocab/agroclimatic/annualRangeOfAirTemperature -->
<owl:NamedIndividual rdf:about="http://ns.inria.fr/meteo/vocab/agroclimatic/annualRangeOfAirTemperature">
<rdf:type rdf:resource="http://ns.inria.fr/meteo/ontology/AgroClimaticIndicator"/>
<rdf:type rdf:resource="http://qudt.org/schema/qudt/QuantityKind"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<qudt:applicableUnit rdf:resource="http://qudt.org/vocab/unit/DEG_C"/>
<qudt:applicableUnit rdf:resource="http://qudt.org/vocab/unit/K"/>
<dc:source rdf:resource="https://library.wmo.int/doc_num.php?explnum_id=4712"/>
<skos:broader rdf:resource="http://ns.inria.fr/meteo/vocab/agroclimatic/airTemperatureRange"/>
<skos:definition xml:lang="en">Difference between the highest and lowest temperatures during a specific year</skos:definition>
<skos:definition xml:lang="fr">Différence entre la température la plus elevée et la plus basse au cours d'une année determinée</skos:definition>
<skos:prefLabel xml:lang="en">Absolute annual range of temperature</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Amplitude annuelle absolue de la température</skos:prefLabel>
<skos:related rdf:resource="http://ns.inria.fr/meteo/vocab/weatherproperty/minAirTemperature"/>
</owl:NamedIndividual>
<!-- http://ns.inria.fr/meteo/vocab/agroclimatic/dailyRangeOfAirTemperature -->
<owl:NamedIndividual rdf:about="http://ns.inria.fr/meteo/vocab/agroclimatic/dailyRangeOfAirTemperature">
<rdf:type rdf:resource="http://ns.inria.fr/meteo/ontology/AgroClimaticIndicator"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:altLabel xml:lang="fr">Amplitude thermique journalière</skos:altLabel>
<skos:altLabel xml:lang="en">Daily thermal amplitude</skos:altLabel>
<skos:broader rdf:resource="http://ns.inria.fr/meteo/vocab/agroclimatic/airTemperatureRange"/>
<skos:definition xml:lang="fr">Amplitude de la température au cours d'un intervalle continu de temps de 24 heures</skos:definition>
<skos:definition xml:lang="en">Temperature range during a continuous time interval of 24 hours.</skos:definition>
<skos:prefLabel xml:lang="fr">Amplitude quotidienne de la température</skos:prefLabel>
<skos:prefLabel xml:lang="en">Daily range of temperature</skos:prefLabel>
<skos:related rdf:resource="http://ns.inria.fr/meteo/vocab/weatherproperty/maxDailyTemperature"/>
</owl:NamedIndividual>
<!-- http://ns.inria.fr/meteo/vocab/agroclimatic/freezingIndex -->
<owl:NamedIndividual rdf:about="http://ns.inria.fr/meteo/vocab/agroclimatic/freezingIndex">
<rdf:type rdf:resource="http://ns.inria.fr/meteo/ontology/AgroClimaticIndicator"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<dc:source rdf:resource="https://library.wmo.int/doc_num.php?explnum_id=4712"/>
<skos:broader rdf:resource="http://ns.inria.fr/meteo/vocab/weatherproperty/airTemperature"/>
<skos:definition xml:lang="en">A measure of the combined duration and magnitude of
below freezing temperatures occurring during a specific
freezing season and calculated by accumulating the
number of degree-days below 0°C and subtracting from
that total the number of degree-days above 0°C over the
same period.</skos:definition>
<skos:definition xml:lang="fr">Mesure combinée durée-amplitude des températures
inférieures a C durant une saison de gel déterminée.
L'indice est calculé en additionnant le nombre de degrés-jours inférieurs a 0°C et en soustrayant du total le nombre
de degrés-jours supérieurs a 0°C au cours de la meme
période.</skos:definition>
<skos:prefLabel xml:lang="en">Freezing index</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Indice de gel</skos:prefLabel>
</owl:NamedIndividual>
<!-- http://ns.inria.fr/meteo/vocab/agroclimatic/frostDay -->
<owl:NamedIndividual rdf:about="http://ns.inria.fr/meteo/vocab/agroclimatic/frostDay">
<rdf:type rdf:resource="http://ns.inria.fr/meteo/ontology/AgroClimaticIndicator"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<dc:source rdf:resource="https://library.wmo.int/doc_num.php?explnum_id=4712"/>
<skos:altLabel xml:lang="fr">jour de gelée</skos:altLabel>
<skos:broader rdf:resource="http://ns.inria.fr/meteo/vocab/weatherproperty/airTemperature"/>
<skos:definition xml:lang="en">Day during which the minimum temperature is less than 0°C (or by convention is equal or less than 0°C).</skos:definition>
<skos:definition xml:lang="fr">Jour au cours duquel la température minimale est inférieure a 0°C (ou, par convention, inférieure ou égale a 0°C)</skos:definition>
<skos:prefLabel xml:lang="en">Frost day</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Jour de gel</skos:prefLabel>
</owl:NamedIndividual>
<!-- http://ns.inria.fr/meteo/vocab/agroclimatic/frostDays -->
<owl:NamedIndividual rdf:about="http://ns.inria.fr/meteo/vocab/agroclimatic/frostDays">
<rdf:type rdf:resource="http://ns.inria.fr/meteo/ontology/AgroClimaticIndicator"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:altLabel xml:lang="fr">Nombre de jours de gelée</skos:altLabel>
<skos:broader rdf:resource="http://ns.inria.fr/meteo/vocab/agroclimatic/frostDay"/>
<skos:definition xml:lang="fr">Nombre de jours au cours duquel la température minimale est inférieure 0°C during a period of time</skos:definition>
<skos:definition xml:lang="en">Number of days during which the minimum temperature is less than 0°C during a period of time</skos:definition>
<skos:prefLabel xml:lang="fr">Nombre de jours de gel par phase</skos:prefLabel>
<skos:prefLabel xml:lang="en">Number of frost days per phase</skos:prefLabel>
</owl:NamedIndividual>
<!-- http://ns.inria.fr/meteo/vocab/agroclimatic/growingDegreeDay -->
<owl:NamedIndividual rdf:about="http://ns.inria.fr/meteo/vocab/agroclimatic/growingDegreeDay">
<rdf:type rdf:resource="http://ns.inria.fr/meteo/ontology/AgroClimaticIndicator"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<dc:source rdf:resource="https://library.wmo.int/doc_num.php?explnum_id=4712"/>
<skos:broader rdf:resource="http://ns.inria.fr/meteo/vocab/weatherproperty/airTemperature"/>
<skos:definition xml:lang="en">Algebraic difference, expressed in degrees, between the mean temperature of a particular day and a reference temperature. For a specific period (months, years), the number of degree-days is the algebraic sum of the degreedays for all days in the period.</skos:definition>
<skos:definition xml:lang="fr">Différence algébrique, exprimée en degrés, entre la température moyenne d'un jour donné et une température de reference. Pour une période donnée
(mois, années), le nombre de degrés-jours est la somme algébrique des degrés-jours de chacun des jours de la période.</skos:definition>
<skos:prefLabel xml:lang="fr">Degré-jour de croissance</skos:prefLabel>
<skos:prefLabel xml:lang="en">Growing degree-day</skos:prefLabel>
</owl:NamedIndividual>
<!-- http://ns.inria.fr/meteo/vocab/agroclimatic/growingSeason -->
<owl:NamedIndividual rdf:about="http://ns.inria.fr/meteo/vocab/agroclimatic/growingSeason">
<rdf:type rdf:resource="http://ns.inria.fr/meteo/ontology/AgroClimaticIndicator"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<dc:source rdf:resource="https://library.wmo.int/doc_num.php?explnum_id=4712"/>
<skos:altLabel xml:lang="fr">Saison de Végétation</skos:altLabel>
<skos:altLabel xml:lang="en">Vegetation Season</skos:altLabel>
<skos:definition xml:lang="fr">Saison pendant laquelle les conditions meteorologiques sont favorables a la croissance des plantes.</skos:definition>
<skos:definition xml:lang="en">Season during which meteorological conditions are favourable to the growth of plants.</skos:definition>
<skos:prefLabel xml:lang="en">Growing Season</skos:prefLabel>
<skos:prefLabel xml:lang="fr">Saison de Croissance</skos:prefLabel>
</owl:NamedIndividual>
<!-- http://ns.inria.fr/meteo/vocab/agroclimatic/growingSeasonMaxTemperature -->
<owl:NamedIndividual rdf:about="http://ns.inria.fr/meteo/vocab/agroclimatic/growingSeasonMaxTemperature">
<rdf:type rdf:resource="http://ns.inria.fr/meteo/ontology/AgroClimaticIndicator"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="en">Daily maximum temperature averaged over growing season.</skos:definition>
<skos:prefLabel xml:lang="en">Growing season maximal Temperature</skos:prefLabel>
</owl:NamedIndividual>
<!-- http://ns.inria.fr/meteo/vocab/agroclimatic/growingSeasonMinTemperature -->
<owl:NamedIndividual rdf:about="http://ns.inria.fr/meteo/vocab/agroclimatic/growingSeasonMinTemperature">
<rdf:type rdf:resource="http://ns.inria.fr/meteo/ontology/AgroClimaticIndicator"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="http://ns.inria.fr/meteo/vocab/weatherproperty/minDailyTemperature"/>
<skos:definition xml:lang="en">Daily minimum temperature averaged over growing season.</skos:definition>
<skos:prefLabel xml:lang="en">Growing season minimum temperature</skos:prefLabel>
</owl:NamedIndividual>
<!-- http://ns.inria.fr/meteo/vocab/agroclimatic/growingSeasonPrecipitation -->
<owl:NamedIndividual rdf:about="http://ns.inria.fr/meteo/vocab/agroclimatic/growingSeasonPrecipitation">
<rdf:type rdf:resource="http://ns.inria.fr/meteo/ontology/AgroClimaticIndicator"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="http://ns.inria.fr/meteo/vocab/weatherproperty/precipitationAmount"/>
<skos:definition xml:lang="en">Precipitation amount averaged over growing season.</skos:definition>
<skos:prefLabel xml:lang="en">Growing season precipitation</skos:prefLabel>
</owl:NamedIndividual>
<!-- http://ns.inria.fr/meteo/vocab/agroclimatic/hotDays -->
<owl:NamedIndividual rdf:about="http://ns.inria.fr/meteo/vocab/agroclimatic/hotDays">
<rdf:type rdf:resource="http://ns.inria.fr/meteo/ontology/AgroClimaticIndicator"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition xml:lang="fr">Nombre de jours au cours duquel la température maximale est supérieure a 30°C during a period of time</skos:definition>
<skos:definition xml:lang="en">Number of days during which the maximum temperature is greater than 30°C during a period of time</skos:definition>
<skos:prefLabel xml:lang="fr">Nombre de jours de forte chaleur par phase</skos:prefLabel>
<skos:prefLabel xml:lang="en">Number of hot days per phase</skos:prefLabel>
</owl:NamedIndividual>
<!-- http://ns.inria.fr/meteo/vocab/agroclimatic/longestDrySpell -->
<owl:NamedIndividual rdf:about="http://ns.inria.fr/meteo/vocab/agroclimatic/longestDrySpell">
<rdf:type rdf:resource="http://ns.inria.fr/meteo/ontology/AgroClimaticIndicator"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="http://ns.inria.fr/meteo/vocab/weatherproperty/precipitationAmount"/>
<skos:definition xml:lang="en">Maximum number of consecutive days when precipitation < 1mm.</skos:definition>
<skos:prefLabel xml:lang="en">Longest dry spell</skos:prefLabel>
</owl:NamedIndividual>
<!-- http://ns.inria.fr/meteo/vocab/agroclimatic/longestWetSpell -->