davidhodge931 / ggblanket

Simplify ggplot2 visualisation
https://davidhodge931.github.io/ggblanket/
Other
156 stars 8 forks source link

sf gridlines: default to keep them on #884

Closed davidhodge931 closed 4 months ago

davidhodge931 commented 4 months ago

As they help illustrative the cartesian space used, and can be removed easily

davidhodge931 commented 4 months ago
library(tidyverse)
library(ggblanket)
library(rnaturalearth)

set_blanket(geom_colour = grey)

america <- ne_countries(
    continent = c("north america","south america"), 
    scale = "medium",
  ) 

america |> 
  gg_sf() 


america |> 
  sf::st_transform(crs = sf::st_crs("epsg:3035")) |>
  gg_sf()

Created on 2024-05-30 with reprex v2.1.0