This topic describes the ST_SetSrid function. This function specifies the spatial reference system identifier (SRID) of an object.
Syntax
scene ST_SetSrid(scene sceneObject,int4 srid);
Parameters
Parameter | Description |
---|---|
sceneObject | The scene object. |
srid | The SRID of the object. |
Description
This function specifies the SRID of an object.
Examples
select ST_Srid(ST_SetSrid(ST_sceneFromText('{"type" : "gltf", "srid" : 4490 , "content" : {"accessors":...}}'),4326));
---------
4326