You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The formula stated in the documentation is ${PER} = \frac{z_0}{(z_{min} - z_{max})} * 100 $
But in the code the following formula is used ${PER} = \frac{z_0 - z_{min}}{(z_{min} - z_{max})} * 100 $
As the function shall calculate a percentage, the actually used 2. formula makes more sense.
Maybe you could edit the documentation provided on the website.
Many Thanks!
The text was updated successfully, but these errors were encountered:
Hello there,
when taking a closer look a the function
PercentElevRange
I discovered an error in the documentation of the function (https://www.whiteboxgeo.com/manual/wbt_book/available_tools/geomorphometric_analysis.html#percentelevrange).The formula stated in the documentation is${PER} = \frac{z_0}{(z_{min} - z_{max})} * 100 $ ${PER} = \frac{z_0 - z_{min}}{(z_{min} - z_{max})} * 100 $
But in the code the following formula is used
As the function shall calculate a percentage, the actually used 2. formula makes more sense.
Maybe you could edit the documentation provided on the website.
Many Thanks!
The text was updated successfully, but these errors were encountered: