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

ParameterDescription
sceneObjectThe scene object.
sridThe 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