Skip to contents

The function takes two coordinate reference system descriptions and compares them for equality.

Usage

same.crs(x, y)

Arguments

x

character, SpatRaster, SpatVector, CRS, or other object that returns something intelligible withcrs(x)

y

same types as for x

Value

logical

Examples

r <- rast()
same.crs(r, "+proj=longlat")
#> [1] TRUE

same.crs(r, "+proj=utm +zone=1")
#> [1] FALSE