PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ edge_distance_to_edge()

double edge_distance_to_edge ( const GEOGRAPHIC_EDGE e1,
const GEOGRAPHIC_EDGE e2,
GEOGRAPHIC_POINT closest1,
GEOGRAPHIC_POINT closest2 
)

Calculate the distance between two edges.

IMPORTANT: this test does not check for edge intersection!!! (distance == 0) You have to check for intersection before calling this function.

Definition at line 1275 of file lwgeodetic.c.

1276 {
1277  double d;
1278  GEOGRAPHIC_POINT gcp1s, gcp1e, gcp2s, gcp2e, c1, c2;
1279  double d1s = edge_distance_to_point(e1, &(e2->start), &gcp1s);
1280  double d1e = edge_distance_to_point(e1, &(e2->end), &gcp1e);
1281  double d2s = edge_distance_to_point(e2, &(e1->start), &gcp2s);
1282  double d2e = edge_distance_to_point(e2, &(e1->end), &gcp2e);
1283 
1284  d = d1s;
1285  c1 = gcp1s;
1286  c2 = e2->start;
1287 
1288  if ( d1e < d )
1289  {
1290  d = d1e;
1291  c1 = gcp1e;
1292  c2 = e2->end;
1293  }
1294 
1295  if ( d2s < d )
1296  {
1297  d = d2s;
1298  c1 = e1->start;
1299  c2 = gcp2s;
1300  }
1301 
1302  if ( d2e < d )
1303  {
1304  d = d2e;
1305  c1 = e1->end;
1306  c2 = gcp2e;
1307  }
1308 
1309  if ( closest1 ) *closest1 = c1;
1310  if ( closest2 ) *closest2 = c2;
1311 
1312  return d;
1313 }
double edge_distance_to_point(const GEOGRAPHIC_EDGE *e, const GEOGRAPHIC_POINT *gp, GEOGRAPHIC_POINT *closest)
Definition: lwgeodetic.c:1222
GEOGRAPHIC_POINT start
Definition: lwgeodetic.h:64
GEOGRAPHIC_POINT end
Definition: lwgeodetic.h:65
Point in spherical coordinates on the world.
Definition: lwgeodetic.h:54

References edge_distance_to_point(), GEOGRAPHIC_EDGE::end, and GEOGRAPHIC_EDGE::start.

Referenced by circ_tree_distance_tree_internal(), ptarray_distance_spheroid(), and test_edge_distance_to_edge().

Here is the call graph for this function:
Here is the caller graph for this function: