ST_GeoReference — 以 GDAL 或 ESRI 格式返回地理参考元数据,常见于世界文件中。默认格式为 GDAL。
text ST_GeoReference(
raster rast, text format=GDAL)
;
以 GDAL 或 ESRI 格式返回地理参考元数据,包含回车符,常见于世界文件中。如果未指定类型,则默认为 GDAL。类型为字符串 'GDAL' 或 'ESRI'。
格式表示之间的差异如下:
GDAL
:
scalex skewy skewx scaley upperleftx upperlefty
ESRI
:
scalex skewy skewx scaley upperleftx + scalex*0.5 upperlefty + scaley*0.5
SELECT ST_GeoReference(rast, 'ESRI') As esri_ref, ST_GeoReference(rast, 'GDAL') As gdal_ref FROM dummy_rast WHERE rid=1; esri_ref | gdal_ref --------------+-------------- 2.0000000000 | 2.0000000000 0.0000000000 : 0.0000000000 0.0000000000 : 0.0000000000 3.0000000000 : 3.0000000000 1.5000000000 : 0.5000000000 2.0000000000 : 0.5000000000