1632{
1633 uint32_t i;
1634 size_t size;
1635 size_t prefixlen = strlen(prefix);
1637
1638 size = sizeof("<MultiGeometry></MultiGeometry>") + prefixlen*2;
1639
1640 if (srs) size += strlen(srs) + sizeof(" srsName=..");
1641 if (id) size += strlen(id) + strlen(prefix) + sizeof(" id=..");
1642
1643 for (i=0; i<col->
ngeoms; i++)
1644 {
1645 subgeom = col->
geoms[i];
1646 size += ( sizeof("<geometryMember>/") + prefixlen ) * 2;
1648 {
1650 }
1652 {
1654 }
1656 {
1658 }
1660 {
1662 }
1663 else
1664 lwerror(
"asgml3_collection_size: unknown geometry type");
1665 }
1666
1667 return size;
1668}
#define POINTTYPE
LWTYPE numbers, used internally by PostGIS.
int lwgeom_is_collection(const LWGEOM *lwgeom)
Determine whether a LWGEOM can contain sub-geometries or not.
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
static size_t asgml3_poly_size(const LWPOLY *poly, const char *srs, int precision, int opts, const char *prefix, const char *id)
static size_t asgml3_point_size(const LWPOINT *point, const char *srs, int precision, int opts, const char *prefix, const char *id)
static size_t asgml3_line_size(const LWLINE *line, const char *srs, int precision, int opts, const char *prefix, const char *id)
static size_t asgml3_multi_size(const LWCOLLECTION *col, const char *srs, int precision, int opts, const char *prefix, const char *id)