[GRASS-SVN] r62965 - grass/branches/releasebranch_7_0/imagery/i.ifft
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Nov 26 01:23:59 PST 2014
Author: martinl
Date: 2014-11-26 01:23:58 -0800 (Wed, 26 Nov 2014)
New Revision: 62965
Modified:
grass/branches/releasebranch_7_0/imagery/i.ifft/main.c
Log:
i.ifft: use standardized options (#2409) - (merge r62964 from trunk)
Modified: grass/branches/releasebranch_7_0/imagery/i.ifft/main.c
===================================================================
--- grass/branches/releasebranch_7_0/imagery/i.ifft/main.c 2014-11-26 09:22:30 UTC (rev 62964)
+++ grass/branches/releasebranch_7_0/imagery/i.ifft/main.c 2014-11-26 09:23:58 UTC (rev 62965)
@@ -82,15 +82,14 @@
/* define options */
opt.real = G_define_standard_option(G_OPT_R_INPUT);
- opt.real->key = "real_image";
+ opt.real->key = "real";
opt.real->description = _("Name of input raster map (image fft, real part)");
opt.imag = G_define_standard_option(G_OPT_R_INPUT);
- opt.imag->key = "imaginary_image";
+ opt.imag->key = "imaginary";
opt.imag->description = _("Name of input raster map (image fft, imaginary part");
opt.orig = G_define_standard_option(G_OPT_R_OUTPUT);
- opt.orig->key = "output_image";
opt.orig->description = _("Name for output raster map");
/*call parser */
More information about the grass-commit
mailing list