Full catalog/MWOW_L3_HIGHRES_V0.1
MWOW_L3_HIGHRES_V0.1·v0.1·dataset

Ocean surface wind worldwide, every 6 hours (high-res)

MWOW 6-Hourly High Resolution Global Ocean Wind Level 3 Version 0.1
ocean NASA POCLOUD Level 3 active netCDF-4
In plain English

What it measures. Ocean surface wind speed and direction worldwide, every six hours, on a very fine grid, with each contributing instrument's observations kept separate rather than blended together.

How it's made. Combines radar wind retrievals from the KaRIn instrument with interpolated readings from three scatterometers and one radiometer; this is an early version-0 release for stakeholder assessment.

How & where you'd use it. Intended for ocean wind monitoring and evaluation by stakeholders, with this early version offered mainly for feedback rather than as a finished product.

What's measured

OCEANS › OCEAN WINDS › SURFACE WINDS › WIND DIRECTIONOCEANS › OCEAN WINDS › SURFACE WINDS › WIND SPEED

Coverage & cadence

  • Time span2023-01-01 → ongoing
  • Measured byMETOP-B (ASCAT) · METOP-C (ASCAT) · IRS E06 (SCAT-3) · SMAP (SMAP L-BAND RADIOMETER) · SWOT (KaRIn)
  • Processing levelLevel 3
  • Spatial extent-180, -90, 180, 90
  • 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 data set contains 6-hourly, global gridded wind speed and direction at 1/64th degree horizontal resolution from the MWOW (Multi-sensor Worldwide Ocean Winds) Project. It is a harmonized wind product combining retrievals from the KaRIn satellite-based SAR (synthetic aperture radar) with interpolated data from three scatterometers and one radiometer for comparison where SAR data is available. Data are available in netCDF format, with one file for each 6-hour timestep. Note that data from the instruments are not aggregated together to create a composite wind map for each timestep. Rather, observations from each instrument are kept separate, split over the “time” dimension. Further, any observations from the same instrument that overlap spatially in the 6-hour window are also reported as separate observations along this time dimension. Version 0 of these data include an initial bulk ingest of data in January 2026 with forward streaming planned for later in the year. Version 0 is primarily meant for assessment by stakeholders, with future versions likely to incorporate feedback from the stakeholders. No User Guide is planned for this version, although the data are considered science quality. Interested users looking for more information are encouraged to contact the data producer. The MWOW Project is funded by NASA’s Satellite Needs Working Group (SNWG) which provides data products developed to meet the needs of stakeholders from US government agencies.

Get the data

mwow_l3_highres_v0.1_access.py
import earthaccess
earthaccess.login(strategy="netrc")          # free Earthdata Login

results = earthaccess.search_data(
    short_name="MWOW_L3_HIGHRES_V0.1",
    version="0.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.