~ubuntu-branches/ubuntu/vivid/grass/vivid-proposed

« back to all changes in this revision

Viewing changes to raster/r.univar2/r3.univar.html

  • Committer: Package Import Robot
  • Author(s): Bas Couwenberg
  • Date: 2015-02-20 23:12:08 UTC
  • mfrom: (8.2.6 experimental)
  • Revision ID: package-import@ubuntu.com-20150220231208-1u6qvqm84v430b10
Tags: 7.0.0-1~exp1
* New upstream release.
* Update python-ctypes-ternary.patch to use if/else instead of and/or.
* Drop check4dev patch, rely on upstream check.
* Add build dependency on libpq-dev to grass-dev for libpq-fe.h.
* Drop patches applied upstream, refresh remaining patches.
* Update symlinks for images switched from jpg to png.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<h2>DESCRIPTION</h2>
2
 
 
3
 
<em>r3.univar</em> calculates the univariate statistics for raster3d maps.
4
 
This includes the number of cells counted, minimum and maximum cell values,
5
 
range, arithmetic mean, population variance, standard deviation, and 
6
 
coefficient of variation. Statistics are calculated separately for every
7
 
category/zone found in the <b>zones</b> input map if given.
8
 
If the <b>-e</b> extended statistics flag is given the 1st quartile, median,
9
 
3rd quartile, and given <b>percentile</b> are calculated.
10
 
If the <b>-g</b> flag is given the results are presented in a format suitable
11
 
for use in a shell script.
12
 
If the <b>-t</b> flag is given the results are presented in tabular format
13
 
with the given field separator. The table can immediately be converted to a
14
 
vector attribute table which can then be linked to a vector, e.g. the vector
15
 
that was rasterized to create the <b>zones</b> input raster.
16
 
 
17
 
<h2>NOTES</h2>
18
 
 
19
 
As with most GRASS raster3d modules, <em>r3.univar</em> operates on the voxel
20
 
array defined by the current 3d region settings, not the original extent and
21
 
resolution of the input map. See <em><a href="g.region.html">g.region</a></em>.
22
 
<p>
23
 
This module can use large amounts of system memory when the <b>-e</b>
24
 
extended statistics flag is used with a very large region setting. If the
25
 
region is too large the module should exit gracefully with a memory allocation
26
 
error. Basic statistics can be calculated using any size input region.
27
 
 
28
 
<!-- no rast3D support?
29
 
<p>
30
 
The <em>r.quantile</em> module will be significantly more efficient for
31
 
calculating percentiles with large maps.
32
 
-->
33
 
 
34
 
 
35
 
<h2>TODO</h2>
36
 
 
37
 
<i>mode, skewness, kurtosis</i>
38
 
 
39
 
 
40
 
 
41
 
<h2>SEE ALSO</h2>
42
 
 
43
 
<em>
44
 
<a href="g.region.html">g.region</a>,
45
 
<a href="r.univar.html">r.univar</a>,
46
 
<a href="r.average.html">r.average</a>,
47
 
<a href="r.median.html">r.median</a>,
48
 
<a href="r.mode.html">r.mode</a>,
49
 
<a href="r.quantile.html">r.quantile</a>,
50
 
<a href="r.sum.html">r.sum</a>,
51
 
<a href="r.series.html">r.series</a>,
52
 
<a href="r3.stats.html">r3.stats</a>,
53
 
<a href="v.rast.stats.html">v.rast.stats</a>,
54
 
<a href="r.statistics.html">r.statistics</a>,
55
 
<a href="v.univar.html">v.univar</a>
56
 
</em>
57
 
 
58
 
 
59
 
<h2>AUTHORS</h2>
60
 
 
61
 
Soeren Gebbert<br>
62
 
Code is based on r.univar from<br>
63
 
Hamish Bowman, Otago University, New Zealand<br>
64
 
and Martin Landa<br>
65
 
Zonal loop by Markus Metz
66
 
 
67
 
 
68
 
<p>
69
 
<i>Last changed: $Date: 2012-08-14 11:11:23 +0200 (Tue, 14 Aug 2012) $</i>