Skip to content

Commit a7ec96c

Browse files
author
Médéric RIBREUX
committedMar 12, 2016
Add v.kernel algorithm
1 parent 62b4d7c commit a7ec96c

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
v.kernel
2+
v.kernel.rast - Generates a raster density map from vector points map.
3+
Vector (v.*)
4+
ParameterVector|input|Name of input vector map with training points|0|False
5+
ParameterNumber|radius|Kernel radius in map units|0.0|None|10.0|False
6+
ParameterNumber|dsize|Discretization error in map units|0.0|None|0.0|True
7+
ParameterNumber|segmax|Maximum length of segment on network|0.0|None|100.0|True
8+
ParameterNumber|distmax|Maximum distance from point to network|0.0|None|100.0|True
9+
ParameterNumber|multiplier|Multiply the density result by this number|0.0|None|1.0|True
10+
ParameterSelection|node|Node method|none;split|0
11+
ParameterSelection|kernel|Kernel function|cosine;gaussian;epanechnikov;quartic;triangular;triweight;uniform|1
12+
*ParameterBoolean|-o|Try to calculate an optimal radius with given 'radius' taken as maximum (experimental)|False
13+
OutputRaster|output|Kernel
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
v.kernel
2+
v.kernel.vector - Generates a vector density map from vector points on a vector network.
3+
Vector (v.*)
4+
ParameterVector|input|Name of input vector map with training points|0|False
5+
ParameterVector|net|Name of input network vector map|1|False
6+
ParameterNumber|radius|Kernel radius in map units|0.0|None|10.0|False
7+
ParameterNumber|dsize|Discretization error in map units|0.0|None|0.0|True
8+
ParameterNumber|segmax|Maximum length of segment on network|0.0|None|100.0|True
9+
ParameterNumber|distmax|Maximum distance from point to network|0.0|None|100.0|True
10+
ParameterNumber|multiplier|Multiply the density result by this number|0.0|None|1.0|True
11+
ParameterSelection|node|Node method|none;split|0
12+
ParameterSelection|kernel|Kernel function|cosine;gaussian;epanechnikov;quartic;triangular;triweight;uniform|1
13+
*ParameterBoolean|-o|Try to calculate an optimal radius with given 'radius' taken as maximum (experimental)|False
14+
*ParameterBoolean|-n|Normalize values by sum of density multiplied by length of each segment.|False
15+
*ParameterBoolean|-m|Multiply the result by number of input points|False
16+
OutputVector|output|Kernel

0 commit comments

Comments
 (0)
Please sign in to comment.