PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ asgml3_poly()

static char * asgml3_poly ( const LWPOLY poly,
const char *  srs,
int  precision,
int  opts,
int  is_patch,
const char *  prefix,
const char *  id 
)
static

Definition at line 1065 of file lwout_gml.c.

1066 {
1067  char *output;
1068  int size;
1069 
1070  size = asgml3_poly_size(poly, srs, precision, opts, prefix, id);
1071  output = lwalloc(size);
1072  asgml3_poly_buf(poly, srs, output, precision, opts, is_patch, prefix, id);
1073  return output;
1074 }
static uint8_t precision
Definition: cu_in_twkb.c:25
void * lwalloc(size_t size)
Definition: lwutil.c:229
static size_t asgml3_poly_size(const LWPOLY *poly, const char *srs, int precision, int opts, const char *prefix, const char *id)
Definition: lwout_gml.c:995
static size_t asgml3_poly_buf(const LWPOLY *poly, const char *srs, char *output, int precision, int opts, int is_patch, const char *prefix, const char *id)
Definition: lwout_gml.c:1015
opts
Definition: ovdump.py:44

References asgml3_poly_buf(), asgml3_poly_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: