You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: rdflib/namespace/_GEO.py
+34Lines changed: 34 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -26,19 +26,39 @@ class GEO(DefinedNamespace):
26
26
"""
27
27
28
28
# http://www.w3.org/2000/01/rdf-schema#Datatype
29
+
dggsLiteral: URIRef# A DGGS serialization of a geometry object.
30
+
geoJSONLiteral: URIRef# A GeoJSON serialization of a geometry object.
29
31
gmlLiteral: URIRef# A GML serialization of a geometry object.
32
+
kmlLiteral: URIRef# A KML serialization of a geometry object.
30
33
wktLiteral: URIRef# A Well-known Text serialization of a geometry object.
31
34
32
35
# http://www.w3.org/2002/07/owl#Class
33
36
Feature: URIRef# This class represents the top-level feature type. This class is equivalent to GFI_Feature defined in ISO 19156:2011, and it is superclass of all feature types.
37
+
FeatureCollection: URIRef# A collection of individual Features.
34
38
Geometry: URIRef# The class represents the top-level geometry type. This class is equivalent to the UML class GM_Object defined in ISO 19107, and it is superclass of all geometry types.
39
+
GeometryCollection: URIRef# A collection of individual Geometries.
35
40
SpatialObject: URIRef# The class spatial-object represents everything that can have a spatial representation. It is superclass of feature and geometry.
41
+
SpatialObjectCollection: URIRef# A collection of individual Spatial Objects. This is the superclass of Feature Collection and Geometry Collection.
36
42
37
43
# http://www.w3.org/2002/07/owl#DatatypeProperty
38
44
asGML: URIRef# The GML serialization of a geometry
39
45
asWKT: URIRef# The WKT serialization of a geometry
46
+
asGeoJSON: URIRef# The GeoJSON serialization of a geometry
47
+
asKML: URIRef# The KML serialization of a geometry
48
+
asDGGS: URIRef# The DGGS serialization of a geometry
40
49
coordinateDimension: URIRef# The number of measurements or axes needed to describe the position of this geometry in a coordinate system.
41
50
dimension: URIRef# 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.
51
+
hasMetricArea: URIRef# The area of a Spatial Object in square meters.
52
+
hasMetricLength: URIRef# The length of a Spatial Object in meters.
53
+
hasMetricPerimeterLength: (
54
+
URIRef# The length of the perimeter of a Spatial Object in meters.
55
+
)
56
+
hasMetricSpatialAccuracy: URIRef# The spatial resolution of a Geometry in meters.
57
+
hasMetricSpatialResolution: (
58
+
URIRef# The spatial resolution of a Geometry in meters.
59
+
)
60
+
hasMetricSize: URIRef# 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)
61
+
hasMetricVolume: URIRef# The volume of a Spatial Object in cubic meters.
42
62
hasSerialization: (
43
63
URIRef# Connects a geometry object with its text-based serialization.
44
64
)
@@ -56,7 +76,21 @@ class GEO(DefinedNamespace):
56
76
ehInside: URIRef# Exists if the subject SpatialObject is spatially inside the object SpatialObject. DE-9IM: TFF*FFT**
57
77
ehMeet: URIRef# Exists if the subject SpatialObject spatially meets the object SpatialObject. DE-9IM: FT******* ^ F**T***** ^ F***T****
58
78
ehOverlap: URIRef# Exists if the subject SpatialObject spatially overlaps the object SpatialObject. DE-9IM: T*T***T**
79
+
hasArea: URIRef# The area of a Spatial Object.
80
+
hasBoundingBox: (
81
+
URIRef# The minimum or smallest bounding or enclosing box of a given Feature.
82
+
)
83
+
hasCentroid: URIRef# The arithmetic mean position of all the geometry points of a given Feature.
84
+
hasDefaultGeometry: URIRef# The default geometry to be used in spatial calculations, usually the most detailed geometry.
59
85
hasGeometry: URIRef# A spatial representation for a given feature.
86
+
hasLength: URIRef# The length of a Spatial Object.
87
+
hasPerimeterLength: URIRef# The length of the perimeter of a Spatial Object.
88
+
hasSize: URIRef# 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.
89
+
hasSpatialAccuracy: (
90
+
URIRef# The positional accuracy of the coordinates of a Geometry.
91
+
)
92
+
hasSpatialResolution: URIRef# The spatial resolution of a Geometry.
93
+
hasVolume: URIRef# he volume of a three-dimensional Spatial Object.
60
94
rcc8dc: URIRef# Exists if the subject SpatialObject is spatially disjoint from the object SpatialObject. DE-9IM: FFTFFTTTT
61
95
rcc8ec: URIRef# Exists if the subject SpatialObject spatially meets the object SpatialObject. DE-9IM: FFTFTTTTT
62
96
rcc8eq: URIRef# Exists if the subject SpatialObject spatially equals the object SpatialObject. DE-9IM: TFFFTFFFT
0 commit comments