Copernicus Global Ocean Bio-Geo-Chemical Forecast - CO2

COPERNICUS/MARINE/GLOBAL_ANALYSISFORECAST_BGC_001_028/CO2
Dataset Availability
2022-01-01T00:00:00Z–2025-09-19T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("COPERNICUS/MARINE/GLOBAL_ANALYSISFORECAST_BGC_001_028/CO2")
Cadence
1 Day
Tags
copernicus daily forecast marine ocean oceans

Description

The Operational Mercator Ocean biogeochemical global ocean analysis and forecast system at 1/4 degree is providing 10 days of 3D global ocean forecasts updated weekly. The time series is aggregated in time, in order to reach a two full year's time series sliding window. This product includes daily and monthly mean files of biogeochemical parameters (chlorophyll, nitrate, phosphate, silicate, dissolved oxygen, dissolved iron, primary production, phytoplankton, zooplankton, PH, and surface partial pressure of carbon dioxide) over the global ocean. The global ocean output files are displayed with a 1/4 degree horizontal resolution with regular longitude/latitude equirectangular projection.

This dataset consists of surface partial pressure of carbon dioxide.

Bands

Pixel Size
27750 meters

Bands

Name Units Min Max Pixel Size Description
spco2_depth1 Pa -14* 1460* meters

Surface Partial Pressure of Carbon Dioxide

* estimated min or max value

Terms of Use

Terms of Use

The data is provided free of charge by the Copernicus Marine Service. Users must acknowledge the Copernicus Marine Service as the data source when using the data. More details on the terms of use can be found on the Copernicus Marine Service website.

Citations

Citations:

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.ImageCollection("COPERNICUS/MARINE/GLOBAL_ANALYSISFORECAST_BGC_001_028/CO2")
                  .filter(ee.Filter.date('2022-01-01', '2023-01-01'));
var spco2 = dataset.select('spco2_depth1');
var spco2Vis = {
  min: 20,
  max: 40,
  palette: ['0000ff', '00ffff', 'ffff00', 'ff0000', 'ffffff'],
};
Map.setCenter(-140.5, 52.2, 2);
Map.addLayer(spco2, spco2Vis, 'Global BGC CO2 Forecast');
Open in Code Editor