Changes between Initial Version and Version 1 of Ticket #1785
- Timestamp:
- 01/12/14 14:04:37 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1785
- Property Milestone 6.4.3 → 6.4.4
- Property Version unspecified → svn-releasebranch64
-
Ticket #1785 – Description
initial v1 3 3 I've been looking trhough r.param.scale source code. The point is that I was wondering if there was an error in file 4 4 http://trac.osgeo.org/grass/browser/grass/trunk/raster/r.param.scale/feature.c 5 5 6 The last "else if... (line 103)" includes two simultaneous conditions that should (?) have opposite comparison operations (in addition, it never will take place because the root "if" has the same condition), i.e. 7 6 8 "else if (minic < curve_tol && minic > -curve_tol) {" 9 7 10 Then, final "return (FLAT) (line 108)" will be useless (?). 8 11