--- id: dask-geopandas version: "0.5.0" license: BSD 3-Clause license_treatment: permissive maintenance: active --- # dask-geopandas — Parallel GeoPandas with Dask License: permissive · Maintenance: active · Downloads: 79.1K/mo ## What it is and what it does Dask-GeoPandas bridges Dask and GeoPandas to enable parallel processing of geospatial data. It takes a GeoPandas DataFrame and repartitions it into a Dask-backed structure, allowing spatial operations—like geometry calculations, spatial joins, and filtering—to run across multiple partitions in parallel or on distributed clusters. This is useful when your geographic dataset is too large to fit comfortably in memory on a single machine, or when you want to leverage cluster resources to speed up spatial computations. The package exposes the familiar GeoPandas API (geometry attributes, spatial methods) on top of Dask's lazy evaluation model, so you write code much like you would with GeoPandas, but operations are distributed. It depends on geopandas, shapely, dask, and packaging, and requires Python 3.10 or later. The project is actively maintained, has no known vulnerabilities, and is licensed under BSD 3-Clause. Use it for: - Process multi-gigabyte shapefiles or geographic datasets that exceed available RAM by partitioning across a cluster. - Accelerate spatial joins, buffer operations, or geometric calculations on large datasets using parallel workers. - Build reproducible geospatial ETL pipelines that scale from laptop to cloud cluster without code changes. - Compute area, distance, or containment checks on millions of geometries in parallel. - Integrate geospatial analysis into larger Dask workflows alongside other distributed data processing steps. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Dask-GeoPandas parallelizes geospatial operations by combining GeoPandas' spatial capabilities with Dask's distributed computing, allowing you to process large geographic datasets across multiple partitions. Yes. Dask-GeoPandas is production-stable, actively maintained, has no security vulnerabilities, and solves a real problem: scaling geospatial operations beyond single-machine limits. Install it if you work with large geographic datasets and need parallel processing. The low install friction and permissive license make adoption straightforward; the main constraint is requiring Python 3.10+. ## Install pip install dask-geopandas uv add dask-geopandas poetry add dask-geopandas ## Installing dask-geopandas Before you install: Low friction: pure Python wheel, four straightforward runtime dependencies (geopandas, shapely, dask, packaging). Actively maintained with recent commits and stable status since early releases. License in practice: BSD 3-Clause is permissive; you can use, modify, and distribute this package freely in commercial and private projects with minimal restrictions. Quickstart: import geopandas import dask_geopandas df = geopandas.read_file('file.shp') ddf = dask_geopandas.from_geopandas(df, npartitions=4) result = ddf.geometry.area.compute() Requires Python >= 3.10; geopandas, shapely, and dask must be installed first (typically via conda to handle geospatial system dependencies). Verify before relying: - Performance gains and scalability limits for typical dataset sizes and cluster configurations. - Compatibility with specific versions of geopandas, shapely, and dask beyond the general runtime dependency list. - Support for all GeoPandas spatial operations or limitations on certain methods in parallel contexts. ## Package facts - License: BSD 3-Clause (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 79.1K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags parallel geospatial processing, dask geopandas distributed, scale geographic data analysis, out-of-core spatial operations, distributed gis computation, dask dataframe geospatial, parallel shapely operations, geospatial, distributed-computing, gis [View on SkillFed](https://skillfed.io/packages/dask-geopandas) · [View on PyPI](https://pypi.org/project/dask-geopandas/)