[GRASS-SVN] r55252 - grass/trunk/vector/v.transform

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Feb 28 00:30:35 PST 2013


Author: mmetz
Date: 2013-02-28 00:30:35 -0800 (Thu, 28 Feb 2013)
New Revision: 55252

Modified:
   grass/trunk/vector/v.transform/main.c
Log:
v.transform: remove refs to GCP and unused flag

Modified: grass/trunk/vector/v.transform/main.c
===================================================================
--- grass/trunk/vector/v.transform/main.c	2013-02-27 20:58:48 UTC (rev 55251)
+++ grass/trunk/vector/v.transform/main.c	2013-02-28 08:30:35 UTC (rev 55252)
@@ -47,7 +47,7 @@
 
     struct Option *vold, *vnew, *xshift, *yshift, *zshift,
 	*xscale, *yscale, *zscale, *zrot, *columns, *field_opt;
-    struct Flag *tozero_flag, *print_mat_flag, *swap_flag, *no_topo;
+    struct Flag *tozero_flag, *swap_flag, *no_topo;
 
     char mon[4], date[40], buf[1000];
     struct Map_info Old, New;
@@ -70,18 +70,13 @@
     G_add_keyword(_("vector"));
     G_add_keyword(_("transformation"));
     module->description =
-	_("Performs an affine transformation (shift, scale and rotate, "
-	  "or GPCs) on vector map.");
+	_("Performs an affine transformation (shift, scale and rotate) "
+	  "on vector map.");
     
     tozero_flag = G_define_flag();
     tozero_flag->key = 't';
     tozero_flag->description = _("Shift all z values to bottom=0");
 
-    print_mat_flag = G_define_flag();
-    print_mat_flag->key = 'm';
-    print_mat_flag->description =
-	_("Print the transformation matrix to stdout");
-    
     swap_flag = G_define_flag();
     swap_flag->key = 'w';
     swap_flag->description =



More information about the grass-commit mailing list