blob: b73222cf354ebb0023df03ae61c10497190d005f (
plain)
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
|
from rdflib.namespace import DefinedNamespace, Namespace
from rdflib.term import URIRef
class WGS(DefinedNamespace):
"""
Basic Geo (WGS84 lat/long) Vocabulary
The HTML Specification for the vocabulary can be found
`here <https://www.w3.org/2003/01/geo/>`.
"""
_NS = Namespace("https://www.w3.org/2003/01/geo/wgs84_pos#")
# http://www.w3.org/2000/01/rdf-schema#Class
SpatialThing: URIRef
Point: URIRef
# http://www.w3.org/2002/07/owl#DatatypeProperty
alt: URIRef
lat: URIRef # http://www.w3.org/2003/01/geo/wgs84_pos#lat
lat_long: URIRef
location: URIRef
long: URIRef
|