作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将一些数据集转换为相同的坐标系(NC2264)
NC2264 = 'EPSG:2264'
sfd_subs = pd.read_csv(r'FILE_LOCATION.csv')
wake_shapes = gpd.GeoDataFrame.from_file(r'FILE_LOCATION.shp').to_crs(NC2264)
sfd_subs = gpd.GeoDataFrame(sfd_subs, geometry=gpd.points_from_xy(sfd_subs.Longitude, sfd_subs.Latitude),crs='EPSG:4326')
sfd_subs.to_crs(NC2264)
print(sfd_subs.crs)
shapefile 转换工作完美,但“sfd_subs”保持不变。我没有收到任何错误。
我在顶部添加了 5 个正确的转化,而在底部添加了未更改的转化。
EPSG:4326
0 POINT (2641914.208 1398556.771)
1 POINT (2642559.277 1398183.388)
2 POINT (2641705.300 1398352.924)
3 POINT (2641716.844 1397826.942)
4 POINT (2674989.747 1419749.281)
...
3332 POINT (-78.135 35.506)
3333 POINT (-78.130 35.504)
3334 POINT (-78.123 35.530)
3335 POINT (-78.104 35.537)
3336 POINT (-78.087 35.562)
由于我没有收到任何错误,因此我不确定最好的行动方案是什么。
最佳答案
您必须将转换后的 GeoDataFrame 分配给变量,因为该函数不会就地修改它。
# instead of only writing: sdf_subs.to_crs(NC2264), assign it back to variable
sdf_subs = sfd_subs.to_crs(NC2264)
关于python - GeoPandas .to_crs() 方法未转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65566168/
我正在尝试将一些数据集转换为相同的坐标系(NC2264) NC2264 = 'EPSG:2264' sfd_subs = pd.read_csv(r'FILE_LOCATION.csv') wake_
我正在尝试导入形状文件并更改其 crs 以获得具有正确投影的 map 。 map_sh = gpd.read_file(r'C:\PATH\VG250_Gemeindegrenzen_2018.shp
我是一名优秀的程序员,十分优秀!