PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ lwgeom_segmentize_sphere()

LWGEOM* lwgeom_segmentize_sphere ( const LWGEOM lwg_in,
double  max_seg_length 
)

Create a new, densified geometry where no segment is longer than max_seg_length.

Derive a new geometry with vertices added to ensure no vertex is more than max_seg_length (in radians) from any other vertex.

Input geometry is not altered, output geometry must be freed by caller.

Parameters
lwg_in= input geometry
max_seg_length= maximum segment length in radians

Definition at line 1749 of file lwgeodetic.c.

1750 {
1751  POINTARRAY *pa_out;
1752  LWLINE *lwline;
1753  LWPOLY *lwpoly_in, *lwpoly_out;
1754  LWCOLLECTION *lwcol_in, *lwcol_out;
1755  uint32_t i;
1756 
1757  /* Reflect NULL */
1758  if ( ! lwg_in )
1759  return NULL;
1760 
1761  /* Clone empty */
1762  if ( lwgeom_is_empty(lwg_in) )
1763  return lwgeom_clone(lwg_in);
1764 
1765  switch (lwg_in->type)
1766  {
1767  case MULTIPOINTTYPE:
1768  case POINTTYPE:
1769  return lwgeom_clone_deep(lwg_in);
1770  break;
1771  case LINETYPE:
1772  lwline = lwgeom_as_lwline(lwg_in);
1773  pa_out = ptarray_segmentize_sphere(lwline->points, max_seg_length);
1774  return lwline_as_lwgeom(lwline_construct(lwg_in->srid, NULL, pa_out));
1775  break;
1776  case POLYGONTYPE:
1777  lwpoly_in = lwgeom_as_lwpoly(lwg_in);
1778  lwpoly_out = lwpoly_construct_empty(lwg_in->srid, lwgeom_has_z(lwg_in), lwgeom_has_m(lwg_in));
1779  for ( i = 0; i < lwpoly_in->nrings; i++ )
1780  {
1781  pa_out = ptarray_segmentize_sphere(lwpoly_in->rings[i], max_seg_length);
1782  lwpoly_add_ring(lwpoly_out, pa_out);
1783  }
1784  return lwpoly_as_lwgeom(lwpoly_out);
1785  break;
1786  case MULTILINETYPE:
1787  case MULTIPOLYGONTYPE:
1788  case COLLECTIONTYPE:
1789  lwcol_in = lwgeom_as_lwcollection(lwg_in);
1790  lwcol_out = lwcollection_construct_empty(lwg_in->type, lwg_in->srid, lwgeom_has_z(lwg_in), lwgeom_has_m(lwg_in));
1791  for ( i = 0; i < lwcol_in->ngeoms; i++ )
1792  {
1793  lwcollection_add_lwgeom(lwcol_out, lwgeom_segmentize_sphere(lwcol_in->geoms[i], max_seg_length));
1794  }
1795  return lwcollection_as_lwgeom(lwcol_out);
1796  break;
1797  default:
1798  lwerror("lwgeom_segmentize_sphere: unsupported input geometry type: %d - %s",
1799  lwg_in->type, lwtype_name(lwg_in->type));
1800  break;
1801  }
1802 
1803  lwerror("lwgeom_segmentize_sphere got to the end of the function, should not happen");
1804  return NULL;
1805 }
LWLINE * lwgeom_as_lwline(const LWGEOM *lwgeom)
Definition: lwgeom.c:179
LWGEOM * lwline_as_lwgeom(const LWLINE *obj)
Definition: lwgeom.c:339
LWGEOM * lwcollection_as_lwgeom(const LWCOLLECTION *obj)
Definition: lwgeom.c:309
#define COLLECTIONTYPE
Definition: liblwgeom.h:108
#define MULTILINETYPE
Definition: liblwgeom.h:106
#define LINETYPE
Definition: liblwgeom.h:103
LWGEOM * lwpoly_as_lwgeom(const LWPOLY *obj)
Definition: lwgeom.c:329
#define MULTIPOINTTYPE
Definition: liblwgeom.h:105
LWGEOM * lwgeom_clone_deep(const LWGEOM *lwgeom)
Deep clone an LWGEOM, everything is copied.
Definition: lwgeom.c:529
int lwpoly_add_ring(LWPOLY *poly, POINTARRAY *pa)
Add a ring, allocating extra space if necessary.
Definition: lwpoly.c:247
int lwgeom_has_z(const LWGEOM *geom)
Return LW_TRUE if geometry has Z ordinates.
Definition: lwgeom.c:934
#define POINTTYPE
LWTYPE numbers, used internally by PostGIS.
Definition: liblwgeom.h:102
LWLINE * lwline_construct(int32_t srid, GBOX *bbox, POINTARRAY *points)
Definition: lwline.c:42
#define MULTIPOLYGONTYPE
Definition: liblwgeom.h:107
#define POLYGONTYPE
Definition: liblwgeom.h:104
LWCOLLECTION * lwcollection_construct_empty(uint8_t type, int32_t srid, char hasz, char hasm)
Definition: lwcollection.c:92
const char * lwtype_name(uint8_t type)
Return the type name string associated with a type number (e.g.
Definition: lwutil.c:216
LWGEOM * lwgeom_clone(const LWGEOM *lwgeom)
Clone LWGEOM object.
Definition: lwgeom.c:491
LWCOLLECTION * lwcollection_add_lwgeom(LWCOLLECTION *col, const LWGEOM *geom)
Appends geom to the collection managed by col.
Definition: lwcollection.c:188
LWCOLLECTION * lwgeom_as_lwcollection(const LWGEOM *lwgeom)
Definition: lwgeom.c:233
LWPOLY * lwgeom_as_lwpoly(const LWGEOM *lwgeom)
Definition: lwgeom.c:215
int lwgeom_has_m(const LWGEOM *geom)
Return LW_TRUE if geometry has M ordinates.
Definition: lwgeom.c:941
LWPOLY * lwpoly_construct_empty(int32_t srid, char hasz, char hasm)
Definition: lwpoly.c:161
LWGEOM * lwgeom_segmentize_sphere(const LWGEOM *lwg_in, double max_seg_length)
Create a new, densified geometry where no segment is longer than max_seg_length.
Definition: lwgeodetic.c:1749
static POINTARRAY * ptarray_segmentize_sphere(const POINTARRAY *pa_in, double max_seg_length)
Create a new point array with no segment longer than the input segment length (expressed in radians!...
Definition: lwgeodetic.c:1690
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
static int lwgeom_is_empty(const LWGEOM *geom)
Return true or false depending on whether a geometry is an "empty" geometry (no vertices members)
Definition: lwinline.h:203
uint32_t ngeoms
Definition: liblwgeom.h:580
LWGEOM ** geoms
Definition: liblwgeom.h:575
uint8_t type
Definition: liblwgeom.h:462
int32_t srid
Definition: liblwgeom.h:460
POINTARRAY * points
Definition: liblwgeom.h:483
POINTARRAY ** rings
Definition: liblwgeom.h:519
uint32_t nrings
Definition: liblwgeom.h:524

References COLLECTIONTYPE, LWCOLLECTION::geoms, LINETYPE, lwcollection_add_lwgeom(), lwcollection_as_lwgeom(), lwcollection_construct_empty(), lwerror(), lwgeom_as_lwcollection(), lwgeom_as_lwline(), lwgeom_as_lwpoly(), lwgeom_clone(), lwgeom_clone_deep(), lwgeom_has_m(), lwgeom_has_z(), lwgeom_is_empty(), lwgeom_segmentize_sphere(), lwline_as_lwgeom(), lwline_construct(), lwpoly_add_ring(), lwpoly_as_lwgeom(), lwpoly_construct_empty(), lwtype_name(), MULTILINETYPE, MULTIPOINTTYPE, MULTIPOLYGONTYPE, LWCOLLECTION::ngeoms, LWPOLY::nrings, LWLINE::points, POINTTYPE, POLYGONTYPE, ptarray_segmentize_sphere(), LWPOLY::rings, LWGEOM::srid, and LWGEOM::type.

Referenced by geography_segmentize(), lwgeom_segmentize_sphere(), test_geos_subdivide(), and test_lwgeom_segmentize_sphere().

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