Геопанды сохраняют шейп-файл в памяти, используя bytesIO или equivelent (python3X) - PullRequest
0 голосов
/ 03 мая 2019

Представьте, что я манипулирую шейп-файлом в геопандах. Затем я хочу загрузить его, используя другую библиотеку (например, networkx), но так как мой файл большой, я не хочу его сохранять и перезагружать. Есть ли способ сохранить его в памяти? Я думаю, это будет выглядеть примерно так:

import geopandas 
from io import BytesIO 

writeBytes = BytesIO()
### load the demo
world = geopandas.read_file(geopandas.datasets.get_path('naturalearth_lowres'))
### do something trivial to the demo
world['geometry'] = world['geometry'].buffer(0.05)
### save to bytes IO so that I can do something else with it without having to save and read a file 
world.to_file(writeBytes)

Выполнение вышеуказанного приводит к TypeError: ожидаемый объект str, bytes или os.PathLike, а не _io.BytesIO Это полная трассировка:

            TypeError                                 Traceback (most recent call last)
            <ipython-input-1-1ba22f23181a> in <module>
                  8 world['geometry'] = world['geometry'].buffer(0.05)
                  9 ### save to bytes IO so that I can do something else with it without having to save and read a file                                                                                           
            ---> 10 world.to_file(writeBytes)

            ~/.conda/envs/geopandas/lib/python3.7/site-packages/geopandas/geodataframe.py in to_file(self, filename, driver, schema, **kwargs)
                427         """
                428         from geopandas.io.file import to_file
            --> 429         to_file(self, filename, driver, schema, **kwargs)
                430 
                431     def to_crs(self, crs=None, epsg=None, inplace=False):

            ~/.conda/envs/geopandas/lib/python3.7/site-packages/geopandas/io/file.py in to_file(df, filename, driver, schema, **kwargs)
                125     if schema is None:
                126         schema = infer_schema(df)
            --> 127     filename = os.path.abspath(os.path.expanduser(filename))
                128     with fiona_env():
                129         with fiona.open(filename, 'w', driver=driver, crs=df.crs,

            ~/.conda/envs/geopandas/lib/python3.7/posixpath.py in expanduser(path)
                233     """Expand ~ and ~user constructions.  If user or $HOME is unknown,
                234     do nothing."""
            --> 235     path = os.fspath(path)
                236     if isinstance(path, bytes):
                237         tilde = b'~'

Любая помощь приветствуется, спасибо

...