[GRASS-SVN] r56331 - in grass/trunk/imagery: i.ortho.photo/i.ortho.rectify i.rectify
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon May 20 09:37:59 PDT 2013
Author: martinl
Date: 2013-05-20 09:37:59 -0700 (Mon, 20 May 2013)
New Revision: 56331
Modified:
grass/trunk/imagery/i.ortho.photo/i.ortho.rectify/main.c
grass/trunk/imagery/i.rectify/main.c
Log:
i.rectify/i.ortho.rectify: rename 'bilinear' to 'linear'
Modified: grass/trunk/imagery/i.ortho.photo/i.ortho.rectify/main.c
===================================================================
--- grass/trunk/imagery/i.ortho.photo/i.ortho.rectify/main.c 2013-05-20 16:32:42 UTC (rev 56330)
+++ grass/trunk/imagery/i.ortho.photo/i.ortho.rectify/main.c 2013-05-20 16:37:59 UTC (rev 56331)
@@ -40,10 +40,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}
Modified: grass/trunk/imagery/i.rectify/main.c
===================================================================
--- grass/trunk/imagery/i.rectify/main.c 2013-05-20 16:32:42 UTC (rev 56330)
+++ grass/trunk/imagery/i.rectify/main.c 2013-05-20 16:37:59 UTC (rev 56331)
@@ -55,10 +55,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