HYCOM: Hybrid Coordinate Ocean Model, Sea Surface Elevation [deprecated]

  • This HYCOM dataset has been superseded by a newer version focused on sea surface elevation and is considered deprecated.

  • It provides sea surface elevation anomaly data from 1992 to 2018, interpolated to a 0.08 degree grid.

  • The data is freely available for use without restrictions and is sourced from the Hybrid Coordinate Ocean Model (HYCOM).

  • HYCOM is a data-assimilative ocean model incorporating salinity, temperature, velocity, and elevation variables.

  • This dataset is hosted on Google Earth Engine and is easily accessible for analysis and visualization.

HYCOM/GLBu0_08/sea_surface_elevation
Dataset Availability
1992-10-02T00:00:00Z–2018-12-09T12:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("HYCOM/GLBu0_08/sea_surface_elevation")
Cadence
1 Day
Tags
elevation
hycom
nopp
ocean
oceans
ssh
water

Description

The Hybrid Coordinate Ocean Model (HYCOM) is a data-assimilative hybrid isopycnal-sigma-pressure (generalized) coordinate ocean model. The subset of HYCOM data hosted in EE contains the variables salinity, temperature, velocity, and elevation. They have been interpolated to a uniform 0.08 degree lat/long grid between 80.48°S and 80.48°N. The salinity, temperature, and velocity variables have been interpolated to 40 standard z-levels.

The HYCOM Consortium, which includes the National Ocean Partnership Program (NOPP), is part of the U.S. Global Ocean Data Assimilation Experiment (GODAE).

Funded by the National Ocean Partnership Program, the Office of Naval Research (ONR), and DoD High Performance Computing Modernization Program.

For more information, see:

Bands

Pixel Size
8905.6 meters

Bands

Name Units Min Max Scale Pixel Size Description
surface_elevation m -5681* 5965* 0.001 meters

Sea surface elevation anomaly relative to the modeled elevation mean

* estimated min or max value

Image Properties

Image Properties

Name Type Description
experiment STRING

Experiment number

Terms of Use

Terms of Use

This dataset is freely available with no restrictions.

Citations

Citations:
  • J. A. Cummings and O. M. Smedstad. 2013: Variational Data Assimilation for the Global Ocean. Data Assimilation for Atmospheric, Oceanic and Hydrologic Applications vol II, chapter 13, 303-343.

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.ImageCollection('HYCOM/GLBu0_08/sea_surface_elevation')
                  .filter(ee.Filter.date('2018-08-01', '2018-08-15'));
var surfaceElevation = dataset.select('surface_elevation');
var surfaceElevationVis = {
  min: -2000.0,
  max: 2000.0,
  palette: ['blue', 'cyan', 'yellow', 'red'],
};
Map.setCenter(-28.1, 28.3, 1);
Map.addLayer(surfaceElevation, surfaceElevationVis, 'Surface Elevation');
Open in Code Editor