PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwgeom_to_ewkt()

char* lwgeom_to_ewkt ( const LWGEOM lwgeom)

Return an alloced string.

Parameters
lwgeomgeometry to convert to EWKT

Definition at line 518 of file lwgeom.c.

References lwerror(), lwgeom_to_wkt(), and WKT_EXTENDED.

Referenced by cu_twkb_idlist(), do_geom_test(), do_median_test(), LWGEOM_GEOS_buildArea(), LWGEOM_GEOS_makeValid(), LWGEOM_GEOS_makeValidPolygon(), LWGEOM_GEOS_nodeLines(), lwline_clip_to_ordinate_range(), lwline_crossing_direction(), lwpoly_covers_point2d(), polyhedralsurface_parse(), test_geos_linemerge(), test_geos_noop(), test_geos_subdivide(), test_grid(), test_lwgeom_as_curve(), test_lwgeom_clip_by_rect(), test_lwgeom_clone(), test_lwgeom_delaunay_triangulation(), test_lwgeom_force_clockwise(), test_lwgeom_from_gserialized(), test_lwgeom_make_valid(), test_lwgeom_node(), test_lwgeom_scale(), test_lwgeom_segmentize2d(), test_lwgeom_simplify(), test_lwgeom_split(), test_lwgeom_wrapx(), test_lwline_clip(), test_lwline_clip_big(), test_lwmline_clip(), test_misc_force_2d(), test_misc_simplify(), test_sfcgal_noop(), tin_parse(), and triangle_parse().

519 {
520  char* wkt = NULL;
521  size_t wkt_size = 0;
522 
523  wkt = lwgeom_to_wkt(lwgeom, WKT_EXTENDED, 12, &wkt_size);
524 
525  if ( ! wkt )
526  {
527  lwerror("Error writing geom %p to WKT", lwgeom);
528  }
529 
530  return wkt;
531 }
char * lwgeom_to_wkt(const LWGEOM *geom, uint8_t variant, int precision, size_t *size_out)
WKT emitter function.
Definition: lwout_wkt.c:669
#define WKT_EXTENDED
Definition: liblwgeom.h:2085
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
Here is the call graph for this function:
Here is the caller graph for this function: