PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ edge_calculate_gbox_slow()

int edge_calculate_gbox_slow ( const GEOGRAPHIC_EDGE e,
GBOX gbox 
)

Definition at line 1344 of file lwgeodetic.c.

1345{
1346 int steps = 1000000;
1347 int i;
1348 double dx, dy, dz;
1349 double distance = sphere_distance(&(e->start), &(e->end));
1350 POINT3D pn, p, start, end;
1351
1352 /* Edge is zero length, just return the naive box */
1353 if ( FP_IS_ZERO(distance) )
1354 {
1355 LWDEBUG(4, "edge is zero length. returning");
1356 geog2cart(&(e->start), &start);
1357 geog2cart(&(e->end), &end);
1358 gbox_init_point3d(&start, gbox);
1359 gbox_merge_point3d(&end, gbox);
1360 return LW_SUCCESS;
1361 }
1362
1363 /* Edge is antipodal (one point on each side of the globe),
1364 set the box to contain the whole world and return */
1365 if ( FP_EQUALS(distance, M_PI) )
1366 {
1367 LWDEBUG(4, "edge is antipodal. setting to maximum size box, and returning");
1368 gbox->xmin = gbox->ymin = gbox->zmin = -1.0;
1369 gbox->xmax = gbox->ymax = gbox->zmax = 1.0;
1370 return LW_SUCCESS;
1371 }
1372
1373 /* Walk along the chord between start and end incrementally,
1374 normalizing at each step. */
1375 geog2cart(&(e->start), &start);
1376 geog2cart(&(e->end), &end);
1377 dx = (end.x - start.x)/steps;
1378 dy = (end.y - start.y)/steps;
1379 dz = (end.z - start.z)/steps;
1380 p = start;
1381 gbox->xmin = gbox->xmax = p.x;
1382 gbox->ymin = gbox->ymax = p.y;
1383 gbox->zmin = gbox->zmax = p.z;
1384 for ( i = 0; i < steps; i++ )
1385 {
1386 p.x += dx;
1387 p.y += dy;
1388 p.z += dz;
1389 pn = p;
1390 normalize(&pn);
1391 gbox_merge_point3d(&pn, gbox);
1392 }
1393 return LW_SUCCESS;
1394}
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:111
#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:343
double zmax
Definition liblwgeom.h:345
double xmax
Definition liblwgeom.h:341
double zmin
Definition liblwgeom.h:344
double ymin
Definition liblwgeom.h:342
double xmin
Definition liblwgeom.h:340
GEOGRAPHIC_POINT start
Definition lwgeodetic.h:64
GEOGRAPHIC_POINT end
Definition lwgeodetic.h:65
double z
Definition liblwgeom.h:388
double x
Definition liblwgeom.h:388
double y
Definition liblwgeom.h:388

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: