Full catalog/SMAP_RSS_L2_SSS_NRT_V6
SMAP_RSS_L2_SSS_NRT_V6·v6.0·dataset

How salty the sea surface is, near real-time (SMAP)

RSS SMAP Level 2C Sea Surface Salinity NRT V6.0 Validated Dataset
ocean NASA POCLOUD Level 2 netCDF-4
In plain English

What it measures. How salty the ocean surface is, measured swath by swath, along with an uncertainty estimate and related wind and microwave readings.

How it's made. Derived from the passive microwave instrument on NASA's SMAP satellite (originally built to measure soil moisture) and delivered quickly on a roughly 70 km global grid.

How & where you'd use it. Used to monitor ocean salinity in near real time, which informs studies of ocean circulation, the water cycle, and weather.

What's measured

OCEANS › SALINITY/DENSITY › SALINITY › SALINITY

Coverage & cadence

  • Time span2022-07-28 → ongoing
  • Measured bySMAP (SMAP L-BAND RADIOMETER)
  • Processing levelLevel 2
  • 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

The SMAP-SSS level 2C near real-time (NRT) V6.0 dataset produced by the Remote Sensing Systems (RSS) and sponsored by the NASA Ocean Salinity Science Team, is a validated product that provides near real-time orbital/swath data on sea surface salinity (SSS) derived from the NASA's Soil Moisture Active Passive (SMAP) mission. SMAP, launched on January 31, 2015, was initially designed to measure and map Earth's soil moisture and freeze/thaw state to better understand terrestrial water, carbon and energy cycles, and has been adapted to measure ocean SSS and ocean wind speed using its passive microwave instrument. The SMAP instrument is in a near polar orbiting, sun synchronous orbit with a nominal 8 day repeat cycle. The dataset includes derived SMAP SSS, SSS uncertainty using the NRT SMAP Salinity Retrieval Algorithm, top of atmosphere brightness temperature (TB), wind speed and direction data for extreme winds, and other all necessary ancillary data and the results of all intermediate steps. The observations are global, provided on a 0.25° fixed Earth grid with an approximate spatial resolution of 70 km. The major changes in Version 6.0 from Version 5.0 are: (1) Removal of biases during the first few months of the SMAP mission that are related to the operation of the SMAP radar during that time. (2) Mitigation of biases that depend on the SMAP look angle. (3) Mitigation of salty biases at high Northern latitudes. (4) Revised sun-glint flag. Each data file covers one 98-minute orbit (15 files per day), is available in netCDF-4 file format with about 5 hours l atency. This RSS SMAP-SSS V6.0 NRT dataset holds tremendous potential for scientific research and various applications. Given the SMAP satellite's near-polar orbit and sun-synchronous nature with its 1000km swath, it achieves global coverage in approximately three days, enabling researchers to monitor and model global oceanic and climatic phenomena with unprecedented detail and timeliness. These data can inform and enhance understanding of global weather patterns, the Earth’s hydrological cycle, ocean circulation, and climate change. This activity was informed by the Satellite Needs Working Group (SNWG), an interagency effort of the U.S. Government dedicated to identifying and addressing Earth observation needs across U.S. civilian federal agencies.

Get the data

smap_rss_l2_sss_nrt_v6_access.py
import earthaccess
earthaccess.login(strategy="netrc")          # free Earthdata Login

results = earthaccess.search_data(
    short_name="SMAP_RSS_L2_SSS_NRT_V6",
    version="6.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.