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

◆ 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 1223 of file lwgeodetic.c.

1224{
1225 double d;
1226 GEOGRAPHIC_POINT gcp1s, gcp1e, gcp2s, gcp2e, c1, c2;
1227 double d1s = edge_distance_to_point(e1, &(e2->start), &gcp1s);
1228 double d1e = edge_distance_to_point(e1, &(e2->end), &gcp1e);
1229 double d2s = edge_distance_to_point(e2, &(e1->start), &gcp2s);
1230 double d2e = edge_distance_to_point(e2, &(e1->end), &gcp2e);
1231
1232 d = d1s;
1233 c1 = gcp1s;
1234 c2 = e2->start;
1235
1236 if ( d1e < d )
1237 {
1238 d = d1e;
1239 c1 = gcp1e;
1240 c2 = e2->end;
1241 }
1242
1243 if ( d2s < d )
1244 {
1245 d = d2s;
1246 c1 = e1->start;
1247 c2 = gcp2s;
1248 }
1249
1250 if ( d2e < d )
1251 {
1252 d = d2e;
1253 c1 = e1->end;
1254 c2 = gcp2e;
1255 }
1256
1257 if ( closest1 ) *closest1 = c1;
1258 if ( closest2 ) *closest2 = c2;
1259
1260 return d;
1261}
double edge_distance_to_point(const GEOGRAPHIC_EDGE *e, const GEOGRAPHIC_POINT *gp, GEOGRAPHIC_POINT *closest)
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: