Full catalog/EWSG2-NAVO-L2P-v01
EWSG2-NAVO-L2P-v01·v1.0·dataset

How warm the sea surface is (EWS-G2, geostationary)

GHRSST Level 2P Sea Surface Temperature version 1.0 from the Electro-Optical Infrared Weather System Geostationary (EWSG2) produced by NAVO
ocean NASA POCLOUD Level 2P active netCDF-4
In plain English

What it measures. How warm the sea surface is, measured along the satellite's view of the ocean. Coverage is over the Indian Ocean region, with both day and night readings (though daytime gaps occur where sun glare interferes).

How it's made. Calculated from infrared channels on the imager aboard EWS-G2 (formerly the GOES-15 weather satellite), which sits in a fixed spot above the equator, and packaged to a common sea-surface-temperature standard.

How & where you'd use it. Feeds weather forecasting and ocean monitoring, especially providing frequent sea-surface temperature snapshots over the Indian Ocean.

What's measured

OCEANS › OCEAN TEMPERATURE › SEA SURFACE TEMPERATURE

Coverage & cadence

  • Time span2023-12-03 → ongoing
  • Measured byGOES-15 (GOES-15 Imager)
  • Processing levelLevel 2P
  • Spatial extent-20, -65, 140, 65
  • 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) Level 2P sea surface temperature dataset produced by the Naval Oceanographic Office (NAVO) from the GOES Imager sensor on the Electro-Optical Infrared Weather System – Geostationary satellite (EWS-G2). The EWS-G2, formerly GOES-15, is the second Department of Defense owned geostationary weather satellite, which has been repositioned over Indian Ocean (IO) region at 60.0° West longitude in September 2023 and fully operational since December 3, 2023, providing timely cloud characterization and theater weather imagery to DoD. The EWS-G2 L2P SST product is calculated based on the 4-micron (band 2) and 11-micron (band 4) channels, providing nighttime and daytime SST. However, daytime SSTs are not produced in areas where the 4-micron channel is strongly affected by Solar radiation, which is defined by solar reflection angle > 50 degrees. The L2P data are packaged according to the GHRSST Data Specification version 2 (GDS2) in netCDF4 format at 0.04-degree spatial resolution and stored in 104 partial disks per day. The data will be continually updated with 24 hours latency.

Get the data

ewsg2-navo-l2p-v01_access.py
import earthaccess
earthaccess.login(strategy="netrc")          # free Earthdata Login

results = earthaccess.search_data(
    short_name="EWSG2-NAVO-L2P-v01",
    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.