PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwgeom_force_geodetic()

int lwgeom_force_geodetic ( LWGEOM geom)

Force coordinates of LWGEOM into geodetic range (-180, -90, 180, 90)

Definition at line 3206 of file lwgeodetic.c.

References COLLECTIONTYPE, LINETYPE, LW_FALSE, lwcollection_force_geodetic(), lwerror(), lwgeom_get_type(), lwline_force_geodetic(), lwpoint_force_geodetic(), lwpoly_force_geodetic(), MULTILINETYPE, MULTIPOINTTYPE, MULTIPOLYGONTYPE, POINTTYPE, and POLYGONTYPE.

Referenced by geography_from_geometry(), gserialized_geography_from_lwgeom(), and lwcollection_force_geodetic().

3207 {
3208  switch ( lwgeom_get_type(geom) )
3209  {
3210  case POINTTYPE:
3211  return lwpoint_force_geodetic((LWPOINT *)geom);
3212  case LINETYPE:
3213  return lwline_force_geodetic((LWLINE *)geom);
3214  case POLYGONTYPE:
3215  return lwpoly_force_geodetic((LWPOLY *)geom);
3216  case MULTIPOINTTYPE:
3217  case MULTILINETYPE:
3218  case MULTIPOLYGONTYPE:
3219  case COLLECTIONTYPE:
3220  return lwcollection_force_geodetic((LWCOLLECTION *)geom);
3221  default:
3222  lwerror("unsupported input geometry type: %d", lwgeom_get_type(geom));
3223  }
3224  return LW_FALSE;
3225 }
#define LINETYPE
Definition: liblwgeom.h:86
static int lwline_force_geodetic(LWLINE *line)
Definition: lwgeodetic.c:3172
uint32_t lwgeom_get_type(const LWGEOM *geom)
Return LWTYPE number.
Definition: lwgeom.c:878
#define POLYGONTYPE
Definition: liblwgeom.h:87
#define MULTIPOINTTYPE
Definition: liblwgeom.h:88
static int lwpoint_force_geodetic(LWPOINT *point)
Definition: lwgeodetic.c:3166
#define LW_FALSE
Definition: liblwgeom.h:77
static int lwcollection_force_geodetic(LWCOLLECTION *col)
Definition: lwgeodetic.c:3192
#define MULTIPOLYGONTYPE
Definition: liblwgeom.h:90
#define POINTTYPE
LWTYPE numbers, used internally by PostGIS.
Definition: liblwgeom.h:85
static int lwpoly_force_geodetic(LWPOLY *poly)
Definition: lwgeodetic.c:3178
#define MULTILINETYPE
Definition: liblwgeom.h:89
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
#define COLLECTIONTYPE
Definition: liblwgeom.h:91
Here is the call graph for this function:
Here is the caller graph for this function: