Full catalog/SMAP_RSS_L2_SSS_NRT_V5
SMAP_RSS_L2_SSS_NRT_V5·v5.0·dataset

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

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

What it measures. How salty the sea surface is, mapped globally along the satellite's path, along with an uncertainty estimate and related wind and microwave details. This is a quick near-real-time version.

How it's made. Derived from microwave measurements by NASA's SMAP satellite (originally built for soil moisture, adapted for ocean salinity), processed to a gridded swath with about a 6-hour delay.

How & where you'd use it. Monitoring ocean salinity for studies of the water cycle, ocean circulation, and climate, with the fast delivery suiting timely applications.

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) V5.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. Data from July 28, 2022 to present, is available with a latency of about 6 hours. The observations are global, provided on a 0.25° fixed Earth grid with an approximate spatial resolution of 70 km. The major differences to the standard version 5.0 data products are: (1) the NRT version of the L1B SMAP antenna temperatures is used, (2) the latest 6-hourly 0.25° wind speed and direction are used for the ancillary wind speed and direction input, (3) the CMC SST from 2 days earlier is used for the ancillary SST input, (4) the sea-ice mask of the 3-day aggregate RSS AMSR-2 Air-Sea Essential Climate Variables (AS-ECV) data set from 2-days earlier is used for the sea-ice flag, (5) no correction for sea-ice contamination is performed, it is recommended to use only SMAP data that are classified to be within sea-ice zone 0 for open ocean scene and no sea-ice contamination. This RSS SMAP-SSS V5.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_v5_access.py
import earthaccess
earthaccess.login(strategy="netrc")          # free Earthdata Login

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