Full catalog/SEVIRI_SST-OSISAF-L3C-v1.0
SEVIRI_SST-OSISAF-L3C-v1.0·v1·dataset

How warm the Atlantic sea surface is (SEVIRI on MSG)

GHRSST Level 3C Atlantic sub-skin Sea Surface Temperature from the Spinning Enhanced Visible and Infrared Imager (SEVIRI) on MSG at 0 degree longitude (GDS V2) produced by OSI SAF
ocean NASA POCLOUD Level 3 netCDF-4
In plain English

What it measures. How warm the surface of the eastern Atlantic Ocean is, reported every 15 minutes as sea surface temperature on a fine grid.

How it's made. Retrieved from the infrared channels of the SEVIRI imager on Europe's MSG geostationary satellite, with corrections for changing atmospheric conditions, then remapped onto a regular grid.

How & where you'd use it. Supports near-real-time ocean and weather monitoring over the Atlantic, where its very frequent updates make it useful for tracking changing sea-surface conditions through the day.

What's measured

OCEANS › OCEAN TEMPERATURE › SEA SURFACE TEMPERATURE › Subskin Sea Surface Temperature

Coverage & cadence

  • Time span2004-06-01 → ongoing
  • Measured byMSG (SEVIRI)
  • Processing levelLevel 3
  • Spatial extent-60, -60, 60, 60
  • FormatsnetCDF-4
  • StatusACTIVE

What you can do with it

  • Watch sea-surface temperature and marine heatwaves
  • Spot algal blooms and ocean-colour shifts
  • Support fisheries and coastal monitoring
Official description

A Group for High Resolution Sea Surface Temperature (GHRSST) dataset for the Eastern Atlantic Region from the Spinning Enhanced Visible and InfraRed Imager (SEVIRI) on the Meteosat Second Generation (MSG-3) satellites (launched 5 July 2012). The European Organization for the Exploitation of Meteorological Satellites (EUMETSAT), Ocean and Sea Ice Satellite Application Facility (OSI SAF) is producing SST products in near real time from MSG/SEVIRI. SEVIRI level 1.5 data are acquired at Meteo-France/Centre de Meteorologie Spatiale (CMS) through the EUMETSAT/EUMETCAST system. SST is retrieved from the SEVIRI infrared channels (10.8 and 12.0 micrometer) using a multispectral algorithm. Atmospheric profiles of water vapor and temperature from a numerical weather prediction model, together with a radiatiave transfer model, are used to correct the multispectral algorithm for regional and seasonal biases due to changing atmospheric conditions. Every 15 minutes slot is processed at full satellite resolution. The operational products are then produced by remapping over a 0.05 degree regular grid (60S-60N and 60W-60E) SST fields obtained by aggregating all 15 minute SST data available in one hour time, and the priority being given to the value the closest in time to the product nominal hour. The product format is compliant with the GHRSST Data Specification (GDS) version 2.

Get the data

seviri_sst-osisaf-l3c-v1.0_access.py
import earthaccess
earthaccess.login(strategy="netrc")          # free Earthdata Login

results = earthaccess.search_data(
    short_name="SEVIRI_SST-OSISAF-L3C-v1.0",
    version="1",
    bounding_box=(-122.5, 37.2, -121.8, 37.9),  # your area (W,S,E,N)
    temporal=("2024-01-01", "2024-12-31"),       # your dates
)
files = earthaccess.open(results)   # stream straight from POCLOUD
Browsing CMR needs no login. Downloading or streaming bytes needs a free Earthdata Login + the earthaccess package.