0

我使用 Postgis 的 ST_Azimuth(几何)函数计算了两组点的方位角。

我得到像

1.42985896479537 1.44293722688266 1.45994672393791 1.48436591051383 1.51617271196433 4.22987568535437 4.27561945155804

谁能告诉我如何理解它们。我正在尝试定位其他点集右侧和左侧的点。

4

1 回答 1

0

像这样使用:

select
   degrees(st_azimuth(geom,geom)) as your_column
   from
   your_table;
于 2015-02-11T11:50:20.513 回答