Skip to main content

Topo calculations like gradient and sky view

Project description

topocalc

Pypi version Build Status Coverage Status Maintainability

The topocalc package is a collection of functions to calculate various metrics on a digital elevation model (DEM). The calculations follow the equations laid out in Dozier and Frew, 1990 for the gradient, horizon and sky view factor. Currently the supported calculations are:

  1. Gradient for slope and aspect
  2. Horizon angles for an azimuth
  3. Sky view factor for percent of the sky that is visible from a point on the DEM

Backgourd

Azimuth convention

For the azimuth's and aspects, the convention is that South is 0 degrees (0 radians) with positive values to the East (+90 degrees or pi/4 radians) and negative values to the West (-90 degrees or -pi/4 radians). North is -180 degrees or -pi/2.

Gradient for slope and aspect

The gradient method calculates the slope and aspect of the input DEM. There are two methods in topocalc.gradient the gradient_d4 and gradient_d8.

gradient_d4 mimics the slope and aspect calculations of the IPW gradient function. This calculates the slope for a finite difference in just the x/y direction.

gradient_d8 (the default) uses a second order finite difference for a 3x3 square around a given point on the DEM.

The aspect uses the gradient to calculate the aspect from North (0 degrees). A conversion function will take the aspect in degrees and convert to radians with South being 0.

Horizon angles

The horizon angle for a point on the DEM is the angle from zenith to the horizon for a given azimuth. Following the methods laid out in Dozier and Frew, 1990 and in IPW horizon the grid is rotated in the direction of the azimuth to make it a one dimensional problem.

For two points i and j, we compare the slope from i and j with the slope of j's horizon. If the slope is greater, then all points past j are not visible. If the slope is less, then all points between i and j don't need to be checked and the search can continue past point j. This search is performed in C to significantly speed up the computation.

The values reported from horizon are cosine of the horizon angle.

Sky view factor

The sky view factor (svf) is the amount of the sky that is visible to a particular point. The svf is between 0 and 1 with 1 indicating no obstructions from surrounding terrain and 0 indicating full obstruction. The svf uses the slope, aspect and horizon angles for 72 directions to estimate the sky view factor for the DEM.

Usage

Installation

NOTE: topocalc has only been tested for Python 3.5 to 3.8 on Linux and MacOSX environments.

To install:

pip install topocalc

Gradient usage

from topocalc.gradient import gradient_d8

# Load the DEM into a numpy array
dem = load_dem(path_to_dem)

# grid cell spacing for the DEM
dem_dx = 30
dem_dy = 30

slope, aspect = gradient_d8(dem, dem_dx, dem_dy)

Sky view factor usage

from topocalc.viewf import viewf

# Load the DEM into a numpy array
dem = load_dem(path_to_dem)

# grid cell spacing for the DEM
dem_spacing = 30

svf, tvf = viewf(dem, spacing=dem_spacing)

Command Line Interface

Comming soon!

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

topocalc-0.2.0.tar.gz (6.8 MB view hashes)

Uploaded Source

Built Distributions

topocalc-0.2.0-cp38-cp38-manylinux2010_x86_64.whl (4.3 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

topocalc-0.2.0-cp38-cp38-manylinux1_x86_64.whl (4.3 MB view hashes)

Uploaded CPython 3.8

topocalc-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl (4.3 MB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

topocalc-0.2.0-cp37-cp37m-manylinux2010_x86_64.whl (4.3 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

topocalc-0.2.0-cp37-cp37m-manylinux1_x86_64.whl (4.3 MB view hashes)

Uploaded CPython 3.7m

topocalc-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (4.3 MB view hashes)

Uploaded CPython 3.7m macOS 10.9+ x86-64

topocalc-0.2.0-cp36-cp36m-manylinux2010_x86_64.whl (4.3 MB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

topocalc-0.2.0-cp36-cp36m-manylinux1_x86_64.whl (4.3 MB view hashes)

Uploaded CPython 3.6m

topocalc-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl (4.3 MB view hashes)

Uploaded CPython 3.6m macOS 10.9+ x86-64

topocalc-0.2.0-cp35-cp35m-manylinux2010_x86_64.whl (4.3 MB view hashes)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

topocalc-0.2.0-cp35-cp35m-manylinux1_x86_64.whl (4.3 MB view hashes)

Uploaded CPython 3.5m

topocalc-0.2.0-cp35-cp35m-macosx_10_9_x86_64.whl (4.3 MB view hashes)

Uploaded CPython 3.5m macOS 10.9+ x86-64

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