MobilityDB 1.1
|
#include "point/tpoint_spatialrels.h"
#include <assert.h>
#include <meos.h>
#include "general/lifting.h"
#include "general/type_util.h"
#include "point/pgis_call.h"
#include "point/tpoint_spatialfuncs.h"
#include "point/tpoint_tempspatialrels.h"
#include "pg_point/postgis.h"
#include "pg_point/tpoint_spatialfuncs.h"
Functions | |
PGDLLEXPORT Datum | Econtains_geo_tpoint (PG_FUNCTION_ARGS) |
Return true if a geometry ever contains a temporal point. More... | |
PGDLLEXPORT Datum | Edisjoint_geo_tpoint (PG_FUNCTION_ARGS) |
Return true if a geometry and a temporal point are ever disjoint. More... | |
PGDLLEXPORT Datum | Edisjoint_tpoint_geo (PG_FUNCTION_ARGS) |
Return true if a temporal point and a geometry are ever disjoint. More... | |
PGDLLEXPORT Datum | Edisjoint_tpoint_tpoint (PG_FUNCTION_ARGS) |
Return true if the temporal points are ever disjoint. More... | |
PGDLLEXPORT Datum | Edwithin_geo_tpoint (PG_FUNCTION_ARGS) |
Return true if a geometry and a temporal point are ever within the given distance. More... | |
PGDLLEXPORT Datum | Edwithin_tpoint_geo (PG_FUNCTION_ARGS) |
Return true if a temporal point and a geometry are ever within the given distance. More... | |
PGDLLEXPORT Datum | Edwithin_tpoint_tpoint (PG_FUNCTION_ARGS) |
Return true if the temporal points are even within the given distance. More... | |
PGDLLEXPORT Datum | Eintersects_geo_tpoint (PG_FUNCTION_ARGS) |
Return true if a geometry and a temporal point ever intersect. More... | |
PGDLLEXPORT Datum | Eintersects_tpoint_geo (PG_FUNCTION_ARGS) |
Return true if a temporal point and a geometry ever intersect. More... | |
PGDLLEXPORT Datum | Eintersects_tpoint_tpoint (PG_FUNCTION_ARGS) |
Return true if the temporal points ever intersect. More... | |
static Datum | espatialrel_tpoint_tpoint_ext (FunctionCallInfo fcinfo, Datum(*func)(Datum, Datum)) |
Ever spatial relationships for temporal points. More... | |
PGDLLEXPORT Datum | Etouches_geo_tpoint (PG_FUNCTION_ARGS) |
Return true if a geometry and a temporal point ever touch. More... | |
PGDLLEXPORT Datum | Etouches_tpoint_geo (PG_FUNCTION_ARGS) |
Return true if a temporal point and a geometry ever touch. More... | |