Accessing Sentinel-3 SRAL data with the Planetary Computer STAC API¶
The Sentinel 3 SRAL instrument uses Synthetic Aperture Radar (SAR) to measure surface height, significant wave height, and wind speed over the ocean surface.
There are two SRAL collections in the Plantery Computer:
Land measurements: sentinel-3-sral-lan-l2-netcdf
Water measurements: sentinel-3-slstr-wat-l2-netcdf
This notebook demonstrates accessing and visualizing data from both collections.
This notebook works with or without an API key, but you will be given more permissive access to the data with an API key. If you are using the Planetary Computer Hub to run this notebook, then your API key is automatically set to the environment variable PC_SDK_SUBSCRIPTION_KEY for you when your server is started. Otherwise, you can view your keys by signing in to the developer portal. The API key may be manually set via the environment variable PC_SDK_SUBSCRIPTION_KEY or the following code:
The datasets hosted by the Planetary Computer are available in Azure Blob Storage. We'll use pystac-client to search the Planetary Computer's STAC API for the subset of the data that we care about, and then we'll load the data directly from Azure Blob Storage. We'll specify a modifier so that we can access the data stored in the Planetary Computer's private Blob Storage Containers. See Reading from the STAC API and Using tokens for data access for more.
This Collection provides Sentinel-3 SRAL Level-2 Ocean Altimetry products, which contain data on ocean radar altimetry measurements. Each product contains three NetCDF files:
A reduced data file containing a subset of the 1 Hz Ku-band parameters.
A standard data file containing the standard 1 Hz and 20 Hz Ku- and C-band parameters.
An enhanced data file containing the standard 1 Hz and 20 Hz Ku- and C-band parameters along with the waveforms and parameters necessary to reprocess the data.
More information about the product and data processing can be found in the User Guide and Technical Guide.
This Collection contains Level-2 data in NetCDF files from January 2017 to present.
Define the area of interest and search the water collection¶
We'll search for items.
Since this is an altimetry product, the swaths of data are very narrow, making a point-based search unrealistic.
We search for any product that intersects the Gulf of Mexico.
Positive latitude is North latitude, negative latitude is South latitude
[1687 values with dtype=float64]
lon_01
(time_01)
float64
...
long_name :
longitude : 1 Hz
units :
degrees_east
standard_name :
longitude
comment :
East longitude relative to Greenwich meridian
[1687 values with dtype=float64]
lat_20_ku
(time_20_ku)
float64
...
long_name :
latitude : 20 Hz Ku band
units :
degrees_north
standard_name :
latitude
comment :
Positive latitude is North latitude, negative latitude is South latitude
[33611 values with dtype=float64]
lon_20_ku
(time_20_ku)
float64
...
long_name :
longitude : 20 Hz Ku band
units :
degrees_east
standard_name :
longitude
comment :
East longitude relative to Greenwich meridian
[33611 values with dtype=float64]
lat_20_c
(time_20_c)
float64
...
long_name :
latitude : 20 Hz C band
units :
degrees_north
standard_name :
latitude
comment :
Positive latitude is North latitude, negative latitude is South latitude
[32900 values with dtype=float64]
lon_20_c
(time_20_c)
float64
...
long_name :
longitude : 20 Hz C band
units :
degrees_east
standard_name :
longitude
comment :
East longitude relative to Greenwich meridian
[32900 values with dtype=float64]
UTC_day_01
(time_01)
datetime64[ns]
...
long_name :
day UTC : 1 Hz
[1687 values with dtype=datetime64[ns]]
UTC_sec_01
(time_01)
float64
...
long_name :
Second in the day UTC : 1 Hz
units :
s
[1687 values with dtype=float64]
UTC_day_20_ku
(time_20_ku)
datetime64[ns]
...
long_name :
day UTC : 20 Hz Ku band
[33611 values with dtype=datetime64[ns]]
UTC_sec_20_ku
(time_20_ku)
float64
...
long_name :
Second in the day UTC : 20 Hz Ku band
units :
s
[33611 values with dtype=float64]
UTC_day_20_c
(time_20_c)
datetime64[ns]
...
long_name :
day UTC : 20 Hz C band
[32900 values with dtype=datetime64[ns]]
UTC_sec_20_c
(time_20_c)
float64
...
long_name :
Second in the day UTC : 20 Hz C band
units :
s
[32900 values with dtype=float64]
UTC_time_1hz_20_ku
(time_20_ku)
datetime64[ns]
...
long_name :
UTC of the 1 Hz measurement
[33611 values with dtype=datetime64[ns]]
UTC_time_1hz_20_c
(time_20_c)
datetime64[ns]
...
long_name :
UTC of the 1 Hz measurement
[32900 values with dtype=datetime64[ns]]
lat_cor_20_ku
(time_20_ku)
float64
...
long_name :
slope-corrected latitude : 20 Hz Ku band
units :
degrees_north
comment :
Latitude of the actual echoing point, accounting for surface slope models. Positive latitude is North latitude, negative latitude is South latitude. For the Ku-band this parameter is computed over Greenland and Antactica surfaces and filled with the uncorrected latitude over other surfaces. For the C-band this parameter is valid over Greenland and Antactica surfaces only.
[33611 values with dtype=float64]
lon_cor_20_ku
(time_20_ku)
float64
...
long_name :
slope-corrected longitude : 20 Hz Ku band
units :
degrees_east
comment :
Longitude of the actual echoing point, accounting for surface slope models. East longitude relative to Greenwich meridian. For the Ku-band this parameter is computed over Greenland and Antactica surfaces and filled with the uncorrected latitude over other surfaces. For the C-band this parameter is valid over Greenland and Antactica surfaces only.
[33611 values with dtype=float64]
lat_cor_20_c
(time_20_c)
float64
...
long_name :
slope-corrected latitude : 20 Hz C band
units :
degrees_north
comment :
Latitude of the actual echoing point, accounting for surface slope models. Positive latitude is North latitude, negative latitude is South latitude. For the Ku-band this parameter is computed over Greenland and Antactica surfaces and filled with the uncorrected latitude over other surfaces. For the C-band this parameter is valid over Greenland and Antactica surfaces only.
[32900 values with dtype=float64]
lon_cor_20_c
(time_20_c)
float64
...
long_name :
slope-corrected longitude : 20 Hz C band
units :
degrees_east
comment :
Longitude of the actual echoing point, accounting for surface slope models. East longitude relative to Greenwich meridian. For the Ku-band this parameter is computed over Greenland and Antactica surfaces and filled with the uncorrected latitude over other surfaces. For the C-band this parameter is valid over Greenland and Antactica surfaces only.
[32900 values with dtype=float64]
surf_type_01
(time_01)
float32
...
long_name :
surface type : 1 Hz
flag_values :
[0 1 2 3]
flag_meanings :
ocean_or_semi_enclosed_sea enclosed_sea_or_lake continental_ice land
[1687 values with dtype=float32]
surf_type_20_ku
(time_20_ku)
float32
...
long_name :
surface type : 20 Hz Ku band
flag_values :
[0 1 2 3]
flag_meanings :
ocean_or_semi_enclosed_sea enclosed_sea_or_lake continental_ice land
[33611 values with dtype=float32]
surf_type_20_c
(time_20_c)
float32
...
long_name :
surface type : 20 Hz C band
flag_values :
[0 1 2 3]
flag_meanings :
ocean_or_semi_enclosed_sea enclosed_sea_or_lake continental_ice land
[32900 values with dtype=float32]
surf_class_01
(time_01)
float32
...
long_name :
surface classification : 01 Hz
flag_values :
[0 1 2 3 4 5 6]
flag_meanings :
open_ocean land continental_water aquatic_vegetation continental_ice_snow floating_ice salted_basin
comment :
Computed from a mask built with MODIS and GlobCover data
[1687 values with dtype=float32]
surf_class_20_ku
(time_20_ku)
float32
...
long_name :
surface classification : 20 Hz ku band
flag_values :
[0 1 2 3 4 5 6]
flag_meanings :
open_ocean land continental_water aquatic_vegetation continental_ice_snow floating_ice salted_basin
comment :
Computed from a mask built with MODIS and GlobCover data
[33611 values with dtype=float32]
surf_class_20_c
(time_20_c)
float32
...
long_name :
surface classification : 20 Hz C band
flag_values :
[0 1 2 3 4 5 6]
flag_meanings :
open_ocean land continental_water aquatic_vegetation continental_ice_snow floating_ice salted_basin
comment :
Computed from a mask built with MODIS and GlobCover data
[32900 values with dtype=float32]
rad_surf_type_01
(time_01)
float32
...
long_name :
radiometer derived surface type : 1 Hz
flag_values :
[0 1]
flag_meanings :
ocean land
[1687 values with dtype=float32]
angle_coast_01
(time_01)
float32
...
long_name :
angle to the coast : 1 Hz
units :
degree
comment :
Angle of approach to the closest coast. 0 is parallel to the coast with the land on the right. Positive values indicate the satellite is approaching the land. Negative values indicate the satellite is leaving the land. Values close to +/-180 degrees have the land on the left.
[1687 values with dtype=float32]
angle_coast_20_ku
(time_20_ku)
float32
...
long_name :
angle to the coast : 20 Hz Ku band
units :
degree
comment :
Angle of approach to the closest coast. 0 is parallel to the coast with the land on the right. Positive values indicate the satellite is approaching the land. Negative values indicate the satellite is leaving the land. Values close to +/-180 degrees have the land on the left.
[33611 values with dtype=float32]
angle_coast_20_c
(time_20_c)
float32
...
long_name :
angle to the coast : 20 Hz C band
units :
degree
comment :
Angle of approach to the closest coast. 0 is parallel to the coast with the land on the right. Positive values indicate the satellite is approaching the land. Negative values indicate the satellite is leaving the land. Values close to +/-180 degrees have the land on the left.
[32900 values with dtype=float32]
dist_coast_01
(time_01)
float64
...
long_name :
distance to the coast : 1 Hz
units :
m
[1687 values with dtype=float64]
dist_coast_20_ku
(time_20_ku)
float64
...
long_name :
distance to the coast : 20 Hz Ku band
units :
m
[33611 values with dtype=float64]
dist_coast_20_c
(time_20_c)
float64
...
long_name :
distance to the coast : 20 Hz C band
units :
m
[32900 values with dtype=float64]
alt_01
(time_01)
float64
...
long_name :
altitude of the satellite : 1 Hz
units :
m
standard_name :
height_above_reference_ellipsoid
comment :
Altitude of satellite above the reference ellipsoid
[1687 values with dtype=float64]
alt_20_ku
(time_20_ku)
float64
...
long_name :
altitude of the satellite : 20 Hz Ku band
units :
m
standard_name :
height_above_reference_ellipsoid
comment :
Altitude of satellite above the reference ellipsoid
[33611 values with dtype=float64]
alt_20_c
(time_20_c)
float64
...
long_name :
altitude of the satellite : 20 Hz C band
units :
m
standard_name :
height_above_reference_ellipsoid
comment :
Altitude of satellite above the reference ellipsoid
[32900 values with dtype=float64]
orb_alt_rate_01
(time_01)
float32
...
long_name :
orbital altitude rate : 1 Hz
units :
m/s
comment :
The reference surface for the orbital altitude rate is the combined mean_sea_surface/geoid surface. It is used to compute the Doppler correction on the altimeter range
[1687 values with dtype=float32]
orb_alt_rate_20_ku
(time_20_ku)
float32
...
long_name :
orbital altitude rate : 20 Hz Ku band
units :
m/s
comment :
The reference surface for the orbital altitude rate is the combined mean_sea_surface/geoid surface. It is used to compute the Doppler correction on the altimeter range
[33611 values with dtype=float32]
orb_alt_rate_20_c
(time_20_c)
float32
...
long_name :
orbital altitude rate : 20 Hz C band
units :
m/s
comment :
The reference surface for the orbital altitude rate is the combined mean_sea_surface/geoid surface. It is used to compute the Doppler correction on the altimeter range
[32900 values with dtype=float32]
agc_01_ku
(time_01)
float32
...
long_name :
corrected AGC : 1 Hz Ku band
units :
dB
comment :
AGC corrected for instrumental errors. For SAR mode, value the closest in time to the reference measurement
[1687 values with dtype=float32]
agc_01_c
(time_01)
float32
...
long_name :
corrected AGC : 1 Hz C band
units :
dB
comment :
AGC corrected for instrumental errors. For SAR mode, value the closest in time to the reference measurement
[1687 values with dtype=float32]
agc_01_plrm_ku
(time_01)
float32
...
long_name :
corrected AGC : 1 Hz Plrm Ku band
units :
dB
comment :
AGC corrected for instrumental errors. For SAR mode, value the closest in time to the reference measurement
[1687 values with dtype=float32]
agc_numval_01_ku
(time_01)
float32
...
long_name :
number of valid points used to compute AGC : 1 Hz Ku band
units :
count
[1687 values with dtype=float32]
agc_numval_01_c
(time_01)
float32
...
long_name :
number of valid points used to compute AGC : 1 Hz C band
units :
count
[1687 values with dtype=float32]
agc_numval_01_plrm_ku
(time_01)
float32
...
long_name :
number of valid points used to compute AGC : 1 Hz Plrm Ku band
units :
count
[1687 values with dtype=float32]
agc_rms_01_ku
(time_01)
float32
...
long_name :
RMS of the AGC : 1 Hz Ku band
units :
dB
comment :
compression of high rate elements is preceded by a detection of outliers. Only valid high-rate values are used to compute this element
[1687 values with dtype=float32]
agc_rms_01_c
(time_01)
float32
...
long_name :
RMS of the AGC : 1 Hz C band
units :
dB
comment :
compression of high rate elements is preceded by a detection of outliers. Only valid high-rate values are used to compute this element
[1687 values with dtype=float32]
agc_rms_01_plrm_ku
(time_01)
float32
...
long_name :
RMS of the AGC : 1 Hz Plrm Ku band
units :
dB
comment :
compression of high rate elements is preceded by a detection of outliers. Only valid high-rate values are used to compute this element
[1687 values with dtype=float32]
range_ocean_01_ku
(time_01)
float64
...
long_name :
corrected 'ocean' altimeter range : 1 Hz Ku band
units :
m
quality_flag :
range_ocean_qual_01_ku
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : USO drift correction, internal path correction, distance antenna-COG, Doppler correction, modeled instrumental errors correction and system bias
[1687 values with dtype=float64]
range_ocean_01_c
(time_01)
float64
...
long_name :
corrected 'ocean' altimeter range : 1 Hz C band
units :
m
quality_flag :
range_ocean_qual_01_c
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : USO drift correction, internal path correction, distance antenna-COG, Doppler correction, modeled instrumental errors correction and system bias
[1687 values with dtype=float64]
range_ocean_01_plrm_ku
(time_01)
float64
...
long_name :
corrected 'ocean' altimeter range : 1 Hz Plrm Ku band
units :
m
quality_flag :
range_ocean_qual_01_plrm_ku
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : USO drift correction, internal path correction, distance antenna-COG, Doppler correction, modeled instrumental errors correction and system bias
[1687 values with dtype=float64]
range_ocean_20_ku
(time_20_ku)
float64
...
long_name :
corrected 'ocean' altimeter range : 20 Hz Ku band
units :
m
quality_flag :
range_ocean_qual_20_ku
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : USO drift correction (uso_cor_20_ku), internal path correction (int_path_cor_20_ku), distance antenna-COG (cog_cor_01), Doppler correction (dop_cor_20_ku), modeled instrumental errors correction (mod_instr_cor_range_01_ku) and system bias
[33611 values with dtype=float64]
range_ocean_20_c
(time_20_c)
float64
...
long_name :
corrected 'ocean' altimeter range : 20 Hz C band
units :
m
quality_flag :
range_ocean_qual_20_c
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : USO drift correction (uso_cor_20_c), internal path correction (int_path_cor_20_c), distance antenna-COG (cog_cor_01), Doppler correction (dop_cor_20_c), modeled instrumental errors correction (mod_instr_cor_range_01_c) and system bias
[32900 values with dtype=float64]
range_ocean_20_plrm_ku
(time_20_c)
float64
...
long_name :
corrected 'ocean' altimeter range : 20 Hz Plrm Ku band
units :
m
quality_flag :
range_ocean_qual_20_plrm_ku
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : USO drift correction (uso_cor_20_c), internal path correction (int_path_cor_20_plrm_ku), distance antenna-COG (cog_cor_01), Doppler correction (dop_cor_20_plrm_ku), modeled instrumental errors correction (mod_instr_cor_range_01_plrm_ku) and system bias
[32900 values with dtype=float64]
range_ocean_qual_01_ku
(time_01)
float32
...
long_name :
quality flag for the 'ocean' altimeter range : 1 Hz Ku band
flag_values :
[0 1]
flag_meanings :
Good Bad
[1687 values with dtype=float32]
range_ocean_qual_01_c
(time_01)
float32
...
long_name :
quality flag for the 'ocean' altimeter range : 1 Hz C band
flag_values :
[0 1]
flag_meanings :
Good Bad
[1687 values with dtype=float32]
range_ocean_qual_01_plrm_ku
(time_01)
float32
...
long_name :
quality flag for the 'ocean' altimeter range : 1 Hz Plrm Ku band
flag_values :
[0 1]
flag_meanings :
Good Bad
[1687 values with dtype=float32]
range_ocean_qual_20_ku
(time_20_ku)
float32
...
long_name :
quality flag for the 'ocean' altimeter range : 20 Hz Ku band
flag_values :
[0 1]
flag_meanings :
Yes No
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Flag indicating the use or not of the 20-Hz estimate of the ocean altimeter range in the computation of 1Hz estimate
[33611 values with dtype=float32]
range_ocean_qual_20_c
(time_20_c)
float32
...
long_name :
quality flag for the 'ocean' altimeter range : 20 Hz C band
flag_values :
[0 1]
flag_meanings :
Yes No
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Flag indicating the use or not of the 20-Hz estimate of the ocean altimeter range in the computation of 1Hz estimate
[32900 values with dtype=float32]
range_ocean_qual_20_plrm_ku
(time_20_c)
float32
...
long_name :
quality flag for the 'ocean' altimeter range : 20 Hz Plrm Ku band
flag_values :
[0 1]
flag_meanings :
Yes No
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Flag indicating the use or not of the 20-Hz estimate of the ocean altimeter range in the computation of 1Hz estimate
[32900 values with dtype=float32]
range_ocean_rms_01_ku
(time_01)
float32
...
long_name :
RMS of the 'ocean' altimeter range : 1 Hz Ku band
units :
m
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Compression of high rate elements is preceded by a detection of outliers. Only valid high-rate values are used to compute this element
[1687 values with dtype=float32]
range_ocean_rms_01_c
(time_01)
float32
...
long_name :
RMS of the 'ocean' altimeter range : 1 Hz C band
units :
m
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Compression of high rate elements is preceded by a detection of outliers. Only valid high-rate values are used to compute this element
[1687 values with dtype=float32]
range_ocean_rms_01_plrm_ku
(time_01)
float32
...
long_name :
RMS of the 'ocean' altimeter range : 1 Hz Plrm Ku band
units :
m
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Compression of high rate elements is preceded by a detection of outliers. Only valid high-rate values are used to compute this element
[1687 values with dtype=float32]
range_ocean_numval_01_ku
(time_01)
float32
...
long_name :
number of valid points used to compute the 'ocean' altimeter range : 1 Hz Ku band
units :
count
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking
[1687 values with dtype=float32]
range_ocean_numval_01_c
(time_01)
float32
...
long_name :
number of valid points used to compute the 'ocean' altimeter range : 1 Hz C band
units :
count
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking
[1687 values with dtype=float32]
range_ocean_numval_01_plrm_ku
(time_01)
float32
...
long_name :
number of valid points used to compute the 'ocean' altimeter range : 1 Hz Plrm Ku band
units :
count
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking
[1687 values with dtype=float32]
interpolated_c_band_range_ocean_20_ku
(time_20_ku)
float64
...
long_name :
C-band interpolated corrected 'ocean' altimeter range : 20 Hz Ku band
units :
m
quality_flag :
range_ocean_qual_20_c
comment :
C-band altimeter range value used to compute the Ku-band altimeter ionospheric correction (iono_cor_alt_20_ku)
[33611 values with dtype=float64]
sig0_ocean_01_ku
(time_01)
float32
...
long_name :
corrected 'ocean' backscatter coefficient : 1 Hz Ku band
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : AGC instrumental errors correction (agc_cor_20_plrm_ku), internal calibration correction (sig0_cal_20_plrm_ku), modeled instrumental errors correction (mod_instr_cor_sig0_01_plrm_ku), atmospheric attenuation correction (atm_cor_sig0_01_plrm_ku) and system bias.
[32900 values with dtype=float32]
sig0_ocean_qual_01_ku
(time_01)
float32
...
long_name :
quality flag for the 'ocean' backscatter coefficient: 1 Hz Ku band
flag_values :
[0 1]
flag_meanings :
Good Bad
[1687 values with dtype=float32]
sig0_ocean_qual_01_c
(time_01)
float32
...
long_name :
quality flag for the 'ocean' backscatter coefficient: 1 Hz C band
flag_values :
[0 1]
flag_meanings :
Good Bad
[1687 values with dtype=float32]
sig0_ocean_qual_01_plrm_ku
(time_01)
float32
...
long_name :
quality flag for the 'ocean' backscatter coefficient: 1 Hz Plrm Ku band
flag_values :
[0 1]
flag_meanings :
Good Bad
[1687 values with dtype=float32]
sig0_ocean_qual_20_ku
(time_20_ku)
float32
...
long_name :
quality flag for the 'ocean' backscatter coefficient: 20 Hz Ku band
flag_values :
[0 1]
flag_meanings :
Yes No
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Flag indicating the use or not of the 20-Hz estimate of the 'ocean' backscatter coefficient in the computation of 1Hz estimate
[33611 values with dtype=float32]
sig0_ocean_qual_20_c
(time_20_c)
float32
...
long_name :
quality flag for the 'ocean' backscatter coefficient: 20 Hz C band
flag_values :
[0 1]
flag_meanings :
Yes No
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Flag indicating the use or not of the 20-Hz estimate of the 'ocean' backscatter coefficient in the computation of 1Hz estimate
[32900 values with dtype=float32]
sig0_ocean_qual_20_plrm_ku
(time_20_c)
float32
...
long_name :
quality flag for the 'ocean' backscatter coefficient: 20 Hz Plrm Ku band
flag_values :
[0 1]
flag_meanings :
Yes No
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Flag indicating the use or not of the 20-Hz estimate of the 'ocean' backscatter coefficient in the computation of 1Hz estimate
[32900 values with dtype=float32]
sig0_ocean_rms_01_ku
(time_01)
float32
...
long_name :
RMS of the 'ocean' backscatter coefficient: 1 Hz Ku band
units :
dB
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Compression of high rate elements is preceded by a detection of outliers. Only valid high-rate values are used to compute this element
[1687 values with dtype=float32]
sig0_ocean_rms_01_c
(time_01)
float32
...
long_name :
RMS of the 'ocean' backscatter coefficient: 1 Hz C band
units :
dB
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Compression of high rate elements is preceded by a detection of outliers. Only valid high-rate values are used to compute this element
[1687 values with dtype=float32]
sig0_ocean_rms_01_plrm_ku
(time_01)
float32
...
long_name :
RMS of the 'ocean' backscatter coefficient: 1 Hz Plrm Ku band
units :
dB
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Compression of high rate elements is preceded by a detection of outliers. Only valid high-rate values are used to compute this element
[1687 values with dtype=float32]
sig0_ocean_numval_01_ku
(time_01)
float32
...
long_name :
number of valid points used to compute the 'ocean' backscatter coefficient: 1 Hz Ku band
units :
count
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking.
[1687 values with dtype=float32]
sig0_ocean_numval_01_c
(time_01)
float32
...
long_name :
number of valid points used to compute the 'ocean' backscatter coefficient: 1 Hz C band
units :
count
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking.
[1687 values with dtype=float32]
sig0_ocean_numval_01_plrm_ku
(time_01)
float32
...
long_name :
number of valid points used to compute the 'ocean' backscatter coefficient: 1 Hz Plrm Ku band
units :
count
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking.
[1687 values with dtype=float32]
swh_ocean_01_ku
(time_01)
float32
...
long_name :
corrected 'ocean' significant waveheight : 1 Hz Ku band
units :
m
standard_name :
sea_surface_wave_significant_height
quality_flag :
quality_swh_ocean_01_ku
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : modeled instrumental errors correction and system bias.
[1687 values with dtype=float32]
swh_ocean_01_c
(time_01)
float32
...
long_name :
corrected 'ocean' significant waveheight : 1 Hz C band
units :
m
standard_name :
sea_surface_wave_significant_height
quality_flag :
swh_ocean_qual_01_c
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : modeled instrumental errors correction and system bias.
[1687 values with dtype=float32]
swh_ocean_01_plrm_ku
(time_01)
float32
...
long_name :
corrected 'ocean' significant waveheight : 1 Hz Plrm Ku band
units :
m
standard_name :
sea_surface_wave_significant_height
quality_flag :
quality_swh_ocean_01_plrm_ku
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : modeled instrumental errors correction and system bias.
[1687 values with dtype=float32]
swh_ocean_20_ku
(time_20_ku)
float32
...
long_name :
corrected 'ocean' significant waveheight : 20 Hz Ku band
units :
m
standard_name :
sea_surface_wave_significant_height
quality_flag :
swh_ocean_qual_20_ku
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : modeled instrumental errors correction (mod_instr_cor_swh_01_ku) and system bias.
[33611 values with dtype=float32]
swh_ocean_20_c
(time_20_c)
float32
...
long_name :
corrected 'ocean' significant waveheight : 20 Hz C band
units :
m
standard_name :
sea_surface_wave_significant_height
quality_flag :
swh_ocean_qual_20_c
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : modeled instrumental errors correction (mod_instr_cor_swh_01_c) and system bias.
[32900 values with dtype=float32]
swh_ocean_20_plrm_ku
(time_20_c)
float32
...
long_name :
corrected 'ocean' significant waveheight : 20 Hz Plrm Ku band
units :
m
standard_name :
sea_surface_wave_significant_height
quality_flag :
swh_ocean_qual_20_plrm_ku
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : modeled instrumental errors correction (mod_instr_cor_swh_01_plrm_ku) and system bias.
[32900 values with dtype=float32]
swh_ocean_qual_01_ku
(time_01)
float32
...
long_name :
quality flag for the 'ocean' significant waveheight: 1 Hz Ku band
flag_values :
[0 1]
flag_meanings :
Good Bad
[1687 values with dtype=float32]
swh_ocean_qual_01_c
(time_01)
float32
...
long_name :
quality flag for the 'ocean' significant waveheight: 1 Hz C band
flag_values :
[0 1]
flag_meanings :
Good Bad
[1687 values with dtype=float32]
swh_ocean_qual_01_plrm_ku
(time_01)
float32
...
long_name :
quality flag for the 'ocean' significant waveheight: 1 Hz Plrm Ku band
flag_values :
[0 1]
flag_meanings :
Good Bad
[1687 values with dtype=float32]
swh_ocean_qual_20_ku
(time_20_ku)
float32
...
long_name :
quality flag for the 'ocean' significant waveheight: 20 Hz Ku band
flag_values :
[0 1]
flag_meanings :
Yes No
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Flag indicating the use or not of the 20-Hz estimate of the 'ocean' significant waveheight in the computation of 1Hz estimate
[33611 values with dtype=float32]
swh_ocean_qual_20_c
(time_20_c)
float32
...
long_name :
quality flag for the 'ocean' significant waveheight: 20 Hz C band
flag_values :
[0 1]
flag_meanings :
Yes No
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Flag indicating the use or not of the 20-Hz estimate of the 'ocean' significant waveheight in the computation of 1Hz estimate
[32900 values with dtype=float32]
swh_ocean_qual_20_plrm_ku
(time_20_c)
float32
...
long_name :
quality flag for the 'ocean' significant waveheight: 20 Hz Plrm Ku band
flag_values :
[0 1]
flag_meanings :
Yes No
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Flag indicating the use or not of the 20-Hz estimate of the 'ocean' significant waveheight in the computation of 1Hz estimate
[32900 values with dtype=float32]
swh_ocean_rms_01_ku
(time_01)
float32
...
long_name :
RMS of the 'ocean' significant waveheight: 1 Hz Ku band
units :
m
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Compression of high rate elements is preceded by a detection of outliers. Only valid high-rate values are used to compute this element
[1687 values with dtype=float32]
swh_ocean_rms_01_c
(time_01)
float32
...
long_name :
RMS of the 'ocean' significant waveheight: 1 Hz C band
units :
m
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Compression of high rate elements is preceded by a detection of outliers. Only valid high-rate values are used to compute this element
[1687 values with dtype=float32]
swh_ocean_rms_01_plrm_ku
(time_01)
float32
...
long_name :
RMS of the 'ocean' significant waveheight: 1 Hz Plrm Ku band
units :
m
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Compression of high rate elements is preceded by a detection of outliers. Only valid high-rate values are used to compute this element
[1687 values with dtype=float32]
swh_ocean_numval_01_ku
(time_01)
float32
...
long_name :
number of valid points used to compute the 'ocean' significant waveheight: 1 Hz Ku band
units :
count
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking.
[1687 values with dtype=float32]
swh_ocean_numval_01_c
(time_01)
float32
...
long_name :
number of valid points used to compute the 'ocean' significant waveheight: 1 Hz C band
units :
count
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking.
[1687 values with dtype=float32]
swh_ocean_numval_01_plrm_ku
(time_01)
float32
...
long_name :
number of valid points used to compute the 'ocean' significant waveheight: 1 Hz Plrm Ku band
units :
count
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking.
[1687 values with dtype=float32]
number_of_iterations_ocean_20_ku
(time_20_ku)
float32
...
long_name :
Number of iterations / 'ocean' retracking : 20 Hz Ku band
units :
count
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking
[33611 values with dtype=float32]
number_of_iterations_ocean_20_c
(time_20_c)
float32
...
long_name :
Number of iterations / 'ocean' retracking : 20 Hz C band
units :
count
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking
[32900 values with dtype=float32]
number_of_iterations_ocean_20_plrm_ku
(time_20_c)
float32
...
long_name :
Number of iterations / 'ocean' retracking : 20 Hz Plrm Ku band
units :
count
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking
[32900 values with dtype=float32]
mqe_ocean_20_ku
(time_20_ku)
float64
...
long_name :
Mean quadratic error between waveform and model / 'ocean' retracking : 20 Hz Ku band
units :
count
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking
[33611 values with dtype=float64]
mqe_ocean_20_c
(time_20_c)
float64
...
long_name :
Mean quadratic error between waveform and model / 'ocean' retracking : 20 Hz C band
units :
count
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking
[32900 values with dtype=float64]
mqe_ocean_20_plrm_ku
(time_20_c)
float64
...
long_name :
Mean quadratic error between waveform and model / 'ocean' retracking : 20 Hz Plrm Ku band
units :
count
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking
[32900 values with dtype=float64]
ssha_01_ku
(time_01)
float32
...
long_name :
sea surface height anomaly : 1 Hz Ku band
units :
m
quality_flag :
quality_ssha_01_ku
standard_name :
sea_surface_height_above_sea_level
comment :
altitude of satellite (alt_01) - Ku band corrected ocean altimeter range (range_ocean_01_ku) - filtered altimeter ionospheric correction on Ku band (iono_cor_alt_filtered_01_ku) - model dry tropospheric correction (mod_dry_tropo_cor_zero_altitude_01) - radiometer wet tropospheric correction (rad_wet_tropo_cor_01_ku) - sea state bias correction in Ku band (sea_state_bias_01_ku) -solid earth tide height (solid_earth_tide_01) - geocentric ocean tide height solution 2 = FES (ocean_tide_sol2_01) - geocentric pole tide height (pole_tide_01) - inverted barometer height correction (inv_bar_cor_01) - high frequency fluctuations of the sea surface topography (hf_fluct_cor_01) - mean sea surface (mean_sea_surf_sol1_01) - internal tide (l_internal_tide_sol1_01) - ocean tide non equilibrium long period component (ocean_tide_non_eq_01)
source :
SRAL
institution :
TAS
[1687 values with dtype=float32]
ssha_01_plrm_ku
(time_01)
float32
...
long_name :
sea surface height anomaly : 1 Hz PLRM Ku band
units :
m
quality_flag :
quality_ssha_01_plrm_ku
standard_name :
sea_surface_height_above_sea_level
comment :
altitude of satellite (alt_01) - Ku band corrected ocean altimeter range (range_ocean_01_plrm_ku) - filtered altimeter ionospheric correction on Ku band (iono_cor_alt_01_filtered_plrm_ku) - model dry tropospheric correction (mod_dry_tropo_cor_zero_altitude_01) - radiometer wet tropospheric correction (rad_wet_tropo_cor_01_plrm_ku) - sea state bias correction in Ku band (sea_state_bias_01_plrm_ku) -solid earth tide height (solid_earth_tide_01) - geocentric ocean tide height solution 2 = FES (ocean_tide_sol2_01) - geocentric pole tide height (pole_tide_01) - inverted barometer height correction (inv_bar_cor_01) - high frequency fluctuations of the sea surface topography (hf_fluct_cor_01) - mean sea surface (mean_sea_surf_sol1_01) - internal tide (l_internal_tide_sol1_01) - ocean tide non equilibrium long period component (ocean_tide_non_eq_01)
source :
SRAL
institution :
TAS
[1687 values with dtype=float32]
ssha_20_ku
(time_20_ku)
float32
...
long_name :
sea surface height anomaly : 20 Hz Ku band
units :
m
standard_name :
sea_surface_height_above_sea_level
comment :
altitude of satellite (alt_20_ku) - Ku band corrected ocean altimeter range (range_ocean_20_ku) - filtered altimeter ionospheric correction on Ku band (iono_cor_alt_filtered_01_ku) - model dry tropospheric correction (mod_dry_tropo_cor_zero_altitude_01) - radiometer wet tropospheric correction (rad_wet_tropo_cor_01_ku) - sea state bias correction in Ku band (sea_state_bias_01_ku) - solid earth tide height (solid_earth_tide_01) - geocentric ocean tide height solution 2 = FES (ocean_tide_sol2_01) - geocentric pole tide height (pole_tide_01) - inverted barometer height correction (inv_bar_cor_01) - high frequency fluctuations of the sea surface topography (hf_fluct_cor_01) - mean sea surface (mean_sea_surf_sol1_20_ku) - internal tide (l_internal_tide_sol1_01) - ocean tide non equilibrium long period component (ocean_tide_non_eq_01)
source :
SRAL
institution :
TAS
[33611 values with dtype=float32]
ssha_20_plrm_ku
(time_20_c)
float32
...
long_name :
sea surface height anomaly : 20 Hz Plrm Ku band
units :
m
standard_name :
sea_surface_height_above_sea_level
comment :
altitude of satellite (alt_20_c) - Ku band corrected ocean altimeter range (range_ocean_20_plrm_ku) - filtered altimeter ionospheric correction on Ku band (iono_cor_alt_filtered_01_plrm_ku) - model dry tropospheric correction (mod_dry_tropo_cor_zero_altitude_01) - radiometer wet tropospheric correction (rad_wet_tropo_cor_01_plrm_ku) - sea state bias correction in Ku band (sea_state_bias_01_plrm_ku) - solid earth tide height (solid_earth_tide_01) - geocentric ocean tide height solution 2 = FES (ocean_tide_sol2_01) - geocentric pole tide height (pole_tide_01) - inverted barometer height correction (inv_bar_cor_01) - high frequency fluctuations of the sea surface topography (hf_fluct_cor_01) - mean sea surface (mean_sea_surf_sol1_20_c) - internal tide (l_internal_tide_sol1_01) - ocean tide non equilibrium long period component (ocean_tide_non_eq_01)
source :
SRAL
institution :
TAS
[32900 values with dtype=float32]
quality_swh_ocean_01_ku
(time_01)
float32
...
long_name :
Quality flag for significant wave height (SWH): 1 Hz SAR Ku band
flag_values :
[0 1]
flag_meanings :
Good Bad
comment :
Quality flag for 'normal' conditions. The previous quality flag is still available at 'swh_ocean_qual_01_ku', but not recommended to use.
[1687 values with dtype=float32]
quality_swh_ocean_01_plrm_ku
(time_01)
float32
...
long_name :
Quality flag for significant wave height (SWH): 1 Hz PLRM Ku band
flag_values :
[0 1]
flag_meanings :
Good Bad
comment :
Quality flag for 'normal' conditions. The previous quality flag is still available at 'swh_ocean_qual_01_plrm_ku', but not recommended to use.
[1687 values with dtype=float32]
quality_ssha_01_ku
(time_01)
float32
...
long_name :
Quality flag for sea surface height anomaly (SSHA): 1 Hz SAR Ku band
flag_values :
[0 1]
flag_meanings :
good bad
comment :
Quality flag for 'normal' conditions
[1687 values with dtype=float32]
quality_ssha_01_plrm_ku
(time_01)
float32
...
long_name :
Quality flag for sea surface height anomaly (SSHA): 1 Hz PLRM Ku band
flag_values :
[0 1]
flag_meanings :
good bad
comment :
Quality flag for 'normal' conditions
[1687 values with dtype=float32]
quality_wind_speed_alt_01_ku
(time_01)
float32
...
long_name :
Quality flag for altimeter wind speed: 1 Hz SAR Ku band
flag_values :
[0 1]
flag_meanings :
Good Bad
comment :
Quality flag for 'normal' conditions
[1687 values with dtype=float32]
quality_wind_speed_alt_01_plrm_ku
(time_01)
float32
...
long_name :
Quality flag for altimeter wind speed: 1 Hz PLRM Ku band
flag_values :
[0 1]
flag_meanings :
Good Bad
comment :
Quality flag for 'normal' conditions
[1687 values with dtype=float32]
quality_wind_speed_alt_2p_01_ku
(time_01)
float32
...
long_name :
Quality flag for altimeter wind speed (2-parameter): 1 Hz SAR Ku band
flag_values :
[0 1]
flag_meanings :
Good Bad
comment :
Quality flag for 'normal' conditions
[1687 values with dtype=float32]
quality_wind_speed_alt_2p_01_plrm_ku
(time_01)
float32
...
long_name :
Quality flag for altimeter wind speed (2-parameter): 1 Hz PLRM Ku band
flag_values :
[0 1]
flag_meanings :
Good Bad
comment :
Quality flag for 'normal' conditions
[1687 values with dtype=float32]
range_ocog_20_ku
(time_20_ku)
float64
...
long_name :
corrected ocog altimeter range : 20 Hz Ku band
units :
m
comment :
LRM mode; SAR mode :ocog retracking. Instrumental corrections included : USO drift correction (uso_cor_20_ku), internal path correction (int_path_cor_20_ku), distance antenna-COG
[33611 values with dtype=float64]
range_ocog_20_c
(time_20_c)
float64
...
long_name :
corrected ocog altimeter range : 20 Hz C band
units :
m
comment :
LRM mode; SAR mode :ocog retracking. Instrumental corrections included : USO drift correction (uso_cor_20_c), internal path correction (int_path_cor_20_c), distance antenna-COG
[32900 values with dtype=float64]
sig0_ocog_20_ku
(time_20_ku)
float32
...
long_name :
corrected ocog backscatter coefficient : 20 Hz Ku band
LRM mode : ice sheet (CFI) retracking, SAR mode : ice sheet margin retracking. Instrumental corrections included : AGC instrumental errors correction (agc_cor_20_c) and internal calibration correction (sig0_cal_20_c)
[32900 values with dtype=float32]
elevation_ice_sheet_20_ku
(time_20_ku)
float64
...
long_name :
corrected 'ice-sheet' altimeter elevation : 20 Hz Ku band
units :
m
comment :
LRM/PLRM modes : ice sheet (CFI) retracking, SAR mode : ice sheet margin retracking. Instrumental corrections included : USO drift correction (uso_cor_[x1]_[x2]), internal path correction (int_path_cor_[x1]_[x2]), distance antenna-COG (cog_cor_[x1]_[x2]) and Doppler slope correction (dop_slope_cor_[x1]_[x2])Geophysical corrections included: GIM-derived ionospheric correction on Ku band (iono_cor_gim_[x1]_ku), model dry tropospheric correction (mod_dry_tropo_cor_meas_altitude_[x1]_[x2]), model wet tropospheric correction (mod_wet_tropo_cor_meas_altitude_[x1]_[x2]), solid earth tide height (solid_earth_tide_[x1]_[x2]), geocentric ocean tide height solution 2 = FES (ocean_tide_sol2_[x1]_[x2], on ocean/semi-enclosed seas only) , geocentric pole tide height (pole_tide_[x1]_[x2]) , ocean loading tide solution 2 = FES (load_tide_sol2_[x1]_[x2], on land only) inverted barometer height correction (inv_bar_cor_[x1] on ocean/semi-enclosed seas only) , high frequency fluctuations of the sea surface topography (hf_fluct_cor_[x1], on ocean/semi-enclosed seas only). A height slope correction is applied.
[33611 values with dtype=float64]
elevation_ocog_20_ku
(time_20_ku)
float64
...
long_name :
corrected altimeter elevation from OCOG (ice-1) retracker : 20 Hz Ku band
units :
m
comment :
LRM mode : OCOG (ice-1) retracking, SAR mode : OCOG (ice-1) retracking. Instrumental corrections included : USO drift correction (uso_cor_[x1]_[x2]), internal path correction (int_path_cor_[x1]_[x2]), distance antenna-COG (cog_cor_[x1]_[x2]) and Doppler slope correction (dop_slope_cor_[x1]_[x2]). Geophysical corrections included: GIM-derived ionospheric correction on Ku band (iono_cor_gim_[x1]_ku), model dry tropospheric correction (mod_dry_tropo_cor_meas_altitude_[x1]_[x2]), model wet tropospheric correction (mod_wet_tropo_cor_meas_altitude_[x1]_[x2]), solid earth tide height (solid_earth_tide_[x1]_[x2]), geocentric ocean tide height solution 2 = FES (ocean_tide_sol2_[x1]_[x2], on ocean/semi-enclosed seas only) , geocentric pole tide height (pole_tide_[x1]_[x2]) , ocean loading tide solution 2 = FES (load_tide_sol2_[x1]_[x2], on land only) inverted barometer height correction (inv_bar_cor_[x1] on ocean/semi-enclosed seas only) , high frequency fluctuations of the sea surface topography (hf_fluct_cor_[x1], on ocean/semi-enclosed seas only). A height slope correction is applied.
[33611 values with dtype=float64]
range_ice_20_ku
(time_20_ku)
float64
...
long_name :
corrected 'ice' altimeter range : 20 Hz Ku band
units :
m
comment :
LRM mode only : ice (erf) retracking. Instrumental corrections included : USO drift correction (uso_cor_20_ku), internal path correction (int_path_cor_20_ku), distance antenna-COG and Doppler correction (dop_cor_20_ku)
[33611 values with dtype=float64]
range_ice_20_c
(time_20_c)
float64
...
long_name :
corrected 'ice' altimeter range : 20 Hz C band
units :
m
comment :
LRM mode only : ice (erf) retracking. Instrumental corrections included : USO drift correction (uso_cor_20_c), internal path correction (int_path_cor_20_c), distance antenna-COG and Doppler correction (dop_cor_20_c)
[32900 values with dtype=float64]
range_ice_20_plrm_ku
(time_20_c)
float64
...
long_name :
corrected 'ice' altimeter range : 20 Hz Plrm Ku band
units :
m
comment :
LRM mode only : ice (erf) retracking. Instrumental corrections included : USO drift correction (uso_cor_20_c), internal path correction (int_path_cor_20_plrm_ku), distance antenna-COG and Doppler correction (dop_cor_20_plrm_ku)
[32900 values with dtype=float64]
sig0_ice_20_ku
(time_20_ku)
float32
...
long_name :
corrected 'ice' backscatter coefficient : 20 Hz Ku band
SAR mode only : sea-ice margin retracking. Instrumental corrections included : AGC instrumental errors correction (agc_cor_20_ku) and internal calibration correction (sig0_cal_20_ku)
[33611 values with dtype=float32]
sea_ice_sea_surf_20_ku
(time_20_ku)
float64
...
long_name :
'sea ice' sea surface height : 20 Hz Ku band
units :
m
comment :
SAR mode only : sea surface height above the geoid(land)/elipsoid(ocean), calculated from altitude (alt_20_ku) - sea ice range (range_sea_ice_20_ku from the sea-ice retracker), corrected for instrumental and geophysical corrections. Instrumental corrections included : USO drift correction (uso_cor_20_ku), internal path correction (int_path_cor_20_ku), distance antenna-COG (cog_cor_01) and Doppler slope correction (dop_slope_cor_20_ku available on land only). Geophysical corrections included: GIM-derived ionospheric correction on Ku band (iono_cor_gim_[x1]_ku), model dry tropospheric correction (mod_dry_tropo_cor_meas_altitude_[x1]_[x2]), model wet tropospheric correction (mod_wet_tropo_cor_meas_altitude_[x1]_[x2]), solid earth tide height (solid_earth_tide_[x1]_[x2]), geocentric ocean tide height solution 2 = FES (ocean_tide_sol2_[x1]_[x2], on ocean/semi-enclosed seas only) , geocentric pole tide height (pole_tide_[x1]_[x2]) , ocean loading tide solution 2 = FES (load_tide_sol2_[x1]_[x2], on land only) inverted barometer height correction (inv_bar_cor_[x1] on ocean/semi-enclosed seas only) , high frequency fluctuations of the sea surface topography (hf_fluct_cor_[x1], on ocean/semi-enclosed seas only).
[33611 values with dtype=float64]
sea_ice_ssha_20_ku
(time_20_ku)
float64
...
long_name :
'sea ice' sea surface height anomaly : 20 Hz Ku band
units :
m
comment :
SAR mode only : calculated from the sea_ice_sea_surf_20_ku minus the mean sea surface (solution 1).
[33611 values with dtype=float64]
int_sea_ice_ssha_20_ku
(time_20_ku)
float64
...
long_name :
interpolated 'sea ice' sea surface height anomaly : 20 Hz Ku band
units :
m
comment :
SAR mode only : estimation of the height of the sea surface that would be present in the absence of sea ice, interpolated from the SSHA between leads in the sea-ice.
[33611 values with dtype=float64]
freeboard_20_ku
(time_20_ku)
float64
...
long_name :
freeboard : 20 Hz Ku band
units :
m
comment :
SAR mode only : For records identified as containing sea-ice, the difference between the calculated surface height anomaly and interpolated sea-surface is used to estimate the freeboard.
[33611 values with dtype=float64]
surf_type_class_20_ku
(time_20_ku)
float32
...
long_name :
altimeter-derived surface type classification: 20 Hz Ku band
flag_values :
[0 1 2 3]
flag_meanings :
open_ocean sea_ice lead unclassified
[33611 values with dtype=float32]
net_instr_cor_range_20_ku
(time_20_ku)
float64
...
long_name :
Net instrumental correction on the altimeter range : 20 Hz Ku band
units :
m
comment :
Sum of distance antenna-COG, USO drift correction (uso_cor_20_ku), internal path correction (int_path_cor_20_ku), L2 Doppler correction update (dop_cor_20_ku - dop_cor_l1b_20_ku),modeled instrumental errors correction (mod_instr_cor_range_01_ku) and system bias
[33611 values with dtype=float64]
net_instr_cor_range_20_c
(time_20_c)
float64
...
long_name :
Net instrumental correction on the altimeter range : 20 Hz C band
units :
m
comment :
Sum of distance antenna-COG, USO drift correction (uso_cor_20_c), internal path correction (int_path_cor_20_c), L2 Doppler correction update (dop_cor_20_c - dop_cor_l1b_20_c),modeled instrumental errors correction (mod_instr_cor_range_01_c) and system bias
[32900 values with dtype=float64]
net_instr_cor_range_20_plrm_ku
(time_20_c)
float64
...
long_name :
Net instrumental correction on the altimeter range : 20 Hz Plrm Ku band
units :
m
comment :
Sum of distance antenna-COG, USO drift correction (uso_cor_20_c), internal path correction (int_path_cor_20_plrm_ku), L2 Doppler correction update (dop_cor_20_plrm_ku - dop_cor_l1b_20_plrm_ku),modeled instrumental errors correction (mod_instr_cor_range_01_plrm_ku) and system bias
[32900 values with dtype=float64]
net_instr_cor_sig0_20_ku
(time_20_ku)
float32
...
long_name :
Net instrumental correction on the backscatter coefficient: 20 Hz Ku band
units :
dB
comment :
Sum of AGC instrumental errors correction (agc_cor_20_ku), internal calibration correction (sig0_cal_20_ku), modeled instrumental errors correction (mod_instr_cor_sig0_01_ku) and system bias.
[33611 values with dtype=float32]
net_instr_cor_sig0_20_c
(time_20_c)
float32
...
long_name :
Net instrumental correction on the backscatter coefficient: 20 Hz C band
units :
dB
comment :
Sum of AGC instrumental errors correction (agc_cor_20_c), internal calibration correction (sig0_cal_20_c), modeled instrumental errors correction (mod_instr_cor_sig0_01_c) and system bias.
[32900 values with dtype=float32]
net_instr_cor_sig0_20_plrm_ku
(time_20_c)
float32
...
long_name :
Net instrumental correction on the backscatter coefficient: 20 Hz Plrm Ku band
units :
dB
comment :
Sum of AGC instrumental errors correction (agc_cor_20_plrm_ku), internal calibration correction (sig0_cal_20_plrm_ku), modeled instrumental errors correction (mod_instr_cor_sig0_01_plrm_ku) and system bias.
[32900 values with dtype=float32]
net_instr_cor_swh_20_ku
(time_20_ku)
float32
...
long_name :
Net instrumental correction on the significant waveheight: 20 Hz Ku band
units :
m
comment :
Sum of modeled instrumental errors correction (mod_instr_cor_swh_01_ku) and system bias
[33611 values with dtype=float32]
net_instr_cor_swh_20_c
(time_20_c)
float32
...
long_name :
Net instrumental correction on the significant waveheight: 20 Hz C band
units :
m
comment :
Sum of modeled instrumental errors correction (mod_instr_cor_swh_01_c) and system bias
[32900 values with dtype=float32]
net_instr_cor_swh_20_plrm_ku
(time_20_c)
float32
...
long_name :
Net instrumental correction on the significant waveheight: 20 Hz Plrm Ku band
units :
m
comment :
Sum of modeled instrumental errors correction (mod_instr_cor_swh_01_plrm_ku) and system bias
[32900 values with dtype=float32]
mod_dry_tropo_cor_zero_altitude_01
(time_01)
float32
...
long_name :
model dry tropospheric correction at zero altitude: 1 Hz
units :
m
standard_name :
altimeter_range_correction_due_to_dry_troposphere
comment :
Computed from 3d meteorological fields at zero altitude, at the altimeter time-tag from the interpolation of 2 meteorological fields that surround the altimeter time-tag. A dry tropospheric correction must be added (negative value) to the instrument range to correct this range measurement for dry tropospheric range delays of the radar pulse
source :
European Center for Medium Range Weather Forecasting
institution :
ECMWF
[1687 values with dtype=float32]
mod_dry_tropo_cor_meas_altitude_01
(time_01)
float32
...
long_name :
model dry tropospheric correction at measurement altitude: 1 Hz
units :
m
standard_name :
altimeter_range_correction_due_to_dry_troposphere
comment :
Computed from 3d meteorological fields at measurement altitude, at the altimeter time-tag from the interpolation of 2 meteorological fields that surround the altimeter time-tag. A dry tropospheric correction must be added (negative value) to the instrument range to correct this range measurement for dry tropospheric range delays of the radar pulse
source :
European Center for Medium Range Weather Forecasting
institution :
ECMWF
[1687 values with dtype=float32]
mod_wet_tropo_cor_zero_altitude_01
(time_01)
float32
...
long_name :
model wet tropospheric correction at zero altitude: 1 Hz
units :
m
standard_name :
altimeter_range_correction_due_to_wet_troposphere
comment :
Computed from 3d meteorological fields at zero altitude, at the altimeter time-tag from the interpolation of 2 meteorological fields that surround the altimeter time-tag. A wet tropospheric correction must be added (negative value) to the instrument range to correct this range measurement for wet tropospheric range delays of the radar pulse
source :
European Center for Medium Range Weather Forecasting
institution :
ECMWF
[1687 values with dtype=float32]
mod_wet_tropo_cor_meas_altitude_01
(time_01)
float32
...
long_name :
model wet tropospheric correction at measurement altitude: 1 Hz
units :
m
standard_name :
altimeter_range_correction_due_to_wet_troposphere
comment :
Computed from 3d meteorological fields at measurement altitude, at the altimeter time-tag from the interpolation of 2 meteorological fields that surround the altimeter time-tag. A wet tropospheric correction must be added (negative value) to the instrument range to correct this range measurement for wet tropospheric range delays of the radar pulse
source :
European Center for Medium Range Weather Forecasting
institution :
ECMWF
[1687 values with dtype=float32]
rad_wet_tropo_cor_01_ku
(time_01)
float32
...
long_name :
radiometer wet tropospheric correction: 1 Hz Ku band
units :
m
standard_name :
altimeter_range_correction_due_to_wet_troposphere
comment :
A wet tropospheric correction must be added (negative value) to the instrument range to correct this range measurement for wet tropospheric range delays of the radar pulse. This correction is valid over ocean surfaces only
source :
MWR
institution :
CASA
[1687 values with dtype=float32]
rad_wet_tropo_cor_01_plrm_ku
(time_01)
float32
...
long_name :
radiometer wet tropospheric correction: 1 Hz Plrm Ku band
units :
m
standard_name :
altimeter_range_correction_due_to_wet_troposphere
comment :
A wet tropospheric correction must be added (negative value) to the instrument range to correct this range measurement for wet tropospheric range delays of the radar pulse. This correction is valid over ocean surfaces only
source :
MWR
institution :
CASA
[1687 values with dtype=float32]
rad_wet_tropo_cor_sst_gam_01_ku
(time_01)
float32
...
long_name :
radiometer wet tropospheric correction: 1 Hz Ku band
units :
m
standard_name :
altimeter_range_correction_due_to_wet_troposphere
comment :
Computed at the altimeter time-tag from the radiometer brightness temperatures, the Ku-band backscatter coefficient, the sea surface temperature and the lapse rate (decreasing rate of the atmosphere temperature with altitude). A wet tropospheric correction must be added (negative value) to the instrument range to correct this range measurement for wet tropospheric range delays of the radar pulse
[1687 values with dtype=float32]
rad_wet_tropo_cor_sst_gam_01_plrm_ku
(time_01)
float32
...
long_name :
radiometer wet tropospheric correction: 1 Hz Plrm Ku band
units :
m
standard_name :
altimeter_range_correction_due_to_wet_troposphere
comment :
Computed at the altimeter time-tag from the radiometer brightness temperatures, the Ku-band backscatter coefficient, the sea surface temperature and the lapse rate (decreasing rate of the atmosphere temperature with altitude). A wet tropospheric correction must be added (negative value) to the instrument range to correct this range measurement for wet tropospheric range delays of the radar pulse
[1687 values with dtype=float32]
gpd_wet_tropo_cor_01
(time_01)
float32
...
long_name :
GPD+ wet tropospheric correction: 1 Hz
units :
m
standard_name :
altimeter_range_correction_due_to_wet_troposphere
comment :
Computed at the altimeter time-tag through space-time objective analysis using the GPD+ algorithm, by combining all available observations. The correction is calibrated against the SSMIS data set. A wet tropospheric correction must be added (negative value) to the instrument range to correct this range measurement for the wet tropospheric range delay of the radar pulse. For the time being, this variable is not used to correct the range.
An ionospheric correction must be added (negative value) to the instrument range to correct this range measurement for ionospheric range delays of the radar pulse. This correction is valid over ocean surfaces only
source :
SRAL
institution :
TAS
[1687 values with dtype=float32]
iono_cor_alt_01_plrm_ku
(time_01)
float32
...
long_name :
altimeter ionospheric correction: 1 Hz Plrm Ku Band
units :
m
standard_name :
altimeter_range_correction_due_to_ionosphere
comment :
An ionospheric correction must be added (negative value) to the instrument range to correct this range measurement for ionospheric range delays of the radar pulse. This correction is valid over ocean surfaces only
source :
SRAL
institution :
TAS
[1687 values with dtype=float32]
iono_cor_alt_20_ku
(time_20_ku)
float32
...
long_name :
altimeter ionospheric correction: 20 Hz Ku band
units :
m
standard_name :
altimeter_range_correction_due_to_ionosphere
comment :
An ionospheric correction must be added (negative value) to the instrument range to correct this range measurement for ionospheric range delays of the radar pulse. This correction is valid over ocean surfaces only
source :
SRAL
institution :
TAS
[33611 values with dtype=float32]
iono_cor_alt_20_plrm_ku
(time_20_c)
float32
...
long_name :
altimeter ionospheric correction: 20 Hz Plrm Ku band
units :
m
standard_name :
altimeter_range_correction_due_to_ionosphere
comment :
An ionospheric correction must be added (negative value) to the instrument range to correct this range measurement for ionospheric range delays of the radar pulse. This correction is valid over ocean surfaces only
source :
SRAL
institution :
TAS
[32900 values with dtype=float32]
iono_cor_gim_01_ku
(time_01)
float32
...
long_name :
GIM ionospheric correction: 1 Hz
units :
m
standard_name :
altimeter_range_correction_due_to_ionosphere
comment :
An ionospheric correction must be added (negative value) to the instrument range to correct this range measurement for ionospheric range delays of the radar pulse.
A sea state bias correction must be added (negative value) to the instrument range to correct this range measurement for sea state delays of the radar pulse.
A sea state bias correction must be added (negative value) to the instrument range to correct this range measurement for sea state delays of the radar pulse.
A sea state bias correction must be added (negative value) to the instrument range to correct this range measurement for sea state delays of the radar pulse.
source :
Empirical solution fitted on Jason-2 GDR_C data
institution :
CNES
[1687 values with dtype=float32]
atm_cor_sig0_01_ku
(time_01)
float32
...
long_name :
Atmospheric attenuation correction on the backscatter coefficient: 1 Hz Ku band
units :
dB
[1687 values with dtype=float32]
atm_cor_sig0_01_c
(time_01)
float32
...
long_name :
Atmospheric attenuation correction on the backscatter coefficient: 1 Hz C band
units :
dB
[1687 values with dtype=float32]
atm_cor_sig0_01_plrm_ku
(time_01)
float32
...
long_name :
Atmospheric attenuation correction on the backscatter coefficient: 1 Hz Plrm Ku band
Provided as a correction to the inverted barometer correction (inv_bar_cor_01)
source :
2.1.0
institution :
LEGOS/CLS/CNES
[1687 values with dtype=float32]
hf_fluct_cor_flag_01
(time_01)
float32
...
long_name :
flag indicating the type of dynamic atmospheric correction files used
flag_values :
[0 1 2]
flag_meanings :
forecast_FMO preliminary_PMO precise_RMO
comment :
Flag indicating the type (quality level) of dynamic atmospheric correction files used. If no dynamic correction is available, this field will have the default value (127) and inv_baro_cor instead of dac will be used to compute the sea level anomaly.
Solution 1 corresponds to GOT00.2 model. Includes the corresponding loading tide (load_tide_sol1_01) and equilibrium long-period ocean tide height (ocean_tide_eq_01). The permanent tide (zero frequency) is not included in this parameter because it is included in the geoid and mean sea surface (geoid_01, mean_sea_surf_sol1_01).
Solution 2 corresponds to FES model. Includes the corresponding short-period part of the loading tide (load_tide_sol2_01) and equilibrium long-period ocean tide height (ocean_tide_eq_01). The permanent tide (zero frequency) is not included in this parameter because it is included in the geoid and mean sea surface (geoid_01, mean_sea_surf_sol1_01).
This value has already been added to the two geocentric ocean tide height values recorded in the product (ocean_tide_sol1_01 and ocean_tide_sol2_01). The permanent tide (zero frequency) is not included in this parameter because it is included in the geoid and mean sea surface (geoid_01, mean_sea_surf_sol1_01). It is included as a correction to the sea surface height anomaly (ssha).
source :
Cartwright and Edden [1973] Corrected tables of tidal harmonics - J. Geophys. J. R. Astr. Soc., 33, 253-264.
This parameter is computed as a correction to the parameter ocean_tide_eq_01; it contains the long-period ocean tide and the long-period load tide components. This value can be added to ocean_tide_eq_01 (or ocean_tide_sol1_01, ocean_tide_sol2_01) so that the resulting value models the total non equilibrium ocean tide height.
This value contains the total load tide height (short-period and long-period) for the geocentric ocean tide (solution 2). To get only the pure ocean tide height (solution 2), do: ocean_tide_sol2_01 + ocean_tide_non_eq_01 - load_tide_sol2_01. This value has already been added to the corresponding ocean tide height value recorded in the product (ocean_tide_sol2_01).
source :
FES2014b
institution :
LEGOS/CNES
[1687 values with dtype=float32]
solid_earth_tide_01
(time_01)
float32
...
long_name :
Solid earth tide height : 1 Hz
units :
m
standard_name :
sea_surface_height_amplitude_due_to_earth_tide
comment :
Calculated using Cartwright and Tayler tables and consisting of the second and third degree constituents. The permanent tide (zero frequency) is not included.
source :
Cartwright and Edden [1973] Corrected tables of tidal harmonics - J. Geophys. J. R. Astr. Soc., 33, 253-264.
institution :
[TBD Solid earth tide institution]
[1687 values with dtype=float32]
pole_tide_01
(time_01)
float32
...
long_name :
Geocentric tide height : 1 Hz
units :
m
standard_name :
sea_surface_height_amplitude_due_to_pole_tide
comment :
Deformation of the Earth induced by polar motion, containing all three components, namely, solid, ocean and load parts (Desai et al. 2015, J Geod, 89(12): 1233 - 1243). It is included as a correction to the sea surface height anomaly (ssha).
source :
Wahr-Desai
institution :
CLS
[1687 values with dtype=float32]
internal_tide_sol1_01
(time_01)
float64
...
long_name :
Geocentric internal tide height : 1 Hz
units :
m
comment :
Internal tide prediction from the HRET model. This only contains the so-called static harmonic components. It is included as a correction to the sea surface height anomaly (ssha).
source :
HRET v8.1
institution :
GSFC
[1687 values with dtype=float64]
rain_rate_01
(time_01)
float32
...
long_name :
Rain rate : 1 Hz
units :
mm/h
[1687 values with dtype=float32]
rain_att_01_ku
(time_01)
float32
...
long_name :
Rain attenuation : 1 Hz Ku band
units :
dB
[1687 values with dtype=float32]
rain_att_01_plrm_ku
(time_01)
float32
...
long_name :
Rain attenuation : 1 Hz Plrm Ku band
units :
dB
[1687 values with dtype=float32]
sea_ice_concentration_20_ku
(time_20_ku)
float64
...
long_name :
sea-ice concentration: 20 Hz Ku band
units :
percent
comment :
Derived from a 3-day average of SSM/I daily brightness temperatures or if unavailable a static monthly climatology.
[33611 values with dtype=float64]
sea_ice_concentration_01
(time_01)
float64
...
long_name :
sea-ice concentration: 01 Hz
units :
percent
comment :
Derived by down-scaling sea_ice_concentration_20_ku.
[1687 values with dtype=float64]
snow_density_20_ku
(time_20_ku)
float64
...
long_name :
snow density: 20 Hz Ku band
units :
kg/m^3
[33611 values with dtype=float64]
snow_depth_20_ku
(time_20_ku)
float64
...
long_name :
snow depth: 20 Hz Ku band
units :
m
comment :
Snow depth
[33611 values with dtype=float64]
wind_speed_mod_u_01
(time_01)
float32
...
long_name :
U component of the model wind vector : 1 Hz
units :
m/s
standard_name :
wind_speed
quality_flag :
meteo_map_avail_01
comment :
Computed at the altimeter time-tag from the interpolation of 2 meteorological fields that surround the altimeter time-tag
source :
European Center for Medium Range Weather Forecasting
institution :
ECMWF
[1687 values with dtype=float32]
wind_speed_mod_v_01
(time_01)
float32
...
long_name :
V component of the model wind vector : 1 Hz
units :
m/s
standard_name :
wind_speed
quality_flag :
meteo_map_avail_01
comment :
Computed at the altimeter time-tag from the interpolation of 2 meteorological fields that surround the altimeter time-tag
source :
European Center for Medium Range Weather Forecasting
institution :
ECMWF
[1687 values with dtype=float32]
wind_speed_alt_01_ku
(time_01)
float32
...
long_name :
Altimeter wind speed : 1 Hz Ku band
units :
m/s
standard_name :
wind_speed
quality_flag :
quality_wind_speed_alt_01_ku
comment :
Wind Speed derived from altimeter measurements, based backscatter coefficient (sig0_ocean_01_ku) only, with the following bias applied to sigma0 (algo_bias_wind_speed_sig0_sar_ku_added). Algorithm: Abdalla (2007). Should not be used over land
[1687 values with dtype=float32]
wind_speed_alt_01_plrm_ku
(time_01)
float32
...
long_name :
Altimeter wind speed : 1 Hz Plrm Ku band
units :
m/s
standard_name :
wind_speed
quality_flag :
quality_wind_speed_alt_01_plrm_ku
comment :
Wind Speed derived from altimeter measurements, based backscatter coefficient (sig0_ocean_01_plrm_ku) only, with the following bias applied to sigma0 (algo_bias_wind_speed_sig0_plrm_ku_added). Algorithm: Abdalla (2007). Should not be used over land
[1687 values with dtype=float32]
wind_speed_alt_2p_01_ku
(time_01)
float32
...
long_name :
Altimeter wind speed based on the 2-parameter model : 1 Hz Ku band
units :
m/s
standard_name :
wind_speed
quality_flag :
quality_wind_speed_alt_2p_01_ku
comment :
Wind Speed derived from altimeter measurements, based wave height (swh_ocean_01_ku) and backscatter coefficient (sig0_ocean_01_ku), with the following biases applied to sigma0 (algo_bias_wind_speed_2p_sig0_sar_ku_added) and significant wave height (algo_bias_wind_speed_2p_swh_sar_ku_added). Algorithm: Gourrion (2002) and Collard (2005). Should not be used over land
[1687 values with dtype=float32]
wind_speed_alt_2p_01_plrm_ku
(time_01)
float32
...
long_name :
Altimeter wind speed based on the 2-parameter model : 1 Hz Plrm Ku band
units :
m/s
standard_name :
wind_speed
quality_flag :
quality_wind_speed_alt_2p_01_plrm_ku
comment :
Wind Speed derived from altimeter measurements, based wave height (swh_ocean_01_plrm_ku) and backscatter coefficient (sig0_ocean_01_plrm_ku), with the following biases applied to sigma0 (algo_bias_wind_speed_2p_sig0_plrm_ku_added) and significant wave height (algo_bias_wind_speed_2p_swh_plrm_ku_added). Algorithm: Gourrion (2002) and Collard (2005). Should not be used over land
[1687 values with dtype=float32]
rad_water_vapor_01_ku
(time_01)
float32
...
long_name :
Radiometer water vapor content : 1 Hz Ku band
units :
kg/m^2
standard_name :
atmosphere_water_vapor_content
comment :
Should not be used over land
source :
MWR
institution :
CASA
[1687 values with dtype=float32]
rad_water_vapor_01_plrm_ku
(time_01)
float32
...
long_name :
Radiometer water vapor content : 1 Hz Plrm Ku band
units :
kg/m^2
standard_name :
atmosphere_water_vapor_content
comment :
Should not be used over land
source :
MWR
institution :
CASA
[1687 values with dtype=float32]
rad_liquid_water_01_ku
(time_01)
float32
...
long_name :
Radiometer liquid water content : 1 Hz Ku band
units :
kg/m^2
standard_name :
atmosphere_cloud_liquid_water_content
comment :
Should not be used over land
source :
MWR
institution :
CASA
[1687 values with dtype=float32]
rad_liquid_water_01_plrm_ku
(time_01)
float32
...
long_name :
Radiometer liquid water content : 1 Hz Plrm Ku band
units :
kg/m^2
standard_name :
atmosphere_cloud_liquid_water_content
comment :
Should not be used over land
source :
MWR
institution :
CASA
[1687 values with dtype=float32]
total_electron_content_01
(time_01)
float64
...
long_name :
Altimeter-derived total electron content (TECU) : 1 Hz
units :
count
[1687 values with dtype=float64]
corrected_off_nadir_angle_wf_ocean_01_ku
(time_01)
float32
...
long_name :
Corrected square of the off nadir angle derived from waveforms: 1 Hz Ku band
units :
degrees^2
quality_flag :
val_alt_off_nadir_angle_wf_ocean_01_ku
comment :
This parameter is issued from the ocean retracking in LRM mode and from the ocean/coastal retracking in SAR mode. It accounts for modeled instrumental errors correction (mod_instr_cor_off_nadir_angle_01_ku) and system bias
[1687 values with dtype=float32]
corrected_off_nadir_angle_wf_ocean_01_plrm_ku
(time_01)
float32
...
long_name :
Corrected square of the off nadir angle derived from waveforms: 1 Hz Plrm Ku band
units :
degrees^2
quality_flag :
val_alt_off_nadir_angle_wf_ocean_01_plrm_ku
comment :
This parameter is issued from the ocean retracking in LRM mode and from the ocean/coastal retracking in SAR mode. It accounts for modeled instrumental errors correction (mod_instr_cor_off_nadir_angle_01_plrm_ku) and system bias
[1687 values with dtype=float32]
val_alt_off_nadir_angle_wf_ocean_01_ku
(time_01)
float32
...
long_name :
Validity flag for the square of the off nadir angle derived from waveforms: 1 Hz Ku band
flag_values :
[0 1]
flag_meanings :
Valid Invalid
[1687 values with dtype=float32]
val_alt_off_nadir_angle_wf_ocean_01_plrm_ku
(time_01)
float32
...
long_name :
Validity flag for the square of the off nadir angle derived from waveforms: 1 Hz Plrm Ku band
flag_values :
[0 1]
flag_meanings :
Valid Invalid
[1687 values with dtype=float32]
off_nadir_angle_used_20_ku
(time_20_ku)
float32
...
long_name :
flag indicating the use or not of the 20 Hz estimate of the square of the off-nadir angle in the computation of 1Hz estimate: 20 Hz Ku band
open loop fixed gain state applicable to SAR mode only. Mixed mode means that one or more of the 20 Hz measurements that constitute this 1Hz measurement are acquired in a different mode than the rest of those measurements, this can be checked by inspecting mode_id_20_ku
[1687 values with dtype=float32]
meteo_map_avail_01
(time_01)
float32
...
long_name :
Meteorological map availability: 1 Hz
flag_values :
[0 1 2]
flag_meanings :
2_maps_nominal 1_map_extropolated no_map
comment :
Possible values are: 0 meaning '2 maps, nominal' (six hours apart), 1 meaning '1 map, extrapolation used', 2 meaning 'no map'.
altimeter ionospheric range filtered: 1 Hz Ku Band
units :
m
standard_name :
altimeter_range_correction_due_to_ionosphere
comment :
An ionospheric correction must be added (negative value) to the instrument range to correct this range measurement for ionospheric range delays of the radar pulse. This correction is valid over ocean surfaces only
source :
SRAL
institution :
TAS
[1687 values with dtype=float32]
iono_cor_alt_filtered_01_plrm_ku
(time_01)
float32
...
long_name :
altimeter ionospheric range filtered: 1 Hz Plrm Ku Band
units :
m
standard_name :
altimeter_range_correction_due_to_ionosphere
comment :
An ionospheric correction must be added (negative value) to the instrument range to correct this range measurement for ionospheric range delays of the radar pulse. This correction is valid over ocean surfaces only
There's a huge numbers of variables here, and going into detail on them is beyond the scope of this example.
To demonstrate data access and visualization, we'll plot a significant wave height value, swh_ocean_01_ku.
This is 1HZ data from the KU band of the altimeter.
Significant wave height is "an average measurement of the largest 33% of waves."
In [5]:
importpandasdata=pandas.DataFrame({# Longitude values are between zero and 360, so we remap them to -180 to 180."longitude":(dataset.lon_01.data.ravel()+180)%360-180,"latitude":dataset.lat_01.data.ravel(),"swh":dataset.swh_ocean_01_ku.load().data.ravel(),}).dropna()data
Not very interesting.
Let's try the mean sea surface height stored in mean_sea_surf_sol1_01.
In [13]:
data=pandas.DataFrame({# Longitude values are between zero and 360, so we remap them to -180 to 180."longitude":(dataset.lon_01.data.ravel()+180)%360-180,"latitude":dataset.lat_01.data.ravel(),"ssh":dataset.mean_sea_surf_sol1_01.load().data.ravel(),}).dropna()fig,ax=plt.subplots(subplot_kw=dict(projection=PlateCarree()),figsize=(12,8),)ax.add_geometries(shapely.geometry.shape(item.geometry),crs=PlateCarree(),color="coral",alpha=0.1,)data.plot.scatter(x="longitude",y="latitude",c="ssh",ax=ax,colormap="viridis",marker=".",alpha=0.2,)ax.coastlines();
Let's do the same process, but for the land product, which is very similar to the water product but just processed by a different centre.
We'll use the reduced NetCDF this time, which has the most useful subset of variables.
We'll plot mean_dyn_topo_01, which is the mean dynamic topography.
This Collection provides Sentinel-3 SRAL Level-2 Land Altimetry products, which contain data on land radar altimetry measurements. Each product contains three NetCDF files:
A reduced data file containing a subset of the 1 Hz Ku-band parameters.
A standard data file containing the standard 1 Hz and 20 Hz Ku- and C-band parameters.
An enhanced data file containing the standard 1 Hz and 20 Hz Ku- and C-band parameters along with the waveforms and parameters necessary to reprocess the data.
More information about the product and data processing can be found in the User Guide and Technical Guide.
This Collection contains Level-2 data in NetCDF files from March 2016 to present.
Positive latitude is North latitude, negative latitude is South latitude
[1548 values with dtype=float64]
lon_01
(time_01)
float64
...
long_name :
longitude : 1 Hz
units :
degrees_east
standard_name :
longitude
comment :
East longitude relative to Greenwich meridian
[1548 values with dtype=float64]
UTC_day_01
(time_01)
datetime64[ns]
...
long_name :
day UTC : 1 Hz
[1548 values with dtype=datetime64[ns]]
UTC_sec_01
(time_01)
float64
...
long_name :
Second in the day UTC : 1 Hz
units :
s
[1548 values with dtype=float64]
surf_type_01
(time_01)
float32
...
long_name :
surface type : 1 Hz
flag_values :
[0 1 2 3]
flag_meanings :
ocean_or_semi_enclosed_sea enclosed_sea_or_lake continental_ice land
[1548 values with dtype=float32]
surf_class_01
(time_01)
float32
...
long_name :
surface classification : 01 Hz
flag_values :
[0 1 2 3 4 5 6]
flag_meanings :
open_ocean land continental_water aquatic_vegetation continental_ice_snow floating_ice salted_basin
comment :
Computed from a mask built with MODIS and GlobCover data
[1548 values with dtype=float32]
rad_surf_type_01
(time_01)
float32
...
long_name :
radiometer derived surface type : 1 Hz
flag_values :
[0 1]
flag_meanings :
ocean land
[1548 values with dtype=float32]
alt_01
(time_01)
float64
...
long_name :
altitude of the satellite : 1 Hz
units :
m
standard_name :
height_above_reference_ellipsoid
comment :
Altitude of satellite above the reference ellipsoid
[1548 values with dtype=float64]
orb_alt_rate_01
(time_01)
float32
...
long_name :
orbital altitude rate : 1 Hz
units :
m/s
comment :
The reference surface for the orbital altitude rate is the combined mean_sea_surface/geoid surface. It is used to compute the Doppler correction on the altimeter range
[1548 values with dtype=float32]
range_ocean_01_ku
(time_01)
float64
...
long_name :
corrected 'ocean' altimeter range : 1 Hz Ku band
units :
m
quality_flag :
range_ocean_qual_01_ku
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : USO drift correction, internal path correction, distance antenna-COG, Doppler correction, modeled instrumental errors correction and system bias
[1548 values with dtype=float64]
range_ocean_01_plrm_ku
(time_01)
float64
...
long_name :
corrected 'ocean' altimeter range : 1 Hz Plrm Ku band
units :
m
quality_flag :
range_ocean_qual_01_plrm_ku
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : USO drift correction, internal path correction, distance antenna-COG, Doppler correction, modeled instrumental errors correction and system bias
[1548 values with dtype=float64]
sig0_ocean_01_ku
(time_01)
float32
...
long_name :
corrected 'ocean' backscatter coefficient : 1 Hz Ku band
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : AGC instrumental errors correction, internal calibration correction, modeled instrumental errors correction, atmospheric attenuation correction and system bias.
[1548 values with dtype=float32]
swh_ocean_01_ku
(time_01)
float32
...
long_name :
corrected 'ocean' significant waveheight : 1 Hz Ku band
units :
m
standard_name :
sea_surface_wave_significant_height
quality_flag :
swh_ocean_qual_01_ku
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : modeled instrumental errors correction and system bias.
[1548 values with dtype=float32]
swh_ocean_01_plrm_ku
(time_01)
float32
...
long_name :
corrected 'ocean' significant waveheight : 1 Hz Plrm Ku band
units :
m
standard_name :
sea_surface_wave_significant_height
quality_flag :
swh_ocean_qual_01_plrm_ku
comment :
LRM mode : ocean retracking, SAR mode : ocean/coastal retracking. Instrumental corrections included : modeled instrumental errors correction and system bias.
[1548 values with dtype=float32]
ssha_01_ku
(time_01)
float32
...
long_name :
sea surface height anomaly : 1 Hz Ku band
units :
m
standard_name :
sea_surface_height_above_sea_level
comment :
altitude of satellite (alt_01) - Ku band corrected ocean altimeter range (range_ocean_01_ku) - filtered altimeter ionospheric correction on Ku band (iono_cor_alt_filtered_01_ku) - model dry tropospheric correction (mod_dry_tropo_cor_zero_altitude_01) - radiometer wet tropospheric correction (rad_wet_tropo_cor_01_ku) - sea state bias correction in Ku band (sea_state_bias_01_ku) -solid earth tide height (solid_earth_tide_01) - geocentric ocean tide height solution 2 = FES (ocean_tide_sol2_01) - geocentric pole tide height (pole_tide_01) - inverted barometer height correction (inv_bar_cor_01) - high frequency fluctuations of the sea surface topography (hf_fluct_cor_01 for NTC/STC off line products only) - mean sea surface (mean_sea_surf_sol2_01)
source :
SRAL
institution :
TAS
[1548 values with dtype=float32]
ssha_01_plrm_ku
(time_01)
float32
...
long_name :
sea surface height anomaly : 1 Hz PLRM Ku band
units :
m
standard_name :
sea_surface_height_above_sea_level
comment :
altitude of satellite (alt_01) - Ku band corrected ocean altimeter range (range_ocean_01_plrm_ku) - filtered altimeter ionospheric correction on Ku band (iono_cor_alt_01_filtered_plrm_ku) - model dry tropospheric correction (mod_dry_tropo_cor_zero_altitude_01) - radiometer wet tropospheric correction (rad_wet_tropo_cor_01_plrm_ku) - sea state bias correction in Ku band (sea_state_bias_01_plrm_ku) -solid earth tide height (solid_earth_tide_01) - geocentric ocean tide height solution 2 = FES (ocean_tide_sol2_01) - geocentric pole tide height (pole_tide_01) - inverted barometer height correction (inv_bar_cor_01) - high frequency fluctuations of the sea surface topography (hf_fluct_cor_01 for NTC/STC off line products only) - mean sea surface (mean_sea_surf_sol2_01)
source :
SRAL
institution :
TAS
[1548 values with dtype=float32]
mod_dry_tropo_cor_zero_altitude_01
(time_01)
float32
...
long_name :
model dry tropospheric correction at zero altitude: 1 Hz
units :
m
standard_name :
altimeter_range_correction_due_to_dry_troposphere
comment :
Computed from 3d meteorological fields at zero altitude, at the altimeter time-tag from the interpolation of 2 meteorological fields that surround the altimeter time-tag. A dry tropospheric correction must be added (negative value) to the instrument range to correct this range measurement for dry tropospheric range delays of the radar pulse
source :
European Center for Medium Range Weather Forecasting
institution :
ECMWF
[1548 values with dtype=float32]
mod_dry_tropo_cor_meas_altitude_01
(time_01)
float32
...
long_name :
model dry tropospheric correction at measurement altitude: 1 Hz
units :
m
standard_name :
altimeter_range_correction_due_to_dry_troposphere
comment :
Computed from 3d meteorological fields at measurement altitude, at the altimeter time-tag from the interpolation of 2 meteorological fields that surround the altimeter time-tag. A dry tropospheric correction must be added (negative value) to the instrument range to correct this range measurement for dry tropospheric range delays of the radar pulse
source :
European Center for Medium Range Weather Forecasting
institution :
ECMWF
[1548 values with dtype=float32]
rad_wet_tropo_cor_01_ku
(time_01)
float32
...
long_name :
radiometer wet tropospheric correction: 1 Hz Ku band
units :
m
standard_name :
altimeter_range_correction_due_to_wet_troposphere
comment :
A wet tropospheric correction must be added (negative value) to the instrument range to correct this range measurement for wet tropospheric range delays of the radar pulse. This correction is valid over ocean surfaces only
source :
MWR
institution :
CASA
[1548 values with dtype=float32]
rad_wet_tropo_cor_01_plrm_ku
(time_01)
float32
...
long_name :
radiometer wet tropospheric correction: 1 Hz Plrm Ku band
units :
m
standard_name :
altimeter_range_correction_due_to_wet_troposphere
comment :
A wet tropospheric correction must be added (negative value) to the instrument range to correct this range measurement for wet tropospheric range delays of the radar pulse. This correction is valid over ocean surfaces only
source :
MWR
institution :
CASA
[1548 values with dtype=float32]
iono_cor_alt_01_ku
(time_01)
float32
...
long_name :
altimeter ionospheric correction: 1 Hz Ku Band
units :
m
standard_name :
altimeter_range_correction_due_to_ionosphere
comment :
An ionospheric correction must be added (negative value) to the instrument range to correct this range measurement for ionospheric range delays of the radar pulse. This correction is valid over ocean surfaces only
source :
SRAL
institution :
TAS
[1548 values with dtype=float32]
iono_cor_alt_01_plrm_ku
(time_01)
float32
...
long_name :
altimeter ionospheric correction: 1 Hz Plrm Ku Band
units :
m
standard_name :
altimeter_range_correction_due_to_ionosphere
comment :
An ionospheric correction must be added (negative value) to the instrument range to correct this range measurement for ionospheric range delays of the radar pulse. This correction is valid over ocean surfaces only
A sea state bias correction must be added (negative value) to the instrument range to correct this range measurement for sea state delays of the radar pulse.
source :
Empirical solution fitted on Jason-1 GDR_C data [TBC]
A sea state bias correction must be added (negative value) to the instrument range to correct this range measurement for sea state delays of the radar pulse.
source :
Empirical solution fitted on Jason-1 GDR_C data [TBC]
Solution 1 corresponds to GOT model. Includes the corresponding loading tide (load_tide_sol1_01) and equilibrium long-period ocean tide height (ocean_tide_eq_01). The permanent tide (zero frequency) is not included in this parameter because it is included in the geoid and mean sea surface (geoid_01, mean_sea_surf_sol1_01).
source :
GOT4.8
institution :
GSFC
[1548 values with dtype=float64]
solid_earth_tide_01
(time_01)
float32
...
long_name :
Solid earth tide height : 1 Hz
units :
m
standard_name :
sea_surface_height_amplitude_due_to_earth_tide
comment :
Calculated using Cartwright and Tayler tables and consisting of the second and third degree constituents. The permanent tide (zero frequency) is not included.
source :
Cartwright and Edden [1973] Corrected tables of tidal harmonics - J. Geophys. J. R. Astr. Soc., 33, 253-264.
institution :
[TBD Solid earth tide institution]
[1548 values with dtype=float32]
pole_tide_01
(time_01)
float32
...
long_name :
Geocentric tide height : 1 Hz
units :
m
standard_name :
sea_surface_height_amplitude_due_to_pole_tide
source :
Wahr [1985] Deformation of the Earth induced by polar motion - J. Geophys. Res. (Solid Earth), 90, 9363-9368.
institution :
IERS [TBC]
[1548 values with dtype=float32]
wind_speed_alt_01_ku
(time_01)
float32
...
long_name :
Altimeter wind speed : 1 Hz Ku band
units :
m/s
standard_name :
wind_speed
comment :
Should not be used over land
[1548 values with dtype=float32]
wind_speed_alt_01_plrm_ku
(time_01)
float32
...
long_name :
Altimeter wind speed : 1 Hz Plrm Ku band
units :
m/s
standard_name :
wind_speed
comment :
Should not be used over land
[1548 values with dtype=float32]
rad_water_vapor_01_ku
(time_01)
float32
...
long_name :
Radiometer water vapor content : 1 Hz Ku band
units :
kg/m^2
standard_name :
atmosphere_water_vapor_content
comment :
Should not be used over land
source :
MWR
institution :
CASA
[1548 values with dtype=float32]
rad_water_vapor_01_plrm_ku
(time_01)
float32
...
long_name :
Radiometer water vapor content : 1 Hz Plrm Ku band
units :
kg/m^2
standard_name :
atmosphere_water_vapor_content
comment :
Should not be used over land
source :
MWR
institution :
CASA
[1548 values with dtype=float32]
rad_liquid_water_01_ku
(time_01)
float32
...
long_name :
Radiometer liquid water content : 1 Hz Ku band
units :
kg/m^2
standard_name :
atmosphere_cloud_liquid_water_content
comment :
Should not be used over land
source :
MWR
institution :
CASA
[1548 values with dtype=float32]
rad_liquid_water_01_plrm_ku
(time_01)
float32
...
long_name :
Radiometer liquid water content : 1 Hz Plrm Ku band
units :
kg/m^2
standard_name :
atmosphere_cloud_liquid_water_content
comment :
Should not be used over land
source :
MWR
institution :
CASA
[1548 values with dtype=float32]
instr_op_mode_01
(time_01)
float32
...
long_name :
Instrument operating mode : 1 Hz
flag_values :
[0 1 2]
flag_meanings :
LRM SAR LRM_and_SAR
[1548 values with dtype=float32]
meteo_map_avail_01
(time_01)
float32
...
long_name :
Meteorological map availability: 1 Hz
flag_values :
[0 1 2]
flag_meanings :
2_maps_nominal 1_map_extropolated no_map
comment :
Possible values are: 0 meaning '2 maps, nominal' (six hours apart), 1 meaning '1 map, extrapolation used', 2 meaning 'no map'.
altimeter ionospheric range filtered: 1 Hz Ku Band
units :
m
standard_name :
altimeter_range_correction_due_to_ionosphere
comment :
An ionospheric correction must be added (negative value) to the instrument range to correct this range measurement for ionospheric range delays of the radar pulse. This correction is valid over ocean surfaces only
source :
SRAL
institution :
TAS
[1548 values with dtype=float32]
iono_cor_alt_filtered_01_plrm_ku
(time_01)
float32
...
long_name :
altimeter ionospheric range filtered: 1 Hz Plrm Ku Band
units :
m
standard_name :
altimeter_range_correction_due_to_ionosphere
comment :
An ionospheric correction must be added (negative value) to the instrument range to correct this range measurement for ionospheric range delays of the radar pulse. This correction is valid over ocean surfaces only