-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgeo.ttl
1086 lines (1012 loc) · 40.8 KB
/
geo.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
# baseURI: http://www.opengis.net/ont/geosparql
BASE <http://www.opengis.net/ont/geosparql>
PREFIX : <http://www.opengis.net/ont/geosparql#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX sdo: <https://schema.org/>
PREFIX vann: <http://purl.org/vocab/vann/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX spec11: <http://www.opengis.net/spec/geosparql/1.1/specification.html#> # TODO: use PID IRI
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
<http://www.opengis.net/ont/geosparql>
a owl:Ontology ;
dcterms:title "GeoSPARQL Ontology" ;
vann:preferredNamespacePrefix "geo"^^xsd:string ;
vann:preferredNamespaceUri "http://www.opengis.net/ont/geosparql#"^^xsd:anyURI ;
dcterms:publisher [
a sdo:Organization ;
sdo:name "Open Geospatial Consortium" ;
sdo:url "https://www.ogc.org"^^xsd:anyURI ;
] ;
dcterms:creator "OGC GeoSPARQL Standards Working Group" ;
dcterms:contributor
[
a sdo:Person ;
sdo:name "Matthew Perry" ;
sdo:affiliation "Oracle Corporation" ;
sdo:email "[email protected]"^^xsd:string ;
sdo:url "https://orcid.org/0000-0003-1988-462X"^^xsd:anyURI ;
] ,
[
a sdo:Person ;
sdo:name "John Herring" ;
sdo:affiliation "Oracle Corporation" ;
sdo:email "[email protected]"^^xsd:string ;
] ,
[
a sdo:Person ;
sdo:name "Nicholas J. Car" ;
sdo:affiliation "SURROUND Australia Pty Ltd" , "Australian National University" ;
sdo:email "[email protected]"^^xsd:string ;
sdo:url "https://orcid.org/0000-0002-8742-7730"^^xsd:anyURI ;
] ,
[
a sdo:Person ;
sdo:name "Joseph Abhayaratna" ;
sdo:affiliation "Geoscape Australia" ;
sdo:email "[email protected]"^^xsd:string ;
sdo:url "https://orcid.org/0000-0001-5075-6234"^^xsd:anyURI ;
],
[
a sdo:Person ;
sdo:name "Timo Homburg" ;
sdo:affiliation "Mainz University Of Applied Sciences" ;
sdo:email "[email protected]"^^xsd:string ;
sdo:url "https://orcid.org/0000-0002-9499-5840"^^xsd:anyURI ;
],
[
a sdo:Person ;
sdo:name "Simon J D Cox" ;
sdo:affiliation "CSIRO Australia" ;
sdo:email "[email protected]"^^xsd:string ;
sdo:url "https://orcid.org/0000-0002-3884-3420"^^xsd:anyURI ;
] ,
[
a sdo:Person ;
sdo:name "Frans Knibbe" ;
sdo:email "[email protected]"^^xsd:string ;
sdo:url "https://orcid.org/0000-0003-3789-2260"^^xsd:anyURI ;
] ,
[
a sdo:Person ;
sdo:name "Mathias Bonduel" ;
sdo:affiliation "KU Leuven" , "Neanex Technologies" ;
sdo:email "[email protected]"^^xsd:string ;
sdo:url "https://orcid.org/0000-0002-3313-924X"^^xsd:anyURI ;
] ;
dcterms:created "2020-09-09"^^xsd:date ;
dcterms:modified "2021-10-27"^^xsd:date ;
dcterms:replaces <http://www.opengis.net/ont/geosparql/1.0> ;
dcterms:description "An RDF/OWL vocabulary for representing spatial information"@en ;
dcterms:license "https://www.ogc.org/license"^^xsd:anyURI ;
dcterms:rights "(c) 2021 Open Geospatial Consortium" ;
dcterms:source <http://www.opengis.net/doc/IS/geosparql/1.1> , "OGC GeoSPARQL - A Geographic Query Language for RDF Data OGC 11-052r5"@en ;
rdfs:seeAlso <http://www.opengis.net/doc/IS/geosparql/1.1> ;
owl:versionInfo "OGC GeoSPARQL 1.1" ;
owl:versionIRI <http://www.opengis.net/ont/geosparql/1.1> ;
.
# #################################################################
# #
# # Datatypes
# #
# #################################################################
:gmlLiteral
a rdfs:Datatype ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/gml-literal> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/gml-literal> ;
skos:definition """A GML serialization of a Geometry object."""@en ;
rdfs:seeAlso <https://portal.ogc.org/files/?artifact_id=20509> ; # TODO: replace with one that is guaranteed to be persistent
skos:prefLabel "GML Literal"@en ;
skos:example
spec11:C.1.2.4 ;
.
:wktLiteral
a rdfs:Datatype ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/wkt-literal> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/wkt-literal> ;
skos:definition """A Well-known Text serialization of a Geometry object."""@en ;
rdfs:seeAlso <https://portal.ogc.org/files/?artifact_id=25355> ; # TODO: replace with one that is guaranteed to be persistent
skos:prefLabel "Well-known Text Literal"@en ;
skos:example
spec11:C.2.2.2 ;
.
:geoJSONLiteral
a rdfs:Datatype ;
rdfs:seeAlso <https://tools.ietf.org/html/rfc7946> ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/geojson-literal> ;
skos:definition """A GeoJSON serialization of a Geometry object."""@en ;
skos:prefLabel "GeoJSON Literal"@en ;
skos:example
spec11:C.1.2.4 ;
.
:kmlLiteral
a rdfs:Datatype ;
rdfs:seeAlso <https://www.ogc.org/standards/kml/> ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/kml-literal> ;
skos:definition """A KML serialization of a Geometry object."""@en ;
skos:prefLabel "KML Literal"@en ;
skos:example
spec11:C.1.2.4 ;
.
:dggsLiteral
a rdfs:Datatype ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/dggs-literal> ;
skos:definition """A textual serialization of a Discrete Global Grid (DGGS) Geometry object."""@en ;
skos:example
""" "<https://w3id.org/dggs/auspix> OrdinateList (R3234)"^^<http://www.opengis.net/ont/geosparql#dggsLiteral>""" ,
spec11:C.1.2.4 ;
rdfs:seeAlso <http://www.opengis.net/doc/AS/dggs/2.0> ;
skos:prefLabel "DGGS Literal"@en ;
skos:scopeNote "This datatype is not expected to be used directly but to serve as an abstract datatype for a series of specific DGGS literal types, for specific DGGS implementations"@en ;
.
# #################################################################
# #
# # Object Properties
# #
# #################################################################
:defaultGeometry
a rdf:Property, owl:ObjectProperty ;
rdfs:subPropertyOf :hasGeometry ;
rdfs:domain :Feature ;
rdfs:range :Geometry ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/feature-properties> ;
skos:definition """The default Geometry to be used in spatial calculations. It is usually the most detailed Geometry."""@en ;
owl:equivalentProperty :hasDefaultGeometry ;
skos:note """Duplicate properties defaultGeometry and hasDefaultGeometry exist because of an inconsistency between ontology and documentation in GeoSPARQL 1.0. Only hasDefaultGeometry is described in the documention."""@en ;
skos:prefLabel "default geometry"@en ;
skos:example
spec11:C.1.2.2 ,
spec11:C.2.1 ;
.
:hasDefaultGeometry
a rdf:Property, owl:ObjectProperty ;
rdfs:subPropertyOf :hasGeometry ;
rdfs:domain :Feature ;
rdfs:range :Geometry ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/feature-properties> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/feature-properties> ;
skos:definition """The default Geometry to be used in spatial calculations. It is usually the most detailed Geometry."""@en ;
owl:equivalentProperty :defaultGeometry ;
skos:note """Duplicate properties defaultGeometry and hasDefaultGeometry exist because of an inconsistency between ontology and documentation in GeoSPARQL 1.0. Only hasDefaultGeometry is described in the documention."""@en ;
skos:prefLabel "has default geometry"@en ;
.
:ehContains
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:subPropertyOf :sfContains ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/eh-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/eh-spatial-relations> ;
skos:definition """States that the subject SpatialObject spatially contains the object SpatialObject. DE-9IM: T*TFF*FF*"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "contains"@en ;
.
:ehCoveredBy
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:subPropertyOf :sfWithin ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/eh-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/eh-spatial-relations> ;
skos:definition """States that the subject SpatialObject is spatially covered by the object SpatialObject. DE-9IM: TFF*TFT**"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "covered by"@en ;
.
:ehCovers
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:subPropertyOf :sfContains ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/eh-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/eh-spatial-relations> ;
skos:definition """States that the subject SpatialObject spatially covers the object SpatialObject. DE-9IM: T*TFT*FF*"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "covers"@en ;
.
:ehDisjoint
a rdf:Property, owl:ObjectProperty ;
owl:equivalentProperty :sfDisjoint ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:equivalentProperty :sfDisjoint, :rcc8dc ;
owl:propertyDisjointWith :sfIntersects ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/eh-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/eh-spatial-relations> ;
skos:definition """States that the subject SpatialObject is spatially disjoint from the object SpatialObject. DE-9IM: FF*FF****"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "disjoint"@en ;
.
:ehEquals
a rdf:Property, owl:ObjectProperty ;
owl:equivalentProperty :sfEquals ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:equivalentProperty :sfEquals, :rcc8eq ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/eh-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/eh-spatial-relations> ;
skos:definition """States that the subject SpatialObject spatially equals the object SpatialObject. DE-9IM: TFFFTFFFT"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "equals"@en ;
.
:ehInside
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:subPropertyOf :sfWithin ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/eh-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/eh-spatial-relations> ;
skos:definition """States that the subject SpatialObject is spatially inside the object SpatialObject. DE-9IM: TFF*FFT**"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "inside"@en ;
.
:ehMeet
a rdf:Property, owl:ObjectProperty ;
owl:equivalentProperty :sfTouches ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:equivalentProperty :sfTouches, :rcc8ec ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/eh-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/eh-spatial-relations> ;
skos:definition """States that the subject SpatialObject spatially meets the object SpatialObject. DE-9IM: FT******* ^ F**T***** ^ F***T****"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "meet"@en ;
.
:ehOverlap
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:equivalentProperty :sfOverlaps, :rcc8po ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/eh-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/eh-spatial-relations> ;
skos:definition """States that the subject SpatialObject spatially overlaps the object SpatialObject. DE-9IM: T*T***T**"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "overlap"@en ;
.
:hasGeometry
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :Feature ;
rdfs:range :Geometry ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/feature-properties> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/feature-properties> ;
skos:definition """A spatial representation for a given Feature."""@en ;
skos:prefLabel "has geometry"@en ;
skos:example
spec11:C.1.1.2.2 ,
spec11:C.1.1.2.3 ,
spec11:C.1.1.2.4 ,
spec11:C.1.1.2.5 ,
spec11:C.1.1.2.6 ,
spec11:C.1.1.2.8 ,
spec11:C.1.1.3.2 ,
spec11:C.1.1.3.3 ,
spec11:C.1.2.2 ,
spec11:C.1.2.3 ,
spec11:C.1.2.4 ,
spec11:C.2 ;
.
:hasBoundingBox
a rdf:Property, owl:ObjectProperty ;
rdfs:subPropertyOf :hasGeometry ;
rdfs:domain :Feature ;
rdfs:range :Geometry ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/feature-properties> ;
skos:definition """The minimum or smallest bounding or enclosing box of a given Feature."""@en ;
skos:prefLabel "has bounding box"@en ;
skos:scopeNote "The target is a Geometry that defines a rectilinear region whose edges are aligned with the axes of the coordinate reference system, which exactly contains the Feature, for example an instance of http://www.opengis.net/ont/sf#envelope."@en ;
skos:example
spec11:C.1.2.2 ;
.
:hasCentroid
a rdf:Property, owl:ObjectProperty ;
rdfs:subPropertyOf :hasGeometry ;
rdfs:domain :Feature ;
rdfs:range :Geometry ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/feature-properties> ;
skos:definition """The arithmetic mean position of all the Geometry points of a given Feature."""@en ;
skos:prefLabel "has centroid"@en ;
skos:scopeNote "The target Geometry shall describe a point, for example an instance of http://www.opengis.net/ont/sf#Point."@en ;
skos:example
spec11:C.1.2.2 ;
.
:hasLength
a rdf:Property, owl:ObjectProperty ;
rdfs:subPropertyOf :hasSize ;
rdfs:domain :SpatialObject ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/spatial-object-properties> ;
skos:definition """The length of a Spatial Object."""@en ;
skos:prefLabel "has length"@en ;
skos:example
spec11:C.1.1.2.7 ,
spec11:C.1.2.2 ;
.
:hasPerimeterLength
a rdf:Property, owl:ObjectProperty ;
rdfs:subPropertyOf :hasSize ;
rdfs:domain :SpatialObject ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/spatial-object-properties> ;
skos:definition """The length of the perimeter of a Spatial Object."""@en ;
skos:prefLabel "has perimeter length"@en ;
skos:example
spec11:C.1.1.1.2 ;
.
:hasArea
a rdf:Property, owl:ObjectProperty ;
rdfs:subPropertyOf :hasSize ;
rdfs:domain :SpatialObject ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/spatial-object-properties> ;
skos:definition """The area of a Spatial Object."""@en ;
skos:prefLabel "has area"@en ;
skos:example
spec11:C.1.1.2.4 ,
spec11:C.1.2.2 ;
.
:hasVolume
a rdf:Property, owl:ObjectProperty ;
rdfs:subPropertyOf :hasSize ;
rdfs:domain :SpatialObject ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/spatial-object-properties> ;
skos:definition """The volume of a three-dimensional Spatial Object."""@en ;
skos:prefLabel "has volume"@en ;
skos:example
spec11:C.1.2.2 ;
.
:hasSpatialResolution
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :Geometry ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/feature-properties> ;
skos:definition """The spatial resolution of a Geometry."""@en ;
skos:note """Spatial resolution specifies the level of detail of a Geometry. It the smallest distinguishable distance between spatially adjacent coordinates."""@en;
skos:prefLabel "has spatial resolution"@en ;
skos:example
spec11:C.1.2.2 ;
.
:hasSpatialAccuracy
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :Geometry ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/geometry-properties> ;
skos:definition """The positional accuracy of the coordinates of a Geometry."""@en ;
skos:note """Spatial accuracy is applicable when a Geometry is used to represent a Feature. It is expressed as a distance that indicates the truthfullness of the positions (coordinates) that define the Geometry. In this case accuracy defines a zone surrounding each coordinate within wich the real positions are known to be. The accuracy value defines this zone as a distance from the coordinate(s) in all directions (e.g. a line, a circle or a sphere, depending on spatial dimension)."""@en;
skos:prefLabel "has spatial accuracy"@en ;
skos:example
spec11:C.1.2.3 ;
.
:rcc8dc
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:equivalentProperty :sfDisjoint, :ehDisjoint ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/topology-vocab-extension/rcc8-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/topology-vocab-extension/rcc8-spatial-relations> ;
skos:definition """States that the subject SpatialObject is spatially disjoint from the object SpatialObject. DE-9IM: FFTFFTTTT"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "disconnected"@en ;
.
:rcc8ec
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:equivalentProperty :sfTouches, :ehMeet ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/topology-vocab-extension/rcc8-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/topology-vocab-extension/rcc8-spatial-relations> ;
skos:definition """States that the subject SpatialObject spatially meets the object SpatialObject. DE-9IM: FFTFTTTTT"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "externally connected"@en ;
.
:rcc8eq
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:equivalentProperty :sfEquals, :ehEquals ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/topology-vocab-extension/rcc8-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/topology-vocab-extension/rcc8-spatial-relations> ;
skos:definition """States that the subject SpatialObject spatially equals the object SpatialObject. DE-9IM: TFFFTFFFT"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "equals"@en ;
.
:rcc8ntpp
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:subPropertyOf :sfWithin ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/topology-vocab-extension/rcc8-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/topology-vocab-extension/rcc8-spatial-relations> ;
skos:definition """States that the subject SpatialObject is spatially inside the object SpatialObject. DE-9IM: TFFTFFTTT"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "non-tangential proper part"@en ;
.
:rcc8ntppi
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:subPropertyOf :sfContains ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/topology-vocab-extension/rcc8-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/topology-vocab-extension/rcc8-spatial-relations> ;
skos:definition """States that the subject SpatialObject spatially contains the object SpatialObject. DE-9IM: TTTFFTFFT"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "non-tangential proper part inverse"@en ;
.
:rcc8po
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:equivalentProperty :sfOverlaps, :ehOverlap ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/topology-vocab-extension/rcc8-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/topology-vocab-extension/rcc8-spatial-relations> ;
skos:definition """States that the subject SpatialObject spatially overlaps the object SpatialObject. DE-9IM: TTTTTTTTT"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "partially overlapping"@en ;
.
:rcc8tpp
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:subPropertyOf :sfWithin ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/topology-vocab-extension/rcc8-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/topology-vocab-extension/rcc8-spatial-relations> ;
skos:definition """States that the subject SpatialObject is spatially covered by the object SpatialObject. DE-9IM: TFFTTFTTT"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "tangential proper part"@en ;
.
:rcc8tppi
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:subPropertyOf :sfContains ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/topology-vocab-extension/rcc8-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/topology-vocab-extension/rcc8-spatial-relations> ;
skos:definition """States that the subject SpatialObject spatially covers the object SpatialObject. DE-9IM: TTTFTTFFT"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "tangential proper part inverse"@en ;
.
:sfContains
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/topology-vocab-extension/rcc8-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/topology-vocab-extension/rcc8-spatial-relations> ;
skos:definition """States that the subject SpatialObject spatially contains the object SpatialObject. DE-9IM: T*****FF*"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "contains"@en ;
.
:sfCrosses
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/topology-vocab-extension/sf-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/topology-vocab-extension/sf-spatial-relations> ;
skos:definition """States that the subject SpatialObject spatially crosses the object SpatialObject. DE-9IM: T*T******"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "crosses"@en ;
.
:sfDisjoint
a rdf:Property, owl:ObjectProperty ;
owl:equivalentProperty :ehDisjoint ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:equivalentProperty :ehDisjoint, :rcc8dc ;
owl:propertyDisjointWith :sfIntersects ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/topology-vocab-extension/sf-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/topology-vocab-extension/sf-spatial-relations> ;
skos:definition """States that the subject SpatialObject is spatially disjoint from the object SpatialObject. DE-9IM: FF*FF****"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "disjoint"@en ;
.
:sfEquals
a rdf:Property, owl:ObjectProperty ;
owl:equivalentProperty :ehEquals, :rcc8eq ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/topology-vocab-extension/sf-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/topology-vocab-extension/sf-spatial-relations> ;
skos:definition """States that the subject SpatialObject spatially equals the object SpatialObject. DE-9IM: TFFFTFFFT"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "equals"@en ;
.
:sfIntersects
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:propertyDisjointWith :sfDisjoint, :ehDisjoint ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/topology-vocab-extension/sf-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/topology-vocab-extension/sf-spatial-relations> ;
skos:definition """States that the subject SpatialObject is not spatially disjoint from the object SpatialObject. DE-9IM: T******** ^ *T******* ^ ***T***** ^ ****T****"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "intersects"@en ;
.
:sfOverlaps
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:equivalentProperty :ehOverlap, :rcc8po ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/topology-vocab-extension/sf-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/topology-vocab-extension/sf-spatial-relations> ;
skos:definition """States that the subject SpatialObject spatially overlaps the object SpatialObject. DE-9IM: T*T***T**"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "overlaps"@en ;
.
:sfTouches
a rdf:Property, owl:ObjectProperty ;
owl:equivalentProperty :ehMeet ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
owl:equivalentProperty :ehMeet, :rcc8ec ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/topology-vocab-extension/sf-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/topology-vocab-extension/sf-spatial-relations> ;
skos:definition """States that the subject SpatialObject spatially touches the object SpatialObject. DE-9IM: FT******* ^ F**T***** ^ F***T****"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "touches"@en ;
.
:sfWithin
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:range :SpatialObject ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/topology-vocab-extension/sf-spatial-relations> ,
<http://www.opengis.net/spec/geosparql/1.1/req/topology-vocab-extension/sf-spatial-relations> ;
skos:definition """States that the subject SpatialObject is spatially within the object SpatialObject. DE-9IM: T*F**F***"""@en ;
rdfs:seeAlso <http://dbpedia.org/resource/DE-9IM> ;
skos:prefLabel "within"@en ;
.
:hasSize
a rdf:Property, owl:ObjectProperty ;
rdfs:domain :SpatialObject ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/topology-vocab-extension/spatial-object-properties> ,
<http://www.opengis.net/spec/geosparql/1.1/req/topology-vocab-extension/spatial-object-properties> ;
skos:definition """Subproperties of this property are used to indicate the size of a Spatial Object as a measurement or estimate of one or more dimensions of the Spatial Object's spatial presence."""@en ;
skos:note """The recommended way to specify size is by using a subproperty of hasMetricSize. Subproperties of hasSize can be used if more complex expressions are necessary, for example if the unit of length can not be converted to meter, or if additional data are needed to describe the measurement or estimate."""@en ;
skos:prefLabel "has size"@en ;
.
# #################################################################
# #
# # Data properties
# #
# #################################################################
:asGML
a rdf:Property, owl:DatatypeProperty ;
rdfs:subPropertyOf :hasSerialization ;
rdfs:domain :Geometry ;
rdfs:range :gmlLiteral ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/geometry-as-gml-literal> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/geometry-as-gml-literal> ;
skos:definition """The GML serialization of a Geometry"""@en ;
skos:prefLabel "as GML"@en ;
skos:example
spec11:C.1.2.4 ;
.
:asWKT
a rdf:Property, owl:DatatypeProperty ;
rdfs:subPropertyOf :hasSerialization ;
rdfs:domain :Geometry ;
rdfs:range :wktLiteral ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/geometry-as-wkt-literal> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/geometry-as-wkt-literal> ;
skos:definition """The WKT serialization of a Geometry"""@en ;
skos:prefLabel "as WKT"@en ;
skos:example
spec11:C.1.1.2.2 ,
spec11:C.1.1.2.3 ,
spec11:C.1.1.2.4 ,
spec11:C.1.1.2.5 ,
spec11:C.1.1.2.6 ,
spec11:C.1.1.2.8 ,
spec11:C.1.1.3.1 ,
spec11:C.1.1.3.2 ,
spec11:C.1.1.3.3 ,
spec11:C.1.2.2 ,
spec11:C.2.2.4 ,
spec11:C.2.1 ;
.
:asGeoJSON
a rdf:Property, owl:DatatypeProperty ;
rdfs:subPropertyOf :hasSerialization;
rdfs:domain :Geometry ;
rdfs:range :geoJSONLiteral ;
rdfs:seeAlso <https://tools.ietf.org/html/rfc7946> ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/geometry-as-geojson-literal> ;
skos:definition """The GeoJSON serialization of a Geometry"""@en ;
skos:prefLabel "as GeoJSON"@en ;
skos:example
spec11:C.1.2.4 ;
.
:asKML
a rdf:Property, owl:DatatypeProperty ;
rdfs:subPropertyOf :hasSerialization;
rdfs:domain :Geometry ;
rdfs:range :kmlLiteral ;
rdfs:seeAlso <https://www.ogc.org/standards/kml> ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/geometry-as-kml-literal> ;
skos:definition """The KML serialization of a Geometry"""@en ;
skos:prefLabel "as KML"@en ;
skos:example
spec11:C.1.2.4 ;
.
:asDGGS
a rdf:Property, owl:DatatypeProperty ;
rdfs:subPropertyOf :hasSerialization;
rdfs:domain :Geometry ;
rdfs:range :dggsLiteral ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/geometry-as-dggs-literal> ;
skos:definition """The Discrete Global Grid System (DGGS) serialization of a Geometry"""@en ;
skos:prefLabel "as DGGS"@en ;
skos:example
spec11:C.1.2.4 ;
.
:coordinateDimension
a rdf:Property, owl:DatatypeProperty ;
rdfs:domain :Geometry ;
rdfs:range xsd:integer ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/geometry-properties> ;
skos:definition """The number of measurements or axes needed to describe the position of this Geometry in a coordinate system."""@en ;
skos:prefLabel "coordinate dimension"@en ;
skos:example
spec11:C.1.2.3 ;
.
:dimension
a rdf:Property, owl:DatatypeProperty ;
rdfs:domain :Geometry ;
rdfs:range xsd:integer ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/geometry-properties> ;
skos:definition """The topological dimension of this geometric object, which must be less than or equal to the coordinate dimension. In non-homogeneous collections, this will return the largest topological dimension of the contained objects."""@en ;
skos:prefLabel "dimension"@en ;
skos:example
spec11:C.1.2.3 ;
.
:hasSerialization
a rdf:Property, owl:DatatypeProperty ;
rdfs:domain :Geometry ;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/geometry-properties> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/geometry-properties> ;
skos:definition """Connects a Geometry object with its text-based serialization."""@en ;
skos:prefLabel "has serialization"@en ;
skos:example
spec11:C.1.2.3 ;
.
:isEmpty
a rdf:Property, owl:DatatypeProperty ;
rdfs:domain :Geometry ;
rdfs:range xsd:boolean ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/geometry-properties> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/geometry-properties> ;
skos:definition """(true) if this geometric object is the empty Geometry. If true, then this geometric object represents the empty point set for the coordinate space."""@en ;
skos:prefLabel "is empty"@en ;
skos:example
spec11:C.1.2.3 ;
.
:isSimple
a rdf:Property, owl:DatatypeProperty ;
rdfs:domain :Geometry ;
rdfs:range xsd:boolean ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/geometry-properties> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/geometry-properties> ;
skos:definition """(true) if this geometric object has no anomalous geometric points, such as self intersection or self tangency."""@en ;
rdfs:seeAlso <https://portal.ogc.org/files/?artifact_id=25355> ;
skos:prefLabel "is simple"@en ;
skos:example
spec11:C.1.2.3 ;
.
:spatialDimension
a rdf:Property, owl:DatatypeProperty ;
rdfs:domain :Geometry ;
rdfs:range xsd:integer ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/geometry-extension/geometry-properties> ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/geometry-properties> ;
skos:definition """The number of measurements or axes needed to describe the spatial position of this Geometry in a coordinate system."""@en ;
skos:prefLabel "spatial dimension"@en ;
skos:example
spec11:C.1.2.3 ;
.
:hasMetricSpatialResolution
a rdf:Property, owl:DatatypeProperty ;
rdfs:domain :Geometry ;
rdfs:range xsd:double ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/geometry-properties> ;
skos:definition """The spatial resolution of a Geometry in meters."""@en ;
skos:note """Spatial resolution specifies the level of detail of a Geometry. It the smallest dinstinguishable distance between spatially adjacent coordinates."""@en;
skos:prefLabel "has spatial resolution in meters"@en ;
skos:example
spec11:C.1.1.2.6 ,
spec11:C.1.2.2 ;
.
:hasMetricSpatialAccuracy
a rdf:Property, owl:DatatypeProperty ;
rdfs:domain :Geometry ;
rdfs:range xsd:double ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/geometry-properties> ;
skos:definition """The positional accuracy of the coordinates of a Geometry in meters."""@en ;
skos:note """Spatial accuracy is applicable when a Geometry is used to represent a Feature. It is expressed as a distance that indicates the truthfullness of the positions (coordinates) that define the Geometry. In this case accuracy defines a zone surrounding each coordinate within wich the real positions are known to be. The accuracy value defines this zone as a distance from the coordinate(s) in all directions (e.g. a line, a circle or a sphere, depending on spatial dimension)."""@en;
skos:prefLabel "has spatial accuracy in meters"@en ;
skos:example
spec11:C.1.2.3 ;
.
:hasMetricLength
a rdf:Property, owl:DatatypeProperty ;
rdfs:subPropertyOf :hasMetricSize ;
rdfs:domain :SpatialObject ;
rdfs:range xsd:double ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/spatial-object-properties> ;
skos:definition """The length of a Spatial Object in meters."""@en ;
skos:prefLabel "has length in meters"@en ;
skos:example
spec11:C.1.2.2 ;
.
:hasMetricPerimeterLength
a rdf:Property, owl:DatatypeProperty ;
rdfs:subPropertyOf :hasMetricSize ;
rdfs:domain :SpatialObject ;
rdfs:range xsd:double ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/spatial-object-properties> ;
skos:definition """The length of the perimeter of a Spatial Object in meters."""@en ;
skos:prefLabel "has perimeter length in meters"@en ;
skos:example
spec11:C.1.1.1.2 ;
.
:hasMetricArea
a rdf:Property, owl:DatatypeProperty ;
rdfs:subPropertyOf :hasMetricSize ;
rdfs:domain :SpatialObject ;
rdfs:range xsd:double ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/spatial-object-properties> ;
skos:definition """The area of a Spatial Object in square meters."""@en ;
skos:prefLabel "has area in square meters"@en ;
skos:example
spec11:C.1.1.2.3 ,
spec11:C.1.1.2.9 ,
spec11:C.1.1.3.3 ,
spec11:C.1.2.2 ;
.
:hasMetricVolume
a rdf:Property, owl:DatatypeProperty ;
rdfs:subPropertyOf :hasMetricSize ;
rdfs:domain :SpatialObject ;
rdfs:range xsd:double ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/spatial-object-properties> ;
skos:definition """The volume of a Spatial Object in cubic meters."""@en ;
skos:prefLabel "has volume in cubic meters"@en ;
skos:example
spec11:C.1.1.2.9 ,
spec11:C.1.2.2 ;
.
:hasMetricSize
a rdf:Property, owl:DatatypeProperty ;
rdfs:domain :SpatialObject ;
rdfs:range xsd:double ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.1/req/geometry-extension/spatial-object-properties> ;
skos:definition """Subproperties of this property are used to indicate the size of a Spatial Object, as a measurement or estimate of one or more dimensions of the Spatial Object's spatial presence. Units are always metric (meter, square meter or cubic meter)."""@en ;
skos:prefLabel "has metric size"@en ;
.
# #################################################################
# #
# # Classes
# #
# #################################################################
:Feature
a rdfs:Class, owl:Class ;
rdfs:subClassOf :SpatialObject ;
owl:disjointWith :Geometry ;
rdfs:isDefinedBy
: ,
<http://www.opengis.net/spec/geosparql/1.0/req/core/feature-class> ,
<http://www.opengis.net/spec/geosparql/1.1/req/core/feature-class> ;
skos:definition """A discrete spatial phenomenon in a universe of discourse."""@en ;
skos:note """A Feature represents a uniquely identifiable phenomenon, for example a river or an apple. While such phenomena (and therefore the Features used to represent them) are bounded, their boundaries may be crisp (e.g., the declared boundaries of a state), vague (e.g., the delineation of a valley versus its neighboring mountains), and change with time (e.g., a storm front). While discrete in nature, Features may be created from continuous observations, such as an isochrone that determines the region that can be reached by ambulance within 5 minutes."""@en ;
skos:prefLabel "Feature"@en ;
skos:example
spec11:C.1.1.2.1 ,
spec11:C.1.1.2.2 ,
spec11:C.1.1.2.3 ,
spec11:C.1.1.2.4 ,
spec11:C.1.1.2.5 ,
spec11:C.1.1.2.6 ,
spec11:C.1.1.2.7 ,
spec11:C.1.1.2.8 ,
spec11:C.1.1.2.9 ,
spec11:C.1.1.3.2 ,
spec11:C.1.1.3.3 ,
spec11:C.1.2.2 ,
spec11:C.1.2.3 ,
spec11:C.1.2.4 ;
.
:FeatureCollection
a rdfs:Class, owl:Class ;