設定柵格對象或波段的中繼資料項。
文法
raster ST_SetMetaData(raster raster_obj,
text key,
text value);
raster ST_MetaData(raster raster_obj,
integer band,
text key,
text value);
參數
參數名稱 | 描述 |
raster_obj | 需要計算的raster對象。 |
band | 波段序號,取值從0開始。 |
key | 需要設定的中繼資料項名稱。 |
value | 中繼資料值。 |
描述
如果傳入的中繼資料值為空白值(''
),會刪除該中繼資料項。
樣本
SELECT ST_MetaData(ST_SetMetaData(rast, 'NETCDF_DIM_time', '12345'), 'NETCDF_DIM_time')
FROM raster_table
st_metadata
------------
12345
SELECT ST_MetaData(ST_SetMetaData(rast, 0, 'NETCDF_DIM_time', '12345'), 0, 'NETCDF_DIM_time')
FROM raster_table
st_metadata
------------
12345