ST_UnGeoreference

更新时间:
复制 MD 格式

Removes the georeferencing metadata from a raster object, leaving no spatial reference information.

Syntax

raster ST_UnGeoreference(raster rast);

Parameters

Parameter

Description

rast

The raster object to remove georeferencing from.

Examples

update rast set rast=ST_UnGeoreference(rast) where id=1;

__________________________________
(1 row)