PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ asgml3_multicurve()

static char * asgml3_multicurve ( const LWMCURVE cur,
const char *  srs,
int  precision,
int  opts,
const char *  prefix,
const char *  id 
)
static

Definition at line 1829 of file lwout_gml.c.

References asgml3_multicurve_buf(), asgml3_multicurve_size(), and lwalloc().

Referenced by lwgeom_to_gml3().

1830 {
1831  char* gml;
1832  size_t size =asgml3_multicurve_size( cur, srs, precision, opts, prefix, id );
1833  gml = lwalloc( size );
1834  asgml3_multicurve_buf( cur, srs, gml, precision, opts, prefix, id );
1835  return gml;
1836 }
static size_t asgml3_multicurve_buf(const LWMCURVE *cur, const char *srs, char *output, int precision, int opts, const char *prefix, const char *id)
Definition: lwout_gml.c:1790
uint8_t precision
Definition: cu_in_twkb.c:25
void * lwalloc(size_t size)
Definition: lwutil.c:229
opts
Definition: ovdump.py:44
static size_t asgml3_multicurve_size(const LWMCURVE *cur, const char *srs, int precision, int opts, const char *prefix, const char *id)
Definition: lwout_gml.c:1761
Here is the call graph for this function:
Here is the caller graph for this function: