[GRASS-SVN] r60288 - grass/branches/releasebranch_7_0/raster/r.resamp.bspline

svn_grass at osgeo.org svn_grass at osgeo.org
Sat May 17 09:59:50 PDT 2014


Author: neteler
Date: 2014-05-17 09:59:50 -0700 (Sat, 17 May 2014)
New Revision: 60288

Modified:
   grass/branches/releasebranch_7_0/raster/r.resamp.bspline/main.c
Log:
r.resamp.bspline: fix broken method selector

Modified: grass/branches/releasebranch_7_0/raster/r.resamp.bspline/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.resamp.bspline/main.c	2014-05-17 16:59:37 UTC (rev 60287)
+++ grass/branches/releasebranch_7_0/raster/r.resamp.bspline/main.c	2014-05-17 16:59:50 UTC (rev 60288)
@@ -159,7 +159,7 @@
     inrast = in_opt->answer;
     outrast = out_opt->answer;
 
-    if (!strcmp(method_opt->answer, "linear"))
+    if (!strcmp(method_opt->answer, "bilinear"))
 	interp_method = P_BILINEAR;
     else
 	interp_method = P_BICUBIC;



More information about the grass-commit mailing list