PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ asgml3_circstring()

static char * asgml3_circstring ( const LWCIRCSTRING circ,
const char *  srs,
int  precision,
int  opts,
const char *  prefix,
const char *  id 
)
static

Definition at line 1001 of file lwout_gml.c.

References asgml3_circstring_buf(), asgml3_circstring_size(), and lwalloc().

Referenced by lwgeom_to_gml3().

1002 {
1003  char *output;
1004  int size;
1005 
1006  size = asgml3_circstring_size(circ, srs, precision, opts, prefix, id);
1007  output = lwalloc( size );
1008  asgml3_circstring_buf(circ, srs, output, precision, opts, prefix, id);
1009  return output;
1010 }
static size_t asgml3_circstring_buf(const LWCIRCSTRING *circ, const char *srs, char *output, int precision, int opts, const char *prefix, const char *id)
Definition: lwout_gml.c:962
uint8_t precision
Definition: cu_in_twkb.c:25
static size_t asgml3_circstring_size(const LWCIRCSTRING *circ, const char *srs, int precision, int opts, const char *prefix, const char *id)
Definition: lwout_gml.c:949
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: