ailich / MultiscaleDTM

Calculates multi-scale geomorphometric terrain attributes from regularly gridded DEM/bathymetry rasters.
https://ailich.github.io/MultiscaleDTM/
GNU General Public License v3.0
21 stars 4 forks source link

SAPA Planar Area Bug #36

Closed ailich closed 2 years ago

ailich commented 2 years ago

xy resolution is flipped. PA<- (x_res*w[1]) * (y_res*w[2]) should be PA<- (x_res*w[2]) * (y_res*w[1]) because width is x_resnumber of columns and height is y_resnumber of rows.

ailich commented 2 years ago

Now fixed 37be3fd