Dataset containing the limits of an arbitrary study area in Southern Norway, used for illustrative purposes.
See also
Maps for the sample area:
Cabins: sample_area_cabins.gpkg, sample_area_cabins.tif,
sample_area_cabins_count.tif
Roads: sample_area_roads.gpkg, sample_area_roads.tif
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)