-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(WIP) Grass algorithms can be opened and inputs are treated
- Loading branch information
Médéric Ribreux
committed
Nov 4, 2017
1 parent
a676db2
commit be78153
Showing
15 changed files
with
218 additions
and
176 deletions.
There are no files selected for viewing
235 changes: 135 additions & 100 deletions
235
python/plugins/processing/algs/grass7/Grass7Algorithm.py
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
python/plugins/processing/algs/grass7/description/r.random.surface.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
r.random.surface | ||
Generates random surface(s) with spatial dependence. | ||
Raster (r.*) | ||
QgsProcessingParameterNumber|distance|Maximum distance of spatial correlation|0.0|QgsProcessingParameterNumber.Double|True|False|0.0|None | ||
QgsProcessingParameterNumber|exponent|Distance decay exponent|0.0|QgsProcessingParameterNumber.Double|True|False|1.0|None | ||
QgsProcessingParameterNumber|flat|Distance filter remains flat before beginning exponent|0.0|QgsProcessingParameterNumber.Double|True|False|0.0|None | ||
QgsProcessingParameterNumber|distance|Maximum distance of spatial correlation|QgsProcessingParameterNumber.Double|0.0|True|0.0|None | ||
QgsProcessingParameterNumber|exponent|Distance decay exponent|QgsProcessingParameterNumber.Double|1.0|True|0.0|None | ||
QgsProcessingParameterNumber|flat|Distance filter remains flat before beginning exponent|QgsProcessingParameterNumber.Double|0.0|True|0.0|None | ||
QgsProcessingParameterString|seed|Integer random seed (SEED_MIN >= value >= SEED_MAX), default [random]|None|False|True | ||
QgsProcessingParameterNumber|high|Maximum cell value of distribution|0|QgsProcessingParameterNumber.Double|True|False|255|None | ||
QgsProcessingParameterNumber|high|Maximum cell value of distribution|QgsProcessingParameterNumber.Integer|255|True|0|None | ||
QgsProcessingParameterBoolean|-u|Uniformly distributed cell values|False|True | ||
QgsProcessingParameterRasterDestination|output|Random_Surface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
python/plugins/processing/algs/grass7/description/r.sunhours.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
python/plugins/processing/algs/grass7/description/r.surf.fractal.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
r.surf.fractal | ||
Creates a fractal surface of a given fractal dimension. | ||
Raster (r.*) | ||
QgsProcessingParameterNumber|dimension|Fractal dimension of surface (2 < D < 3)|2.0|QgsProcessingParameterNumber.Double|True|False|2.05|3.0 | ||
QgsProcessingParameterNumber|number|Number of intermediate images to produce|0|QgsProcessingParameterNumber.Double|True|False|0|None | ||
QgsProcessingParameterNumber|dimension|Fractal dimension of surface (2 < D < 3)|QgsProcessingParameterNumber.Double|2.05|True|2.0|3.0 | ||
QgsProcessingParameterNumber|number|Number of intermediate images to produce|QgsProcessingParameterNumber.Integer|0|True|0|None | ||
QgsProcessingParameterRasterDestination|output|Fractal Surface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.