Entire world water bodies as 1 (or 2, for Caspian Sea) multipolygons. Useful for plotting flight paths, when we don’t want oceans to be transparent in Azimuthal Equal Area projections.
In this case, we are downloading the 50m Cross Blended Hypsometric Tints with Shaded Relief dataset, which combines elevation-based color shading with hillshade effects to enhance terrain visualization. This dataset is ideal for creating aesthetically pleasing and informative background maps in ggplot2 with tidyterra, providing a smooth, global-scale representation of landforms.
Code
# Link to data: https://www.naturalearthdata.com/downloads/50m-raster-data/50m-cross-blend-hypso# https://www.naturalearthdata.com/http//www.naturalearthdata.com/download/50m/raster/HYP_50M_SR.zip# https://www.naturalearthdata.com/http//www.naturalearthdata.com/download/50m/raster/HYP_50M_SR_W.zipworld_cbhsr_rast <-ne_download(scale =50,type ="HYP_50M_SR_W",category ="raster")temp_rast <- world_cbhsr_rast |>aggregate(fact =2) |>project("ESRI:54030")g <-ggplot() +geom_spatraster_rgb(data = temp_rast,maxcell =5e6 ) +labs(title ="World Map as a SpatRaster:\n50m Cross Blended Hypsometric Tints with Shaded Relief and Water" ) ggsave(plot = g,filename = here::here("geocomputation", "images","rnaturalearth_package_5.png" ),height =500,width =800,units ="px")
Plotting International Date Line with Raster Map
Changing the CRS to Azimuthal Equal Area Projection around Equator and IDL cross-point.