繁体   English   中英

在 Geopandas 的特定距离内过滤和合并来自两个 dataframe 的点

[英]Filter and merge points from two dataframe within a specific distance in Geopandas

对于两个 GeoPandas 数据框如下:

df1:

     id  sMiddleLng  sMiddleLat  p1_sum  p2_sum  \
0  325782  109.255034   34.691754     0.0     0.0   
1   84867  107.957177   33.958289     0.0     0.0   
2   13101  107.835338   33.739493     0.0     0.0   
3   92771  109.464280   33.980666     0.0     0.0   
4   86609  108.253830   33.963262     0.0     0.0   

                            geometry  
0  POINT (109.255033915 34.69175367)  
1  POINT (107.957177305 33.95828929)  
2    POINT (107.8353377 33.73949313)  
3   POINT (109.46428019 33.98066616)  
4  POINT (108.253830245 33.96326193)  

df2:

     fnid  sMiddleLng  sMiddleLat  p1_sum  p2_sum  \
0  361104  102.677887   36.686408     0.0     0.0   
1  276307  103.268356   36.425372     0.0     0.0   
2  334778  103.242125   36.605224     0.0     0.0   
3  205223  104.186869   36.206637     0.0     0.0   
4  167892  104.387566   36.091905     0.0     0.0   

                                 geometry  
0  POINT (102.67788654685 36.68640780045)  
1  POINT (103.26835590025 36.42537187675)  
2   POINT (103.2421246007 36.60522388845)  
3    POINT (104.1868687253 36.2066370049)  
4   POINT (104.38756565315 36.0919047206)  

如何根据idgeometry从另一个类似的 Geodataframe df2中找到所有点并将其合并到df1 ,这些点与df1df2中的点之间的距离小于10 km 谢谢。

Function 计算距离:

from math import radians, cos, sin, asin, sqrt

def haversine(lon1, lat1, lon2, lat2):
    """
    Calculate the great circle distance between two points 
    on the earth (specified in decimal degrees)
    """
    # convert decimal degrees to radians 
    lon1, lat1, lon2, lat2 = map(radians, [lon1, lat1, lon2, lat2])

    # haversine formula 
    dlon = lon2 - lon1 
    dlat = lat2 - lat1 
    a = sin(dlat/2)**2 + cos(lat1) * cos(lat2) * sin(dlon/2)**2
    c = 2 * asin(sqrt(a)) 
    r = 6371 # Radius of earth in kilometers. Use 3956 for miles
    return c * r

我的建议遵循以下逻辑:

  1. 将两个GeoDataFrame重新投影到使用米作为单位的投影,例如 WebMercator
  2. 在其中一个数据集中的点周围临时创建一个 10 公里的缓冲区
  3. 使用 sjoin 查找/合并重叠点

这可以按如下方式实现:

# Assuming your data uses WGS84 projection. only use the following line if crs has not been initialised
df1.crs = df2.crs = {'init': 'epsg:4326'} 

# Now convert the Dataframes to WebMercator
df2 = df2.to_crs({'init': 'epsg:3857'})
df1 = df1.to_crs({'init': 'epsg:3857'})

# Create a buffer with a radius of 10000 meters around each point in df2
df2.geometry = df2.geometry.buffer(10000)

# Join the two Dataframes and convert back to original projection
df3 = gpd.sjoin(df1, df2, how='left', op='intersects', lsuffix='_df1', rsuffix='_df2')
df3.to_crs({'init': 'epsg:4326'}) # or whatever was used originally

现在,您可以在一个方便的GeoDataFrame中获得有关连接点的信息。 在给定数据的情况下, df2中的一个点在df1的 10 公里范围内没有任何点。

另外,我不完全确定您希望以何种形式合并数据,因此只需相应地适应您的需求即可。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM