获取线串段的方位角(角度)的最简单方法是什么?
在PostGIS/PostgreSQL中,是否有一个函数可以给出给定点所在线串的线段角度?
In PostGIS/PostgreSQL, is there a function that gives the angle of the line segment of a linestring that a given point is on?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 PostGIS 版本 1.5.3 ST_Azimuth() 需要两个点作为输入 - 所有版本都为 true据我所知 - 我只是使用 ST_Line_Interpolate_Point(),像这样:
On PostGIS version 1.5.3 ST_Azimuth() required two points as input--true for all versions as far as I can tell--which I simply extracted from the line using ST_Line_Interpolate_Point(), like this:
ST_Azimuth(几何)
匆忙:-)
/Nicklas
ST_Azimuth(geometry)
In a hurry :-)
/Nicklas