gpt4 book ai didi

sql - 计算 50 英里外的点(北,45% NE,45% SW)

转载 作者:行者123 更新时间:2023-12-04 15:35:43 26 4
gpt4 key购买 nike

在 PostGIS 中,有没有办法计算 50 英里外不同方向的另一个点?

给定一个点,('New York',-74.00,40.71),我如何计算以下点?

1) 50 miles directly North
2) 50 miles 45% North East
4) 50 miles directly East
3) 50 miles 45% South West

更新:好像http://postgis.net/docs/ST_Project.html可能是解决方案。

ST_Project('POINT(-74.00 40.71)'::geography, 80467.2, radians(45.0))

但是,我需要引用数据库记录才能做到这一点。不要硬编码。

最佳答案

尝试组合 ST_ProjectCTE - 将 radians 的值调整为您需要的方位角。

WITH j AS (
SELECT poi::geography AS poi FROM t
)
SELECT
ST_AsText(ST_Project(j.poi, 80467.2, radians(90.0)),2),
ST_AsText(ST_Project(j.poi, 80467.2, radians(45.0)),2),
ST_AsText(ST_Project(j.poi, 80467.2, radians(180.0)),2),
ST_AsText(ST_Project(j.poi, 80467.2, radians(135.0)),2),
ST_AsText(ST_Project(j.poi, 80467.2, radians(270.0)),2),
ST_AsText(ST_Project(j.poi, 80467.2, radians(225.0)),2),
ST_AsText(ST_Project(j.poi, 80467.2, radians(360.0)),2),
ST_AsText(ST_Project(j.poi, 80467.2, radians(315.0)),2)
FROM j;

st_astext | st_astext | st_astext | st_astext | st_astext | st_astext | st_astext | st_astext
---------------------+---------------------+------------------+--------------------+---------------------+--------------------+------------------+---------------------
POINT(-73.05 40.71) | POINT(-73.32 41.22) | POINT(-74 39.99) | POINT(-73.33 40.2) | POINT(-74.95 40.71) | POINT(-74.67 40.2) | POINT(-74 41.43) | POINT(-74.68 41.22)
(1 Zeile)

enter image description here

注意:图中的缓冲区(圆圈)只是为了说明。

关于sql - 计算 50 英里外的点(北,45% NE,45% SW),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59845293/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com