PostGIS  3.2.2dev-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  if (closest)
1228  *closest = e->start;
1229 
1230  return sphere_distance(&(e->start), gp);
1231  }
1232 
1233  robust_cross_product(&(e->start), &(e->end), &n);
1234  normalize(&n);
1235  geog2cart(gp, &p);
1236  vector_scale(&n, dot_product(&p, &n));
1237  vector_difference(&p, &n, &k);
1238  normalize(&k);
1239  cart2geog(&k, &gk);
1240  if ( edge_point_in_cone(e, &gk) )
1241  {
1242  d1 = sphere_distance(gp, &gk);
1243  }
1244  d2 = sphere_distance(gp, &(e->start));
1245  d3 = sphere_distance(gp, &(e->end));
1246 
1247  d_nearest = d1;
1248  g_nearest = gk;
1249 
1250  if ( d2 < d_nearest )
1251  {
1252  d_nearest = d2;
1253  g_nearest = e->start;
1254  }
1255  if ( d3 < d_nearest )
1256  {
1257  d_nearest = d3;
1258  g_nearest = e->end;
1259  }
1260  if (closest)
1261  *closest = g_nearest;
1262 
1263  return d_nearest;
1264 }
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
int edge_point_in_cone(const GEOGRAPHIC_EDGE *e, const GEOGRAPHIC_POINT *p)
Returns true if the point p is inside the cone defined by the two ends of the edge e.
Definition: lwgeodetic.c:788
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 geographic_point_equals(const GEOGRAPHIC_POINT *g1, const GEOGRAPHIC_POINT *g2)
Definition: lwgeodetic.c:170
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 cart2geog(), dot_product(), edge_point_in_cone(), 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: