表’point_location’具有点的位置信息.我用Google搜索了这个问题,但未找到答案.以下代码有什么问题?
select ST_GeomFromText('polyGON((' || b.x || ' ' || b.y || ',' || c.x || ' ' || c.y || ',' || d.x || ' ' || d.y || ',' || b.x || ' ' || b.y'))',4326) as polygonfrom point a,point_location b,point_location c,point_location dwhere a.p1=b.point_ID and a.p2=c.point_ID and a.p3=d.point_ID解决方法@H_419_16@ 从点构造多边形的更好方法是使用 PostGIS’ geometry constructors.这样,您就可以避免转换二进制→文本→二进制( WKB → WKT → WKB),这种速度较慢,有损,并且容易出现文本格式分散,如缺失所示||.例如,尝试:
SELECT ST_Makepolygon(ST_Makeline(ARRAY[b,c,d,b]))FROM point a,point_location dWHERE a.p1=b.point_ID and a.p2=c.point_ID and a.p3=d.point_ID总结
以上是内存溢出为你收集整理的postgresql – 使用PostGIS将点转换为多边形全部内容,希望文章能够帮你解决postgresql – 使用PostGIS将点转换为多边形所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)