Learn R Programming

geocmeans (version 0.3.4)

calc_moran_raster: Global Moran I for raster

Description

Calculate the global Moran I for a numeric raster

Usage

calc_moran_raster(rast, window)

Value

A float: the global Moran I

Arguments

rast

A SpatRaster or a matrix

window

The window defining the neighbour weights

Examples

Run this code
Arcachon <- terra::rast(system.file("extdata/Littoral4_2154.tif", package = "geocmeans"))
names(Arcachon) <- c("blue", "green", "red", "infrared", "SWIR1", "SWIR2")
rast <- Arcachon[[1]]
w <- matrix(1, nrow = 3, ncol = 3)
calc_moran_raster(rast, w)

Run the code above in your browser using DataLab