PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ lwgeom_area()

double lwgeom_area ( const LWGEOM geom)

Definition at line 1863 of file lwgeom.c.

1864{
1865 int type = geom->type;
1866
1867 if ( type == POLYGONTYPE )
1868 return lwpoly_area((LWPOLY*)geom);
1869 else if ( type == CURVEPOLYTYPE )
1870 return lwcurvepoly_area((LWCURVEPOLY*)geom);
1871 else if (type == TRIANGLETYPE )
1872 return lwtriangle_area((LWTRIANGLE*)geom);
1873 else if ( lwgeom_is_collection(geom) )
1874 {
1875 double area = 0.0;
1876 uint32_t i;
1877 LWCOLLECTION *col = (LWCOLLECTION*)geom;
1878 for ( i = 0; i < col->ngeoms; i++ )
1879 area += lwgeom_area(col->geoms[i]);
1880 return area;
1881 }
1882 else
1883 return 0.0;
1884}
#define CURVEPOLYTYPE
Definition liblwgeom.h:125
#define POLYGONTYPE
Definition liblwgeom.h:118
#define TRIANGLETYPE
Definition liblwgeom.h:129
double lwtriangle_area(const LWTRIANGLE *triangle)
Find the area of the outer ring.
Definition lwtriangle.c:178
double lwpoly_area(const LWPOLY *poly)
Find the area of the outer ring - sum (area of inner rings).
Definition lwpoly.c:434
double lwcurvepoly_area(const LWCURVEPOLY *curvepoly)
This should be rewritten to make use of the curve itself.
int lwgeom_is_collection(const LWGEOM *geom)
Determine whether a LWGEOM can contain sub-geometries or not.
Definition lwgeom.c:1079
double lwgeom_area(const LWGEOM *geom)
Definition lwgeom.c:1863
uint32_t ngeoms
Definition liblwgeom.h:566
LWGEOM ** geoms
Definition liblwgeom.h:561
uint8_t type
Definition liblwgeom.h:448

References CURVEPOLYTYPE, LWCOLLECTION::geoms, lwcurvepoly_area(), lwgeom_area(), lwgeom_is_collection(), lwpoly_area(), lwtriangle_area(), LWCOLLECTION::ngeoms, POLYGONTYPE, TRIANGLETYPE, and LWGEOM::type.

Referenced by lwgeom_area(), lwmpoly_to_points(), ST_Area(), test_gdal_polygonize(), test_lwpoly_construct_circle(), test_misc_area(), and test_raster_surface().

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