Skip to contents

CRS of a spatial object (EPSG + WKT2-style label)

Usage

morie_spatial_crs(x)

Arguments

x

A morie_spatial.

Value

A list with epsg and a wkt description (never a PROJ4 string).

Examples

morie_spatial_crs(morie_spatial(data.frame(lon = 1, lat = 1)))
#> $epsg
#> [1] 4326
#> 
#> $wkt
#> [1] "GEOGCRS[\"WGS 84\", EPSG:4326]"
#>