📜  项目 geopands 到 wgs - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:54.046000             🧑  作者: Mango

代码示例1
# Let's take a copy of our layer
In [6]: data_proj = data.copy()

# Reproject the geometries by replacing the values with projected ones
In [7]: data_proj['geometry'] = data_proj['geometry'].to_crs(epsg=3879)