소스 검색

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 년 전
부모
커밋
ff1e4f2230
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 2
      raster/r.stream.extract/main.c
  2. 2 2
      raster/r.stream.extract/r.stream.extract.html

+ 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");
     input.memory->description = _("Cache size for raster rows");
 
 
     output.stream_rast = G_define_standard_option(G_OPT_R_OUTPUT);
     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 =
     output.stream_rast->description =
 	_("Name for output raster map with unique stream ids");
 	_("Name for output raster map with unique stream ids");
     output.stream_rast->required = NO;
     output.stream_rast->required = NO;
     output.stream_rast->guisection = _("Output maps");
     output.stream_rast->guisection = _("Output maps");
 
 
     output.stream_vect = G_define_standard_option(G_OPT_V_OUTPUT);
     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 =
     output.stream_vect->description =
 	_("Name for output vector map with unique stream ids");
 	_("Name for output vector map with unique stream ids");
     output.stream_vect->required = NO;
     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.
 segment, at confluences and at stream network outlet locations.
 
 
 <p>
 <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.
 values encode a unique ID for each stream segment.
 
 
 <p>
 <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
 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
 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
 are unique IDs, identical to the cell value of the raster output. The