PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwgeom_calculate_circ_tree()

CIRC_NODE* lwgeom_calculate_circ_tree ( const LWGEOM lwgeom)

Definition at line 954 of file lwgeodetic_tree.c.

References COLLECTIONTYPE, LINETYPE, lwcollection_calculate_circ_tree(), lwerror(), lwgeom_is_empty(), lwline_calculate_circ_tree(), lwpoint_calculate_circ_tree(), lwpoly_calculate_circ_tree(), lwtype_name(), MULTILINETYPE, MULTIPOINTTYPE, MULTIPOLYGONTYPE, POINTTYPE, POLYGONTYPE, LWGEOM::type, and LWCOLLECTION::type.

Referenced by CircTreeBuilder(), geography_distance_cache_tolerance(), geography_tree_distance(), lwcollection_calculate_circ_tree(), test_tree_circ_distance(), and test_tree_circ_distance_threshold().

955 {
956  if ( lwgeom_is_empty(lwgeom) )
957  return NULL;
958 
959  switch ( lwgeom->type )
960  {
961  case POINTTYPE:
962  return lwpoint_calculate_circ_tree((LWPOINT*)lwgeom);
963  case LINETYPE:
964  return lwline_calculate_circ_tree((LWLINE*)lwgeom);
965  case POLYGONTYPE:
966  return lwpoly_calculate_circ_tree((LWPOLY*)lwgeom);
967  case MULTIPOINTTYPE:
968  case MULTILINETYPE:
969  case MULTIPOLYGONTYPE:
970  case COLLECTIONTYPE:
972  default:
973  lwerror("Unable to calculate spherical index tree for type %s", lwtype_name(lwgeom->type));
974  return NULL;
975  }
976 
977 }
#define LINETYPE
Definition: liblwgeom.h:86
static CIRC_NODE * lwpoint_calculate_circ_tree(const LWPOINT *lwpoint)
#define POLYGONTYPE
Definition: liblwgeom.h:87
#define MULTIPOINTTYPE
Definition: liblwgeom.h:88
const char * lwtype_name(uint8_t type)
Return the type name string associated with a type number (e.g.
Definition: lwutil.c:218
#define MULTIPOLYGONTYPE
Definition: liblwgeom.h:90
static CIRC_NODE * lwline_calculate_circ_tree(const LWLINE *lwline)
#define POINTTYPE
LWTYPE numbers, used internally by PostGIS.
Definition: liblwgeom.h:85
uint8_t type
Definition: liblwgeom.h:396
static CIRC_NODE * lwpoly_calculate_circ_tree(const LWPOLY *lwpoly)
static CIRC_NODE * lwcollection_calculate_circ_tree(const LWCOLLECTION *lwcol)
int lwgeom_is_empty(const LWGEOM *geom)
Return true or false depending on whether a geometry is an "empty" geometry (no vertices members) ...
Definition: lwgeom.c:1346
#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: