PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ ptarray_segmentize_sphere()

static POINTARRAY* ptarray_segmentize_sphere ( const POINTARRAY pa_in,
double  max_seg_length 
)
static

Create a new point array with no segment longer than the input segment length (expressed in radians!)

Parameters
pa_in- input point array pointer
max_seg_length- maximum output segment length in radians

Definition at line 1690 of file lwgeodetic.c.

1691 {
1692  POINTARRAY *pa_out;
1693  int hasz = ptarray_has_z(pa_in);
1694  int hasm = ptarray_has_m(pa_in);
1695  POINT4D p1, p2;
1696  POINT3D q1, q2;
1697  GEOGRAPHIC_POINT g1, g2;
1698  uint32_t i;
1699 
1700  /* Just crap out on crazy input */
1701  if ( ! pa_in )
1702  lwerror("%s: null input pointarray", __func__);
1703  if ( max_seg_length <= 0.0 )
1704  lwerror("%s: maximum segment length must be positive", __func__);
1705 
1706  /* Empty starting array */
1707  pa_out = ptarray_construct_empty(hasz, hasm, pa_in->npoints);
1708 
1709  /* Simple loop per edge */
1710  for (i = 1; i < pa_in->npoints; i++)
1711  {
1712  getPoint4d_p(pa_in, i-1, &p1);
1713  getPoint4d_p(pa_in, i, &p2);
1714  geographic_point_init(p1.x, p1.y, &g1);
1715  geographic_point_init(p2.x, p2.y, &g2);
1716 
1717  /* Skip duplicate points (except in case of 2-point lines!) */
1718  if ((pa_in->npoints > 2) && p4d_same(&p1, &p2))
1719  continue;
1720 
1721  /* How long is this edge? */
1722  double d = sphere_distance(&g1, &g2);
1723 
1724  if (d > max_seg_length)
1725  {
1726  geog2cart(&g1, &q1);
1727  geog2cart(&g2, &q2);
1728  /* 3-d end points, XYZM end point, current edge size, min edge size */
1729  ptarray_segmentize_sphere_edge_recursive(&q1, &q2, &p1, &p2, d, max_seg_length, pa_out);
1730  }
1731  /* If we don't segmentize, we need to add first point manually */
1732  else
1733  {
1734  ptarray_append_point(pa_out, &p1, LW_TRUE);
1735  }
1736  }
1737  /* Always add the last point */
1738  ptarray_append_point(pa_out, &p2, LW_TRUE);
1739  return pa_out;
1740 }
POINTARRAY * ptarray_construct_empty(char hasz, char hasm, uint32_t maxpoints)
Create a new POINTARRAY with no points.
Definition: ptarray.c:59
int getPoint4d_p(const POINTARRAY *pa, uint32_t n, POINT4D *point)
Definition: lwgeom_api.c:125
int ptarray_append_point(POINTARRAY *pa, const POINT4D *pt, int allow_duplicates)
Append a point to the end of an existing POINTARRAY If allow_duplicate is LW_FALSE,...
Definition: ptarray.c:147
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:93
int p4d_same(const POINT4D *p1, const POINT4D *p2)
Definition: lwalgorithm.c:32
int ptarray_has_z(const POINTARRAY *pa)
Definition: ptarray.c:37
int ptarray_has_m(const POINTARRAY *pa)
Definition: ptarray.c:44
void geographic_point_init(double lon, double lat, GEOGRAPHIC_POINT *g)
Initialize a geographic point.
Definition: lwgeodetic.c:180
static int ptarray_segmentize_sphere_edge_recursive(const POINT3D *p1, const POINT3D *p2, const POINT4D *v1, const POINT4D *v2, double d, double max_seg_length, POINTARRAY *pa)
Definition: lwgeodetic.c:1639
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
void geog2cart(const GEOGRAPHIC_POINT *g, POINT3D *p)
Convert spherical coordinates to cartesian coordinates on unit sphere.
Definition: lwgeodetic.c:404
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
Point in spherical coordinates on the world.
Definition: lwgeodetic.h:54
double x
Definition: liblwgeom.h:414
double y
Definition: liblwgeom.h:414
uint32_t npoints
Definition: liblwgeom.h:427

References geog2cart(), geographic_point_init(), getPoint4d_p(), LW_TRUE, lwerror(), POINTARRAY::npoints, p4d_same(), ptarray_append_point(), ptarray_construct_empty(), ptarray_has_m(), ptarray_has_z(), ptarray_segmentize_sphere_edge_recursive(), sphere_distance(), POINT4D::x, and POINT4D::y.

Referenced by lwgeom_segmentize_sphere().

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