PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ lwmsurface_to_wkt_sb()

static void lwmsurface_to_wkt_sb ( const LWMSURFACE msurf,
stringbuffer_t sb,
int  precision,
uint8_t  variant 
)
static

Definition at line 463 of file lwout_wkt.c.

464 {
465  uint32_t i = 0;
466 
467  if ( ! (variant & WKT_NO_TYPE) )
468  {
469  stringbuffer_append_len(sb, "MULTISURFACE", 12); /* "MULTISURFACE" */
471  }
472  if ( msurf->ngeoms < 1 )
473  {
474  empty_to_wkt_sb(sb);
475  return;
476  }
477  stringbuffer_append_len(sb, "(", 1);
478  variant = variant | WKT_IS_CHILD; /* Inform the sub-geometries they are childre */
479  for ( i = 0; i < msurf->ngeoms; i++ )
480  {
481  int type = msurf->geoms[i]->type;
482  if ( i > 0 )
483  stringbuffer_append_len(sb, ",", 1);
484  switch (type)
485  {
486  case POLYGONTYPE:
487  /* Linestring subgeoms don't get type identifiers */
489  break;
490  case CURVEPOLYTYPE:
491  /* But circstring subgeoms *do* get type identifiers */
493  break;
494  default:
495  lwerror("lwmsurface_to_wkt_sb: Unknown type received %d - %s", type, lwtype_name(type));
496  }
497  }
498  stringbuffer_append_len(sb, ")", 1);
499 }
static uint8_t variant
Definition: cu_in_twkb.c:26
static uint8_t precision
Definition: cu_in_twkb.c:25
#define CURVEPOLYTYPE
Definition: liblwgeom.h:111
#define POLYGONTYPE
Definition: liblwgeom.h:104
const char * lwtype_name(uint8_t type)
Return the type name string associated with a type number (e.g.
Definition: lwutil.c:216
#define WKT_IS_CHILD
#define WKT_NO_TYPE
Well-Known Text (WKT) Output Variant Types.
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
static void dimension_qualifiers_to_wkt_sb(const LWGEOM *geom, stringbuffer_t *sb, uint8_t variant)
Definition: lwout_wkt.c:40
static void empty_to_wkt_sb(stringbuffer_t *sb)
Definition: lwout_wkt.c:70
static void lwcurvepoly_to_wkt_sb(const LWCURVEPOLY *cpoly, stringbuffer_t *sb, int precision, uint8_t variant)
Definition: lwout_wkt.c:367
static void lwpoly_to_wkt_sb(const LWPOLY *poly, stringbuffer_t *sb, int precision, uint8_t variant)
Definition: lwout_wkt.c:181
type
Definition: ovdump.py:42
static void stringbuffer_append_len(stringbuffer_t *s, const char *a, size_t alen)
Append the specified string to the stringbuffer_t using known length.
Definition: stringbuffer.h:93
uint8_t type
Definition: liblwgeom.h:462
uint32_t ngeoms
Definition: liblwgeom.h:636
LWGEOM ** geoms
Definition: liblwgeom.h:631

References CURVEPOLYTYPE, dimension_qualifiers_to_wkt_sb(), empty_to_wkt_sb(), LWMSURFACE::geoms, lwcurvepoly_to_wkt_sb(), lwerror(), lwpoly_to_wkt_sb(), lwtype_name(), LWMSURFACE::ngeoms, POLYGONTYPE, precision, stringbuffer_append_len(), LWGEOM::type, ovdump::type, variant, WKT_IS_CHILD, and WKT_NO_TYPE.

Referenced by lwgeom_to_wkt_sb().

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