Estou interessado em ver o código-fonte do pandas.Series.reindex
, então pulei para o código-fonte usando o link na página de documentação , mas encontrei um retorno para outra função super().reindex , que ainda não consegui descobrir onde essa função foi introduzida. Como posso entrar na definição dessa função pandas.Series.reindex
?
Kernel's questions
Todos, eu uso o arquivo de forma generalizada ESRI World Countries, que está disponível aqui usando GeoPandas
shp_file =gpd.read_file('World_Countries/World_Countries_Generalized.shp')
print(shp_file.crs)
O CRS que obtive é EPSG:3857
, mas depois de adicionar o CRS ao gpd.read_file como o seguinte
shp_file1 =gpd.read_file('../../Downloads/World_Countries/World_Countries_Generalized.shp',crs='EPSG:3857')
Recebi o seguinte erro
/opt/anaconda3/envs/geo_env/lib/python3.12/site-packages/pyogrio/raw.py:198: RuntimeWarning: driver ESRI Shapefile does not support open option CRS return ogr_read(
Você sabe por que recebo esse erro e isso significa que o arquivo não foi lido corretamente?
Obrigado
Pessoal, recebi o seguinte erro ao tentar importar o arquivo states.geojson conforme descrito nesta página https://www.twilio.com/en-us/blog/geospatial-analysis-python-geojson-geopandas-html . Acho que esse arquivo está entre os arquivos pré-instalados com os geopands.
Estou usando o geopandas versão 0.14.4
import geopandas as gpd
states = gpd.read_file('states.geojson')
Aqui está o erro
Traceback (most recent call last):
File fiona/ogrext.pyx:130 in fiona.ogrext.gdal_open_vector
File fiona/ogrext.pyx:134 in fiona.ogrext.gdal_open_vector
File fiona/_err.pyx:375 in fiona._err.StackChecker.exc_wrap_pointer
CPLE_OpenFailedError: states.geojson: No such file or directory
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
Cell In[1], line 2
states = gpd.read_file('states.geojson') # built in-file
File ~/anaconda3/lib/python3.11/site-packages/geopandas/io/file.py:289 in _read_file
return _read_file_fiona(
File ~/anaconda3/lib/python3.11/site-packages/geopandas/io/file.py:315 in _read_file_fiona
with reader(path_or_bytes, **kwargs) as features:
File ~/anaconda3/lib/python3.11/site-packages/fiona/env.py:457 in wrapper
return f(*args, **kwds)
File ~/anaconda3/lib/python3.11/site-packages/fiona/__init__.py:342 in open
colxn = Collection(
File ~/anaconda3/lib/python3.11/site-packages/fiona/collection.py:226 in __init__
self.session.start(self, **kwargs)
File fiona/ogrext.pyx:876 in fiona.ogrext.Session.start
File fiona/ogrext.pyx:136 in fiona.ogrext.gdal_open_vector
DriverError: Failed to open dataset (flags=68): states.geojson
Obrigado