PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ edge_distance_to_point()

double edge_distance_to_point ( const GEOGRAPHIC_EDGE e,
const GEOGRAPHIC_POINT gp,
GEOGRAPHIC_POINT closest 
)

Definition at line 1218 of file lwgeodetic.c.

1219 {
1220  double d1 = 1000000000.0, d2, d3, d_nearest;
1221  POINT3D n, p, k;
1222  GEOGRAPHIC_POINT gk, g_nearest;
1223 
1224  /* Zero length edge, */
1225  if ( geographic_point_equals(&(e->start), &(e->end)) )
1226  {
1227  *closest = e->start;
1228  return sphere_distance(&(e->start), gp);
1229  }
1230 
1231  robust_cross_product(&(e->start), &(e->end), &n);
1232  normalize(&n);
1233  geog2cart(gp, &p);
1234  vector_scale(&n, dot_product(&p, &n));
1235  vector_difference(&p, &n, &k);
1236  normalize(&k);
1237  cart2geog(&k, &gk);
1238  if ( edge_contains_point(e, &gk) )
1239  {
1240  d1 = sphere_distance(gp, &gk);
1241  }
1242  d2 = sphere_distance(gp, &(e->start));
1243  d3 = sphere_distance(gp, &(e->end));
1244 
1245  d_nearest = d1;
1246  g_nearest = gk;
1247 
1248  if ( d2 < d_nearest )
1249  {
1250  d_nearest = d2;
1251  g_nearest = e->start;
1252  }
1253  if ( d3 < d_nearest )
1254  {
1255  d_nearest = d3;
1256  g_nearest = e->end;
1257  }
1258  if (closest)
1259  *closest = g_nearest;
1260 
1261  return d_nearest;
1262 }
void normalize(POINT3D *p)
Normalize to a unit vector.
Definition: lwgeodetic.c:615
void vector_scale(POINT3D *n, double scale)
Scale a vector out by a factor.
Definition: lwgeodetic.c:487
void cart2geog(const POINT3D *p, GEOGRAPHIC_POINT *g)
Convert cartesian coordinates on unit sphere to spherical coordinates.
Definition: lwgeodetic.c:414
void robust_cross_product(const GEOGRAPHIC_POINT *p, const GEOGRAPHIC_POINT *q, POINT3D *a)
Computes the cross product of two vectors using their lat, lng representations.
Definition: lwgeodetic.c:634
static void vector_difference(const POINT3D *a, const POINT3D *b, POINT3D *n)
Calculate the difference of two vectors.
Definition: lwgeodetic.c:476
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
static double dot_product(const POINT3D *p1, const POINT3D *p2)
Convert cartesian coordinates on unit sphere to lon/lat coordinates static void cart2ll(const POINT3D...
Definition: lwgeodetic.c:446
void geog2cart(const GEOGRAPHIC_POINT *g, POINT3D *p)
Convert spherical coordinates to cartesian coordinates on unit sphere.
Definition: lwgeodetic.c:404
int edge_contains_point(const GEOGRAPHIC_EDGE *e, const GEOGRAPHIC_POINT *p)
Returns true if the point p is on the minor edge defined by the end points of e.
Definition: lwgeodetic.c:1034
int geographic_point_equals(const GEOGRAPHIC_POINT *g1, const GEOGRAPHIC_POINT *g2)
Definition: lwgeodetic.c:170
GEOGRAPHIC_POINT start
Definition: lwgeodetic.h:63
GEOGRAPHIC_POINT end
Definition: lwgeodetic.h:64
Point in spherical coordinates on the world.
Definition: lwgeodetic.h:53

References cart2geog(), dot_product(), edge_contains_point(), GEOGRAPHIC_EDGE::end, geog2cart(), geographic_point_equals(), normalize(), robust_cross_product(), sphere_distance(), GEOGRAPHIC_EDGE::start, vector_difference(), and vector_scale().

Referenced by circ_tree_contains_point(), circ_tree_distance_tree_internal(), edge_distance_to_edge(), ptarray_distance_spheroid(), and test_edge_distance_to_point().

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