PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ pointArray_GMLsize()

static size_t pointArray_GMLsize ( POINTARRAY pa,
int  precision 
)
static

Definition at line 1950 of file lwout_gml.c.

1951 {
1952  if (FLAGS_NDIMS(pa->flags) == 2)
1953  return (OUT_MAX_BYTES_DOUBLE + precision + sizeof(", ")) * 2 * pa->npoints;
1954 
1955  return (OUT_MAX_BYTES_DOUBLE + precision + sizeof(", ")) * 3 * pa->npoints;
1956 }
static uint8_t precision
Definition: cu_in_twkb.c:25
#define FLAGS_NDIMS(flags)
Definition: liblwgeom.h:194
#define OUT_MAX_BYTES_DOUBLE
lwflags_t flags
Definition: liblwgeom.h:446
uint32_t npoints
Definition: liblwgeom.h:442

References POINTARRAY::flags, FLAGS_NDIMS, POINTARRAY::npoints, OUT_MAX_BYTES_DOUBLE, and precision.

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().

Here is the caller graph for this function: