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

983 {
984  char *output;
985  int size;
986 
987  size = asgml3_circstring_size(circ, srs, precision, opts, prefix, id);
988  output = lwalloc( size );
989  asgml3_circstring_buf(circ, srs, output, precision, opts, prefix, id);
990  return output;
991 }
static uint8_t precision
Definition: cu_in_twkb.c:25
void * lwalloc(size_t size)
Definition: lwutil.c:229
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:930
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:943
opts
Definition: ovdump.py:44

References asgml3_circstring_buf(), asgml3_circstring_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: