C:\Users\GW00321286\.conda\envs\python_39\lib\site-packages\geopandas\geodataframe.py:1443: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy super().__setitem__(key, value)
时间: 2024-04-25 08:26:29 浏览: 54
Miniconda3-py38_4.11.0-Linux-x86_64.zip
这是一个警告信息,意味着你正在尝试通过切片形式对 GeoDataFrame 进行赋值,这种方式可能会导致出现副本,不是在原始数据上进行操作。建议使用 .loc[row_indexer,col_indexer] = value 的形式进行赋值,这样可以确保在原始数据上进行操作,避免出现副本。你可以查看 Pandas 文档中的相关内容,了解更多有关此警告的信息。
阅读全文