Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
46 additions
and 57 deletions.
- +1 −1 python/plugins/processing/algs/grass7/description/i.topo.corr.ill.txt
- +1 −1 python/plugins/processing/algs/grass7/description/r.buffer.lowmem.txt
- +1 −1 python/plugins/processing/algs/grass7/description/r.buffer.txt
- +1 −1 python/plugins/processing/algs/grass7/description/r.covar.txt
- +1 −1 python/plugins/processing/algs/grass7/description/r.cross.txt
- +1 −1 python/plugins/processing/algs/grass7/description/r.mask.vect.txt
- +4 −4 python/plugins/processing/algs/grass7/description/r.quant.txt
- +4 −4 python/plugins/processing/algs/grass7/description/r.report.txt
- +1 −1 python/plugins/processing/algs/grass7/description/r.resamp.bspline.txt
- +2 −2 python/plugins/processing/algs/grass7/description/r.series.accumulate.txt
- +1 −1 python/plugins/processing/algs/grass7/description/r.series.interp.txt
- +2 −2 python/plugins/processing/algs/grass7/description/r.series.txt
- +1 −1 python/plugins/processing/algs/grass7/description/r.shade.txt
- +1 −1 python/plugins/processing/algs/grass7/description/r.stats.txt
- +1 −1 python/plugins/processing/algs/grass7/description/r.sunhours.txt
- +1 −1 python/plugins/processing/algs/grass7/description/r.walk.coords.txt
- +1 −1 python/plugins/processing/algs/grass7/description/r.walk.points.txt
- +1 −1 python/plugins/processing/algs/grass7/description/r.walk.rast.txt
- +0 −23 python/plugins/processing/algs/grass7/description/todo.lst
- +2 −2 python/plugins/processing/algs/grass7/description/v.clean.advanced.txt
- +2 −2 python/plugins/processing/algs/grass7/description/v.distance.txt
- +1 −1 python/plugins/processing/algs/grass7/description/v.net.components.txt
- +2 −2 python/plugins/processing/algs/grass7/description/v.out.ascii.txt
- +1 −1 python/plugins/processing/algs/grass7/description/v.patch.txt
- +12 −0 python/plugins/processing/core/parameters.py
@@ -1,6 +1,6 @@ | ||
r.covar | ||
Outputs a covariance/correlation matrix for user-specified raster layer(s). | ||
Raster (r.*) | ||
QgsProcessingParameterMultipleLayers|map|Input layers|3.0|None|False | ||
QgsProcessingParameterMultipleLayers|map|Input layers|3|None|False | ||
QgsProcessingParameterBoolean|-r|Print correlation matrix|True | ||
OutputHTML|html|Covariance report |
@@ -1,6 +1,6 @@ | ||
r.cross | ||
Creates a cross product of the category values from multiple raster map layers. | ||
Raster (r.*) | ||
QgsProcessingParameterMultipleLayers|input|Input raster layers|3.0|None|False | ||
QgsProcessingParameterMultipleLayers|input|Input raster layers|3|None|False | ||
QgsProcessingParameterBoolean|-z|Non-zero data only|False | ||
QgsProcessingParameterRasterDestination|output|Cross product |
@@ -1,9 +1,9 @@ | ||
r.quant | ||
Produces the quantization file for a floating-point map. | ||
Raster (r.*) | ||
QgsProcessingParameterMultipleLayers|input|Raster layer(s) to be quantized|1.0|None|False | ||
QgsProcessingParameterMultipleLayers|input|Raster layer(s) to be quantized|1|None|False | ||
QgsProcessingParameterRasterLayer|basemap|Base layer to take quant rules from|None|False | ||
QgsProcessingParameterRange|fprange|Floating point range: dmin,dmax|0,1 | ||
QgsProcessingParameterRange|range|Integer range: min,max|1,255 | ||
QgsProcessingParameterRange|fprange|Floating point range: dmin,dmax|QgsProcessingParameterNumber.Double|None|True | ||
QgsProcessingParameterRange|range|Integer range: min,max|QgsProcessingParameterNumber.Integer|None|True | ||
QgsProcessingParameterBoolean|-t|Truncate floating point data|False | ||
QgsProcessingParameterBoolean|-r|Round floating point data|False | ||
QgsProcessingParameterBoolean|-r|Round floating point data|False |
@@ -1,8 +1,8 @@ | ||
r.series | ||
Makes each output cell value a function of the values assigned to the corresponding cells in the input raster layers. | ||
Raster (r.*) | ||
QgsProcessingParameterMultipleLayers|input|Input raster layer(s)|3.0|None|False | ||
QgsProcessingParameterMultipleLayers|input|Input raster layer(s)|3|None|False | ||
QgsProcessingParameterBoolean|-n|Propagate NULLs|False | ||
QgsProcessingParameterEnum|method|Aggregate operation|average;count;median;mode;minimum;min_raster;maximum;max_raster;stddev;range;sum;variance;diversity;slope;offset;detcoeff;quart1;quart3;perc90;skewness;kurtosis | ||
*QgsProcessingParameterString|range|Ignore values outside this range (lo,hi)|-10000000000,10000000000 | ||
*QgsProcessingParameterRange|range|Ignore values outside this range (lo,hi)|QgsProcessingParameterNumber.Double|None|True | ||
QgsProcessingParameterRasterDestination|output|Aggregated |
@@ -1,7 +1,7 @@ | ||
v.patch | ||
Create a new vector map layer by combining other vector map layers. | ||
Vector (v.*) | ||
QgsProcessingParameterMultipleLayers|input|Input layers|-1.0|None|False | ||
QgsProcessingParameterMultipleLayers|input|Input layers|-1|None|False | ||
QgsProcessingParameterBoolean|-e|Copy also attribute table|True | ||
QgsProcessingParameterVectorDestination|output|Combined | ||
QgsProcessingParameterVectorDestination|bbox|Bounding boxes |