PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lwcollection_to_kml2_sb()

static int lwcollection_to_kml2_sb ( const LWCOLLECTION col,
int  precision,
const char *  prefix,
stringbuffer_t sb 
)
static

Definition at line 183 of file lwout_kml.c.

184 {
185  uint32_t i;
186  int rv;
187 
188  /* Open geometry */
189  if ( stringbuffer_aprintf(sb, "<%sMultiGeometry>", prefix) < 0 ) return LW_FAILURE;
190  for ( i = 0; i < col->ngeoms; i++ )
191  {
192  rv = lwgeom_to_kml2_sb(col->geoms[i], precision, prefix, sb);
193  if ( rv == LW_FAILURE ) return LW_FAILURE;
194  }
195  /* Close geometry */
196  if ( stringbuffer_aprintf(sb, "</%sMultiGeometry>", prefix) < 0 ) return LW_FAILURE;
197 
198  return LW_SUCCESS;
199 }
static uint8_t precision
Definition: cu_in_twkb.c:25
#define LW_FAILURE
Definition: liblwgeom.h:79
#define LW_SUCCESS
Definition: liblwgeom.h:80
static int lwgeom_to_kml2_sb(const LWGEOM *geom, int precision, const char *prefix, stringbuffer_t *sb)
Definition: lwout_kml.c:69
int stringbuffer_aprintf(stringbuffer_t *s, const char *fmt,...)
Appends a formatted string to the current string buffer, using the format and argument list provided.
Definition: stringbuffer.c:253
uint32_t ngeoms
Definition: liblwgeom.h:510
LWGEOM ** geoms
Definition: liblwgeom.h:512
unsigned int uint32_t
Definition: uthash.h:78

References LWCOLLECTION::geoms, LW_FAILURE, LW_SUCCESS, lwgeom_to_kml2_sb(), LWCOLLECTION::ngeoms, precision, and stringbuffer_aprintf().

Referenced by lwgeom_to_kml2_sb().

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