PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ LWGEOM_get_srid()

Datum LWGEOM_get_srid ( PG_FUNCTION_ARGS  )

Definition at line 96 of file lwgeom_ogc.c.

References gserialized_get_srid(), LWGEOM_set_srid(), and PG_FUNCTION_INFO_V1().

97 {
98  GSERIALIZED *geom=PG_GETARG_GSERIALIZED_P(0);
99  int srid = gserialized_get_srid (geom);
100  PG_FREE_IF_COPY(geom,0);
101  PG_RETURN_INT32(srid);
102 }
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
Here is the call graph for this function: