Changes between Version 8 and Version 9 of HowToTestGrass6
- Timestamp:
- 04/20/08 05:08:23 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToTestGrass6
v8 v9 125 125 == Simple raster analysis == 126 126 127 * TDB 127 Raster analysis comprises a lot of functionality. 128 128 129 129 === Raster algebra === … … 153 153 === Raster statistics === 154 154 155 * r.univar 155 Univariate statistics: 156 157 {{{ 158 r.univar ndvi 159 }}} 160 161 ''Expected results: minimum: -0.956522, maximum: 0.978723, mean: 0.190006 etc.'' 156 162 157 163 == Simple vector analysis == … … 178 184 === Vector statistics === 179 185 180 * v.univar 186 Univariate statistics: 187 188 {{{ 189 # show available columns 190 v.info -c precip_30ynormals_3d 191 v.univar precip_30ynormals_3d col=annual type=point 192 }}} 193 194 ''Expected result: mean: 1289.31 etc.'' 181 195 182 196 === Transfer raster slope to vector segments ===