Skip to main content

Tools for working with Geographical Information System Rasters

Project description

gisrastertools
===========

The ``gisrastertools`` is a python module that provides a fast and flexible
tool to work with GIS raster files. It includes tools to

- Given a point (lat,lon) find its location in a raster
- Aggregate rasters to lower resolutions
- Align two rasters of different sizes to common area and size
- Get all the geographical information of raster
- Create GeoTiff files easily
- Load GeoTiff files as masked numpy rasters

Install
-------

.. code-block:: python

pip install gisrastertools

Example Usage
-------------

.. code-block:: python

from gisrastertools import *
# Get info on raster
NDV, xsize, ysize, GeoT, Projection, DataType = get_geo_info(raster)

# Load raster
data = load_tiff(raster)

# Find location of point (x,y) on raster, e.g. to extract info at that location
col, row = map_pixel(x,y,GeoT[1],GeoT[-1], GeoT[0],GeoT[3])
value = data[row,col]

# Agregate raster by summing over cells in order to increase pixel size by e.g. 10
aggregate(data,NDV,(10,10))

# Align two rasters
data2 = load_tiff(raster2)
(alignedraster_o, alignedraster_a, GeoT_a) = align_rasters(raster, raster2, how=np.mean)

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

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

Source Distribution

gisrastertools-0.1.tar.gz (17.6 kB view details)

Uploaded Source

File details

Details for the file gisrastertools-0.1.tar.gz.

File metadata

File hashes

Hashes for gisrastertools-0.1.tar.gz
Algorithm Hash digest
SHA256 ff8b5770e6ee7f94076584aa8664e0c1ccf29be05638aff3a5c92abf08008e57
MD5 8743321f3d366b2ea1e1185459714ccf
BLAKE2b-256 501cac358c163a94b262ece8290bde7b1b729702c89c81f0b100696145450990

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