PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ 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 775 of file lwout_gml.c.

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

References IS_DIMS, ovdump::opts, 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: