PostGIS  2.4.9dev-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 182 of file lwout_kml.c.

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

Referenced by lwgeom_to_kml2_sb().

183 {
184  int i, rv;
185 
186  /* Open geometry */
187  if ( stringbuffer_aprintf(sb, "<%sMultiGeometry>", prefix) < 0 ) return LW_FAILURE;
188  for ( i = 0; i < col->ngeoms; i++ )
189  {
190  rv = lwgeom_to_kml2_sb(col->geoms[i], precision, prefix, sb);
191  if ( rv == LW_FAILURE ) return LW_FAILURE;
192  }
193  /* Close geometry */
194  if ( stringbuffer_aprintf(sb, "</%sMultiGeometry>", prefix) < 0 ) return LW_FAILURE;
195 
196  return LW_SUCCESS;
197 }
#define LW_SUCCESS
Definition: liblwgeom.h:80
#define LW_FAILURE
Definition: liblwgeom.h:79
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
LWGEOM ** geoms
Definition: liblwgeom.h:509
uint8_t precision
Definition: cu_in_twkb.c:25
static int lwgeom_to_kml2_sb(const LWGEOM *geom, int precision, const char *prefix, stringbuffer_t *sb)
Definition: lwout_kml.c:69
Here is the call graph for this function:
Here is the caller graph for this function: