获取线串段的方位角(角度)的最简单方法是什么?

发布于 2024-10-19 13:36:57 字数 52 浏览 3 评论 0原文

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

⒈起吃苦の倖褔 2024-10-26 13:36:57

在 PostGIS 版本 1.5.3 ST_Azimuth() 需要两个点作为输入 - 所有版本都为 true据我所知 - 我只是使用 ST_Line_Interpolate_Point(),像这样:

ST_Azimuth(
  ST_Line_Interpolate_Point(wkb_geometry, 0.2), /* point at 20% length */
  ST_Line_Interpolate_Point(wkb_geometry, 0.8)  /* point at 80% length */
)/(2*pi())*360 as angle                         /* radians to degrees  */

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(
  ST_Line_Interpolate_Point(wkb_geometry, 0.2), /* point at 20% length */
  ST_Line_Interpolate_Point(wkb_geometry, 0.8)  /* point at 80% length */
)/(2*pi())*360 as angle                         /* radians to degrees  */
阳光①夏 2024-10-26 13:36:57

ST_Azimuth(几何)

匆忙:-)

/Nicklas

ST_Azimuth(geometry)

In a hurry :-)

/Nicklas

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文