PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ geography_from_binary()

Datum geography_from_binary ( PG_FUNCTION_ARGS  )

Definition at line 468 of file geography_inout.c.

469 {
470  char *wkb_bytea = (char*)PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
471  GSERIALIZED *gser = NULL;
472  size_t wkb_size = VARSIZE(wkb_bytea);
473  uint8_t *wkb = (uint8_t*)VARDATA(wkb_bytea);
474  LWGEOM *lwgeom = lwgeom_from_wkb(wkb, wkb_size, LW_PARSER_CHECK_NONE);
475 
476  if ( ! lwgeom )
477  lwpgerror("Unable to parse WKB");
478 
479  /* Error on any SRID != default */
480  srid_check_latlong(lwgeom->srid);
481 
482  gser = gserialized_geography_from_lwgeom(lwgeom, -1);
483  lwgeom_free(lwgeom);
484  PG_RETURN_POINTER(gser);
485 }
GSERIALIZED * gserialized_geography_from_lwgeom(LWGEOM *lwgeom, int32 geog_typmod)
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1155
#define LW_PARSER_CHECK_NONE
Definition: liblwgeom.h:2114
LWGEOM * lwgeom_from_wkb(const uint8_t *wkb, const size_t wkb_size, const char check)
WKB inputs must have a declared size, to prevent malformed WKB from reading off the end of the memory...
Definition: lwin_wkb.c:834
int32_t srid
Definition: liblwgeom.h:460

References gserialized_geography_from_lwgeom(), LW_PARSER_CHECK_NONE, lwgeom_free(), lwgeom_from_wkb(), and LWGEOM::srid.

Here is the call graph for this function: