|
MobilityDB 1.3
|
Input and output functions for static geometries. More...
Functions | |
| BOX3D * | box3d_make (double xmin, double xmax, double ymin, double ymax, double zmin, double zmax, int32 srid) |
| Return a PostGIS BOX3D from the arguments. More... | |
| char * | box3d_out (const BOX3D *box, int maxdd) |
| Return the string representation of a PostGIS BOX3D. More... | |
| GBOX * | gbox_make (bool hasz, double xmin, double xmax, double ymin, double ymax, double zmin, double zmax) |
| Return a PostGIS GBOX from the arguments. More... | |
| char * | gbox_out (const GBOX *box, int maxdd) |
| Return the string representation of a PostGIS GBOX. More... | |
| uint8_t * | geo_as_ewkb (const GSERIALIZED *gs, const char *endian, size_t *size) |
| Return the Extended Well-Known Binary (EWKB) representation of a geometry/geography. More... | |
| char * | geo_as_ewkt (const GSERIALIZED *gs, int precision) |
| Return the Extended Well-Known Text (EWKT) representation of a geometry/geography. More... | |
| char * | geo_as_geojson (const GSERIALIZED *gs, int option, int precision, const char *srs) |
| Return the GeoJSON representation of a geometry/geography. More... | |
| char * | geo_as_hexewkb (const GSERIALIZED *gs, const char *endian) |
| Return the ASCII hex-encoded Well-Known Binary (HexWKB) representation of a geometry/geography. More... | |
| char * | geo_as_text (const GSERIALIZED *gs, int precision) |
| Return the Well-Known Text (WKT) representation of a geometry/geography. More... | |
| GSERIALIZED * | geo_from_ewkb (const uint8_t *wkb, size_t wkb_size, int32 srid) |
| Return a geometry/geography from its EWKB representation. More... | |
| GSERIALIZED * | geo_from_geojson (const char *geojson) |
| Return a geometry/geography from its GeoJSON representation. More... | |
| GSERIALIZED * | geo_from_text (const char *wkt, int32_t srid) |
| Return a geometry/geography from its WKT representation (and optionally a SRID) More... | |
| char * | geo_out (const GSERIALIZED *gs) |
| Return the ASCII hex-encoded Well-Known Binary (HexWKB) representation of a geometry/geography. More... | |
| GSERIALIZED * | geog_from_hexewkb (const char *wkt) |
| Return a geography from its ASCII hex-encoded Well-Known Binary (HexEWKB) representation. More... | |
| GSERIALIZED * | geog_in (const char *str, int32 typmod) |
| Return a geography from its Well-Known Text or Binary (WKT or Binary) representation. More... | |
| GSERIALIZED * | geom_from_hexewkb (const char *wkt) |
| Return a geometry from its ASCII hex-encoded Well-Known Binary (HexEWKB) representation. More... | |
| GSERIALIZED * | geom_in (const char *str, int32 typmod) |
| Return a geometry from its Well-Known Text (WKT), Well-Known Binary (WKB) or GeoJSON representation. More... | |
Input and output functions for static geometries.