项目作者: laurajanegraham

项目描述 :
栅格数据的数据聚合方法
高级语言: R
项目地址: git://github.com/laurajanegraham/grainchanger.git
创建时间: 2017-09-11T15:29:57Z
项目社区:https://github.com/laurajanegraham/grainchanger

开源协议:Other

下载


" class="reference-link">grainchanger

R-CMD-check
Codecov test
coverage
CRAN
status
CranLogs
Project Status:
Active

The grainchanger package provides functionality for data aggregation
to a coarser resolution via moving-window or direct methods.

As landscape ecologists and macroecologists, we often need to aggregate
data in order to harmonise datasets. In doing so, we often lose a lot of
information about the spatial structure and environmental heterogeneity
of data measured at finer resolution. An example of this is when the
response data (e.g. species’ atlas data) are available at a coarser
resolution to the predictor data (e.g. land-use data). We developed this
method and R package in order to overcome some of these issues.

For more information on the background to and motivation for the
development of this method, see Graham et al. 2019 in Methods in
Ecology and Evolution
.

Package overview

The primary functions of the grainchanger package are those which
facilitate moving-window (winmove_agg) and direct (nomove_agg) data
aggregation. These functions aggregate fine-grain data (fine_dat) to a
coarse-grain (coarse_dat) using a function specified by the user
(agg_fun). The moving-window method takes in an additional function
(win_fun) which smooths the fine-grain data prior to aggregation.

The moving-window smoothing function is also available in the package
(winmove), as well as several built-in functions, and an additional
utility function for use with simulated landscapes (create_torus).

The winmove function acts as a convenient wrapper to
raster::focalWeight and raster::focal which takes advantage of
optimised functions built into the grainchanger package.

Installation

  1. # Install release version from CRAN
  2. install.packages("grainchanger")
  3. # Install development version from GitHub
  4. devtools::install_github("ropensci/grainchanger")

Examples

Moving-window data aggregation

The below example shows the moving-window data aggregation in action. It
aggregates a categorical raster (fine_dat) to a grid using Shannon
evenness (specified by win_fun) as the function calculated within a
square moving window of 5 units. The value returned is the mean
(specified by agg_fun) of the smoothed value for each cell of
coarse_dat. This value is included as a column on the grid sf
object.

  1. library(grainchanger)
  2. library(ggplot2)
  3. library(landscapetools)
  4. # categorical landscape
  5. show_landscape(cat_ls, discrete = TRUE)
  6. # moving-window aggregation using Shannon evenness
  7. g_sf$mwda <- winmove_agg(coarse_dat = g_sf,
  8. fine_dat = cat_ls,
  9. d = 5,
  10. type = "rectangle",
  11. win_fun = shei,
  12. agg_fun = mean,
  13. lc_class = 1:4,
  14. quiet = TRUE)
  15. ggplot(g_sf) +
  16. geom_sf(aes(fill = mwda)) +
  17. scale_fill_viridis_c() +
  18. theme_bw()

Direct data aggregation

The below example shows the direct data aggregation in action. It
aggregates a continuous raster to a raster with a coarser resolution
using the range as the function calculated for each cell of the larger
grid. The resulting output is a raster of the coarser resolution.
var_range is an inbuilt function in the grainchanger package.

  1. library(raster)
  2. # continuous landscape
  3. show_landscape(cont_ls)
  4. # load the coarse resolution raster
  5. g_raster <- raster(system.file("raster/g_raster.tif", package = "grainchanger"))
  6. # direct aggregation using range
  7. dda <- nomove_agg(coarse_dat = g_raster,
  8. fine_dat = cont_ls,
  9. agg_fun = var_range)
  10. show_landscape(dda)

Functions

There are a number of inbuilt functions in the grainchanger package,
with their usage outlined below. While it is possible to use
user-defined functions within both winmove_agg and nomove_agg, we
welcome suggestions for additional functions. Please add as an
issue
- doing it this
way means we can maximise the speed of the function.

Function.Name Description Additional.arguments
prop Calculate the proportion of a given class lc_class (numeric)
shdi Calculate the Shannon diversity lc_class (numeric)
shei Calculate the Shannon evenness lc_class (numeric)
range Calculate the range of values

Additional utilities

Create torus

The create_torus function takes as input a raster and pads it by a
specified radius, creating the effect of a torus. We developed this
function in order to avoid edge effects when testing methods on
simulated rasters (such as those from
NLMR).

  1. torus <- create_torus(cat_ls, 5)
  2. show_landscape(torus, discrete = TRUE)

Contributing

We welcome contributions to this package. To contribute, submit a pull
request
making
sure develop is the destination branch on the grainchanger
repository
.

Meta

  • Please report any issues or
    bugs
    .
  • License: GPL3
  • Get citation information for grainchanger in R doing
    citation(package = 'grainchanger')
  • Please note that the grainchanger project is released with a
    Contributor Code of
    Conduct
    .
    By contributing to this project, you agree to abide by its terms.

ropensci\_footer