ST_DropSRS
Drops a custom spatial reference system (SRS).
Syntax
ST_DropSRS(srid);
- srid
- The ID of the custom SRS to be dropped.
Type: INTEGER
Returns
A value of type BOOLEAN that is true if the dropping of the SRS is successful and false if it fails.
Examples
set PATH=inza.inza;
call inza..st_dropsrs(inza..ST_DropSRS('', 'EPSG', 4326, -400, -400, 1000000000, 0, 1, 0, 1,
'GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SP298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]]'));
ST_DROPSRS
------------
t
(1 row)