Page Summary
-
The Global Ocean Colour dataset provides Bio-Geo-Chemical oceanographic variables derived from multiple satellites.
-
This dataset offers a global estimate of marine primary production, expressed in mg/m²/day.
-
The dataset includes bands for Primary Production (PP), PP uncertainty, and a land/water mask.
-
The data is available monthly from April 2023 to September 2025.
-
This dataset is released under a Service Level Agreement by the E.U. Copernicus Marine Environment Monitoring Service.
- Dataset Availability
- 2025-03-01T00:00:00Z–2025-12-01T00:00:00Z
- Dataset Producer
- Copernicus
- Cadence
- 1 Month
- Tags
Description
The Global Ocean Colour (Copernicus-GlobColour) dataset is a Bio-Geo-Chemical (BGC) product developed by ACRI-ST. Derived from multiple satellite sources like SeaWiFS, MODIS, and OLCI. It provides a comprehensive range of oceanographic variables, including: Chlorophyll (CHL), Phytoplankton Functional types and sizes (PFT), Primary Production (PP), Suspended Matter (SPM), Secchi Transparency Depth (ZSD), Diffuse Attenuation (KD490), Particulate Backscattering (BBP), Absorption Coefficient (CDM), Reflectance (RRS) and more.
This dataset provides a global estimate of marine primary production. It uses multi-sensor satellite data to measure the rate of carbon fixation by phytoplankton, which is a key indicator of ocean health. The primary production values are expressed in units of mg/m^2/day, making it a valuable tool for monitoring global carbon cycles and marine ecosystem dynamics.
Documentation:
NOTE: The provider may remove Copernicus Marine data (especially Near Real-Time, NRT, observations) from their repository after some time, possibly aggregating that data into different (e.g., monthly) products. However, the corresponding assets remain available in the Earth Engine collection.
Bands
Pixel Size
4000 meters
Bands
| Name | Units | Pixel Size | Description |
|---|---|---|---|
PP |
mg/day/m^2 | meters | Primary Production |
PP_uncertainty |
% | meters | Primary Production - The uncertainty as measured in hundredths of a percent (e.g., a value of 5000 means 50%).' |
flags |
meters | Land water mask bit.
|
Terms of Use
Terms of Use
This dataset is released for use under Service Level Agreement (SLA), using the acronym "CMEMS" or the shortened name "Copernicus Marine Service" both denote the E.U. Copernicus Marine Environment Monitoring Service. Highlights and key features of the licence are provided in this document License
Citations
Copernicus Global Ocean Colour: Global Ocean Satellite Observations, ACRI-ST company (Sophia Antipolis, France) is providing Bio-Geo-Chemical (BGC) products based on the Copernicus-GlobColour processor. doi:10.48670/moi-00279
Explore with Earth Engine
Code Editor (JavaScript)
var dataset = ee.ImageCollection('COPERNICUS/MARINE/OC_GLO_BGC/PRIMARY_PRODUCTION_MULTI_4KM') .filter(ee.Filter.date('2025-03-01', '2025-06-01')); var PP = dataset.select('PP'); var PPVis = { min: 57.26, max: 1031.191, palette: ['D7F9D0', '91CA85', '5AB05D', '129450', '0F7347', '195437', '122414'], }; Map.setCenter(71, 52, 2); Map.addLayer(PP, PPVis, 'Primary Production');