PostGIS  2.4.9dev-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 1265 of file lwgeodetic.c.

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().

1266 {
1267  double d;
1268  GEOGRAPHIC_POINT gcp1s, gcp1e, gcp2s, gcp2e, c1, c2;
1269  double d1s = edge_distance_to_point(e1, &(e2->start), &gcp1s);
1270  double d1e = edge_distance_to_point(e1, &(e2->end), &gcp1e);
1271  double d2s = edge_distance_to_point(e2, &(e1->start), &gcp2s);
1272  double d2e = edge_distance_to_point(e2, &(e1->end), &gcp2e);
1273 
1274  d = d1s;
1275  c1 = gcp1s;
1276  c2 = e2->start;
1277 
1278  if ( d1e < d )
1279  {
1280  d = d1e;
1281  c1 = gcp1e;
1282  c2 = e2->end;
1283  }
1284 
1285  if ( d2s < d )
1286  {
1287  d = d2s;
1288  c1 = e1->start;
1289  c2 = gcp2s;
1290  }
1291 
1292  if ( d2e < d )
1293  {
1294  d = d2e;
1295  c1 = e1->end;
1296  c2 = gcp2e;
1297  }
1298 
1299  if ( closest1 ) *closest1 = c1;
1300  if ( closest2 ) *closest2 = c2;
1301 
1302  return d;
1303 }
Point in spherical coordinates on the world.
Definition: lwgeodetic.h:52
GEOGRAPHIC_POINT start
Definition: lwgeodetic.h:63
double edge_distance_to_point(const GEOGRAPHIC_EDGE *e, const GEOGRAPHIC_POINT *gp, GEOGRAPHIC_POINT *closest)
Definition: lwgeodetic.c:1214
GEOGRAPHIC_POINT end
Definition: lwgeodetic.h:64
Here is the call graph for this function:
Here is the caller graph for this function: