gpt4 book ai didi

python-3.x - 将地理区域划分为大小相等的网格并检索索引位置

转载 作者:行者123 更新时间:2023-12-04 14:23:09 27 4
gpt4 key购买 nike

我有北京地区人员流动的 GPS 坐标。我想将地理空间划分为例如 2 平方公里(三角洲)的矩形网格,并访问网格内任何点的索引位置。单元格的大小不必完全相等,在我的情况下可以使用近似值。

我的地理区域具有以下边界框坐标(纬度、经度)。

Bottom Left  (x1,y1) = 39.77750000, 116.17944444  
Top Left (x1,y2) = 40.04722222, 116.58888889
Bottom Right (x2,y1) = 39.77750000, 116.58888889
Top Right (x2,y2) = 40.04722222, 116.17944444

这是一个 30 公里 x 34 公里的矩形区域。我心目中的解决方案是以delta为2km,将纬度和经度值递增delta直到达到上界。
获取GPS点p的索引位置,令BL为矩形区域的左下角

Row =    Distance [(p.lat,BL.long), (BL.lat, BL.long)] / delta 
Column = Distance [(BL.lat,p.long), (BL.lat, BL.long)] / delta

有没有更简单的方法或支持库来解决这个问题?最好结合行和列(x,y),这样我就可以通过在笛卡尔坐标系中找到两个网格单元之间的距离来测量网格单元的紧密度。示例图像和输入数据集可能会让您清楚地了解描述。

enter image description here

链接中给出的输入数据集 https://drive.google.com/file/d/1JjvS7igTmrtLA4E5Rs5D6tsdAXqzpYqX/view

最佳答案

bottomLeft = (39.77750000, 116.17944444)
bottomRight = (39.77750000, 116.58888889)
topLeft = (40.04722222, 116.58888889)
topRight = (40.04722222, 116.17944444)

cols = np.linspace(bottomLeft[1], bottomRight[1], num=18)
rows = np.linspace(bottomLeft[0], topLeft[0], num=15)
df['col'] = np.searchsorted(cols, df['long'])
df['row'] = np.searchsorted(rows, df['lat'])

关于python-3.x - 将地理区域划分为大小相等的网格并检索索引位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51573164/

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