PostGIS  2.5.7dev-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 815 of file lwout_gml.c.

816 {
817  char *output;
818  int size;
819 
820  size = asgml3_point_size(point, srs, precision, opts, prefix, id);
821  output = lwalloc(size);
822  asgml3_point_buf(point, srs, output, precision, opts, prefix, id);
823  return output;
824 }
static uint8_t precision
Definition: cu_in_twkb.c:25
void * lwalloc(size_t size)
Definition: lwutil.c:229
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:775
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:789
opts
Definition: ovdump.py:44

References asgml3_point_buf(), asgml3_point_size(), lwalloc(), ovdump::opts, and precision.

Referenced by lwgeom_to_gml3().

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