首页 > 解决方案 > 在 Python 中将两个 shapefile 与 geopandas 重叠

问题描述

我有这两个 shapefile。[第一个 shapefile 与链接 1 上的省份] [第二个 shapefile 与链接 2 上的地区]

我需要加入/合并这两个 shapefile 以返回如下地图:[![Mozambique Districts as Map below]

moz_admin= 1 : https://drive.google.com/file/d/1MYNkuKFXP0dt76G9OgeBotjF5UmiRqEl/view?usp=sharing

moz_admin_district=[2]: https://drive.google.com/file/d/1idf5VKgN8PZgdoAcBVEcY9pDa1WYpg7-/view?usp=sharing

链接 3 上的莫桑比克地区

到目前为止我做了什么:

import os
import geopandas as gpd

file = os.listdir(r'pathtofilefolder')
path = [os.path.join(r'folder', i) for i in file if ".shp" in i]

gdf = gpd.GeoDataFrame(pd.concat([gpd.read_file(i) for i in path], 
                        ignore_index=True), crs=gpd.read_file(path[0]).crs)

moz_admin.to_crs(moz_admin_district.crs, inplace=True) #Change projections
gpd.sjoin(moz_admin_district, moz_admin, how='union', op='within').shape #Join 2 shapefiles
gpd.sjoin(moz_admin_district, moz_admin, how='union', op='within').plot()

diffs = []
gdfs = [moz_admin, moz_admin_district]
    for idx, gdf in enumerate(gdfs):
    if idx < 2:
        diffs.append(gdf.symmetric_difference(gdfs[idx+1]).iloc[0])
diffs.append(moz_admin_district.iloc[0].geometry)

gdf = gpd.GeoDataFrame(pd.concat([moz_admin, moz_admin_district]))

from shapely.geometry import Polygon
res_union = gpd.overlay(moz_admin, moz_admin_district, how='union')

so = moz_admin.merge(moz_admin_district, on='ADM1_PT', how='inner')
df  = tab_df.merge(spatial_df, on='mukey', how='right')
sof = gpd.GeoDataFrame(so)

merged_master = gpd.GeoDataFrame(pd.merge(moz_admin, moz_admin_district, how='left', left_on="ADM1_PT", right_on="ADM1_PT"))
merged = merged_master[['ADM1_PT', 'ADM2_PT', 'geometry']]

so = gpd.GeoDataFrame(pd.concat([moz_admin, moz_admin_district], ignore_index=True))

sjoined_listings = gpd.sjoin(moz_admin_district, moz_admin, op='intersects')

merged=sjoin(moz_admin_district, moz_admin, how='left', op='intersects')

没有成功!

标签: python-3.xmergegisshapefilegeopandas

解决方案


#OVERLAP TWO SHAPEFILES INTO ONE

ax = moz_admin.plot(color='none', edgecolor='black', linewidths=1.5)
moz_admin_district.plot(ax=ax, color='none', edgecolor='grey', linewidths=0.5)

在此处输入图像描述


推荐阅读