Boa tarde!
Ao executar o seguinte código:
geo_dados['Dist_metro'] = geo_dados['geometry'].apply(lambda x: metro.distance(x).min())
Uma mensagem de aviso é exibida:
"/usr/local/lib/python3.10/dist-packages/geopandas/geodataframe.py:1538: 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)"
Gostaria de saber se há um código mais atualizado para tentar realizar a inserção da nova coluna no Geodataframe.
Desde já agradeço!