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

◆ edge_intersection()

int edge_intersection ( const GEOGRAPHIC_EDGE e1,
const GEOGRAPHIC_EDGE e2,
GEOGRAPHIC_POINT g 
)

Returns true if an intersection can be calculated, and places it in *g.

Returns false otherwise.

Definition at line 1079 of file lwgeodetic.c.

1080{
1081 POINT3D ea, eb, v;
1082 LWDEBUGF(4, "e1 start(%.20g %.20g) end(%.20g %.20g)", e1->start.lat, e1->start.lon, e1->end.lat, e1->end.lon);
1083 LWDEBUGF(4, "e2 start(%.20g %.20g) end(%.20g %.20g)", e2->start.lat, e2->start.lon, e2->end.lat, e2->end.lon);
1084
1085 LWDEBUGF(4, "e1 start(%.20g %.20g) end(%.20g %.20g)", rad2deg(e1->start.lon), rad2deg(e1->start.lat), rad2deg(e1->end.lon), rad2deg(e1->end.lat));
1086 LWDEBUGF(4, "e2 start(%.20g %.20g) end(%.20g %.20g)", rad2deg(e2->start.lon), rad2deg(e2->start.lat), rad2deg(e2->end.lon), rad2deg(e2->end.lat));
1087
1088 if ( geographic_point_equals(&(e1->start), &(e2->start)) )
1089 {
1090 *g = e1->start;
1091 return LW_TRUE;
1092 }
1093 if ( geographic_point_equals(&(e1->end), &(e2->end)) )
1094 {
1095 *g = e1->end;
1096 return LW_TRUE;
1097 }
1098 if ( geographic_point_equals(&(e1->end), &(e2->start)) )
1099 {
1100 *g = e1->end;
1101 return LW_TRUE;
1102 }
1103 if ( geographic_point_equals(&(e1->start), &(e2->end)) )
1104 {
1105 *g = e1->start;
1106 return LW_TRUE;
1107 }
1108
1109 robust_cross_product(&(e1->start), &(e1->end), &ea);
1110 normalize(&ea);
1111 robust_cross_product(&(e2->start), &(e2->end), &eb);
1112 normalize(&eb);
1113 LWDEBUGF(4, "e1 cross product == POINT(%.12g %.12g %.12g)", ea.x, ea.y, ea.z);
1114 LWDEBUGF(4, "e2 cross product == POINT(%.12g %.12g %.12g)", eb.x, eb.y, eb.z);
1115 LWDEBUGF(4, "fabs(dot_product(ea, eb)) == %.14g", fabs(dot_product(&ea, &eb)));
1116 if ( FP_EQUALS(fabs(dot_product(&ea, &eb)), 1.0) )
1117 {
1118 LWDEBUGF(4, "parallel edges found! dot_product = %.12g", dot_product(&ea, &eb));
1119 /* Parallel (maybe equal) edges! */
1120 /* Hack alert, only returning ONE end of the edge right now, most do better later. */
1121 /* Hack alert #2, returning a value of 2 to indicate a co-linear crossing event. */
1122 if ( edge_contains_point(e1, &(e2->start)) )
1123 {
1124 *g = e2->start;
1125 return 2;
1126 }
1127 if ( edge_contains_point(e1, &(e2->end)) )
1128 {
1129 *g = e2->end;
1130 return 2;
1131 }
1132 if ( edge_contains_point(e2, &(e1->start)) )
1133 {
1134 *g = e1->start;
1135 return 2;
1136 }
1137 if ( edge_contains_point(e2, &(e1->end)) )
1138 {
1139 *g = e1->end;
1140 return 2;
1141 }
1142 }
1143 unit_normal(&ea, &eb, &v);
1144 LWDEBUGF(4, "v == POINT(%.12g %.12g %.12g)", v.x, v.y, v.z);
1145 g->lat = atan2(v.z, sqrt(v.x * v.x + v.y * v.y));
1146 g->lon = atan2(v.y, v.x);
1147 LWDEBUGF(4, "g == GPOINT(%.12g %.12g)", g->lat, g->lon);
1148 LWDEBUGF(4, "g == POINT(%.12g %.12g)", rad2deg(g->lon), rad2deg(g->lat));
1149 if ( edge_contains_point(e1, g) && edge_contains_point(e2, g) )
1150 {
1151 return LW_TRUE;
1152 }
1153 else
1154 {
1155 LWDEBUG(4, "flipping point to other side of sphere");
1156 g->lat = -1.0 * g->lat;
1157 g->lon = g->lon + M_PI;
1158 if ( g->lon > M_PI )
1159 {
1160 g->lon = -1.0 * (2.0 * M_PI - g->lon);
1161 }
1162 if ( edge_contains_point(e1, g) && edge_contains_point(e2, g) )
1163 {
1164 return LW_TRUE;
1165 }
1166 }
1167 return LW_FALSE;
1168}
#define LW_FALSE
Definition liblwgeom.h:94
#define LW_TRUE
Return types for functions with status returns.
Definition liblwgeom.h:93
#define FP_EQUALS(A, B)
void normalize(POINT3D *p)
Normalize to a unit vector.
Definition lwgeodetic.c:615
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
void unit_normal(const POINT3D *P1, const POINT3D *P2, POINT3D *normal)
Calculates the unit normal to two vectors, trying to avoid problems with over-narrow or over-wide cas...
Definition lwgeodetic.c:541
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
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:986
int geographic_point_equals(const GEOGRAPHIC_POINT *g1, const GEOGRAPHIC_POINT *g2)
Definition lwgeodetic.c:170
#define rad2deg(r)
Definition lwgeodetic.h:81
#define LWDEBUG(level, msg)
Definition lwgeom_log.h:101
#define LWDEBUGF(level, msg,...)
Definition lwgeom_log.h:106
GEOGRAPHIC_POINT start
Definition lwgeodetic.h:64
GEOGRAPHIC_POINT end
Definition lwgeodetic.h:65
double z
Definition liblwgeom.h:402
double x
Definition liblwgeom.h:402
double y
Definition liblwgeom.h:402

References dot_product(), edge_contains_point(), GEOGRAPHIC_EDGE::end, FP_EQUALS, geographic_point_equals(), GEOGRAPHIC_POINT::lat, GEOGRAPHIC_POINT::lon, LW_FALSE, LW_TRUE, LWDEBUG, LWDEBUGF, normalize(), rad2deg, robust_cross_product(), GEOGRAPHIC_EDGE::start, unit_normal(), POINT3D::x, POINT3D::y, and POINT3D::z.

Referenced by circ_tree_distance_tree_internal(), and test_edge_intersection().

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