forked from CommonCoreOntology/CommonCoreOntologies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeospatialOntology.ttl
663 lines (519 loc) · 47.2 KB
/
GeospatialOntology.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
@prefix : <http://www.ontologyrepository.com/CommonCoreOntologies/> .
@prefix cco: <http://www.ontologyrepository.com/CommonCoreOntologies/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@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 skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@base <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/GeospatialOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology> ;
dcterms:license <https://opensource.org/licenses/BSD-3-Clause> ;
rdfs:comment "This ontology is designed to represent sites, spatial regions, and other entities, especially those that are located near the surface of Earth, as well as the relations that hold between them."@en ;
rdfs:label "Geospatial Ontology"@en ;
owl:versionInfo "Version 1.5"@en .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/created
dcterms:created rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
dcterms:creator rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#prefLabel
skos:prefLabel rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://www.ontologyrepository.com/CommonCoreOntologies/coincides_with
cco:coincides_with rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:connected_with ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 coincides with some immaterial entity im2 iff im1 is a spatial part of im2 and im2 is a spatial part of im1."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "coincides with"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive and symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/connected_with
cco:connected_with rdf:type owl:ObjectProperty ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 is connected with some immaterial entity im2 iff there exists some immaterial entity im3 that is common to both im1 and im2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "connected with"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/disconnected_with
cco:disconnected_with rdf:type owl:ObjectProperty ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 is disconnected with some immaterial entity im2 iff there does not exist some immaterial entity im3 that is common to both im1 and im2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "disconnected with"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/externally_connects_with
cco:externally_connects_with rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:connected_with ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 externally connects with some immaterial entity im2 iff im1 connects with im2 and im1 does not overlap with im2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "externally connects with"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_nontangential_part
cco:has_nontangential_part rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:has_spatial_part ;
owl:inverseOf cco:nontangential_part_of ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "x has_nontangential_part y iff x and y are instances of Immaterial Entity, and x has_spatial_part y, such that there does not exist another instance of an Immaterial Entity which externally connects with both x and y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "has nontangential part"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_spatial_part
cco:has_spatial_part rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000178 ,
cco:connected_with ;
owl:inverseOf cco:spatial_part_of ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "y has_spatial_part x iff x, y, z, and q are instances of Immaterial Entity, such that for any z connected with x, z is also connected with y, and q is connected with y but not connected with x."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "has spatial part"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_tangential_part
cco:has_tangential_part rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:has_spatial_part ;
owl:inverseOf cco:tangential_part_of ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "x has_tangential_part y iff x, y, and z are instances of Immaterial Entity, and x has_spatial_part y, such that z externally connects with both x and y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "has tangential part"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/nontangential_part_of
cco:nontangential_part_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:spatial_part_of ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 is a nontangential part of some immaterial entity im2 iff im1 is a spatial part of im2 and there does not exist an immaterial entity im3 such that im3 externally connects with im1 and im3 externally connects with im2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "nontangential part of"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/partially_overlaps_with
cco:partially_overlaps_with rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:connected_with ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 partially overlaps with some immaterial entity im2 iff im1 overlaps with im2 and im1 is not a spatial part of im2 and im2 is not a spatial part of im1."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "partially overlaps with"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be symmetric. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/spatial_part_of
cco:spatial_part_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000176 ,
cco:connected_with ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "x spatial_part_of y iff x, y, z, and q are instances of Immaterial Entity, such that for any z connected with x, z is also connected with y, and q is connected with y but not connected with x."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:comment "in the sense used here, spatial part of is elsewhere referred to as proper spatial part of"@en ;
rdfs:label "spatial part of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/tangential_part_of
cco:tangential_part_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:spatial_part_of ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 is a tangential part of some immaterial entity im2 iff im1 is a spatial part of im2 and there exists some immaterial entity im3 such that im3 externally connects with im1 and im3 externally connects with im2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "tangential part of"@en ;
skos:scopeNote "Given a stronger temporal interpretation, this property may be transitive. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
#################################################################
# Data properties
#################################################################
### http://www.ontologyrepository.com/CommonCoreOntologies/has_altitude_value
cco:has_altitude_value rdf:type owl:DatatypeProperty ;
cco:elucidation "This data property can be used along with has_latitude_value and has_longitude_value to connect three-dimensional spatial data to a single Information Bearing Entity to specify the location of an entity in a Geospatial Region."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:comment "Altitude values typically use kilometers as the Unit of Measurement."@en ;
rdfs:label "has altitude value"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_latitude_value
cco:has_latitude_value rdf:type owl:DatatypeProperty ;
rdfs:range xsd:decimal ;
cco:definition "A Data Property that has as its range the latitude value from some Geospatial Location coordinates set expressed in decimal degrees."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "has latitude value"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_longitude_value
cco:has_longitude_value rdf:type owl:DatatypeProperty ;
rdfs:range xsd:decimal ;
cco:definition "A Data Property that has as its range the longitude value from some Geospatial Location coordinates set expressed in decimal degrees."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "has longitude value"@en .
### http://www.opengis.net/ont/geosparql#asWKT
<http://www.opengis.net/ont/geosparql#asWKT> rdf:type owl:DatatypeProperty ;
cco:definition "A Data Property that has as its range a string formated according to the Well-known text standardization for geometric objects."@en ;
cco:example_of_usage "Polygon ((10 10, 10 20, 20 20, 20 15, 10 10))" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:comment "ISO 19162:2015"@en ;
rdfs:label "as WKT"@en .
#################################################################
# Classes
#################################################################
### http://www.ontologyrepository.com/CommonCoreOntologies/AnthropogenicFeature
cco:AnthropogenicFeature rdf:type owl:Class ;
rdfs:subClassOf cco:EnvironmentalFeature ;
cco:definition "An Environmental Feature that is related to or is the result of the influence of human beings on the environment."@en ;
cco:definition_source "http://www.merriam-webster.com/dictionary/anthropogenic" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Anthropogenic Feature"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/AtmosphericFeature
cco:AtmosphericFeature rdf:type owl:Class ;
rdfs:subClassOf cco:GeographicFeature ;
cco:definition "A Geographic Feature that is part of the atmosphere (including the atmosphere itself as a non-proper part) having a relatively stable lifecycle and which has a location that can be distinguished from the surrounding portion of the atmosphere."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Atmospheric Feature"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/AxisOfRotation
cco:AxisOfRotation rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000026 ;
cco:alternative_label "Rotational Axis"@en ;
cco:definition "A One-Dimensional Spatial Region defined by the line around which a spinning body rotates."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Axis of Rotation"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/BoundingBoxPoint
cco:BoundingBoxPoint rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:GeospatialPosition
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000176 ;
owl:someValuesFrom cco:GeospatialRegionBoundingBox
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf cco:GeospatialPosition ;
cco:definition "A Geospatial Position that is a proper part of some Geospatial Region Bounding Box."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Bounding Box Point"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CenterOfMass
cco:CenterOfMass rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000018 ;
cco:definition "A Zero-Dimensional Spatial Region that is the point where the weighted position vectors of the distributed Mass of a Material Entity relative to this point sum to zero."@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Center_of_mass&oldid=1059976491"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Center of Mass"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ConstructedFeature
cco:ConstructedFeature rdf:type owl:Class ;
rdfs:subClassOf cco:AnthropogenicFeature ;
cco:definition "An Anthropogenic Feature that has been constructed by deliberate human effort."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Constructed Feature"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Continent
cco:Continent rdf:type owl:Class ;
rdfs:subClassOf cco:GeospatialRegion ;
cco:definition "A Geospatial Region bounded by any of the Earth's main continuous expanses of land."@en ;
cco:definition_source "JC3IEDM version 3.0.2" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Continent"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CoordinateSystemAxis
cco:CoordinateSystemAxis rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000026 ;
cco:definition "A One-Dimensional Spatial Region defined by a Coordinate System for the purpose of identifying the position of entities along one dimension of the Coordinate System's spatial framework."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Coordinate System Axis"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/EnvironmentalFeature
cco:EnvironmentalFeature rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000040 ;
cco:definition "A Material Entity that is either a natural or man-made feature of the environment."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Environmental Feature"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GeographicFeature
cco:GeographicFeature rdf:type owl:Class ;
rdfs:subClassOf cco:EnvironmentalFeature ;
cco:definition "An Environmental Feature that is a natural (i.e. not human made) topographical feature having a (relatively) stable location in some Geospatial Region which can be designated by location-specific data."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Geographic Feature"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialBoundary
cco:GeospatialBoundary rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000142 ;
cco:definition "A One-Dimensional Continuant Fiat Boundary that is a boundary of some Geospatial Region."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Geospatial Boundary"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialEllipse
cco:GeospatialEllipse rdf:type owl:Class ;
rdfs:subClassOf cco:GeospatialLineString ;
cco:definition "A Geospatial Boundary that is formed by following a symmetric arc between four vertices which are connected to the center point of the ellipse via a straight line."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Geospatial Ellipse"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialErrorRegion
cco:GeospatialErrorRegion rdf:type owl:Class ;
rdfs:subClassOf cco:GeospatialBoundary ;
cco:definition "A Geospatial Boundary that bounds some Geospatial Region according to probability estimations for locating some object within it."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Geospatial Error Region"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialLine
cco:GeospatialLine rdf:type owl:Class ;
rdfs:subClassOf cco:GeospatialLineString ;
cco:definition "A Geospatial Line String that has only two vertices."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Geospatial Line"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialLineString
cco:GeospatialLineString rdf:type owl:Class ;
rdfs:subClassOf cco:GeospatialBoundary ;
cco:definition "A Geospatial Boundary that has two or more Geospatial Positions as vertices, where each vertex is connected to only one other vertex by a straight line."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Geospatial Line String"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialLocation
cco:GeospatialLocation rdf:type owl:Class ;
rdfs:subClassOf cco:GeospatialRegion ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000124 ;
owl:someValuesFrom obo:BFO_0000001
] ;
cco:definition "A Geospatial Region at which an Entity or Event is located."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Geospatial Location"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialPolygon
cco:GeospatialPolygon rdf:type owl:Class ;
rdfs:subClassOf cco:GeospatialLineString ;
cco:definition "A Geospatial Line String that has at least three vertices where the connecting lines form a closed loop."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Geospatial Polygon"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialPosition
cco:GeospatialPosition rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000147 ;
cco:definition "A zero-dimensional continuant fiat boundary that is at or near the surface of the Earth and fixed according to some Geospatial Coordinate Reference System."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Geospatial Position"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialRegion
cco:GeospatialRegion rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000029 ;
cco:definition "A Site at or near the surface of the Earth."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Geospatial Region"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialRegionBoundingBox
cco:GeospatialRegionBoundingBox rdf:type owl:Class ;
rdfs:subClassOf cco:GeospatialPolygon ;
cco:definition "A Geospatial Polygon that has some Geospatial Region as a non-tangential proper part."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Geospatial Region Bounding Box"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GroundTrack
cco:GroundTrack rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000026 ;
cco:alternative_label "Ground Trace"@en ;
cco:definition "A One-Dimensional Spatial Region defined by the line formed on the surface of an Astronomical Body by projecting an imaginary line from the center of the tracked Object to the center of the Astronomical Body as the Object travels above the surface."@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Ground_track&oldid=1058025510"^^xsd:anyURI ;
cco:elucidation "The Ground Track is the line on the surface of the Earth or other Astronomical Body that is located directly below the Object Track."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Ground Track"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GroundTrackPoint
cco:GroundTrackPoint rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000018 ;
cco:definition "A Zero-Dimensional Spatial Region that is an idealized point located on the surface of an Astronomical Body directly below an Object Track Point."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Ground Track Point"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/HighDensityResidentialArea
cco:HighDensityResidentialArea rdf:type owl:Class ;
rdfs:subClassOf cco:PopulatedPlace ;
cco:definition "A Populated Place which is characterized by densely contained multiple-unit living structures."@en ;
cco:definition_source "Anderson et. al. A Land Use and Land Cover Classification System for use with Remote Sensor Data, Geological Survey Professional Paper 964" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "High Density Residential Area"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/HydrographicFeature
cco:HydrographicFeature rdf:type owl:Class ;
rdfs:subClassOf cco:GeographicFeature ;
cco:definition "A Geographic Feature associated with water."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Hydrographic Feature"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/LowDensityResidentialArea
cco:LowDensityResidentialArea rdf:type owl:Class ;
rdfs:subClassOf cco:PopulatedPlace ;
cco:definition "A Populated Place where houses are on lots of more than one acre."@en ;
cco:definition_source "Anderson et. al. A Land Use and Land Cover Classification System for use with Remote Sensor Data, Geological Survey Professional Paper 964" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Low Density Residential Area"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MajorAxis
cco:MajorAxis rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000026 ;
cco:definition "A One-Dimensional Spatial Region that is the longest line segment that connects two points on the edge of an Ellipse."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Major Axis"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MinorAxis
cco:MinorAxis rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000026 ;
cco:definition "A One-Dimensional Spatial Region that is the longest line segment perpendicular to the Major Axis that connects two points on the edge of an Ellipse."@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Semi-major_and_semi-minor_axes&oldid=1047911304"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Minor Axis"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Nadir
cco:Nadir rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000026 ;
cco:definition "A One-Dimensional Spatial Region that extends from a given location downward along the local vertical direction pointing in the direction of the apparent Gravitational Force at that location."@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Nadir&oldid=1057007248"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Nadir"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ObjectTrack
cco:ObjectTrack rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000026 ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:has_spatial_part ;
owl:someValuesFrom cco:ObjectTrackPoint
] ;
cco:definition "A One-Dimensional Spatial Region that consists of the idealized line along which an Object has traversed during some motion."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:comment "The exact line of the Object Track may be drawn based on the Center of Mass of the Object or another reference point, such as the location of a transponder beacon or the center of a radar cross-section, depending on the Object being tracked."@en ;
rdfs:label "Object Track"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ObjectTrackPoint
cco:ObjectTrackPoint rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000018 ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:spatial_part_of ;
owl:someValuesFrom cco:ObjectTrack
] ;
cco:definition "A Zero-Dimensional Spatial Region that is an idealized point where an Object is or was located during some motion."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Object Track Point"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Park
cco:Park rdf:type owl:Class ;
rdfs:subClassOf cco:AnthropogenicFeature ;
cco:definition "An Anthropogenic Feature that is a bounded area of land, or water, usually in its natural or semi-natural (landscaped) state and set aside for some purpose, usually to do with recreation or conservation."@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Park&oldid=1061073992"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Park"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/PhysiographicFeature
cco:PhysiographicFeature rdf:type owl:Class ;
rdfs:subClassOf cco:GeographicFeature ;
cco:definition "A Geographic Feature that is a geomorphological unit characterized by its surface form and location in the landscape."@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Landform&oldid=1060439172"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Physiographic Feature"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/PitchAxis
cco:PitchAxis rdf:type owl:Class ;
rdfs:subClassOf cco:AxisOfRotation ;
cco:alternative_label "Lateral Axis"@en ;
cco:definition "An Axis of Rotation that passes through the center of an object's Mass from one side of the object to the other and is perpendicular to the direction of the object's motion."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Pitch Axis"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/PopulatedPlace
cco:PopulatedPlace rdf:type owl:Class ;
rdfs:subClassOf cco:AnthropogenicFeature ;
cco:definition "An Anthropogenic Feature at which people live or have lived."@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Human_settlement&oldid=1060418164"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Populated place"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfAtmosphere
cco:PortionOfAtmosphere rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000024 ;
cco:definition "A fiat object part of the layer of gas or layers of gases that envelop a natural satellite."@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Atmosphere&oldid=1135486662"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Portion of Atmosphere"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfCryosphere
cco:PortionOfCryosphere rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000024 ;
cco:definition "A fiat object part of the frozen part of a natural satellite's hydosphere"@en ;
cco:definition_source "https://oceanservice.noaa.gov/facts/cryosphere.html (accessed 03/06/2023)"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Portion of Cryosphere"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfGeosphere
cco:PortionOfGeosphere rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000024 ;
cco:definition "A fiat object part that is composed of one or more portions of the atmosphere, cryosphere, hydrosphere, or lithosphere"@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Geosphere&oldid=1137306949"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Portion of Geosphere"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfHydrosphere
cco:PortionOfHydrosphere rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000024 ;
cco:definition "A fiat object part of the combined mass of water found on, under, and above the surface of a natural satellite"@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Hydrosphere&oldid=1128848972"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Portion of Hydrosphere"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/PortionOfLithosphere
cco:PortionOfLithosphere rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000024 ;
cco:definition "A fiat object part of the rigid, outermost rocky shell of a natural satellite."@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Lithosphere&oldid=1143215085"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Portion of Lithosphere"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/RollAxis
cco:RollAxis rdf:type owl:Class ;
rdfs:subClassOf cco:AxisOfRotation ;
cco:alternative_label "Longitudinal Axis"@en ;
cco:definition "An Axis of Rotation that passes through the center of an object's Mass from the front to the back of the object as defined by the direction of the object's motion."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Roll Axis"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/SeaLevel
cco:SeaLevel rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000146 ;
cco:definition "A two-dimensional continuant fiat boundary that divides the spheroid composed of Earth and its atmosphere at some point that corresponds to the mean level of calm water in the Earth’s oceans."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Sea Level"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/SemiMajorAxis
cco:SemiMajorAxis rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000026 ;
cco:definition "A One-Dimensional Spatial Region that is equal to half the length of the Major Axis of an Ellipse."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Semi-Major Axis"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/SemiMinorAxis
cco:SemiMinorAxis rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000026 ;
cco:definition "A One-Dimensional Spatial Region that is equal to half the length of the Minor Axis of an Ellipse."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Semi-Minor Axis"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Subcontinent
cco:Subcontinent rdf:type owl:Class ;
rdfs:subClassOf cco:GeospatialRegion ;
cco:definition "A Geospatial Region bounded by a large, relatively self-contained landmass forming a subdivision of a Continent."@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Continent&oldid=1064057312"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Subcontinent"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ThreeDimensionalPath
cco:ThreeDimensionalPath rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000028 ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:has_spatial_part ;
owl:someValuesFrom cco:ThreeDimensionalPosition
] ;
cco:definition "A Three-Dimensional Spatial Region that encompasses the spatial region through which some Object travels."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Three-Dimensional Path"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ThreeDimensionalPosition
cco:ThreeDimensionalPosition rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000028 ;
cco:definition "A Three-Dimensional Spatial Region that encompasses the (minimal) spatial region in which some object is located at a particular time."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:comment "For an object in motion, its Three-Dimensional Position is part of its Three-Dimensional Path."@en ;
rdfs:label "Three-Dimensional Position"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/YawAxis
cco:YawAxis rdf:type owl:Class ;
rdfs:subClassOf cco:AxisOfRotation ;
cco:alternative_label "Vertical Axis"@en ;
cco:definition "An Axis of Rotation that passes through the center of an object's Mass from the top to the bottom and is perpendicular to the direction of the object's motion. For objects in Orbit, the Yaw Axis passes through the Barycenter of its Orbit."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Yaw Axis"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Zenith
cco:Zenith rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000026 ;
cco:definition "A One-Dimensional Spatial Region that extends from a given location upward along the local vertical direction pointing in the direction opposite the apparent Gravitational Force at that location."@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Zenith&oldid=1052625030"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "Zenith"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/xAxis
cco:xAxis rdf:type owl:Class ;
rdfs:subClassOf cco:CoordinateSystemAxis ;
cco:definition "A Coordinate System Axis designated by the variable 'x'."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "x-Axis"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/yAxis
cco:yAxis rdf:type owl:Class ;
rdfs:subClassOf cco:CoordinateSystemAxis ;
cco:definition "A Coordinate System Axis designated by the variable 'y'."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "y-Axis"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/zAxis
cco:zAxis rdf:type owl:Class ;
rdfs:subClassOf cco:CoordinateSystemAxis ;
cco:definition "A Coordinate System Axis designated by the variable 'z'."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology"^^xsd:anyURI ;
rdfs:label "z-Axis"@en .
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi