You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: DESCRIPTION
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
Package: whitebox
2
2
Type: Package
3
3
Title: 'WhiteboxTools' R Frontend
4
-
Version: 2.3.4
4
+
Version: 2.4.0
5
5
Description: An R frontend for the 'WhiteboxTools' library, which is an advanced geospatial data analysis platform developed by Prof. John Lindsay at the University of Guelph's Geomorphometry and Hydrogeomatics Research Group. 'WhiteboxTools' can be used to perform common geographical information systems (GIS) analysis operations, such as cost-distance analysis, distance buffering, and raster reclassification. Remote sensing and image processing tasks include image enhancement (e.g. panchromatic sharpening, contrast adjustments), image mosaicing, numerous filtering operations, simple classification (k-means), and common image transformations. 'WhiteboxTools' also contains advanced tooling for spatial hydrological analysis (e.g. flow-accumulation, watershed delineation, stream network analysis, sink removal), terrain analysis (e.g. common terrain indices such as slope, curvatures, wetness index, hillshading; hypsometric analysis; multi-scale topographic position analysis), and LiDAR data processing. Suggested citation: Lindsay (2016) <doi:10.1016/j.cageo.2016.07.003>.
6
6
Authors@R: c(person("Qiusheng", "Wu", email = "[email protected]", role = c("aut")),
7
7
person("Andrew", "Brown", email = "[email protected]", role = c("ctb", "cre")))
Copy file name to clipboardexpand all lines: NEWS.md
+6
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,9 @@
1
+
# whitebox 2.4.0
2
+
3
+
* Updates for WhiteboxTools v2.4.0 (https://github.com/jblindsay/whitebox-tools/releases/tag/v2.4.0)
4
+
5
+
* Fix for new ZIP file folder structure for WhiteboxTools v2.4.0+ in `wbt_install()` / `install_whitebox()`
6
+
1
7
# whitebox 2.3.4
2
8
3
9
* Exported `wbt_file_path()`, a function previously used internally for creating safe, expanded, quoted, paths for building WhiteboxTools commands. This function also supports the input of `terra` objects that are backed by file sources supported by WhiteboxTools.
#' @param iterations Maximum iterations (if stopping criteria not reached).
648
648
#' @param seed Seed for RNG consistency.
649
649
#' @param prob Probability of random resample or resampling worst strata between `[0,1]`.
650
-
#' @param threshold Objective function values below the theshold stop the resampling iterations.
650
+
#' @param threshold Objective function values below the threshold stop the resampling iterations.
651
651
#' @param temp Initial annealing temperature between `[0,1]`.
652
652
#' @param temp_decay Annealing temperature decay proportion between `[0,1]`. Reduce temperature by this proportion each annealing cycle.
653
653
#' @param cycle Number of iterations before decaying annealing temperature.
654
-
#' @param average Weight the continuous objective funtion by the 1/N contributing strata.
654
+
#' @param average Weight the continuous objective function by the 1/N contributing strata.
655
655
#' @param wd Changes the working directory. Default: `NULL` will use the value in WhiteboxTools settings, see `wbt_wd()` for details.
656
656
#' @param verbose_mode Sets verbose mode. If verbose mode is `FALSE`, tools will not print output messages. Default: `NULL` will use the value in WhiteboxTools settings, see `wbt_verbose()` for details.
657
657
#' @param compress_rasters Sets the flag used by 'WhiteboxTools' to determine whether to use compression for output rasters. Default: `NULL` will use the value in WhiteboxTools settings, see `wbt_compress_rasters()` for details.
#' @param dem Name of the input raster image file.
156
156
#' @param output Name of the output vector lines file.
157
-
#' @param threshold Threshold value (0 - infinity but typcially 1 to 5 works well).
157
+
#' @param threshold Threshold value (0 - infinity but typically 1 to 5 works well).
158
158
#' @param min_length Minimum line length, in grid cells.
159
159
#' @param wd Changes the working directory. Default: `NULL` will use the value in WhiteboxTools settings, see `wbt_wd()` for details.
160
160
#' @param verbose_mode Sets verbose mode. If verbose mode is `FALSE`, tools will not print output messages. Default: `NULL` will use the value in WhiteboxTools settings, see `wbt_verbose()` for details.
#' @param iterations Maximum iterations (if stopping criteria not reached).
648
648
#' @param seed Seed for RNG consistency.
649
649
#' @param prob Probability of random resample or resampling worst strata between `[0,1]`.
650
-
#' @param threshold Objective function values below the theshold stop the resampling iterations.
650
+
#' @param threshold Objective function values below the threshold stop the resampling iterations.
651
651
#' @param temp Initial annealing temperature between `[0,1]`.
652
652
#' @param temp_decay Annealing temperature decay proportion between `[0,1]`. Reduce temperature by this proportion each annealing cycle.
653
653
#' @param cycle Number of iterations before decaying annealing temperature.
654
-
#' @param average Weight the continuous objective funtion by the 1/N contributing strata.
654
+
#' @param average Weight the continuous objective function by the 1/N contributing strata.
655
655
#' @param wd Changes the working directory. Default: `NULL` will use the value in WhiteboxTools settings, see `wbt_wd()` for details.
656
656
#' @param verbose_mode Sets verbose mode. If verbose mode is `FALSE`, tools will not print output messages. Default: `NULL` will use the value in WhiteboxTools settings, see `wbt_verbose()` for details.
657
657
#' @param compress_rasters Sets the flag used by 'WhiteboxTools' to determine whether to use compression for output rasters. Default: `NULL` will use the value in WhiteboxTools settings, see `wbt_compress_rasters()` for details.
#' @description This tool performs common stream network analysis operations on an input vector stream file.
933
933
#'
934
934
#' @param streams Name of the input streams vector file.
935
-
#' @param dem Name of the input DEM raster file.
936
935
#' @param output Name of the output lines shapefile.
937
-
#' @param cutting_height Maximum ridge-cutting height (z units).
938
936
#' @param snap Snap distance, in xy units (metres).
939
937
#' @param wd Changes the working directory. Default: `NULL` will use the value in WhiteboxTools settings, see `wbt_wd()` for details.
940
938
#' @param verbose_mode Sets verbose mode. If verbose mode is `FALSE`, tools will not print output messages. Default: `NULL` will use the value in WhiteboxTools settings, see `wbt_verbose()` for details.
#' @param dem Name of the input raster image file.
156
156
#' @param output Name of the output vector lines file.
157
-
#' @param threshold Threshold value (0 - infinity but typcially 1 to 5 works well).
157
+
#' @param threshold Threshold value (0 - infinity but typically 1 to 5 works well).
158
158
#' @param min_length Minimum line length, in grid cells.
159
159
#' @param wd Changes the working directory. Default: `NULL` will use the value in WhiteboxTools settings, see `wbt_wd()` for details.
160
160
#' @param verbose_mode Sets verbose mode. If verbose mode is `FALSE`, tools will not print output messages. Default: `NULL` will use the value in WhiteboxTools settings, see `wbt_verbose()` for details.
@@ -231,12 +231,12 @@ If you would like to contribute to the project as a developer, follow these inst
231
231
4. Push to the branch (git push origin my-new-feature)
232
232
5. Create a new Pull Request
233
233
234
-
Unless explicitly stated otherwise, any contribution intentionally submitted for inclusion in the work shall be licensed as the [MIT license](https://opensource.org/license/MIT/) without any additional terms or conditions.
234
+
Unless explicitly stated otherwise, any contribution intentionally submitted for inclusion in the work shall be licensed as the [MIT license](https://opensource.org/license/MIT) without any additional terms or conditions.
235
235
236
236
237
237
## License
238
238
239
-
The whitebox **R** package is distributed under the [MIT license](https://opensource.org/license/MIT/), a permissive open-source (free software) license.
239
+
The whitebox **R** package is distributed under the [MIT license](https://opensource.org/license/MIT), a permissive open-source (free software) license.
0 commit comments