Przeglądaj źródła

r.sim.sediment: rename parameters

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@63945 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová 10 lat temu
rodzic
commit
fd6ead6de8

+ 3 - 2
lib/gis/renamed_options

@@ -260,11 +260,12 @@ r.sim.sediment|detin:detachment_coeff
 r.sim.sediment|tranin:transport_coeff
 r.sim.sediment|tauin:shear_stress
 r.sim.sediment|manin:man
+r.sim.sediment|flux:sediment_flux
 r.sim.sediment|maninval:man_value
 r.sim.sediment|outwalk:walkers_output
-r.sim.sediment|tc:sedflow_capacity
+r.sim.sediment|tc:transport_capacity
 r.sim.sediment|et:tlimit_erosion_deposition
-r.sim.sediment|conc:concentration
+r.sim.sediment|conc:sediment_concentration
 r.sim.sediment|erdep:erosion_deposition
 r.sim.sediment|nwalk:nwalkers
 r.sim.sediment|niter:niterations

+ 3 - 3
raster/r.sim/r.sim.sediment/main.c

@@ -167,7 +167,7 @@ int main(int argc, char *argv[])
     parm.observation->guisection = _("Input");
 
     parm.tc = G_define_standard_option(G_OPT_R_OUTPUT);
-    parm.tc->key = "sedflow_capacity";
+    parm.tc->key = "transport_capacity";
     parm.tc->required = NO;
     parm.tc->description = _("Name for output transport capacity raster map [kg/ms]");
     parm.tc->guisection = _("Output");
@@ -180,14 +180,14 @@ int main(int argc, char *argv[])
     parm.et->guisection = _("Output");
 
     parm.conc = G_define_standard_option(G_OPT_R_OUTPUT);
-    parm.conc->key = "concentration";
+    parm.conc->key = "sediment_concentration";
     parm.conc->required = NO;
     parm.conc->description =
 	_("Name for output sediment concentration raster map [particle/m3]");
     parm.conc->guisection = _("Output");
 
     parm.flux = G_define_standard_option(G_OPT_R_OUTPUT);
-    parm.flux->key = "flux";
+    parm.flux->key = "sediment_flux";
     parm.flux->required = NO;
     parm.flux->description = _("Name for output sediment flux raster map [kg/ms]");
     parm.flux->guisection = _("Output");

+ 2 - 2
raster/r.sim/r.sim.sediment/r.sim.sediment.html

@@ -24,11 +24,11 @@ module. Other parameters must be determined using field measurements or
 reference literature (see suggested values in Notes and References). <br>
 
 <p>
-Output includes transport capacity raster map <i>sedflow_capacity</i>  in [kg/ms],
+Output includes transport capacity raster map <i>transport_capacity</i>  in [kg/ms],
 transport capacity limited erosion/deposition raster map
 <i>tlimit_erosion_deposition</i> [kg/m<sup>2</sup>s]i that are output almost immediately and
 can be viewed while the simulation continues. Sediment flow rate raster map 
-<i>flux</i> [kg/ms], and net erosion/deposition raster map [kg/m<sup>2</sup>s]
+<i>sediment_flux</i> [kg/ms], and net erosion/deposition raster map [kg/m<sup>2</sup>s]
 can take longer time depending on time step and simulation time. 
 Simulation time is controled by <i>niterations</i> [minutes] parameter. 
 <!-- Output files can be saved during simulation using <i>outiter</i> parameter