PostGIS  3.2.2dev-r@@SVN_REVISION@@

◆ lwgeom_covers_lwgeom_sphere()

int lwgeom_covers_lwgeom_sphere ( const LWGEOM lwgeom1,
const LWGEOM lwgeom2 
)

Calculate covers predicate for two lwgeoms on the sphere.

Currently only handles point-in-polygon.

Definition at line 2418 of file lwgeodetic.c.

2419 {
2420  int type1, type2;
2421  GBOX gbox1, gbox2;
2422  gbox1.flags = gbox2.flags = 0;
2423 
2424  assert(lwgeom1);
2425  assert(lwgeom2);
2426 
2427  type1 = lwgeom1->type;
2428  type2 = lwgeom2->type;
2429 
2430  /* dim(geom2) > dim(geom1) always returns false (because geom2 is bigger) */
2431  if ( (type1 == POINTTYPE && type2 == LINETYPE)
2432  || (type1 == POINTTYPE && type2 == POLYGONTYPE)
2433  || (type1 == LINETYPE && type2 == POLYGONTYPE) )
2434  {
2435  LWDEBUG(4, "dimension of geom2 is bigger than geom1");
2436  return LW_FALSE;
2437  }
2438 
2439  /* Make sure we have boxes */
2440  if ( lwgeom1->bbox )
2441  gbox1 = *(lwgeom1->bbox);
2442  else
2443  lwgeom_calculate_gbox_geodetic(lwgeom1, &gbox1);
2444 
2445  /* Make sure we have boxes */
2446  if ( lwgeom2->bbox )
2447  gbox2 = *(lwgeom2->bbox);
2448  else
2449  lwgeom_calculate_gbox_geodetic(lwgeom2, &gbox2);
2450 
2451 
2452  /* Handle the polygon/point case */
2453  if ( type1 == POLYGONTYPE && type2 == POINTTYPE )
2454  {
2455  POINT2D pt_to_test;
2456  getPoint2d_p(((LWPOINT*)lwgeom2)->point, 0, &pt_to_test);
2457  return lwpoly_covers_point2d((LWPOLY*)lwgeom1, &pt_to_test);
2458  }
2459  else if ( type1 == POLYGONTYPE && type2 == LINETYPE)
2460  {
2461  return lwpoly_covers_lwline((LWPOLY*)lwgeom1, (LWLINE*)lwgeom2);
2462  }
2463  else if ( type1 == POLYGONTYPE && type2 == POLYGONTYPE)
2464  {
2465  return lwpoly_covers_lwpoly((LWPOLY*)lwgeom1, (LWPOLY*)lwgeom2);
2466  }
2467  else if ( type1 == LINETYPE && type2 == POINTTYPE)
2468  {
2469  return lwline_covers_lwpoint((LWLINE*)lwgeom1, (LWPOINT*)lwgeom2);
2470  }
2471  else if ( type1 == LINETYPE && type2 == LINETYPE)
2472  {
2473  return lwline_covers_lwline((LWLINE*)lwgeom1, (LWLINE*)lwgeom2);
2474  }
2475  else if ( type1 == POINTTYPE && type2 == POINTTYPE)
2476  {
2477  return lwpoint_same((LWPOINT*)lwgeom1, (LWPOINT*)lwgeom2);
2478  }
2479 
2480  /* If any of the first argument parts covers the second argument, it's true */
2481  if ( lwtype_is_collection( type1 ) )
2482  {
2483  uint32_t i;
2484  LWCOLLECTION *col = (LWCOLLECTION*)lwgeom1;
2485 
2486  for ( i = 0; i < col->ngeoms; i++ )
2487  {
2488  if ( lwgeom_covers_lwgeom_sphere(col->geoms[i], lwgeom2) )
2489  {
2490  return LW_TRUE;
2491  }
2492  }
2493  return LW_FALSE;
2494  }
2495 
2496  /* Only if all of the second arguments are covered by the first argument is the condition true */
2497  if ( lwtype_is_collection( type2 ) )
2498  {
2499  uint32_t i;
2500  LWCOLLECTION *col = (LWCOLLECTION*)lwgeom2;
2501 
2502  for ( i = 0; i < col->ngeoms; i++ )
2503  {
2504  if ( ! lwgeom_covers_lwgeom_sphere(lwgeom1, col->geoms[i]) )
2505  {
2506  return LW_FALSE;
2507  }
2508  }
2509  return LW_TRUE;
2510  }
2511 
2512  /* Don't get here */
2513  lwerror("lwgeom_covers_lwgeom_sphere: reached end of function without resolution");
2514  return LW_FALSE;
2515 
2516 }
#define LW_FALSE
Definition: liblwgeom.h:108
#define LINETYPE
Definition: liblwgeom.h:117
int getPoint2d_p(const POINTARRAY *pa, uint32_t n, POINT2D *point)
Definition: lwgeom_api.c:343
int lwtype_is_collection(uint8_t type)
Determine whether a type number is a collection or not.
Definition: lwgeom.c:1088
#define POINTTYPE
LWTYPE numbers, used internally by PostGIS.
Definition: liblwgeom.h:116
#define POLYGONTYPE
Definition: liblwgeom.h:118
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:107
char lwpoint_same(const LWPOINT *p1, const LWPOINT *p2)
Definition: lwpoint.c:264
int lwpoly_covers_point2d(const LWPOLY *poly, const POINT2D *pt_to_test)
Given a polygon (lon/lat decimal degrees) and point (lon/lat decimal degrees) and a guaranteed outsid...
Definition: lwgeodetic.c:2523
int lwline_covers_lwpoint(const LWLINE *lwline, const LWPOINT *lwpoint)
return LW_TRUE if any of the line segments covers the point
Definition: lwgeodetic.c:2749
int lwpoly_covers_lwpoly(const LWPOLY *poly1, const LWPOLY *poly2)
Given a polygon1 check if all points of polygon2 are inside polygon1 and no intersections of the poly...
Definition: lwgeodetic.c:2607
int lwgeom_calculate_gbox_geodetic(const LWGEOM *geom, GBOX *gbox)
Calculate the geodetic bounding box for an LWGEOM.
Definition: lwgeodetic.c:3002
int lwpoly_covers_lwline(const LWPOLY *poly, const LWLINE *line)
Definition: lwgeodetic.c:2652
int lwgeom_covers_lwgeom_sphere(const LWGEOM *lwgeom1, const LWGEOM *lwgeom2)
Calculate covers predicate for two lwgeoms on the sphere.
Definition: lwgeodetic.c:2418
int lwline_covers_lwline(const LWLINE *lwline1, const LWLINE *lwline2)
Check if first and last point of line2 are covered by line1 and then each point in between has to be ...
Definition: lwgeodetic.c:2778
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
lwflags_t flags
Definition: liblwgeom.h:367
uint32_t ngeoms
Definition: liblwgeom.h:594
LWGEOM ** geoms
Definition: liblwgeom.h:589
uint8_t type
Definition: liblwgeom.h:476
GBOX * bbox
Definition: liblwgeom.h:472

References LWGEOM::bbox, GBOX::flags, LWCOLLECTION::geoms, getPoint2d_p(), LINETYPE, LW_FALSE, LW_TRUE, LWDEBUG, lwerror(), lwgeom_calculate_gbox_geodetic(), lwgeom_covers_lwgeom_sphere(), lwline_covers_lwline(), lwline_covers_lwpoint(), lwpoint_same(), lwpoly_covers_lwline(), lwpoly_covers_lwpoly(), lwpoly_covers_point2d(), lwtype_is_collection(), LWCOLLECTION::ngeoms, POINTTYPE, POLYGONTYPE, and LWGEOM::type.

Referenced by geography_coveredby(), geography_covers(), and lwgeom_covers_lwgeom_sphere().

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