PostGIS  2.4.9dev-r@@SVN_REVISION@@

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

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

Referenced by lwgeom_to_gml3().

835 {
836  char *output;
837  int size;
838 
839  size = asgml3_point_size(point, srs, precision, opts, prefix, id);
840  output = lwalloc(size);
841  asgml3_point_buf(point, srs, output, precision, opts, prefix, id);
842  return output;
843 }
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:808
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:794
uint8_t precision
Definition: cu_in_twkb.c:25
void * lwalloc(size_t size)
Definition: lwutil.c:229
opts
Definition: ovdump.py:44
Here is the call graph for this function:
Here is the caller graph for this function: