PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ pointArray_GMLsize()

static size_t pointArray_GMLsize ( POINTARRAY pa,
int  precision 
)
static

Definition at line 1987 of file lwout_gml.c.

References POINTARRAY::flags, FLAGS_NDIMS, POINTARRAY::npoints, and OUT_MAX_DIGS_DOUBLE.

Referenced by asgml2_line_size(), asgml2_point_size(), asgml2_poly_size(), asgml3_circstring_size(), asgml3_compound_size(), asgml3_curvepoly_size(), asgml3_line_size(), asgml3_point_size(), asgml3_poly_size(), asgml3_triangle_size(), gbox_to_gml2(), and gbox_to_gml3().

1988 {
1989  if (FLAGS_NDIMS(pa->flags) == 2)
1990  return (OUT_MAX_DIGS_DOUBLE + precision + sizeof(", ")) * 2 * pa->npoints;
1991 
1992  return (OUT_MAX_DIGS_DOUBLE + precision + sizeof(", ")) * 3 * pa->npoints;
1993 }
int npoints
Definition: liblwgeom.h:371
uint8_t flags
Definition: liblwgeom.h:369
uint8_t precision
Definition: cu_in_twkb.c:25
#define OUT_MAX_DIGS_DOUBLE
#define FLAGS_NDIMS(flags)
Definition: liblwgeom.h:152
Here is the caller graph for this function: