Skip to content

QGIS plugin offering on the fly hillshading of DEM data

Notifications You must be signed in to change notification settings

Septima/qgis-hillshaderenderer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 

Repository files navigation

qgis-hillshaderenderer

QGIS plugin offering on the fly hillshading of DEM data

Note: This is by no means a functional plugin yet!

The code is more like a proof of concept. It works on my data. Most of the time.

To run the proof of concept code:

  1. Make sure the Python module numpy is installed
  2. Open QGIS and load DEM raster data
  3. Make the DEM layer active (click it in the legend). Apply any color rendering and resampling options you want to work for the hillshade using the styling dialog.
  4. Run the python code for instance by using the built in editor in the python console.

Limitations

There is no GUI for setting options. They must be set in the code.

The hillshading algorithm uses the relationship between z units and xy units. At the moment it is assumed they are 1:1. This could probably be calculated.

The shading does not look good when QGIS is resampling the DEM data. This is very pronounced when qgis is upsampling, where the hillshade will then look jagged or terraced. This can be solved by forcing QGIS to not use nearest neighbor. I haven't figured a way to get the Renderer to do this..

Nodata is not handled. At all.

Changing the layer style (like transparency, blending mode etc) using the layer styling dialog doesn't work. But it seems that reattaching the renderer after the change may lead to the desired result.

Improvements

My conversion between QgsRasterBlock and numpy array is outright dumb and extremely slow. I loop over all the pixels and copy them one by one... Using nearest neighbor it is reasonably fast on my machine, but when QGIS does oversampling it is noticably slower as the number of pixels quadruples. I think it could be done a lot faster using QgsRasterBlock::bits ( ), but unfortunately according to the docs it is not available from Python.

About

QGIS plugin offering on the fly hillshading of DEM data

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages