Opened 6 years ago
Last modified 6 years ago
#3839 new defect
r.watershed usage inconsistency
Reported by: | martinl | Owned by: | |
---|---|---|---|
Priority: | normal | Milestone: | 7.6.2 |
Component: | Raster | Version: | svn-trunk |
Keywords: | r.watershed | Cc: | |
CPU: | Unspecified | Platform: | Unspecified |
Description
r.watershed source code says
/* Check for some output map */ if ((opt8->answer == NULL) && (opt9->answer == NULL) && (opt10->answer == NULL) && (opt11->answer == NULL) && (opt12->answer == NULL) && (opt14->answer == NULL) && (opt15->answer == NULL)) { G_fatal_error(_("Sorry, you must choose an output map.")); }
but there are more output raster maps defined, eg.
opt13 = G_define_standard_option(G_OPT_R_OUTPUT); opt13->key = "length_slope"; opt13->label = _("Name for output slope length raster map"); opt13->description = _("Slope length and steepness (LS) factor for USLE"); opt13->required = NO; opt13->guisection = _("Outputs");
Change History (4)
comment:1 by , 6 years ago
comment:2 by , 6 years ago
Should be fixed in r74452:
r.watershed elev=dem ... ERROR: At least one of the following options is required: <accumulation>, <tci>, <spi>, <drainage>, <basin>, <stream>, <half_basin>, <length_slope> and <slope_steepness>
Also threshold
check improved:
r.watershed elev=dem basin=x ... ERROR: Option <basin> requires <threshold>
follow-up: 4 comment:3 by , 6 years ago
If no objection I will backport r74452 to GRASS76 release branch.
comment:4 by , 6 years ago
Note:
See TracTickets
for help on using tickets.
In 74452: