PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ parse_geojson_geometrycollection()

static LWGEOM* parse_geojson_geometrycollection ( json_object *  geojson,
int *  hasz,
int  root_srid 
)
static

Definition at line 453 of file lwin_geojson.c.

454 {
455  LWGEOM *geom = NULL;
456  int i;
457  json_object* poObjGeoms = NULL;
458 
459  if (!root_srid)
460  {
461  geom = (LWGEOM *)lwcollection_construct_empty(COLLECTIONTYPE, root_srid, 1, 0);
462  }
463  else
464  {
466  }
467 
468  poObjGeoms = findMemberByName( geojson, "geometries" );
469  if ( ! poObjGeoms )
470  {
471  geojson_lwerror("Unable to find 'geometries' in GeoJSON string", 4);
472  return NULL;
473  }
474 
475  if( json_type_array == json_object_get_type( poObjGeoms ) )
476  {
477  const int nGeoms = json_object_array_length( poObjGeoms );
478  json_object* poObjGeom = NULL;
479  for(i = 0; i < nGeoms; ++i )
480  {
481  poObjGeom = json_object_array_get_idx( poObjGeoms, i );
483  parse_geojson(poObjGeom, hasz, root_srid));
484  }
485  }
486 
487  return geom;
488 }
#define COLLECTIONTYPE
Definition: liblwgeom.h:91
LWCOLLECTION * lwcollection_construct_empty(uint8_t type, int srid, char hasz, char hasm)
Definition: lwcollection.c:94
LWCOLLECTION * lwcollection_add_lwgeom(LWCOLLECTION *col, const LWGEOM *geom)
Appends geom to the collection managed by col.
Definition: lwcollection.c:187
static void geojson_lwerror(char *msg, __attribute__((__unused__)) int error_code)
Definition: lwin_geojson.c:55
static LWGEOM * parse_geojson(json_object *geojson, int *hasz, int root_srid)
Definition: lwin_geojson.c:491
static json_object * findMemberByName(json_object *poObj, const char *pszName)
Definition: lwin_geojson.c:65

References COLLECTIONTYPE, findMemberByName(), geojson_lwerror(), lwcollection_add_lwgeom(), lwcollection_construct_empty(), and parse_geojson().

Referenced by parse_geojson().

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