GLOBathy Global lakes bathymetry dataset

projects/sat-io/open-datasets/GLOBathy/GLOBathy_bathymetry
info

This dataset is part of a Community Catalog, and not managed by Google. Contact gee-community-catalog@googlegroups.com for bugs or view more datasets from the Awesome GEE Community Catalog Catalog. Learn more about Community datasets.

Catalog Owner
Awesome GEE Community Catalog
Dataset Availability
2022-01-26T00:00:00Z–2022-01-26T23:59:00Z
Dataset Provider
Contact
mailto:gee-community-catalog@googlegroups.com
Earth Engine Snippet
ee.Image("projects/sat-io/open-datasets/GLOBathy/GLOBathy_bathymetry")
Tags
community-dataset hydrology sat-io
bathymetry
lake

Description

The GLObal Bathymetric (GLOBathy) dataset, comprising data on over 1.4 million waterbodies globally, has been meticulously developed to harmonize with the widely recognized HydroLAKES dataset. Utilizing a sophisticated Geographic Information System (GIS)-based framework, GLOBathy constructs detailed bathymetric maps by integrating maximum depth estimates and geometric/geophysical attributes sourced from HydroLAKES. Ensuring data accuracy and reliability, GLOBathy undergoes stringent validation procedures involving 1,503 waterbodies and a diverse range of observed data sources. Consequently, GLOBathy stands as a robust and comprehensive dataset for hydrography and aquatic sciences, offering invaluable resources for researchers and professionals in these fields.

Bands

Resolution
30 meters

Bands

Name Units Min Max Description
b1 m 0* 1548.53*

Maximum depth

* estimated min or max value

Terms of Use

Terms of Use

The dataset is released under an assumed CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. The organizations responsible for generating and funding this dataset make no representations of any kind including, but not limited to the warranties of merchantability or fitness for a particular use, nor are any such warranties to be implied with respect to the data.

Citations

Citations:
  • Khazaei, Bahram; Read, Laura K; Casali, Matthew; Sampson, Kevin M; Yates, David N (2022): GLOBathy Bathymetry Rasters. figshare. Dataset. https://doi.org/10.6084/m9.figshare.c.5243309.v1

DOIs

Explore with Earth Engine

Code Editor (JavaScript)

var globathy = ee.Image(
  "projects/sat-io/open-datasets/GLOBathy/GLOBathy_bathymetry"
);

var palettes = require("users/samapriya/utils:palettes");

// Use these visualization parameters, customized by location.
var visParams = { min: 1, max: 700, palette: palettes.extra.blkred };

// Note that the visualization image doesn't require visualization parameters.
Map.addLayer(globathy, visParams, "Globathy Bathymetry (m)");
Open in Code Editor