|
3 | 3 | #' @description Classify habitats
|
4 | 4 | #'
|
5 | 5 | #' @param raster RasterLayer with continuous environmental values.
|
6 |
| -#' @param classes Integer with number of classes. |
7 |
| -#' @param style Character with method of classification. See Details section for |
8 |
| -#' more information. |
| 6 | +#' @param return_breaks Logical if breaks should be returned as well. |
| 7 | +#' @param ... Arguments passed on to \code{classIntervals}. |
9 | 8 | #'
|
10 | 9 | #' @details
|
11 | 10 | #' Classifies a RasterLayer from the \code{raster} packages with continuous
|
12 |
| -#' values into n discrete classes. Consequently, classes are non-overlapping (and left-closed). |
13 |
| -#' For more information about the classification method, see \code{\link{classIntervals}} from |
14 |
| -#' the \code{classInt} package and/or the provided References. |
| 11 | +#' values into n discrete classes. The \code{cut} function used to classify the raster, |
| 12 | +#' uses \code{include.lowest = TRUE}. |
| 13 | +#' |
| 14 | +#' For more information about the classification methods, see \code{classIntervals} from |
| 15 | +#' the \code{classInt} package and/or the provided References. The help page of \code{classIntervals} |
| 16 | +#' also includes further possible arguments to find breaks (e.g., different styles, number |
| 17 | +#' of classes, fixed breaks, etc.). |
15 | 18 | #'
|
16 | 19 | #' @seealso
|
17 | 20 | #' \code{\link{classIntervals}}
|
18 | 21 | #'
|
19 | 22 | #' @return RasterLayer
|
20 | 23 | #'
|
21 | 24 | #' @examples
|
22 |
| -#' landscape_classified <- classify_habitats(landscape, classes = 5) |
| 25 | +#' landscape_classified <- classify_habitats(landscape, n = 5, style = "fisher") |
| 26 | +#' |
| 27 | +#' landscape_classified <- classify_habitats(landscape, style = "fixed", |
| 28 | +#' fixedBreaks = c(0, 0.25, 0.75, 1.0), return_breaks = TRUE) |
23 | 29 | #'
|
24 | 30 | #' @aliases classify_habitats
|
25 | 31 | #' @rdname classify_habitats
|
|
39 | 45 | #' reduction. Annals of the Association of American Geographers 61, 217–244.
|
40 | 46 | #' <https://doi.org/10.1111/j.1467-8306.1971.tb00779.x>
|
41 | 47 | #'
|
| 48 | +#' Jiang, B., 2013. Head/tail breaks: A new classification scheme for data with a |
| 49 | +#' heavy-tailed distribution. The Professional Geographer 65, 482-494. |
| 50 | +#' <https://doi.org/10.1080/00330124.2012.700499> |
| 51 | +#' |
42 | 52 | #' Slocum, T.A., McMaster, R.B., Kessler, F.C., Howard, H.H., 2009. Thematic cartography
|
43 | 53 | #' and geovisualization, 3rd ed. ed, Prentice Hall Series in Geographic Information Science.
|
44 | 54 | #' Pearson Prentice Hall, Upper Saddle River, USA. ISBN 978-0-13-229834-6
|
45 | 55 | #'
|
| 56 | +#' Wand, M. P., 1995. Data-based choice of histogram binwidth. The American |
| 57 | +#' Statistician 51, 59-64. <https://doi.org/10.1080/00031305.1997.10473591> |
| 58 | +#' |
46 | 59 | #' @export
|
47 |
| -classify_habitats <- function(raster, classes = 5, style = "fisher"){ |
| 60 | +classify_habitats <- function(raster, return_breaks = FALSE, ...){ |
48 | 61 |
|
49 | 62 | raster_values <- raster::values(raster) # get all values
|
50 | 63 |
|
51 |
| - breaks <- classInt::classIntervals(var = raster_values, |
52 |
| - n = classes, style = style) # get class intervals |
| 64 | + breaks <- classInt::classIntervals(var = raster_values, ...) # use classInt to find breaks |
53 | 65 |
|
54 | 66 | result <- raster::cut(raster, breaks = breaks$brks, include.lowest = TRUE) # classify raster
|
55 | 67 |
|
56 |
| - return(result) |
| 68 | + # return RasterLayer and breaks |
| 69 | + if (return_breaks) { |
| 70 | + |
| 71 | + return(list(raster = result, breaks = breaks)) |
| 72 | + |
| 73 | + # return only RasterLayer |
| 74 | + } else { |
| 75 | + |
| 76 | + return(result) |
| 77 | + |
| 78 | + } |
57 | 79 | }
|
0 commit comments