PostGIS
2.4.9dev-r@@SVN_REVISION@@
|
#include "postgres.h"
#include "fmgr.h"
#include "utils/elog.h"
#include "utils/geo_decls.h"
#include "../postgis_config.h"
#include "lwgeom_pg.h"
#include "liblwgeom.h"
#include <math.h>
#include <float.h>
#include <string.h>
#include <stdio.h>
#include <errno.h>
Go to the source code of this file.
Macros | |
#define | SHOW_DIGS_DOUBLE 15 |
#define | MAX_DIGS_DOUBLE (SHOW_DIGS_DOUBLE + 6 + 1 + 3 +1) |
Functions | |
Datum | BOX3D_in (PG_FUNCTION_ARGS) |
Datum | BOX3D_out (PG_FUNCTION_ARGS) |
Datum | LWGEOM_to_BOX3D (PG_FUNCTION_ARGS) |
Datum | BOX3D_to_LWGEOM (PG_FUNCTION_ARGS) |
Datum | BOX3D_expand (PG_FUNCTION_ARGS) |
Datum | BOX3D_to_BOX2D (PG_FUNCTION_ARGS) |
Datum | BOX3D_to_BOX (PG_FUNCTION_ARGS) |
Datum | BOX3D_xmin (PG_FUNCTION_ARGS) |
Datum | BOX3D_ymin (PG_FUNCTION_ARGS) |
Datum | BOX3D_zmin (PG_FUNCTION_ARGS) |
Datum | BOX3D_xmax (PG_FUNCTION_ARGS) |
Datum | BOX3D_ymax (PG_FUNCTION_ARGS) |
Datum | BOX3D_zmax (PG_FUNCTION_ARGS) |
Datum | BOX3D_combine (PG_FUNCTION_ARGS) |
Datum | BOX3D_combine_BOX3D (PG_FUNCTION_ARGS) |
PG_FUNCTION_INFO_V1 (BOX3D_in) | |
BOX3D_in - takes a string rep of BOX3D and returns internal rep. More... | |
PG_FUNCTION_INFO_V1 (BOX3D_out) | |
Takes an internal rep of a BOX3D and returns a string rep. More... | |
PG_FUNCTION_INFO_V1 (BOX3D_to_BOX2D) | |
static void | box3d_to_box_p (BOX3D *box, BOX *out) |
PG_FUNCTION_INFO_V1 (BOX3D_to_BOX) | |
PG_FUNCTION_INFO_V1 (BOX3D_to_LWGEOM) | |
void | expand_box3d (BOX3D *box, double d) |
Expand given box of 'd' units in all directions. More... | |
static void | expand_box3d_xyz (BOX3D *box, double dx, double dy, double dz) |
PG_FUNCTION_INFO_V1 (BOX3D_expand) | |
PG_FUNCTION_INFO_V1 (LWGEOM_to_BOX3D) | |
convert a GSERIALIZED to BOX3D More... | |
PG_FUNCTION_INFO_V1 (BOX3D_xmin) | |
PG_FUNCTION_INFO_V1 (BOX3D_ymin) | |
PG_FUNCTION_INFO_V1 (BOX3D_zmin) | |
PG_FUNCTION_INFO_V1 (BOX3D_xmax) | |
PG_FUNCTION_INFO_V1 (BOX3D_ymax) | |
PG_FUNCTION_INFO_V1 (BOX3D_zmax) | |
PG_FUNCTION_INFO_V1 (BOX3D_combine) | |
Used in the ST_Extent and ST_Extent3D aggregates, does not read the serialized cached bounding box (since that is floating point) but calculates the box in full from the underlying geometry. More... | |
PG_FUNCTION_INFO_V1 (BOX3D_combine_BOX3D) | |
PG_FUNCTION_INFO_V1 (BOX3D_construct) | |
Datum | BOX3D_construct (PG_FUNCTION_ARGS) |