PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lwgeom_length_2d()

double lwgeom_length_2d ( const LWGEOM geom)

Definition at line 1961 of file lwgeom.c.

1962 {
1963  int type = geom->type;
1964  if ( type == LINETYPE )
1965  return lwline_length_2d((LWLINE*)geom);
1966  else if ( type == CIRCSTRINGTYPE )
1967  return lwcircstring_length_2d((LWCIRCSTRING*)geom);
1968  else if ( type == COMPOUNDTYPE )
1969  return lwcompound_length_2d((LWCOMPOUND*)geom);
1970  else if ( lwgeom_is_collection(geom) )
1971  {
1972  double length = 0.0;
1973  uint32_t i;
1974  LWCOLLECTION *col = (LWCOLLECTION*)geom;
1975  for ( i = 0; i < col->ngeoms; i++ )
1976  length += lwgeom_length_2d(col->geoms[i]);
1977  return length;
1978  }
1979  else
1980  return 0.0;
1981 }
#define COMPOUNDTYPE
Definition: liblwgeom.h:93
#define LINETYPE
Definition: liblwgeom.h:86
#define CIRCSTRINGTYPE
Definition: liblwgeom.h:92
double lwline_length_2d(const LWLINE *line)
Definition: lwline.c:534
double lwcircstring_length_2d(const LWCIRCSTRING *circ)
Definition: lwcircstring.c:281
double lwcompound_length_2d(const LWCOMPOUND *comp)
Definition: lwcompound.c:74
int lwgeom_is_collection(const LWGEOM *geom)
Determine whether a LWGEOM can contain sub-geometries or not.
Definition: lwgeom.c:1085
double lwgeom_length_2d(const LWGEOM *geom)
Definition: lwgeom.c:1961
type
Definition: ovdump.py:41
uint32_t ngeoms
Definition: liblwgeom.h:510
LWGEOM ** geoms
Definition: liblwgeom.h:512
uint8_t type
Definition: liblwgeom.h:399
unsigned int uint32_t
Definition: uthash.h:78

References CIRCSTRINGTYPE, COMPOUNDTYPE, LWCOLLECTION::geoms, LINETYPE, lwcircstring_length_2d(), lwcompound_length_2d(), lwgeom_is_collection(), lwgeom_length_2d(), lwline_length_2d(), LWCOLLECTION::ngeoms, LWGEOM::type, and ovdump::type.

Referenced by gserialized_distance_nd(), lwcompound_length_2d(), lwcurvepoly_perimeter_2d(), LWGEOM_length2d_linestring(), and lwgeom_length_2d().

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