Skip to contents

A stylized dataset of bathymetric contours for mapping (not analytical) applications. Data were aggregated, contoured, had small pieces were removed, simplified, corner cut, and simplified again. The contours were generated from GEBCO Compilation Group (2024) GEBCO 2024 Grid (doi:10.5285/1c44ce99-0a0d-5f4f- e063-7086abc0ea0f).

Usage

bathymetry

Format

sf/tibble/dataframe, with a single variable detailing the elevation in meters.

Depth

Depth of the contour line in meters.

geometry

a sf linestring, bathymetric contours.

Examples

data(bathymetry)

library(ggplot2)
ggplot() +
 geom_sf(data = bathymetry, aes(color = elevation)) +
 theme_minimal()