ソースを参照

d.vect: explain 'display' parameter

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@44657 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 14 年 前
コミット
6a8ac100a9
1 ファイル変更7 行追加1 行削除
  1. 7 1
      display/d.vect/main.c

+ 7 - 1
display/d.vect/main.c

@@ -134,7 +134,13 @@ int main(int argc, char **argv)
     display_opt->answer = "shape";
     display_opt->options = "shape,cat,topo,dir,attr,zcoor";
     display_opt->description = _("Display");
-
+    display_opt->descriptions = _("shape;Display geometry of features;"
+				  "cat;Display category numbers of features;"
+				  "topo;Display topology information (nodes, edges);"
+				  "dir;Display direction of linear features;"
+				  "attr;Display selected attribute based on 'attrcolumn';"
+				  "zcoor;Display z-coordinate of features (only for 3D vector maps)");
+    
     /* Query */
     type_opt = G_define_standard_option(G_OPT_V_TYPE);
     type_opt->answer = "point,line,boundary,centroid,area,face";