_WGS.py 633 B

12345678910111213141516171819202122232425
  1. from rdflib.namespace import DefinedNamespace, Namespace
  2. from rdflib.term import URIRef
  3. class WGS(DefinedNamespace):
  4. """
  5. Basic Geo (WGS84 lat/long) Vocabulary
  6. The HTML Specification for the vocabulary can be found
  7. here <https://www.w3.org/2003/01/geo/>.
  8. """
  9. _NS = Namespace("https://www.w3.org/2003/01/geo/wgs84_pos#")
  10. # http://www.w3.org/2000/01/rdf-schema#Class
  11. SpatialThing: URIRef
  12. Point: URIRef
  13. # http://www.w3.org/2002/07/owl#DatatypeProperty
  14. alt: URIRef
  15. lat: URIRef # http://www.w3.org/2003/01/geo/wgs84_pos#lat
  16. lat_long: URIRef
  17. location: URIRef
  18. long: URIRef