我尝试将一个geopandas数据框(df
)作为形状文件写入我的s3存储桶(使用数据库)
S3存储桶正确安装在mnt/jk/Geo_data
但是
df.to_file('mnt/jk/Geo_data/shapefiles/Geometries.shp', driver='ESRI Shapefile')
返回
Failed to create file /databricks/driver/mnt/jk/Geo_data/shapefiles/Geometries.shp: No such file or directory
答案 0 :(得分:0)
由于geopandas是Python库,因此在数据砖中,您需要在所有路径前添加/ dbfs /。因此,您的路径应为“ /dbfs/mnt/jk/Geo_data/shapefiles/Geometries.shp”。