PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ do_gml3_test_nodims()

static void do_gml3_test_nodims ( char *  in,
char *  out,
char *  srs,
int  precision,
int  is_geodetic,
int  is_dims,
const char *  prefix 
)
static

Definition at line 111 of file cu_out_gml.c.

112 {
113  LWGEOM *g;
114  char *h;
115  int opts = 0;
116 
117  if ( is_geodetic ) opts |= LW_GML_IS_DEGREE;
118  if ( is_dims ) opts |= LW_GML_IS_DIMS;
119 
121  h = lwgeom_to_gml3(g, srs, precision, opts, prefix, NULL);
122 
123  if (strcmp(h, out))
124  fprintf(stderr, "\nIn: %s\nOut: %s\nTheo: %s\n", in, h, out);
125 
126  CU_ASSERT_STRING_EQUAL(h, out);
127 
128  lwgeom_free(g);
129  lwfree(h);
130 }
static uint8_t precision
Definition: cu_in_twkb.c:25
#define LW_GML_IS_DEGREE
For GML3 only, declare that datas are lat/lon.
Definition: liblwgeom.h:1544
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1144
#define LW_PARSER_CHECK_NONE
Definition: liblwgeom.h:2005
char * lwgeom_to_gml3(const LWGEOM *geom, const char *srs, int precision, int opts, const char *prefix, const char *id)
Definition: lwout_gml.c:717
void lwfree(void *mem)
Definition: lwutil.c:244
#define LW_GML_IS_DIMS
Macros for specifying GML options.
Definition: liblwgeom.h:1542
LWGEOM * lwgeom_from_wkt(const char *wkt, const char check)
Definition: lwin_wkt.c:904
opts
Definition: ovdump.py:44

References LW_GML_IS_DEGREE, LW_GML_IS_DIMS, LW_PARSER_CHECK_NONE, lwfree(), lwgeom_free(), lwgeom_from_wkt(), lwgeom_to_gml3(), ovdump::opts, and precision.

Referenced by out_gml_test_geoms_nodims().

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