1、工作中需要对数据中的点做抽吸
数据库中的数据是格式是点point(x,y);
需要先将点连城线,后对线做抽吸函数
//将点连成线
select st_makeline(Array(select geom from xxx where x='xx' ));
//使用抽吸函数将线做抽吸--按照一米进行抽吸
select st_simplify(geom,0.00001) from logpoint_sim;
2、对栅格数据做等插线处理
WITH c AS (
SELECT (ST_Contour(rast, 1, 0.1,1)).*
FROM table
)
SELECT st_astext((geom))
FROM c;
//已将等插线查询出来LINESTRING
将线转换为多边形
SELECT st_astext(ST_CollectionExtract(st_Polygonize(geom)))
FROM c;
将LINESTRING转为了MULTIPOLYGON面
MULTIPOLYGON(((119.65637 36.00651955)))
工作中遇到新的函数,继续总结