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

◆ asgml3_point()

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

Definition at line 814 of file lwout_gml.c.

815{
816 char *output;
817 int size;
818
819 size = asgml3_point_size(point, srs, precision, opts, prefix, id);
820 output = lwalloc(size);
821 asgml3_point_buf(point, srs, output, precision, opts, prefix, id);
822 return output;
823}
static uint8_t precision
Definition cu_in_twkb.c:25
void * lwalloc(size_t size)
Definition lwutil.c:227
static size_t asgml3_point_size(const LWPOINT *point, const char *srs, int precision, int opts, const char *prefix, const char *id)
Definition lwout_gml.c:774
static size_t asgml3_point_buf(const LWPOINT *point, const char *srs, char *output, int precision, int opts, const char *prefix, const char *id)
Definition lwout_gml.c:788

References asgml3_point_buf(), asgml3_point_size(), lwalloc(), and precision.

Referenced by lwgeom_to_gml3().

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