PostGIS  3.0.6dev-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 207 of file lwout_kml.c.

208 {
209  uint32_t i;
210  int rv;
211 
212  /* Open geometry */
213  if ( stringbuffer_aprintf(sb, "<%sMultiGeometry>", prefix) < 0 ) return LW_FAILURE;
214  for ( i = 0; i < col->ngeoms; i++ )
215  {
216  rv = lwgeom_to_kml2_sb(col->geoms[i], precision, prefix, sb);
217  if ( rv == LW_FAILURE ) return LW_FAILURE;
218  }
219  /* Close geometry */
220  if ( stringbuffer_aprintf(sb, "</%sMultiGeometry>", prefix) < 0 ) return LW_FAILURE;
221 
222  return LW_SUCCESS;
223 }
static uint8_t precision
Definition: cu_in_twkb.c:25
#define LW_FAILURE
Definition: liblwgeom.h:110
#define LW_SUCCESS
Definition: liblwgeom.h:111
static int lwgeom_to_kml2_sb(const LWGEOM *geom, int precision, const char *prefix, stringbuffer_t *sb)
Definition: lwout_kml.c:70
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:217
uint32_t ngeoms
Definition: liblwgeom.h:566
LWGEOM ** geoms
Definition: liblwgeom.h:561

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: