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