فهرست منبع

r.param.scale: tol -> tolerance (https://trac.osgeo.org/grass/ticket/2409)
(merge https://trac.osgeo.org/grass/changeset/63713 from trunk)


git-svn-id: https://svn.osgeo.org/grass/grass/branches/releasebranch_7_0@63714 15284696-431f-4ddb-bdfa-cd5b030d7da7

Martin Landa 10 سال پیش
والد
کامیت
8e862791cb
2فایلهای تغییر یافته به همراه4 افزوده شده و 4 حذف شده
  1. 2 2
      lib/gis/renamed_options
  2. 2 2
      raster/r.param.scale/interface.c

+ 2 - 2
lib/gis/renamed_options

@@ -346,8 +346,8 @@ r.out.mpeg|qual:quality
 r.out.vrml|elev:elevation
 r.out.vrml|exag:exaggeration
 # r.param.scale
-r.param.scale|s_tol:slope_tol
-r.param.scale|c_tol:curvature_tol
+r.param.scale|s_tol:slope_tolerance
+r.param.scale|c_tol:curvature_tolerance
 r.param.scale|exp:exponent
 # r.profile
 r.profile|null:null_value

+ 2 - 2
raster/r.param.scale/interface.c

@@ -74,14 +74,14 @@ void interface(int argc, char **argv)
     rast_out->description =
 	_("Name for output raster map containing morphometric parameter");
 
-    tol1_val->key = "slope_tol";
+    tol1_val->key = "slope_tolerance";
     tol1_val->description =
 	_("Slope tolerance that defines a 'flat' surface (degrees)");
     tol1_val->type = TYPE_DOUBLE;
     tol1_val->required = NO;
     tol1_val->answer = "1.0";
 
-    tol2_val->key = "curvature_tol";
+    tol2_val->key = "curvature_tolerance";
     tol2_val->description =
 	_("Curvature tolerance that defines 'planar' surface");
     tol2_val->type = TYPE_DOUBLE;