PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ptarray_calculate_gbox_geodetic()

int ptarray_calculate_gbox_geodetic ( const POINTARRAY pa,
GBOX gbox 
)

Calculate geodetic (x/y/z) box and add values to gbox.

Return LW_SUCCESS on success.

Definition at line 2873 of file lwgeodetic.c.

References edge_calculate_gbox(), GBOX::flags, gbox_duplicate(), gbox_init(), gbox_merge(), getPoint2d_cp(), ll2cart(), LW_FAILURE, LW_FALSE, LW_SUCCESS, LW_TRUE, POINTARRAY::npoints, POINT3D::x, GBOX::xmax, GBOX::xmin, POINT3D::y, GBOX::ymax, GBOX::ymin, POINT3D::z, GBOX::zmax, and GBOX::zmin.

Referenced by lwline_calculate_gbox_geodetic(), lwpoint_calculate_gbox_geodetic(), lwpolygon_calculate_gbox_geodetic(), and lwtriangle_calculate_gbox_geodetic().

2874 {
2875  int i;
2876  int first = LW_TRUE;
2877  const POINT2D *p;
2878  POINT3D A1, A2;
2879  GBOX edge_gbox;
2880 
2881  assert(gbox);
2882  assert(pa);
2883 
2884  gbox_init(&edge_gbox);
2885  edge_gbox.flags = gbox->flags;
2886 
2887  if ( pa->npoints == 0 ) return LW_FAILURE;
2888 
2889  if ( pa->npoints == 1 )
2890  {
2891  p = getPoint2d_cp(pa, 0);
2892  ll2cart(p, &A1);
2893  gbox->xmin = gbox->xmax = A1.x;
2894  gbox->ymin = gbox->ymax = A1.y;
2895  gbox->zmin = gbox->zmax = A1.z;
2896  return LW_SUCCESS;
2897  }
2898 
2899  p = getPoint2d_cp(pa, 0);
2900  ll2cart(p, &A1);
2901 
2902  for ( i = 1; i < pa->npoints; i++ )
2903  {
2904 
2905  p = getPoint2d_cp(pa, i);
2906  ll2cart(p, &A2);
2907 
2908  edge_calculate_gbox(&A1, &A2, &edge_gbox);
2909 
2910  /* Initialize the box */
2911  if ( first )
2912  {
2913  gbox_duplicate(&edge_gbox, gbox);
2914  first = LW_FALSE;
2915  }
2916  /* Expand the box where necessary */
2917  else
2918  {
2919  gbox_merge(&edge_gbox, gbox);
2920  }
2921 
2922  A1 = A2;
2923  }
2924 
2925  return LW_SUCCESS;
2926 }
void gbox_duplicate(const GBOX *original, GBOX *duplicate)
Copy the values of original GBOX into duplicate.
Definition: g_box.c:445
double y
Definition: liblwgeom.h:340
int npoints
Definition: liblwgeom.h:371
double xmax
Definition: liblwgeom.h:293
#define LW_SUCCESS
Definition: liblwgeom.h:80
double x
Definition: liblwgeom.h:340
int gbox_merge(const GBOX *new_box, GBOX *merge_box)
Update the merged GBOX to be large enough to include itself and the new box.
Definition: g_box.c:269
#define LW_FAILURE
Definition: liblwgeom.h:79
double z
Definition: liblwgeom.h:340
double zmax
Definition: liblwgeom.h:297
double ymin
Definition: liblwgeom.h:294
void gbox_init(GBOX *gbox)
Zero out all the entries in the GBOX.
Definition: g_box.c:51
double xmin
Definition: liblwgeom.h:292
#define LW_FALSE
Definition: liblwgeom.h:77
const POINT2D * getPoint2d_cp(const POINTARRAY *pa, int n)
Returns a POINT2D pointer into the POINTARRAY serialized_ptlist, suitable for reading from...
Definition: lwgeom_api.c:373
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
void ll2cart(const POINT2D *g, POINT3D *p)
Convert lon/lat coordinates to cartesion coordinates on unit sphere.
Definition: lwgeodetic.c:419
double ymax
Definition: liblwgeom.h:295
uint8_t flags
Definition: liblwgeom.h:291
double zmin
Definition: liblwgeom.h:296
int edge_calculate_gbox(const POINT3D *A1, const POINT3D *A2, GBOX *gbox)
The magic function, given an edge in spherical coordinates, calculate a 3D bounding box that fully co...
Definition: lwgeodetic.c:1404
Here is the call graph for this function:
Here is the caller graph for this function: