1、st_astext
2、
3、st_dumppoints
ST_DumpPoints 函数将几何对象中的所有点转换为单独的行,并返回一个包含所有点的几何对象集合。
以下是一个示例查询,它将一个 MULTIPOLYGON 对象转换为坐标集合,并使用 ST_AsText 函数将其转换为WKT格式的字符串:
SELECT ST_AsText((dp).geom) FROM (
SELECT (ST_DumpPoints(multipolygon)).* FROM my_table
) AS dp;
标签:常用,函数,PostGIS,ST,DumpPoints,AsText,SELECT
From: https://www.cnblogs.com/Snowclod/p/17750990.html