is.na.RasterArray: Positions of missing values in a "RasterArray"-class object

View source: R/RasterArray-base.R

is.na.RasterArrayR Documentation

Positions of missing values in a 'RasterArray'-class object

Description

The function behaves similar to the regular is.na() function applied to the proxy object of a 'RasterArray'.

Usage

## S3 method for class 'RasterArray'
is.na(x)

Arguments

x

A RasterArray class object.

Value

A logical vector, matrix or array matching the structure of the RasterArray.

Examples

ex <- rastex() 
ex[2] <- NA
is.na(ex)


via documentation built on May 31, 2023, 8:31 p.m.

Related to is.na.RasterArray in via...