[GRASS-SVN] r56329 - grass/trunk/raster/r.proj

svn_grass at osgeo.org svn_grass at osgeo.org
Mon May 20 06:06:42 PDT 2013


Author: martinl
Date: 2013-05-20 06:06:41 -0700 (Mon, 20 May 2013)
New Revision: 56329

Modified:
   grass/trunk/raster/r.proj/main.c
Log:
r.proj: rename bilinear to linear


Modified: grass/trunk/raster/r.proj/main.c
===================================================================
--- grass/trunk/raster/r.proj/main.c	2013-05-20 13:02:53 UTC (rev 56328)
+++ grass/trunk/raster/r.proj/main.c	2013-05-20 13:06:41 UTC (rev 56329)
@@ -67,10 +67,10 @@
 /* modify this table to add new methods */
 struct menu menu[] = {
     {p_nearest, "nearest", "nearest neighbor"},
-    {p_bilinear, "bilinear", "bilinear"},
+    {p_bilinear, "linear", "linear interpolation"},
     {p_cubic, "cubic", "cubic convolution"},
     {p_lanczos, "lanczos", "lanczos filter"},
-    {p_bilinear_f, "bilinear_f", "bilinear with fallback"},
+    {p_bilinear_f, "linear_f", "linear interpolation with fallback"},
     {p_cubic_f, "cubic_f", "cubic convolution with fallback"},
     {p_lanczos_f, "lanczos_f", "lanczos filter with fallback"},
     {NULL, NULL, NULL}



More information about the grass-commit mailing list