Browse Source

more descriptive parameter descriptions

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@58064 15284696-431f-4ddb-bdfa-cd5b030d7da7
Huidae Cho 11 years ago
parent
commit
00128feff7
1 changed files with 2 additions and 0 deletions
  1. 2 0
      raster/r.water.outlet/main.c

+ 2 - 0
raster/r.water.outlet/main.c

@@ -69,8 +69,10 @@ int main(int argc, char *argv[])
     G_add_keyword(_("watershed"));
 	
     opt.input = G_define_standard_option(G_OPT_R_INPUT);
+    opt.input->description = _("Name of input drainage direction map");
 
     opt.output = G_define_standard_option(G_OPT_R_OUTPUT);
+    opt.output->description = _("Name for output watershed basin map");
     
     opt.coords = G_define_standard_option(G_OPT_M_COORDS);
     opt.coords->description = _("Coordinates of outlet point");