MobilityDB 1.1
|
◆ tdisjoint_tpoint_geo()
Temporal spatial relationships for temporal points. These relationships are applied at each instant and result in a temporal Boolean. The following relationships are supported for a temporal geometry point and a geometry: The following relationships are supported for two temporal geometry points: The following relationships are supported for two temporal geography points: tintersects and tdisjoint for a temporal point and a geometry allow a fast implementation by (1) using bounding box tests, and (2) splitting temporal sequence points into an array of simple (that is, not self-intersecting) fragments and the answer is computed for each fragment without any additional call to PostGIS. The implementation of tcontains and ttouches involving a temporal point and a geometry is derived from the above by computing the boundary of the geometry and (1) tcontains(geo, tpoint) = tintersects(geo, tpoint) & ~ tintersects(st_boundary(geo), tpoint) where & and ~ are the temporal boolean operators and and not (2) ttouches(geo, tpoint) = tintersects(st_boundary(geo), tpoint) Notice also that twithin has a custom implementation as follows
Return the temporal intersects relationship between a temporal point and a geometry
|