In the function EstimateSurfaceArea the user given statistic is improperly overridden if the user wishes to use between 101 and 999 points. // limits if(nStat < 1000) { nStat = 100; } should be // limits if(nStat < 100) { nStat = 100; }
Thanks for spotting this. The problem is fixed in tag "geommng-V09-00-01" and will be included in the next release or bug-fix.