PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ LWGEOM_set_srid()

Datum LWGEOM_set_srid ( PG_FUNCTION_ARGS  )

Definition at line 111 of file lwgeom_ogc.c.

112 {
113  GSERIALIZED *g = (GSERIALIZED *)PG_DETOAST_DATUM_COPY(PG_GETARG_DATUM(0));
114  int32_t srid = PG_GETARG_INT32(1);
115  gserialized_set_srid(g, srid);
116  PG_RETURN_POINTER(g);
117 }
void gserialized_set_srid(GSERIALIZED *g, int32_t srid)
Write the SRID into the serialized form (it is packed into three bytes so this is a handy function).
Definition: gserialized.c:167

References gserialized_set_srid().

Here is the call graph for this function: