Full catalog/MSG03-OSPO-L2P-v1.0
MSG03-OSPO-L2P-v1.0·v1.0·dataset

How warm the Atlantic sea surface is (Meteosat MSG-3)

GHRSST Level 2P Atlantic Regional Skin Sea Surface Temperature from the Spinning Enhanced Visible and InfraRed Imager (SEVIRI) on the Meteosat Second Generation (MSG-3) satellite (GDS version 2)
ocean NASA POCLOUD Level 2P netCDF-4
In plain English

What it measures. The temperature of the skin of the sea surface over the Atlantic region, updated every 15 minutes at about 5 km resolution, with error statistics.

How it's made. Calculated from the infrared channels of the SEVIRI instrument on the geostationary Meteosat-9 (MSG-3) satellite, processed by NOAA.

How & where you'd use it. The frequent updates make it useful for tracking fast-changing ocean conditions, weather, and short-term temperature events over the Atlantic.

What's measured

OCEANS › OCEAN TEMPERATURE › SEA SURFACE TEMPERATURE › SEA SURFACE SKIN TEMPERATURE

Coverage & cadence

  • Time span2013-08-01 → ongoing
  • Measured byMSG (SEVIRI)
  • Processing levelLevel 2P
  • Spatial extent-81, -73, 81, 73
  • 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

The Meteosat Second Generation (MSG-3) satellites are spin stabilized geostationary satellites operated by the European Organization for the Exploitation of Meteorological Satellites (EUMETSAT) to provide accurate weather monitoring data through its primary instrument the Spinning Enhanced Visible and InfraRed Imager (SEVIRI), which has the capacity to observe the Earth in 12 spectral channels. Eight of these channels are in the thermal infrared, providing among other information, observations of the temperatures of clouds, land and sea surfaces at approximately 5 km resolution with a 15 minute duty cycle. This Group for High Resolution Sea Surface Temperature (GHRSST) dataset produced by the US National Oceanic and Atmospheric Administration (NOAA) National Environmental Satellite, Data, and Information Service (NESDIS) is derived from the SEVIRI instrument on the second MSG satellite (also known as Meteosat-9) that was launched on 22 December 2005. Skin sea surface temperature (SST) data are calculated from the infrared channels of SEVIRI at full resolution every 15 minutes. L2P data products with Single Sensor Error Statistics (SSES) are then derived following the GHRSST-PP Data Processing Specification (GDS) version 2.0.

Get the data

msg03-ospo-l2p-v1.0_access.py
import earthaccess
earthaccess.login(strategy="netrc")          # free Earthdata Login

results = earthaccess.search_data(
    short_name="MSG03-OSPO-L2P-v1.0",
    version="1.0",
    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.