PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ LWGEOM_from_WKB()

Datum LWGEOM_from_WKB ( PG_FUNCTION_ARGS  )

Definition at line 826 of file lwgeom_ogc.c.

827 {
828  bytea *bytea_wkb = (bytea*)PG_GETARG_BYTEA_P(0);
829  int32 srid = 0;
830  GSERIALIZED *geom;
831  LWGEOM *lwgeom;
832  uint8_t *wkb = (uint8_t*)VARDATA(bytea_wkb);
833 
834  lwgeom = lwgeom_from_wkb(wkb, VARSIZE(bytea_wkb)-VARHDRSZ, LW_PARSER_CHECK_ALL);
835 
836  if ( lwgeom_needs_bbox(lwgeom) )
837  lwgeom_add_bbox(lwgeom);
838 
839  geom = geometry_serialize(lwgeom);
840  lwgeom_free(lwgeom);
841  PG_FREE_IF_COPY(bytea_wkb, 0);
842 
843  if ( gserialized_get_srid(geom) != SRID_UNKNOWN )
844  {
845  elog(WARNING, "OGC WKB expected, EWKB provided - use GeometryFromEWKB() for this");
846  }
847 
848  if ( PG_NARGS() > 1 )
849  {
850  srid = PG_GETARG_INT32(1);
851  if ( srid != gserialized_get_srid(geom) )
852  gserialized_set_srid(geom, srid);
853  }
854 
855  PG_RETURN_POINTER(geom);
856 }
int32_t gserialized_get_srid(const GSERIALIZED *s)
Extract the SRID from the serialized form (it is packed into three bytes so this is a handy function)...
Definition: g_serialized.c:100
void gserialized_set_srid(GSERIALIZED *s, int32_t srid)
Write the SRID into the serialized form (it is packed into three bytes so this is a handy function).
Definition: g_serialized.c:117
#define LW_PARSER_CHECK_ALL
Definition: liblwgeom.h:2006
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1144
int lwgeom_needs_bbox(const LWGEOM *geom)
Check whether or not a lwgeom is big enough to warrant a bounding box.
Definition: lwgeom.c:1197
#define SRID_UNKNOWN
Unknown SRID value.
Definition: liblwgeom.h:188
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:789
void lwgeom_add_bbox(LWGEOM *lwgeom)
Compute a bbox if not already computed.
Definition: lwgeom.c:686
GSERIALIZED * geometry_serialize(LWGEOM *lwgeom)
unsigned int int32
Definition: shpopen.c:273
unsigned char uint8_t
Definition: uthash.h:79

References geometry_serialize(), gserialized_get_srid(), gserialized_set_srid(), LW_PARSER_CHECK_ALL, lwgeom_add_bbox(), lwgeom_free(), lwgeom_from_wkb(), lwgeom_needs_bbox(), and SRID_UNKNOWN.

Here is the call graph for this function: