PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ gserialized_from_lwline_size()

static size_t gserialized_from_lwline_size ( const LWLINE line)
static

Definition at line 690 of file g_serialized.c.

References LWLINE::flags, FLAGS_NDIMS, LWDEBUGF, POINTARRAY::npoints, and LWLINE::points.

Referenced by gserialized_from_any_size().

691 {
692  size_t size = 4; /* Type number. */
693 
694  assert(line);
695 
696  size += 4; /* Number of points (zero => empty). */
697  size += line->points->npoints * FLAGS_NDIMS(line->flags) * sizeof(double);
698 
699  LWDEBUGF(3, "linestring size = %d", size);
700 
701  return size;
702 }
int npoints
Definition: liblwgeom.h:371
uint8_t flags
Definition: liblwgeom.h:419
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
#define FLAGS_NDIMS(flags)
Definition: liblwgeom.h:152
POINTARRAY * points
Definition: liblwgeom.h:422
Here is the caller graph for this function: