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

◆ asgml2_point_size()

static size_t asgml2_point_size ( const LWPOINT point,
const char *  srs,
int  precision,
const char *  prefix 
)
static

Definition at line 271 of file lwout_gml.c.

272{
273 int size;
274 size_t prefixlen = strlen(prefix);
275
276 size = pointArray_GMLsize(point->point, precision);
277 size += ( sizeof("<point><coordinates>/") + (prefixlen*2) ) * 2;
278 if ( srs ) size += strlen(srs) + sizeof(" srsName=..");
279 return size;
280}
static uint8_t precision
Definition cu_in_twkb.c:25
static size_t pointArray_GMLsize(POINTARRAY *pa, int precision)
Definition lwout_gml.c:1947
POINTARRAY * point
Definition liblwgeom.h:457

References LWPOINT::point, pointArray_GMLsize(), and precision.

Referenced by asgml2_collection_size(), asgml2_multi_size(), and asgml2_point().

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