-
-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ENH: add support to read and write .gpkg.zip and .shp.zip #527
base: main
Are you sure you want to change the base?
ENH: add support to read and write .gpkg.zip and .shp.zip #527
Conversation
Can we also add .shz while we're at it? |
".shz" should already be fine I think. ".gpkg.zip" and ".shp.zip" gave issues because of the 2 suffixes used. Anyway I added ".shz" to a basic write/read test so there is at least minimal testing on it. Do you know of issues with ".shz"? |
Not aware of issues. I just wasn't sure pyogrio picks the driver properly given it wasn't listed in the mapping. |
The goal of the actual code changes is essentially to avoid that we do any preprocessing of the path in case of it ending with |
…le/layer operations (#673) Following issues need to be solved upstream: - [x] For to_file there seems to be an issue in pyogrio, PR: geopandas/pyogrio#527 ref #674
Indeed... |
…read-and-write-.gpkg.zip-and-.shp.zip
…read-and-write-.gpkg.zip-and-.shp.zip
Add support to read and write ".gpkg.zip" and ".shp.zip" files. PR also adds a basic test on ".shz".
resolves #449