浏览代码

v.transform: remove refs to GCP and unused flag

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@55252 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Metz 12 年之前
父节点
当前提交
1f5e8892f5
共有 1 个文件被更改,包括 3 次插入8 次删除
  1. 3 8
      vector/v.transform/main.c

+ 3 - 8
vector/v.transform/main.c

@@ -47,7 +47,7 @@ int main(int argc, char *argv[])
 
     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 @@ int main(int argc, char *argv[])
     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 =