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

◆ asgml3_point_size()

static size_t asgml3_point_size ( const LWPOINT point,
const char *  srs,
int  precision,
int  opts,
const char *  prefix,
const char *  id 
)
static

Definition at line 774 of file lwout_gml.c.

775{
776 int size;
777 size_t prefixlen = strlen(prefix);
778
779 size = pointArray_GMLsize(point->point, precision);
780 size += ( sizeof("<point><pos>/") + (prefixlen*2) ) * 2;
781 if (srs) size += strlen(srs) + sizeof(" srsName=..");
782 if (id) size += strlen(id) + strlen(prefix) + sizeof(" id=..");
783 if (IS_DIMS(opts)) size += sizeof(" srsDimension='x'");
784 return size;
785}
static uint8_t precision
Definition cu_in_twkb.c:25
#define IS_DIMS(x)
Definition liblwgeom.h:1657
static size_t pointArray_GMLsize(POINTARRAY *pa, int precision)
Definition lwout_gml.c:1947
POINTARRAY * point
Definition liblwgeom.h:457

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

Referenced by asgml3_collection_size(), asgml3_multi_size(), and asgml3_point().

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