-
Notifications
You must be signed in to change notification settings - Fork 0
/
dvo.ttl
1657 lines (1250 loc) · 83 KB
/
dvo.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://www.nobatek.inef4.com/dataview/onto#> .
@prefix dvo: <https://www.nobatek.inef4.com/dataview/onto#> .
@prefix ifc: <https://standards.buildingsmart.org/IFC/DEV/IFC4_1/OWL/#> .
@prefix lca: <http://descartes-core.org/ontologies/lca/1.0/LCAPattern.owl#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sumo: <http://www.ontologyportal.org/SUMO.owl#> .
@prefix citygml: <http://cui.unige.ch/isi/onto/citygml2.0.owl#> .
@prefix semanco: <http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#> .
@prefix insee-geo: <http://rdf.insee.fr/def/geo/insee-geo-onto.ttl#> .
@prefix insee-demo: <http://rdf.insee.fr/def/demo/insee-demo-onto.ttl#> .
@base <https://www.nobatek.inef4.com/dataview/onto> .
<https://www.nobatek.inef4.com/dataview/onto> rdf:type owl:Ontology ;
owl:versionIRI <https://www.nobatek.inef4.com/dataview/onto/0.1.6> ;
<http://purl.org/dc/elements/1.1/contributor> "Ana Roxin" ,
"Christophe Nicolle" ,
"Laboratoire Connaissance et Intelligence Artificielle Distribuées (CIAD)"@fr ,
"Laboratoire d'Informatique de Bourgogne (LIB)"@fr ,
"Nobatek/INEF4, Institut pour la Transition Energétique (ITE)"@fr ,
"SAYENS, SATT, catalyseur d'innovations"@fr ;
<http://purl.org/dc/elements/1.1/description> "DataView Ontology defines core concepts and relations for urban data used by Nobatek/INEF4 tools for environmental and energy assessments such as lifecyle assessments of sustainable territories and decision support evaluations for the design of optimal urban heating networks. It encapsulates common vocabularies among these tools as well as vocabularies from open and public urban data sources."@en ;
<http://purl.org/dc/elements/1.1/title> "DataView Ontology"@en ;
<http://purl.org/dc/terms/created> "2020-01-15" ;
<http://purl.org/dc/terms/creator> "Nathalie Charbel" ;
rdf:value "" ;
owl:versionInfo "0.1.6" ;
dvo:preferredNamespacePrefix "dvo" .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/elements/1.1/contributor
<http://purl.org/dc/elements/1.1/contributor> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/description
<http://purl.org/dc/elements/1.1/description> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/title
<http://purl.org/dc/elements/1.1/title> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/created
<http://purl.org/dc/terms/created> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
<http://purl.org/dc/terms/creator> rdf:type owl:AnnotationProperty .
### http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled
<http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled> rdf:type owl:AnnotationProperty .
### http://www.w3.org/1999/02/22-rdf-syntax-ns#value
rdf:value rdf:type owl:AnnotationProperty .
### https://www.nobatek.inef4.com/dataview/onto#preferredNamespacePrefix
dvo:preferredNamespacePrefix rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### https://www.nobatek.inef4.com/dataview/onto#hasAddress
dvo:hasAddress rdf:type owl:ObjectProperty .
### https://www.nobatek.inef4.com/dataview/onto#hasBuildingUse
dvo:hasBuildingUse rdf:type owl:ObjectProperty .
### https://www.nobatek.inef4.com/dataview/onto#hasConstraints
dvo:hasConstraints rdf:type owl:ObjectProperty .
### https://www.nobatek.inef4.com/dataview/onto#hasConstructionType
dvo:hasConstructionType rdf:type owl:ObjectProperty .
### https://www.nobatek.inef4.com/dataview/onto#hasEnergyCarrier
dvo:hasEnergyCarrier rdf:type owl:ObjectProperty .
### https://www.nobatek.inef4.com/dataview/onto#hasEnergySource
dvo:hasEnergySource rdf:type owl:ObjectProperty .
### https://www.nobatek.inef4.com/dataview/onto#hasGreenSpace
dvo:hasGreenSpace rdf:type owl:ObjectProperty .
### https://www.nobatek.inef4.com/dataview/onto#hasImpact
dvo:hasImpact rdf:type owl:ObjectProperty .
### https://www.nobatek.inef4.com/dataview/onto#hasLandUse
dvo:hasLandUse rdf:type owl:ObjectProperty .
### https://www.nobatek.inef4.com/dataview/onto#hasNumberOfBuildings
dvo:hasNumberOfBuildings rdf:type owl:ObjectProperty .
### https://www.nobatek.inef4.com/dataview/onto#hasNumberOfInhabitants
dvo:hasNumberOfInhabitants rdf:type owl:ObjectProperty .
### https://www.nobatek.inef4.com/dataview/onto#hasParkingSurface
dvo:hasParkingSurface rdf:type owl:ObjectProperty .
### https://www.nobatek.inef4.com/dataview/onto#hasPart
dvo:hasPart rdf:type owl:ObjectProperty ;
owl:inverseOf dvo:isPartOf .
### https://www.nobatek.inef4.com/dataview/onto#hasTargetEnergyPerformance
dvo:hasTargetEnergyPerformance rdf:type owl:ObjectProperty .
### https://www.nobatek.inef4.com/dataview/onto#hasTypology
dvo:hasTypology rdf:type owl:ObjectProperty .
### https://www.nobatek.inef4.com/dataview/onto#hasZoneType
dvo:hasZoneType rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty .
### https://www.nobatek.inef4.com/dataview/onto#isAppliedOn
dvo:isAppliedOn rdf:type owl:ObjectProperty .
### https://www.nobatek.inef4.com/dataview/onto#isPartOf
dvo:isPartOf rdf:type owl:ObjectProperty .
#################################################################
# Data properties
#################################################################
### https://www.nobatek.inef4.com/dataview/onto#addressCode
dvo:addressCode rdf:type owl:DatatypeProperty .
### https://www.nobatek.inef4.com/dataview/onto#addressName
dvo:addressName rdf:type owl:DatatypeProperty .
### https://www.nobatek.inef4.com/dataview/onto#co2Emissions
dvo:co2Emissions rdf:type owl:DatatypeProperty ;
rdfs:comment "en \"Kg/KWh\""@fr .
### https://www.nobatek.inef4.com/dataview/onto#gpsCoordinates
dvo:gpsCoordinates rdf:type owl:DatatypeProperty .
### https://www.nobatek.inef4.com/dataview/onto#length
dvo:length rdf:type owl:DatatypeProperty ;
rdfs:comment "en \"Km\""@fr .
### https://www.nobatek.inef4.com/dataview/onto#power
dvo:power rdf:type owl:DatatypeProperty ;
rdfs:comment "en \"MWh\""@fr .
### https://www.nobatek.inef4.com/dataview/onto#renewableEnergyRate
dvo:renewableEnergyRate rdf:type owl:DatatypeProperty .
### https://www.nobatek.inef4.com/dataview/onto#value
dvo:value rdf:type owl:DatatypeProperty .
#################################################################
# Classes
#################################################################
### http://cui.unige.ch/isi/onto/citygml2.0.owl#Address
citygml:Address rdf:type owl:Class ;
owl:equivalentClass dvo:Address .
### http://cui.unige.ch/isi/onto/citygml2.0.owl#Building
citygml:Building rdf:type owl:Class ;
owl:equivalentClass dvo:Building .
### http://cui.unige.ch/isi/onto/citygml2.0.owl#LandUse
citygml:LandUse rdf:type owl:Class ;
owl:equivalentClass dvo:LandUse .
### http://cui.unige.ch/isi/onto/citygml2.0.owl#Surface
citygml:Surface rdf:type owl:Class ;
owl:equivalentClass dvo:ParkingSpace .
### http://descartes-core.org/ontologies/lca/1.0/LCAPattern.owl#Activity
lca:Activity rdf:type owl:Class .
### http://descartes-core.org/ontologies/lca/1.0/LCAPattern.owl#Flow
lca:Flow rdf:type owl:Class ;
owl:equivalentClass dvo:EnvironmentalImpact .
### http://rdf.insee.fr/def/demo/insee-demo-onto.ttl#PopulationLegale
insee-demo:PopulationLegale rdf:type owl:Class ;
owl:equivalentClass dvo:NumberOfInhabitants .
### http://rdf.insee.fr/def/geo/insee-geo-onto.ttl#Commune
insee-geo:Commune rdf:type owl:Class ;
owl:equivalentClass dvo:City .
### http://rdf.insee.fr/def/geo/insee-geo-onto.ttl#Departement
insee-geo:Departement rdf:type owl:Class ;
owl:equivalentClass dvo:Department .
### http://rdf.insee.fr/def/geo/insee-geo-onto.ttl#IRIS
insee-geo:IRIS rdf:type owl:Class ;
owl:equivalentClass dvo:District .
### http://rdf.insee.fr/def/geo/insee-geo-onto.ttl#Pays
insee-geo:Pays rdf:type owl:Class ;
owl:equivalentClass dvo:Country .
### http://rdf.insee.fr/def/geo/insee-geo-onto.ttl#Region
insee-geo:Region rdf:type owl:Class ;
owl:equivalentClass dvo:Region .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Address
semanco:Address rdf:type owl:Class ;
owl:equivalentClass dvo:Address .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Boiler
semanco:Boiler rdf:type owl:Class .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Bottom_Floor_Type
semanco:Bottom_Floor_Type rdf:type owl:Class ;
owl:equivalentClass dvo:ConstructionType .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Building_Typology
semanco:Building_Typology rdf:type owl:Class ;
owl:equivalentClass dvo:BuildingTypology .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Building_Use
semanco:Building_Use rdf:type owl:Class ;
owl:equivalentClass dvo:BuildingUse .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Carbon_Monoxide
semanco:Carbon_Monoxide rdf:type owl:Class ;
owl:equivalentClass dvo:CarbonFootprint .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Commercial_Building_And_Other_Specialised_Structures
semanco:Commercial_Building_And_Other_Specialised_Structures rdf:type owl:Class ;
owl:equivalentClass dvo:Commercial .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Educational
semanco:Educational rdf:type owl:Class ;
owl:equivalentClass dvo:Education .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Energy_Performance_Indicator
semanco:Energy_Performance_Indicator rdf:type owl:Class ;
owl:equivalentClass dvo:EnergyPerformance .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Energy_Source
semanco:Energy_Source rdf:type owl:Class ;
owl:equivalentClass dvo:EnergySource .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Higher_Education
semanco:Higher_Education rdf:type owl:Class ;
owl:equivalentClass dvo:HigherEducation .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Intermediate_Floor_Type
semanco:Intermediate_Floor_Type rdf:type owl:Class ;
owl:equivalentClass dvo:ConstructionType .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Land
semanco:Land rdf:type owl:Class ;
owl:equivalentClass dvo:Land .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Land_Use_By_Activity
semanco:Land_Use_By_Activity rdf:type owl:Class ;
rdfs:subClassOf dvo:LandUse .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Land_Use_By_Economic_Function
semanco:Land_Use_By_Economic_Function rdf:type owl:Class ;
rdfs:subClassOf dvo:LandUse .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Land_Use_By_Ownership_Constraints
semanco:Land_Use_By_Ownership_Constraints rdf:type owl:Class ;
owl:equivalentClass dvo:LandUseConstraints .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Land_Use_By_Site_Development
semanco:Land_Use_By_Site_Development rdf:type owl:Class ;
rdfs:subClassOf dvo:LandUse .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Land_Use_By_Type_Of_Structure
semanco:Land_Use_By_Type_Of_Structure rdf:type owl:Class ;
rdfs:subClassOf dvo:LandUse .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Not-Renewable_Energy_Source
semanco:Not-Renewable_Energy_Source rdf:type owl:Class ;
owl:equivalentClass dvo:NonRenewableEnergySource .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Population_Size
semanco:Population_Size rdf:type owl:Class ;
owl:equivalentClass dvo:NumberOfInhabitants .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Primary_Education
semanco:Primary_Education rdf:type owl:Class ;
owl:equivalentClass dvo:PrimarySchool .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Renewable_Energy_Source
semanco:Renewable_Energy_Source rdf:type owl:Class ;
owl:equivalentClass dvo:RenewableEnergySource .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#Sports_Facilities
semanco:Sports_Facilities rdf:type owl:Class ;
owl:equivalentClass dvo:SportsAndLeisure .
### http://semanco-tools.eu/ontology-releases/eu/semanco/ontology/SEMANCO/SEMANCO.owl#SurfaceAttribute
semanco:SurfaceAttribute rdf:type owl:Class ;
owl:equivalentClass dvo:ParkingSpace .
### http://www.ontologyportal.org/SUMO.owl#Building
sumo:Building rdf:type owl:Class ;
owl:equivalentClass dvo:Building .
### https://standards.buildingsmart.org/IFC/DEV/IFC4_1/OWL/#IfcAddress
ifc:IfcAddress rdf:type owl:Class ;
owl:equivalentClass dvo:Address .
### https://standards.buildingsmart.org/IFC/DEV/IFC4_1/OWL/#IfcBuilding
ifc:IfcBuilding rdf:type owl:Class ;
owl:equivalentClass dvo:Building .
### https://standards.buildingsmart.org/IFC/DEV/IFC4_1/OWL/#IfcConstructionMaterialResourceType
ifc:IfcConstructionMaterialResourceType rdf:type owl:Class ;
owl:equivalentClass dvo:ConstructionType .
### https://www.nobatek.inef4.com/dataview/onto#Address
dvo:Address rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty dvo:isPartOf ;
owl:allValuesFrom dvo:Address
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:addressName ;
owl:allValuesFrom xsd:string
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:addressCode ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:integer
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:gpsCoordinates ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:string
] ;
rdfs:comment """L'adresse d'un objet urbain ou d'une zone urbaine.
Elle est caractérisée par son nom, son code et ses coordonnées gps.
Elle peut faire partie d'autres addresses."""@fr ,
"""The address of an urban object or urban zone.
It refers to its name, code and gps coordinates.
It can be encapsulated by other addresses as well."""@en ;
rdfs:label "Address"@en ,
"Adresse"@fr .
### https://www.nobatek.inef4.com/dataview/onto#BoilerStation
dvo:BoilerStation rdf:type owl:Class ;
rdfs:subClassOf dvo:Object ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasEnergySource ;
owl:allValuesFrom dvo:EnergySource
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasEnergyCarrier ;
owl:hasValue dvo:DISTRICT_HEATING
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:co2Emissions ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:decimal
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:length ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:decimal
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:power ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:decimal
] ;
owl:disjointWith dvo:Building ,
dvo:Land ;
rdfs:label "Boiler Station"@en ,
"Chaufferie"@fr ,
"District heating boiler station"@en .
### https://www.nobatek.inef4.com/dataview/onto#Building
dvo:Building rdf:type owl:Class ;
rdfs:subClassOf dvo:Object ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasBuildingUse ;
owl:allValuesFrom dvo:BuildingUse
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasConstructionType ;
owl:allValuesFrom dvo:ConstructionType
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasEnergyCarrier ;
owl:allValuesFrom dvo:EnergyCarrier
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasEnergySource ;
owl:allValuesFrom dvo:EnergySource
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasParkingSurface ;
owl:allValuesFrom dvo:ParkingSpace
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasTargetEnergyPerformance ;
owl:allValuesFrom dvo:EnergyPerformance
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasTypology ;
owl:allValuesFrom dvo:BuildingTypology
] ;
owl:disjointWith dvo:Land ;
rdfs:comment "A building, in our context, is the finest urban object granularity level, which has different caracteristics (such as its inteded use, its typology, its expected energy performance, etc.) that help conduct energy and environmental assessments at urban scale."@en ,
"Un bâtiment, dans notre contexte, est le niveau de granularité d'objet urbain le plus fin, qui dispose de caractéristiques diverses (telles que son usage, sa typologie, sa performance énergétique attendue, etc.) utiles pour faire des évaluations énergétiques et environnementales à l'échelle urbaine."@fr ;
rdfs:label "Building"@en ,
"Bâtiment"@fr .
### https://www.nobatek.inef4.com/dataview/onto#BuildingConfiguration
dvo:BuildingConfiguration rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty dvo:hasConstructionType ;
owl:allValuesFrom dvo:ConstructionType
]
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasEnergyCarrier ;
owl:allValuesFrom dvo:EnergyCarrier
]
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasEnergySource ;
owl:allValuesFrom dvo:EnergySource
]
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasTargetEnergyPerformance ;
owl:allValuesFrom dvo:EnergyPerformance
]
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasTypology ;
owl:allValuesFrom dvo:BuildingTypology
]
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasZoneType ;
owl:allValuesFrom dvo:ZoneCategory
]
[ rdf:type owl:Restriction ;
owl:onProperty dvo:isPartOf ;
owl:allValuesFrom dvo:Zone
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf dvo:UrbanPlanning ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasImpact ;
owl:allValuesFrom dvo:CarbonFootprint
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:isAppliedOn ;
owl:allValuesFrom dvo:Building
] ;
rdfs:comment "A building configuration consists in defining the characteristics associated to the urban planning project related to a building, in particular the typology of this building, its construction type, the targeted energy performance, the energy sources for heating and domestic hot water, the parking area and the land use constraints of to be respected."@en ,
"Une configuration de bâtiment consiste en la définition des caractériques associées au projet d'aménagement lié à ce bâtiment, en particulier la typologie d'usage du bâtiment, son système constructif, la performance énergétique visée, les sources énergétiques pour le chauffage et eau chaude sanitaire, la surface de parking, les contraintes du terrain à respecter."@fr ;
rdfs:label "Building configuration"@en ,
"Configuration de bâtiment"@fr .
### https://www.nobatek.inef4.com/dataview/onto#BuildingTypology
dvo:BuildingTypology rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( dvo:ACTIVITIES_SERVICES
dvo:COLLECTIVE_BUILDINGS
dvo:OFFICES
dvo:SINGLE_FAMILY_HOUSE
)
] ;
rdfs:comment "Defines a set of buildings which have similarities in their type, function or form."@en ,
"Définit un ensemble de bâtiments qui ont des similarités au niveau de leur type, leur fonction ou leur forme."@fr ;
rdfs:label "Building typology"@en ,
"Typologie de bâtiment"@fr .
### https://www.nobatek.inef4.com/dataview/onto#BuildingUse
dvo:BuildingUse rdf:type owl:Class ;
rdfs:subClassOf dvo:Use ;
rdfs:comment "A building use corresponds to the element related to what it is used for."@en ,
"Un usage de bâtiment correspond à un élément relatif à ce quoi il est utilisé."@fr ;
rdfs:label "Building use"@en ,
"Usage de bâtiment"@fr .
### https://www.nobatek.inef4.com/dataview/onto#CarbonFootprint
dvo:CarbonFootprint rdf:type owl:Class ;
rdfs:subClassOf dvo:EnvironmentalImpact ;
owl:disjointUnionOf ( dvo:HighCarbonFootprint
dvo:LowCarbonFootprint
dvo:MediumCarbonFootprint
) ;
rdfs:comment "A carbon footprint is the amount of carbon dioxide released into the atmosphere as a result of an urban planning activity."@en ,
"Une empreinte carbone est la quantité de dioxyde de carbone libérée dans l'atmosphère à la suite d'une activité d'aménagement urbain."@fr ;
rdfs:label "Carbon footprint"@en ,
"Empreinte carbone"@fr .
### https://www.nobatek.inef4.com/dataview/onto#City
dvo:City rdf:type owl:Class ;
rdfs:subClassOf dvo:Address ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:isPartOf ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass dvo:Department
] ;
rdfs:comment """Country, region, department, city, and district are different granularity levels of address. Possible \"hasPart\" relationships are possible among them.
Instances of these concepts can be provided by an open data source, such as INSEE, Open Data, etc. Thus, for each concept, it is possible to add an equivalent set enumerating all provided instances."""@en ;
rdfs:label "City"@en ,
"Commune"@fr ,
"Ville"@fr .
### https://www.nobatek.inef4.com/dataview/onto#Commercial
dvo:Commercial rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( dvo:FLORIST
dvo:GROCERY
dvo:PERFUMERY
dvo:SUPERMARKET
)
] ;
rdfs:subClassOf dvo:BuildingUse ;
rdfs:label "Commercial"@en ,
"Commercial"@fr ,
"Correspond à un usage de bâtiment à but commercial."@fr ,
"Describes a building use for commercial purposes."@en .
### https://www.nobatek.inef4.com/dataview/onto#ConstructionType
dvo:ConstructionType rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( dvo:AERATED_CONCRETE
dvo:CLAY_BRICK
dvo:CONCRETE_BLOCKS
dvo:CONCRETE_WOOD
dvo:REINFORCED_CONCRETE
dvo:STEEL_CONCRETE
dvo:WOOD_FRAME
)
] ;
rdfs:comment "Defines the type of materials used in the construction of the building."@en ,
"Définit le type des matériaux utilisés dans la construction du bâtiment."@fr ;
rdfs:label "Construction type"@en ,
"Système constructif"@fr .
### https://www.nobatek.inef4.com/dataview/onto#Country
dvo:Country rdf:type owl:Class ;
rdfs:subClassOf dvo:Address ;
rdfs:comment """Country, region, department, city, and district are different granularity levels of address. Possible \"hasPart\" relationships are possible among them.
Instances of these concepts can be provided by an open data source, such as INSEE, Open Data, etc. Thus, for each concept, it is possible to add an equivalent set enumerating all provided instances."""@en ;
rdfs:label "Country"@en ,
"Pays"@fr .
### https://www.nobatek.inef4.com/dataview/onto#Cultural
dvo:Cultural rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( dvo:CONSERVATORY
dvo:MUSEUM
dvo:THEATER
)
] ;
rdfs:subClassOf dvo:BuildingUse ;
rdfs:comment "Correspond à un usage de bâtiment à but culturel."@fr ,
"Cultural"@en ,
"Describes a building use for cultural purposes."@en ;
rdfs:label "Culturel"@fr .
### https://www.nobatek.inef4.com/dataview/onto#CyclingSurfaceScore
dvo:CyclingSurfaceScore rdf:type owl:Class ;
rdfs:comment "Il rentre dans l'évaluation de la mixité fonctionnelle d'une zone donnée. Ce score correspond au pourcentage de surface cyclable par rapport à la surface de voirie."@fr ;
rdfs:label "Cycling surface score"@en ,
"Score surface cyclable"@fr .
### https://www.nobatek.inef4.com/dataview/onto#Department
dvo:Department rdf:type owl:Class ;
rdfs:subClassOf dvo:Address ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:isPartOf ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass dvo:Region
] ;
rdfs:comment """Country, region, department, city, and district are different granularity levels of address. Possible \"hasPart\" relationships are possible among them.
Instances of these concepts can be provided by an open data source, such as INSEE, Open Data, etc. Thus, for each concept, it is possible to add an equivalent set enumerating all provided instances."""@en ;
rdfs:label "Department"@en ,
"Département"@fr .
### https://www.nobatek.inef4.com/dataview/onto#District
dvo:District rdf:type owl:Class ;
rdfs:subClassOf dvo:Address ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:isPartOf ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass dvo:City
] ;
rdfs:comment """Country, region, department, city, and district are different granularity levels of address. Possible \"hasPart\" relationships are possible among them.
Instances of these concepts can be provided by an open data source, such as INSEE, Open Data, etc. Thus, for each concept, it is possible to add an equivalent set enumerating all provided instances."""@en ;
rdfs:label "District"@en ,
"IRIS"@fr ,
"Quartier"@fr .
### https://www.nobatek.inef4.com/dataview/onto#Education
dvo:Education rdf:type owl:Class ;
rdfs:subClassOf dvo:BuildingUse ;
rdfs:comment "Correspond à un usage de bâtiment à but educatif."@fr ,
"Describes a building use for education purposes."@en ;
rdfs:label "Education"@en ,
"Enseignement"@fr .
### https://www.nobatek.inef4.com/dataview/onto#EducationScore
dvo:EducationScore rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty dvo:value ;
owl:allValuesFrom xsd:decimal
] ;
rdfs:comment "Il rentre dans l'évaluation de la mixité fonctionnelle d'une zone donnée. Ce score correspond au pourcentage de logements de l'aménagement situés à moins de 400m des écoles."@fr ;
rdfs:label "Education score"@en ,
"Score écoles"@fr .
### https://www.nobatek.inef4.com/dataview/onto#EnergyCarrier
dvo:EnergyCarrier rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( dvo:COAL
dvo:DISTRICT_HEATING
dvo:ELECTRICITY
dvo:FUEL
dvo:NATURAL_GAS
dvo:WOOD
)
] ;
rdfs:comment "An energy carrier is the substance/system that contains energy that can be later converted to other forms. Such carriers are coal, electricity, fuel, natural gas, wood, district heating."@en ,
"Un transporteur d'énergie est la substance / le système qui contient de l'énergie et qui peut ensuite être convertie en d'autres formes. Des exemples de transporteurs d'énergie sont le charbon, l'électricité, le carburant, le gaz naturel, le bois et les réseaux de chaleur."@fr ;
rdfs:label "Energy carrier"@en ,
"Transporteur d'énergie"@fr .
### https://www.nobatek.inef4.com/dataview/onto#EnergyPerformance
dvo:EnergyPerformance rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( dvo:RT2012
dvo:RT2012-10
dvo:RT2012-20
dvo:RT2012-40
dvo:RT2012-5
)
] ;
rdfs:comment "An energy performance is a measure of the relative energy efficiency of a building, building equipment, or building components, as measured by the amount of energy required to provide building services."@en ,
"Une performance énergétique est une mesure de l'efficacité énergétique relative d'un bâtiment, de l'équipement du bâtiment ou des composants du bâtiment, mesurée par la quantité d'énergie nécessaire pour fournir des services de construction."@fr ;
rdfs:label "Energy performance"@en ,
"Performance énergétique"@fr .
### https://www.nobatek.inef4.com/dataview/onto#EnergySource
dvo:EnergySource rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty dvo:renewableEnergyRate ;
owl:allValuesFrom xsd:decimal
] ;
owl:disjointUnionOf ( dvo:NonRenewableEnergySource
dvo:RenewableEnergySource
) ;
rdfs:comment """An energy source is a source, which can be renewable or non renewable, from which useful energy can be extracted or recovered.
In our context, we focus on primary energy sources."""@en ,
"""Une source d'énergie est une source, qui peut être renouvelable ou non renouvelable, à partir de laquelle l'énergie utile peut être extraite ou récupérée.
Dans notre contexte, nous nous concentrons sur les sources d'énergie primaire."""@fr ;
rdfs:label "Energy source"@en ,
"Source d'énérgie"@fr .
### https://www.nobatek.inef4.com/dataview/onto#EnvironmentalImpact
dvo:EnvironmentalImpact rdf:type owl:Class ;
rdfs:comment "An environmental impact is a change that affects the environment, whether adverse or beneficial, wholly or partially, resulting from an urban planning activity."@en ,
"Un impact environnemental est un changement qui affecte l'environnement, qu'il soit défavorable ou bénéfique, en tout ou en partie, résultant d'une activité d'aménagement urbain."@fr ;
rdfs:label "Environmental impact"@en ,
"Impact environnemental"@fr ,
"Indicateur"@fr ,
"Indicator"@en .
### https://www.nobatek.inef4.com/dataview/onto#GreenSpace
dvo:GreenSpace rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty dvo:value ;
owl:allValuesFrom xsd:decimal
] ;
rdfs:comment "Surface d'espace vert prévu dans l'aménagement (m²/hab). Ce nombre rentre dans l'évaluation de la mixité fonctionnelle d'une zone urbaine donnée."@fr ;
rdfs:label "Green Space"@en ,
"Surface espace vert"@fr .
### https://www.nobatek.inef4.com/dataview/onto#Health
dvo:Health rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( dvo:HOSPITAL
dvo:MEDICAL_OFFICE
dvo:PHARMACY
)
] ;
rdfs:subClassOf dvo:BuildingUse ;
rdfs:comment "Correspond à un usage de bâtiment à but sanitaire."@fr ,
"Describes a building use for health purposes."@en ;
rdfs:label "Health"@en ,
"Santé"@fr .
### https://www.nobatek.inef4.com/dataview/onto#HealthScore
dvo:HealthScore rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty dvo:value ;
owl:allValuesFrom xsd:decimal
] ;
rdfs:comment "Il rentre dans l'évaluation de la mixité fonctionnelle d'une zone donnée. Ce score correspond au nombre de médecins pour 1000 habitants."@fr ;
rdfs:label "Health score"@en ,
"Score médecins"@fr .
### https://www.nobatek.inef4.com/dataview/onto#HighCarbonFootprint
dvo:HighCarbonFootprint rdf:type owl:Class ;
rdfs:subClassOf dvo:CarbonFootprint ;
rdfs:label "Empreinte carbone élevée"@fr ,
"High carbon footprint"@en .
### https://www.nobatek.inef4.com/dataview/onto#HighMixedUseDegree
dvo:HighMixedUseDegree rdf:type owl:Class ;
rdfs:subClassOf dvo:MixedUseDegree ;
rdfs:label "Degré de mixité fonctionnelle élevé"@fr ,
"High functional diversity degree"@en .
### https://www.nobatek.inef4.com/dataview/onto#HigherEducation
dvo:HigherEducation rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( dvo:UNIVERSITY
)
] ;
rdfs:subClassOf dvo:Education ;
rdfs:comment "Higher education"@en ;
rdfs:label "Enseignement supérieur"@fr .
### https://www.nobatek.inef4.com/dataview/onto#HumanDensityScore
dvo:HumanDensityScore rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty dvo:value ;
owl:allValuesFrom xsd:decimal
] ;
rdfs:comment "Il rentre dans l'évaluation de la mixité fonctionnelle d'une zone donnée. Ce score correspond au nombre d'habitants par hectare."@fr ;
rdfs:label "Human density score"@en ,
"Score densité humaine"@fr .
### https://www.nobatek.inef4.com/dataview/onto#IndividualsServices
dvo:IndividualsServices rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( dvo:HAIRDRESSING
dvo:POLICE
dvo:POST_OFFICE
dvo:RESTAURANT
)
] ;
rdfs:subClassOf dvo:BuildingUse ;
rdfs:comment "Correspond à un usage de bâtiment destiné aux services aux particuliers."@fr ,
"Describes a building use intended for services to individuals."@en ;
rdfs:label "Individuals services"@en ,
"Serivces aux articuliers"@fr .
### https://www.nobatek.inef4.com/dataview/onto#Land
dvo:Land rdf:type owl:Class ;
rdfs:subClassOf dvo:Object ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasLandUse ;
owl:allValuesFrom dvo:LandUse
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasPart ;
owl:allValuesFrom dvo:Building
] ;
rdfs:comment "A land, in our context, is the largest urban object granularity level, which has different caracteristics (such as its inteded use, its constraints, etc.) that help conduct energy and environmental assessments at urban scale. A land can be made of one or multiple buildings."@en ,
"Un terrain, dans notre contexte, est le plus grand niveau de granularité d'objet urbain, qui présente des caractéristiques différentes (telles que son usage, ses contraintes, etc.) qui permettent d'effectuer des évaluations énergétiques et environnementales à l'échelle urbaine. Un terrain peut être composé d'un ou de plusieurs bâtiments."@fr ;
rdfs:label "Land"@en ,
"Terrain"@fr .
### https://www.nobatek.inef4.com/dataview/onto#LandUse
dvo:LandUse rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( dvo:AGRICULTURE
dvo:CYCLEWAY
dvo:FORESTRY
dvo:MINING
dvo:PARK
dvo:ROADS
dvo:TRANSPORTATION
)
] ;
rdfs:subClassOf dvo:Use ;
rdfs:comment "A land use corresponds to the element related to what it is used for."@en ,
"Un usage du sol correspond à un élément relatif à ce quoi il est utilisé."@fr ;
rdfs:label "Land use"@en ,
"Occupation du sol"@fr ,
"Usage du sol"@fr ,
"Utilisation du sol"@fr .
### https://www.nobatek.inef4.com/dataview/onto#LandUseConstraints
dvo:LandUseConstraints rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( dvo:EARTHQUAKE
dvo:FLOODING
dvo:NOT_APPLICABLE
)
] ;
rdfs:comment "Land use constraints are restrictions that limit or preclude the development of a property."@en ,
"Les contraintes du terrain sont des restrictions qui limitent ou empêchent le développement d'une propriété."@fr ;
rdfs:label "Contraintes du terrain"@fr ,
"Land use constraints"@en ,
"Les contraintes particulières liées au terrain."@fr .
### https://www.nobatek.inef4.com/dataview/onto#LowCarbonFootprint
dvo:LowCarbonFootprint rdf:type owl:Class ;
rdfs:subClassOf dvo:CarbonFootprint ;
rdfs:label "Empreinte carbone faible"@fr ,
"Low carbon footprint"@en .
### https://www.nobatek.inef4.com/dataview/onto#LowMixedUseDegree
dvo:LowMixedUseDegree rdf:type owl:Class ;
rdfs:subClassOf dvo:MixedUseDegree ;
rdfs:label "Degré de mixité fonctionnelle faible"@fr ,
"Low functional diversity degree"@en .
### https://www.nobatek.inef4.com/dataview/onto#MediumCarbonFootprint
dvo:MediumCarbonFootprint rdf:type owl:Class ;
rdfs:subClassOf dvo:CarbonFootprint ;
rdfs:label "Empreinte carbone moyenne"@fr ,
"Medium carbon footprint"@en .
### https://www.nobatek.inef4.com/dataview/onto#MediumMixedUseDegree
dvo:MediumMixedUseDegree rdf:type owl:Class ;
rdfs:subClassOf dvo:MixedUseDegree ;
rdfs:label "Degré de mixité fonctionnel moyen"@fr ,
"Medium functional diversity degree"@en .
### https://www.nobatek.inef4.com/dataview/onto#MixedUse
dvo:MixedUse rdf:type owl:Class ;
rdfs:subClassOf dvo:UrbanPlanning ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasPart ;
owl:someValuesFrom dvo:EducationScore
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasPart ;
owl:someValuesFrom dvo:GreenSpace
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasPart ;
owl:someValuesFrom dvo:HealthScore
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasPart ;
owl:someValuesFrom dvo:HumanDensityScore
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasPart ;
owl:someValuesFrom dvo:PublicTransportScore
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasPart ;
owl:someValuesFrom dvo:TradeScore
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:hasImpact ;
owl:allValuesFrom dvo:MixedUseDegree
] ,
[ rdf:type owl:Restriction ;
owl:onProperty dvo:isAppliedOn ;
owl:allValuesFrom dvo:Zone
] ;
rdfs:comment "A mixed use in an urban area is the fact that functions (such as housing, commerce, hospitals, sports, etc.) are represented there."@en ,
"Une mixité fonctionnelle dans une zone urbaine est le fait que les fonctions (ex: habitat, commerce, hospitalières, sportives, etc.) y soient représentées."@fr ;
rdfs:label "Mixed use"@en ,
"Mixité fonctionnelle"@fr .
### https://www.nobatek.inef4.com/dataview/onto#MixedUseDegree
dvo:MixedUseDegree rdf:type owl:Class ;
rdfs:subClassOf dvo:EnvironmentalImpact ;
owl:disjointUnionOf ( dvo:HighMixedUseDegree
dvo:LowMixedUseDegree
dvo:MediumMixedUseDegree
) ;
rdfs:comment "A mixed use degree is a numeric value that determines if the mixed use is tight, medium or coarse."@fr ,
"Un degré de mixité fonctionnelle est une valeur numérique qui détermine s'il s'agit de mixité fine, moyenne ou grossière."@fr ;
rdfs:label "Degré de mixité fonctionnelle"@fr ,
"Mixed use degree"@en .
### https://www.nobatek.inef4.com/dataview/onto#NonRenewableEnergySource
dvo:NonRenewableEnergySource rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( dvo:COAL
dvo:CRUDE_OIL
dvo:NATURAL_GAS
dvo:NUCLEAR
)
] ;
rdfs:subClassOf dvo:EnergySource ;