PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ edge_calculate_gbox_slow()

int edge_calculate_gbox_slow ( const GEOGRAPHIC_EDGE e,
GBOX gbox 
)

Definition at line 1350 of file lwgeodetic.c.

1351 {
1352  int steps = 1000000;
1353  int i;
1354  double dx, dy, dz;
1355  double distance = sphere_distance(&(e->start), &(e->end));
1356  POINT3D pn, p, start, end;
1357 
1358  /* Edge is zero length, just return the naive box */
1359  if ( FP_IS_ZERO(distance) )
1360  {
1361  LWDEBUG(4, "edge is zero length. returning");
1362  geog2cart(&(e->start), &start);
1363  geog2cart(&(e->end), &end);
1364  gbox_init_point3d(&start, gbox);
1365  gbox_merge_point3d(&end, gbox);
1366  return LW_SUCCESS;
1367  }
1368 
1369  /* Edge is antipodal (one point on each side of the globe),
1370  set the box to contain the whole world and return */
1371  if ( FP_EQUALS(distance, M_PI) )
1372  {
1373  LWDEBUG(4, "edge is antipodal. setting to maximum size box, and returning");
1374  gbox->xmin = gbox->ymin = gbox->zmin = -1.0;
1375  gbox->xmax = gbox->ymax = gbox->zmax = 1.0;
1376  return LW_SUCCESS;
1377  }
1378 
1379  /* Walk along the chord between start and end incrementally,
1380  normalizing at each step. */
1381  geog2cart(&(e->start), &start);
1382  geog2cart(&(e->end), &end);
1383  dx = (end.x - start.x)/steps;
1384  dy = (end.y - start.y)/steps;
1385  dz = (end.z - start.z)/steps;
1386  p = start;
1387  gbox->xmin = gbox->xmax = p.x;
1388  gbox->ymin = gbox->ymax = p.y;
1389  gbox->zmin = gbox->zmax = p.z;
1390  for ( i = 0; i < steps; i++ )
1391  {
1392  p.x += dx;
1393  p.y += dy;
1394  p.z += dz;
1395  pn = p;
1396  normalize(&pn);
1397  gbox_merge_point3d(&pn, gbox);
1398  }
1399  return LW_SUCCESS;
1400 }
int gbox_merge_point3d(const POINT3D *p, GBOX *gbox)
Update the GBOX to be large enough to include itself and the new point.
Definition: gbox.c:228
int gbox_init_point3d(const POINT3D *p, GBOX *gbox)
Initialize a GBOX using the values of the point.
Definition: gbox.c:239
#define LW_SUCCESS
Definition: liblwgeom.h:97
#define FP_EQUALS(A, B)
#define FP_IS_ZERO(A)
void normalize(POINT3D *p)
Normalize to a unit vector.
Definition: lwgeodetic.c:615
double sphere_distance(const GEOGRAPHIC_POINT *s, const GEOGRAPHIC_POINT *e)
Given two points on a unit sphere, calculate their distance apart in radians.
Definition: lwgeodetic.c:948
void geog2cart(const GEOGRAPHIC_POINT *g, POINT3D *p)
Convert spherical coordinates to cartesian coordinates on unit sphere.
Definition: lwgeodetic.c:404
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
static double distance(double x1, double y1, double x2, double y2)
Definition: lwtree.c:1032
double ymax
Definition: liblwgeom.h:357
double zmax
Definition: liblwgeom.h:359
double xmax
Definition: liblwgeom.h:355
double zmin
Definition: liblwgeom.h:358
double ymin
Definition: liblwgeom.h:356
double xmin
Definition: liblwgeom.h:354
GEOGRAPHIC_POINT start
Definition: lwgeodetic.h:64
GEOGRAPHIC_POINT end
Definition: lwgeodetic.h:65
double z
Definition: liblwgeom.h:402
double x
Definition: liblwgeom.h:402
double y
Definition: liblwgeom.h:402

References distance(), GEOGRAPHIC_EDGE::end, FP_EQUALS, FP_IS_ZERO, gbox_init_point3d(), gbox_merge_point3d(), geog2cart(), LW_SUCCESS, LWDEBUG, normalize(), sphere_distance(), GEOGRAPHIC_EDGE::start, POINT3D::x, GBOX::xmax, GBOX::xmin, POINT3D::y, GBOX::ymax, GBOX::ymin, POINT3D::z, GBOX::zmax, and GBOX::zmin.

Here is the call graph for this function: