Skip to content

Commit

Permalink
add note about height parameters for users who don't want to read docs
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy authored and nyalldawson committed Nov 6, 2019
1 parent e11e635 commit 1c1ceb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/gdal/viewshed.py
Expand Up @@ -68,12 +68,12 @@ def initAlgorithm(self, config=None):
self.addParameter(QgsProcessingParameterPoint(self.OBSERVER,
self.tr('Observer location')))
self.addParameter(QgsProcessingParameterNumber(self.OBSERVER_HEIGHT,
self.tr('Observer height'),
self.tr('Observer height, DEM units'),
type=QgsProcessingParameterNumber.Double,
minValue=0.0,
defaultValue=1.0))
self.addParameter(QgsProcessingParameterNumber(self.TARGET_HEIGHT,
self.tr('Target height'),
self.tr('Target height, DEM units'),
type=QgsProcessingParameterNumber.Double,
minValue=0.0,
defaultValue=1.0))
Expand Down

0 comments on commit 1c1ceb1

Please sign in to comment.