我已经使用Postgis的ST_Azimuth (几何)函数计算了两组点的方位角。
我得到的值是
1.42985896479537 1.44293722688266 1.45994672393791 1.48436591051383 1.51617271196433 4.22987568535437 4.27561945155804
谁能告诉我怎么理解它们。我正在尝试定位右侧的点和其他点集的左侧的点。
发布于 2015-02-11 19:50:21
像这样使用:
select
degrees(st_azimuth(geom,geom)) as your_column
from
your_table;
https://stackoverflow.com/questions/27505184
复制相似问题