label:
SpatialThing
comment:
Anything with spatial extent, i.e. size, shape, or position. e.g. people, places, bowling balls, as well as abstract areas like cubes.
label:
Point
comment:
A point, typically described using a coordinate system relative to Earth, such as WGS84.
comment:
Uniquely identified by lat/long/alt. i.e.
spaciallyIntersects(P1, P2) :- lat(P1, LAT), long(P1, LONG), alt(P1, ALT),
lat(P2, LAT), long(P2, LONG), alt(P2, ALT).
sameThing(P1, P2) :- type(P1, Point), type(P2, Point), spaciallyIntersects(P1, P2).
sub-class of:
http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing
label:
latitude
comment:
The WGS84 latitude of a SpatialThing (decimal degrees).
domain:
http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing
label:
longitude
comment:
The WGS84 longitude of a SpatialThing (decimal degrees).
domain:
http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing
label:
altitude
comment:
The WGS84 altitude of a SpatialThing (decimal meters
above the local reference ellipsoid).
domain:
http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing
label:
lat/long
comment:
A comma-separated representation of a latitude, longitude coordinate.