changed extent

added political layer under rivers
changed colors of background
This commit is contained in:
Ben Varick 2023-10-18 11:17:55 -05:00
parent f755308d14
commit 05905a6b1d
Signed by: ben
SSH Key Fingerprint: SHA256:jWnpFDAcacYM5aPFpYRqlsamlDyKNpSj3jj+k4ojtUo
2 changed files with 9 additions and 4 deletions

View File

@ -7,7 +7,8 @@ ifelse(!dir.exists(file.path(getwd(), figure_dir)), dir.create(file.path(getwd()
# set colors # set colors
colors <- list(darkblue = "#062e57", colors <- list(darkblue = "#062e57",
lightblue = "#b1dcf3") lightblue = "#b1dcf3",
lightgrey = "#6D6D6D")
# set dimensions of figures # set dimensions of figures
width <- 8.5 width <- 8.5
@ -20,8 +21,12 @@ margin <- 0
# plot map # plot map
plot_map <- function () { plot_map <- function () {
plot(sf::st_geometry(extent_poly), plot(sf::st_geometry(extent_poly),
col = colors$darkblue, col = colors$lightgrey,
border = "black") border = "black")
plot(political$Wisconsin_State_Boundary_24K.geojson,
col = colors$darkblue,
border = NA,
add = TRUE)
plot(sf::st_geometry(data$NHDWaterbody), plot(sf::st_geometry(data$NHDWaterbody),
col = colors$lightblue, col = colors$lightblue,
border = NA, border = NA,

View File

@ -1,3 +1,3 @@
latitude,longitude latitude,longitude
47.33402,-93.10419 47.73208,-93.55154
42.43754,-86.832 41.49273,-86.64896

1 latitude longitude
2 47.33402 47.73208 -93.10419 -93.55154
3 42.43754 41.49273 -86.832 -86.64896