Skip to main content

Summarize geospatial raster datasets based on vector geometries

Project description

BuildStatus CoverageStatus

rasterstats is a Python module for summarizing geospatial raster datasets based on vector geometries. It includes functions for zonal statistics and interpolated point queries. The command-line interface allows for easy interoperability with other GeoJSON tools.

Documentation

For details on installation and usage, visit the documentation at http://pythonhosted.org/rasterstats.

What does it do?

Given a vector layer and a raster band, calculate the summary statistics of each vector geometry. For example, with a polygon vector layer and a digital elevation model (DEM) raster, compute the mean elevation of each polygon.

zones elevation

Command Line Quick Start

The command line interfaces to zonalstats and point_query are rio subcommands which read and write geojson features

$ fio cat polygon.shp | rio zonalstats -r elevation.tif

$ fio cat points.shp | rio pointquery -r elevation.tif

See the CLI Docs. for more detail.

Python Quick Start

For zonal statistics

>>> from rasterstats import zonal_stats
>>> stats = zonal_stats("tests/data/polygons.shp", "tests/data/elevation.tif")
>>> stats[1].keys()
['count', 'min', 'max', 'mean']
>>> [f['mean'] for f in stats]
[756.6057470703125, 114.660084635416666]

and for point queries

>>> from rasterstats import point_query
>>> point = "POINT(245309 1000064)"
>>> point_query(point, "tests/data/elevation.tif")
[723.9872347624]

Issues

Find a bug? Report it via github issues by providing

  • a link to download the smallest possible raster and vector dataset necessary to reproduce the error

  • python code or command to reproduce the error

  • information on your environment: versions of python, gdal and numpy and system memory

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rasterstats-0.13.1.tar.gz (13.7 kB view details)

Uploaded Source

Built Distribution

rasterstats-0.13.1-py3-none-any.whl (16.4 kB view details)

Uploaded Python 3

File details

Details for the file rasterstats-0.13.1.tar.gz.

File metadata

  • Download URL: rasterstats-0.13.1.tar.gz
  • Upload date:
  • Size: 13.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.8

File hashes

Hashes for rasterstats-0.13.1.tar.gz
Algorithm Hash digest
SHA256 5600e58a80d9968a1afa8e25fc06e1e54cdfa7d078cb239db574b23167d0f0de
MD5 133995be5e9113243564b2d07750113c
BLAKE2b-256 01b6d2b7dd768ad89999eecef99c781227f1bcab51601903497e75db21e97307

See more details on using hashes here.

File details

Details for the file rasterstats-0.13.1-py3-none-any.whl.

File metadata

  • Download URL: rasterstats-0.13.1-py3-none-any.whl
  • Upload date:
  • Size: 16.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.8

File hashes

Hashes for rasterstats-0.13.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a38387a62c0b2e09fbf7b8d49e25c71fb3e63f0b893d0a82590ec36a8e2b662f
MD5 dfa2105d2e31920532673f0043f7b4c2
BLAKE2b-256 43307f0b3ed0debd10a6687110dd9d46b308d33ff4696b88c2461758d86ff428

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page