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

How warm the Indian Ocean surface is (SEVIRI on MSG)

GHRSST Level 3C Indian-Ocean (IO) sub-skin Sea Surface Temperature from the Spinning Enhanced Visible and Infrared Imager (SEVIRI) on MSG in GDS2 format produced by OSISAF
ocean NASA POCLOUD Level 3 netCDF-4
In plain English

What it measures. How warm the Indian Ocean's surface (just below the very top skin) is, mapped on an hourly gridded basis across the region between 60S and 60N.

How it's made. Retrieved from infrared channels on the SEVIRI instrument aboard Europe's Meteosat Second Generation satellite, with corrections applied for changing atmospheric conditions, then composited from frequent 15-minute scans.

How & where you'd use it. Useful for monitoring Indian Ocean surface temperatures at high frequency, supporting weather, ocean, and climate work.

What's measured

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

Coverage & cadence

  • Time span2017-03-28 → ongoing
  • Measured byMSG (SEVIRI)
  • Processing levelLevel 3
  • Spatial extent-18.5, -60, 101.5, 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

This dataset is produced by the Ocean and Sea Ice Satellite Application Facility (OSI SAF) from the Spinning Enhanced Visible and InfraRed Imager (SEVIRI) instrument onboard the Meteosat Second Generation (MSG-1), Meteosat-8 satellite (launched on 28 August 2002). The dataset covers the Indian Ocean region with latitude of 60S-60N and longitude of 101.5E-18.5W. Level-3C SST, in the NetCDF format recommended by Group for High Resolution Sea Surface Temperature (GHRSST), is identical to Level-2P GHRSST products, 3 refers to gridded products and C to the fact that hourly products result from compositing 15 minutes (MSG) or 30 minutes (GOES-E) data. The European Organization for the Exploitation of Meteorological Satellites (EUMETSAT), 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 135W-15W) 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_io_sst-osisaf-l3c-v1.0_access.py
import earthaccess
earthaccess.login(strategy="netrc")          # free Earthdata Login

results = earthaccess.search_data(
    short_name="SEVIRI_IO_SST-OSISAF-L3C-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.