Questions tagged [geofileops]
geofileops is a python toolbox to process large vector files faster.
2 questions
1 vote
2 answers
63 views
What Dockerfile should I use so I can use geofileops within the container built from it?
I am trying to have a Python shell in a Docker container with geofileops available. This is the furthest I got: FROM --platform=linux/amd64 ghcr.io/osgeo/gdal:ubuntu-full-3.11.4 RUN apt-get update &...
2 votes
1 answer
334 views
How to handle fiona._err.CPLE_AppDefinedError when using geofileops.makevalid on large files?
I am testing geofileops.makevalid. To do so, I create a GPKG file with a number invalid of geometries to fix. First, I create this Python script, test.py: import geofileops as gfo import geopandas as ...