Full catalog/sentinel-6-amr-c-ntc
sentinel-6-amr-c-ntc·dataset

Microwave humidity data for climate sea-level work (Copernicus)

Sentinel-6 AMR-C Non Time Critical (NTC)
land ESA ESA Copernicus active
In plain English

What it measures. Provides carefully calibrated microwave brightness readings at three frequencies, used to gauge atmospheric water vapour that would otherwise distort satellite sea-level measurements.

How it's made. From the Sentinel-6 AMR-C radiometer, fully calibrated and released about 60 days later for the highest accuracy.

How & where you'd use it. A correction input for long-term climate studies of rising seas; supports reanalysis and reprocessing rather than everyday viewing.

What's measured

CopernicusSentinelEUESAEUMETSATSatelliteGlobalEarth

Coverage & cadence

  • Time span2021-10-29 → ongoing
  • Spatial extent-180, -90, 180, 90

What you can do with it

  • Track deforestation, fire scars and land-cover change
  • Monitor crop and vegetation health (NDVI/EVI)
  • Map how built-up vs. green an area is over time
Official description

The Sentinel-6 AMR-C Non Time Critical (NTC) product delivers high-precision, fully calibrated brightness temperature data at three microwave frequencies (18.7, 23.8, and 34.0 GHz). Optimised for long-term climate monitoring, the product enables accurate retrieval of wet tropospheric corrections and supports reanalysis and reprocessing applications. Data are structured by satellite passes and made available within 60 days of acquisition in NetCDF format.

Get the data

copernicus_access.py
# ESA Copernicus Data Space — open STAC API (free account)
from pystac_client import Client

cat = Client.open("https://stac.dataspace.copernicus.eu/v1")
search = cat.search(
    collections=["sentinel-6-amr-c-ntc"],   # add _cog or _nc for a format variant
    bbox=(-10, 35, 30, 60),             # your area (W,S,E,N)
    datetime="2024-01-01/2024-12-31",
)
items = list(search.items())            # then read assets with rioxarray / xarray
Browsing the Copernicus STAC is open; downloading bytes needs a free Copernicus Data Space account.