Forráskód Böngészése

r.stream.extract: stream_rast -> stream_raster & stream_vect -> stream_vector (https://trac.osgeo.org/grass/ticket/2409)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@63706 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 10 éve
szülő
commit
ff1e4f2230

+ 2 - 2
raster/r.stream.extract/main.c

@@ -142,14 +142,14 @@ int main(int argc, char *argv[])
     input.memory->description = _("Cache size for raster rows");
 
     output.stream_rast = G_define_standard_option(G_OPT_R_OUTPUT);
-    output.stream_rast->key = "stream_rast";
+    output.stream_rast->key = "stream_raster";
     output.stream_rast->description =
 	_("Name for output raster map with unique stream ids");
     output.stream_rast->required = NO;
     output.stream_rast->guisection = _("Output maps");
 
     output.stream_vect = G_define_standard_option(G_OPT_V_OUTPUT);
-    output.stream_vect->key = "stream_vect";
+    output.stream_vect->key = "stream_vector";
     output.stream_vect->description =
 	_("Name for output vector map with unique stream ids");
     output.stream_vect->required = NO;

+ 2 - 2
raster/r.stream.extract/r.stream.extract.html

@@ -134,11 +134,11 @@ output also contains points at the location of the start of a stream
 segment, at confluences and at stream network outlet locations.
 
 <p>
-Output <b>stream_rast</b> raster map stores extracted streams. Cell
+Output <b>stream_raster</b> raster map stores extracted streams. Cell
 values encode a unique ID for each stream segment.
 
 <p>
-Output <b>stream_vect</b> vector map stores extracted stream segments
+Output <b>stream_vector</b> vector map stores extracted stream segments
 and points. Points are written at the start location of each stream
 segment and at the outlet of a stream network. In layer 1, categories
 are unique IDs, identical to the cell value of the raster output. The