Skip to contents

Dataset containing the limits of an arbitrary study area in Southern Norway, used for illustrative purposes.

Format

A geopackage file. Projected CRS: ETRS89 / UTM zone 33N.

Examples

(f <- system.file("vector/sample_area.gpkg", package = "oneimpact"))
#> [1] "/home/runner/work/_temp/Library/oneimpact/vector/sample_area.gpkg"
sf::st_read(f)
#> Reading layer `study_area' from data source 
#>   `/home/runner/work/_temp/Library/oneimpact/vector/sample_area.gpkg' 
#>   using driver `GPKG'
#> Simple feature collection with 1 feature and 1 field
#> Geometry type: POLYGON
#> Dimension:     XY
#> Bounding box:  xmin: 146900 ymin: 6622800 xmax: 194700 ymax: 6658900
#> Projected CRS: ETRS89 / UTM zone 33N
# or
v <- terra::vect(f)
plot(v)