[GRASS-SVN] r39286 - grass/branches/develbranch_6/vector/v.out.ogr

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Sep 23 11:22:31 EDT 2009


Author: benducke
Date: 2009-09-23 11:22:31 -0400 (Wed, 23 Sep 2009)
New Revision: 39286

Modified:
   grass/branches/develbranch_6/vector/v.out.ogr/main.c
Log:
Reverted default for "type=" option to "line,boundary". The additional "auto" option
stays in. This means that v.out.ogr in this version behaves exactly the same as it
does in 6.4; but users can also benefit from the automatic type determination if they
choose.

Modified: grass/branches/develbranch_6/vector/v.out.ogr/main.c
===================================================================
--- grass/branches/develbranch_6/vector/v.out.ogr/main.c	2009-09-22 20:46:51 UTC (rev 39285)
+++ grass/branches/develbranch_6/vector/v.out.ogr/main.c	2009-09-23 15:22:31 UTC (rev 39286)
@@ -93,7 +93,7 @@
 
     type_opt = G_define_standard_option(G_OPT_V3_TYPE);
     type_opt->options = "point,line,boundary,centroid,area,face,kernel,auto";
-    type_opt->answer = "auto";
+    type_opt->answer = "line,boundary";
     type_opt->description =
 	_("Feature type(s). Combinations not supported "
 	  "by all output formats. Default: first type found in input.");



More information about the grass-commit mailing list