PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ 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:1949
POINTARRAY * point
Definition: liblwgeom.h:414

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: