I think I have a fundamental misunderstanding with how using crs and map projections work in R. First let me show what my final goal is here. I would like to create something like the following:
Using rnaturalearth. Specifically I am interested in the curved longitude lines and the diagonal latitude lines.
So far, I have used
library(rnaturalearth)
library(rnaturalearthdata)
library(ggplot2)
library(sf)
gl <- ne_countries(scale = "large", country = "Greenland",returnclass = "sf")
ggplot() +
geom_sf(data = gl)
The part I am struggling with is indicating these latitude and longitude lines. I know this has something to do with how I project Earth onto the 2D plane (by changing the crs) but I am struggling to tie it all together in R. I believe I have a fundamental misunderstanding of how all this works and could do with some explanation.
I should note that my final goal is to indicate (through the use of dashed lines) areas bounded by longitudes 60,62,64,66 and 68.