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

◆ lwpoint_to_latlon()

char * lwpoint_to_latlon ( const LWPOINT pt,
const char *  format 
)

Definition at line 428 of file lwprint.c.

429{
430 const POINT2D *p;
431 if (NULL == pt)
432 {
433 lwerror("Cannot convert a null point into formatted text.");
434 }
435 if (lwgeom_is_empty((LWGEOM *)pt))
436 {
437 lwerror("Cannot convert an empty point into formatted text.");
438 }
439 p = getPoint2d_cp(pt->point, 0);
440 return lwdoubles_to_latlon(p->y, p->x, format);
441}
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:193
static const POINT2D * getPoint2d_cp(const POINTARRAY *pa, uint32_t n)
Returns a POINT2D pointer into the POINTARRAY serialized_ptlist, suitable for reading from.
Definition lwinline.h:91
static char * lwdoubles_to_latlon(double lat, double lon, const char *format)
Definition lwprint.c:399
double y
Definition liblwgeom.h:376
double x
Definition liblwgeom.h:376

References getPoint2d_cp(), lwdoubles_to_latlon(), lwerror(), lwgeom_is_empty(), LWPOINT::point, POINT2D::x, and POINT2D::y.

Referenced by LWGEOM_to_latlon(), test_lwprint_assert_error(), and test_lwprint_assert_format().

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