-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Médéric RIBREUX
committed
Mar 12, 2016
1 parent
62b4d7c
commit a7ec96c
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
python/plugins/processing/algs/grass7/description/v.kernel.rast.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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
v.kernel | ||
v.kernel.rast - Generates a raster density map from vector points map. | ||
Vector (v.*) | ||
ParameterVector|input|Name of input vector map with training points|0|False | ||
ParameterNumber|radius|Kernel radius in map units|0.0|None|10.0|False | ||
ParameterNumber|dsize|Discretization error in map units|0.0|None|0.0|True | ||
ParameterNumber|segmax|Maximum length of segment on network|0.0|None|100.0|True | ||
ParameterNumber|distmax|Maximum distance from point to network|0.0|None|100.0|True | ||
ParameterNumber|multiplier|Multiply the density result by this number|0.0|None|1.0|True | ||
ParameterSelection|node|Node method|none;split|0 | ||
ParameterSelection|kernel|Kernel function|cosine;gaussian;epanechnikov;quartic;triangular;triweight;uniform|1 | ||
*ParameterBoolean|-o|Try to calculate an optimal radius with given 'radius' taken as maximum (experimental)|False | ||
OutputRaster|output|Kernel |
16 changes: 16 additions & 0 deletions
16
python/plugins/processing/algs/grass7/description/v.kernel.vect.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
v.kernel | ||
v.kernel.vector - Generates a vector density map from vector points on a vector network. | ||
Vector (v.*) | ||
ParameterVector|input|Name of input vector map with training points|0|False | ||
ParameterVector|net|Name of input network vector map|1|False | ||
ParameterNumber|radius|Kernel radius in map units|0.0|None|10.0|False | ||
ParameterNumber|dsize|Discretization error in map units|0.0|None|0.0|True | ||
ParameterNumber|segmax|Maximum length of segment on network|0.0|None|100.0|True | ||
ParameterNumber|distmax|Maximum distance from point to network|0.0|None|100.0|True | ||
ParameterNumber|multiplier|Multiply the density result by this number|0.0|None|1.0|True | ||
ParameterSelection|node|Node method|none;split|0 | ||
ParameterSelection|kernel|Kernel function|cosine;gaussian;epanechnikov;quartic;triangular;triweight;uniform|1 | ||
*ParameterBoolean|-o|Try to calculate an optimal radius with given 'radius' taken as maximum (experimental)|False | ||
*ParameterBoolean|-n|Normalize values by sum of density multiplied by length of each segment.|False | ||
*ParameterBoolean|-m|Multiply the result by number of input points|False | ||
OutputVector|output|Kernel |