Skip to content

Commit

Permalink
Check zoomed-in map
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardlavender committed Oct 23, 2024
1 parent cb3cff2 commit 4ecdc22
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions analyses/patter_01_setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ toc()
# Visualise map simplification
terra::plot(map, col = "blue")
terra::lines(champlain |> terra::project(epsg_utm))
# Zoom-in to check resolution
map_zoom <- terra::crop(map,
cbind(1787707, 977397.3) |>
terra::vect() |>
terra::buffer(width = 10000) |>
terra::ext())
terra::plot(map_zoom)
terra::lines(champlain |> terra::project(epsg_utm))
# Check ncell & compare to dat_gebco() for reference
terra::ncell(map)
terra::ncell(dat_gebco())
Expand Down

0 comments on commit 4ecdc22

Please sign in to comment.