4

我已将 shapefile 读入 aGeoDataFrame并对其进行了一些修改:

import geopandas as gpd

# Read shapefile into geodataframe
geodf = gpd.read_file("shapefile.shp")

# Do some "pandas-like" modifications to shapefile
geodf = modify_geodf(geodf)

但是,我还想osgeo.ogr在其上应用模块的一些功能:

from osgeo import ogr

# Read shapefile into ogr DataSource
ds=ogr.Open("shapefile.shp")

# Do some "gdal/ogr-like" modifications to shapefile
ds = modify_ds(ds)

问题:有什么方法可以直接使用或转换目前以 GeoDataFrame 形式存在的内存中的 shapefile osgeo.ogr.DataSource

到目前为止,我这样做的方法是将 GeoDataFrame 保存到文件中to_file(),然后osgeo.ogr.Open()再次保存,但这对我来说似乎有点多余。

4

2 回答 2

8

对的,这是可能的。您可以将 GeoDataFrame 以支持 OGR 矢量格式的 GeoJson 格式传递给 ogr.Open。因此,您不需要将临时文件保存到磁盘中:

import geopandas as gpd
from osgeo import ogr

# Read file into GeoDataFrame
data = gpd.read_file("my_shapefile.shp")

# Pass the GeoDataFrame into ogr as GeoJson
shp = ogr.Open(data.to_json())

# Do your stuff with ogr ...

希望这会有所帮助!

于 2018-08-23T01:47:04.807 回答
3

不可以。只有OGR 支持的格式才能用ogr.Open().

于 2017-02-13T14:44:06.043 回答