A simple python module that converts a raster to a Pandas DataFrame.
Project description
Raster To DataFrame
A simple python module that converts a raster to a Pandas DataFrame.
from rastertodataframe import raster_to_dataframe
raster_path = '/some/gdal/compatible/file.tif'
vector_path = '/some/ogr/compatible/file.geojson'
# Extract all image pixels (no vector).
df = raster_to_dataframe(raster_path)
# Extract only pixels the vector touches and include the vector metadata.
df = raster_to_dataframe(raster_path, vector_path=vector_path)
Free software: MIT license
Documentation: https://rastertodataframe.readthedocs.io.
Features
Convert any GDAL compatible raster to a Pandas DataFrame.
Optionally, if any OGR compatible vector file is given, only pixels touched by the vector are extracted from the raster. The output DataFrame includes these pixels as well as any attributed from the vector file.
Installation
pip install rastertodataframe
A working GDAL/OGR installation is required. This is best accomplished with conda.
conda install -c conda-forge numpy gdal geopandas pandas pyproj
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
0.1.3 (2018-07-09)
Remove dependencies to fix non-building installs.
0.1.2 (2018-07-09)
Fix creation of temporary files on windows.
0.1.1 (2018-07-08)
All logic implement with unit tests. Prepare for PyPI release.
0.1.0 (2018-07-07)
Project started.
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
Built Distribution
Hashes for rastertodataframe-0.1.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0bb4edb71356343ed475962b5d08651b29e4b0f7ab5639a8c1b85328e9f65084 |
|
MD5 | 9c12b9a8131736382a12fa9264935979 |
|
BLAKE2b-256 | ad52c401dcf8c20c36e13fc79dd907af71d3591ec292d8f7f6463d9b33d6f05b |