Convection initiation in Sierras de Cordoba
Overview
We will look at the 2019-01-29 convective storm near the Sierras de Cordoba
Prerequisites
Concepts |
Importance |
Notes |
---|---|---|
Necessary |
||
Helpful |
Familiarity with metadata structure |
Time to learn: 10 minutes
Imports
Let’s import our required libraries
import act
import xarray as xr
import cmweather
import matplotlib.pyplot as plt
import numpy as np
import pyart
import hvplot.xarray
import holoviews as hv
import glob
import xradar as xd
import cartopy.crs as ccrs
from dask.distributed import Client, LocalCluster
from functools import partial
hv.extension("bokeh")
## You are using the Python ARM Radar Toolkit (Py-ART), an open source
## library for working with weather radar data. Py-ART is partly
## supported by the U.S. Department of Energy as part of the Atmospheric
## Radiation Measurement (ARM) Climate Research Facility, an Office of
## Science user facility.
##
## If you use this software to prepare a publication, please cite:
##
## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119
Dask Cluster
Let’s spin up our local cluster using Dask
client = Client(LocalCluster())
Data acquisition
Then, we can use the Atmospheric Data Community Toolkit ACT to easily download the data. The act.discovery.download_arm_data
module will allow us to download the data directly to our computer. Watch for the data citation! Show some support for ARM’s instrument experts and cite their data if you use it in a publication.
username = "XXXXXX" ## Use your ARM username
token = "XXXXX" ### Use your ARM token (https://sso.arm.gov/arm/login?service=https%3A%2F%2Fadc.arm.gov%2Farmlive%2Flogin%2Fcas)
We are going to analyze data from the C-band Scanning ARM Precipitation Radar CSARP and the Ka-band ARM Zenith Radar KZAR. Data from both sensors can be found at the ARM Data Discovery portal under the porta data tab. Then, we can filter data by date, sensor, and field campaign. Once the desired data is located, we can get the identification. In our case, for the CSARP will be corcsapr2cmacppiM1.c1
and for KZAR corarsclkazr1kolliasM1.c1
# Set the datastream and start/enddates
kzar = 'corarsclkazr1kolliasM1.c1'
csarp = "corcsapr2cmacppiM1.c1"
startdate = '2019-01-29T13:00:00'
enddate = '2019-01-29T20:00:00'
To examine the CACTI domain, we’ll read in one timestep from the LASSO simulations and plot the terrain.
path_staging = "/data/project/ARM_Summer_School_2024_Data/lasso_tutorial/cacti/lasso-cacti" # path on Jupyter
file_list = sorted(glob.glob(f'{path_staging}/20190129/eda09/base/les/subset_d3/corlasso_met_*'))
ds = xr.open_dataset(file_list[50])
ds
<xarray.Dataset> Size: 6GB Dimensions: (Time: 1, south_north: 865, west_east: 750, bottom_top: 149) Coordinates: * Time (Time) datetime64[ns] 8B 2019-01-29T18:30:00 XLONG (south_north, west_east) float32 3MB ... XLAT (south_north, west_east) float32 3MB ... XTIME (Time) float32 4B ... Dimensions without coordinates: south_north, west_east, bottom_top Data variables: (12/52) ITIMESTEP (Time) int32 4B ... MUTOT (Time, south_north, west_east) float32 3MB ... HGT (Time, south_north, west_east) float32 3MB ... HAMSL (Time, bottom_top, south_north, west_east) float32 387MB ... P_HYD (Time, bottom_top, south_north, west_east) float32 387MB ... PRESSURE (Time, bottom_top, south_north, west_east) float32 387MB ... ... ... MULFC (Time, south_north, west_east) float32 3MB ... MULNB (Time, south_north, west_east) float32 3MB ... MULPL (Time, south_north, west_east) float32 3MB ... MUCAPE (Time, south_north, west_east) float32 3MB ... MUCIN (Time, south_north, west_east) float32 3MB ... REFL_10CM_MAX (Time, south_north, west_east) float32 3MB ... Attributes: (12/39) DX: 500.0 DY: 500.0 SIMULATION_START_DATE: 2019-01-29_06:00:00 WEST-EAST_GRID_DIMENSION: 751 SOUTH-NORTH_GRID_DIMENSION: 866 BOTTOM-TOP_GRID_DIMENSION: 150 ... ... doi_isPartOf_lasso-cacti: https://doi.org/10.5439/1905789 doi_isDocumentedBy: https://doi.org/10.2172/1905845 doi_thisFileType: https://doi.org/10.5439/1905819 history: processed by user d3m088 on machine cirrus28... filename_user: corlasso_met_2019012900eda09d3_base_M1.m1.20... filename_storage: corlassomet2019012900eda09d3baseM1.m1.201901...
- Time: 1
- south_north: 865
- west_east: 750
- bottom_top: 149
- Time(Time)datetime64[ns]2019-01-29T18:30:00
array(['2019-01-29T18:30:00.000000000'], dtype='datetime64[ns]')
- XLONG(south_north, west_east)float32...
[648750 values with dtype=float32]
- XLAT(south_north, west_east)float32...
[648750 values with dtype=float32]
- XTIME(Time)float32...
[1 values with dtype=float32]
- ITIMESTEP(Time)int32...
- description :
- WRF timestep number since run start
- units :
[1 values with dtype=int32]
- MUTOT(Time, south_north, west_east)float32...
- description :
- dry air mass in column
- units :
- Pa
- stagger :
[648750 values with dtype=float32]
- HGT(Time, south_north, west_east)float32...
- description :
- Terrain Height
- units :
- m
- stagger :
[648750 values with dtype=float32]
- HAMSL(Time, bottom_top, south_north, west_east)float32...
- description :
- model height - [MSL] (mass grid)
- units :
- m
- stagger :
[96663750 values with dtype=float32]
- P_HYD(Time, bottom_top, south_north, west_east)float32...
- description :
- hydrostatic pressure
- units :
- Pa
- stagger :
[96663750 values with dtype=float32]
- PRESSURE(Time, bottom_top, south_north, west_east)float32...
- description :
- pressure
- units :
- hPa
- stagger :
[96663750 values with dtype=float32]
- ALT(Time, bottom_top, south_north, west_east)float32...
- description :
- inverse density
- units :
- m3 kg-1
- stagger :
[96663750 values with dtype=float32]
- TEMPERATURE(Time, bottom_top, south_north, west_east)float32...
- description :
- temperature
- units :
- K
- stagger :
[96663750 values with dtype=float32]
- THETA(Time, bottom_top, south_north, west_east)float32...
- description :
- potential temperature
- units :
- K
- stagger :
[96663750 values with dtype=float32]
- THETA_E(Time, bottom_top, south_north, west_east)float32...
- description :
- equivalent potential temperature
- units :
- K
- stagger :
[96663750 values with dtype=float32]
- QVAPOR(Time, bottom_top, south_north, west_east)float32...
- description :
- Water vapor mixing ratio
- units :
- kg kg-1
- stagger :
[96663750 values with dtype=float32]
- RH(Time, bottom_top, south_north, west_east)float32...
- description :
- relative humidity
- units :
- %
- stagger :
[96663750 values with dtype=float32]
- UA(Time, bottom_top, south_north, west_east)float32...
- description :
- destaggered u-wind component
- units :
- m s-1
- stagger :
[96663750 values with dtype=float32]
- VA(Time, bottom_top, south_north, west_east)float32...
- description :
- destaggered v-wind component
- units :
- m s-1
- stagger :
[96663750 values with dtype=float32]
- WA(Time, bottom_top, south_north, west_east)float32...
- description :
- destaggered w-wind component
- units :
- m s-1
- stagger :
[96663750 values with dtype=float32]
- UMET(Time, bottom_top, south_north, west_east)float32...
- description :
- earth-relative u-wind component
- units :
- m s-1
- stagger :
[96663750 values with dtype=float32]
- VMET(Time, bottom_top, south_north, west_east)float32...
- description :
- earth-relative v-wind component
- units :
- m s-1
- stagger :
[96663750 values with dtype=float32]
- POTVORT(Time, bottom_top, south_north, west_east)float32...
- description :
- potential vorticity
- units :
- PVU
- stagger :
[96663750 values with dtype=float32]
- PSFC(Time, south_north, west_east)float32...
- description :
- SFC PRESSURE
- units :
- Pa
- stagger :
[648750 values with dtype=float32]
- SLP(Time, south_north, west_east)float32...
- description :
- sea level pressure
- units :
- hPa
- stagger :
[648750 values with dtype=float32]
- Q2(Time, south_north, west_east)float32...
- description :
- QV at 2 M
- units :
- kg kg-1
- stagger :
[648750 values with dtype=float32]
- T2(Time, south_north, west_east)float32...
- description :
- TEMP at 2 M
- units :
- K
- stagger :
[648750 values with dtype=float32]
- TH2(Time, south_north, west_east)float32...
- description :
- POT TEMP at 2 M
- units :
- K
- stagger :
[648750 values with dtype=float32]
- U10(Time, south_north, west_east)float32...
- description :
- U at 10 M
- units :
- m s-1
- stagger :
[648750 values with dtype=float32]
- V10(Time, south_north, west_east)float32...
- description :
- V at 10 M
- units :
- m s-1
- stagger :
[648750 values with dtype=float32]
- UMET10(Time, south_north, west_east)float32...
- description :
- earth-relative 10-m u-wind component
- units :
- m s-1
- stagger :
[648750 values with dtype=float32]
- VMET10(Time, south_north, west_east)float32...
- description :
- earth-relative 10-m v-wind component
- units :
- m s-1
- stagger :
[648750 values with dtype=float32]
- SHEAR_MAG_SFC-TO-1KM(Time, south_north, west_east)float32...
- units :
- m s-1
- stagger :
- description :
- bulk wind-shear magnitude, sfc to 1000.0
[648750 values with dtype=float32]
- SHEAR_DIR_SFC-TO-1KM(Time, south_north, west_east)float32...
- units :
- degrees
- stagger :
- description :
- bulk wind-shear direction, sfc to 1000.0
[648750 values with dtype=float32]
- SHEAR_MAG_SFC-TO-3KM(Time, south_north, west_east)float32...
- units :
- m s-1
- stagger :
- description :
- bulk wind-shear magnitude, sfc to 3000.0
[648750 values with dtype=float32]
- SHEAR_DIR_SFC-TO-3KM(Time, south_north, west_east)float32...
- units :
- degrees
- stagger :
- description :
- bulk wind-shear direction, sfc to 3000.0
[648750 values with dtype=float32]
- SHEAR_MAG_SFC-TO-6KM(Time, south_north, west_east)float32...
- units :
- m s-1
- stagger :
- description :
- bulk wind-shear magnitude, sfc to 6000.0
[648750 values with dtype=float32]
- SHEAR_DIR_SFC-TO-6KM(Time, south_north, west_east)float32...
- units :
- degrees
- stagger :
- description :
- bulk wind-shear direction, sfc to 6000.0
[648750 values with dtype=float32]
- SHEAR_MAG_SFC-TO-9KM(Time, south_north, west_east)float32...
- units :
- m s-1
- stagger :
- description :
- bulk wind-shear magnitude, sfc to 9000.0
[648750 values with dtype=float32]
- SHEAR_DIR_SFC-TO-9KM(Time, south_north, west_east)float32...
- units :
- degrees
- stagger :
- description :
- bulk wind-shear direction, sfc to 9000.0
[648750 values with dtype=float32]
- RAINNC(Time, south_north, west_east)float32...
- description :
- ACCUMULATED TOTAL GRID SCALE PRECIPITATION
- units :
- mm
- stagger :
[648750 values with dtype=float32]
- SNOWNC(Time, south_north, west_east)float32...
- description :
- ACCUMULATED TOTAL GRID SCALE SNOW AND ICE
- units :
- mm
- stagger :
[648750 values with dtype=float32]
- GRAUPELNC(Time, south_north, west_east)float32...
- description :
- ACCUMULATED TOTAL GRID SCALE GRAUPEL
- units :
- mm
- stagger :
[648750 values with dtype=float32]
- SR(Time, south_north, west_east)float32...
- description :
- fraction of frozen precipitation
- units :
- -
- stagger :
[648750 values with dtype=float32]
- MLLCL(Time, south_north, west_east)float32...
- description :
- most-unstable lifting condensation level
- units :
- m
- stagger :
[648750 values with dtype=float32]
- MLLFC(Time, south_north, west_east)float32...
- description :
- most-unstable level of free convection
- units :
- m
- stagger :
[648750 values with dtype=float32]
- MLLNB(Time, south_north, west_east)float32...
- description :
- most-unstable level of neutral buoyancy
- units :
- m
- stagger :
[648750 values with dtype=float32]
- MLLPL(Time, south_north, west_east)float32...
- description :
- most-unstable lifted parcel level
- units :
- m
- stagger :
[648750 values with dtype=float32]
- MLCAPE(Time, south_north, west_east)float32...
- description :
- most-unstable convective available potential energy
- units :
- J kg-1
- stagger :
[648750 values with dtype=float32]
- MLCIN(Time, south_north, west_east)float32...
- description :
- most-unstable convective inhibition
- units :
- J kg-1
- stagger :
[648750 values with dtype=float32]
- MULCL(Time, south_north, west_east)float32...
- description :
- most-unstable lifting condensation level
- units :
- m
- stagger :
[648750 values with dtype=float32]
- MULFC(Time, south_north, west_east)float32...
- description :
- most-unstable level of free convection
- units :
- m
- stagger :
[648750 values with dtype=float32]
- MULNB(Time, south_north, west_east)float32...
- description :
- most-unstable level of neutral buoyancy
- units :
- m
- stagger :
[648750 values with dtype=float32]
- MULPL(Time, south_north, west_east)float32...
- description :
- most-unstable lifted parcel level
- units :
- m
- stagger :
[648750 values with dtype=float32]
- MUCAPE(Time, south_north, west_east)float32...
- description :
- most-unstable convective available potential energy
- units :
- J kg-1
- stagger :
[648750 values with dtype=float32]
- MUCIN(Time, south_north, west_east)float32...
- description :
- most-unstable convective inhibition
- units :
- J kg-1
- stagger :
[648750 values with dtype=float32]
- REFL_10CM_MAX(Time, south_north, west_east)float32...
- description :
- column-maximum radar reflectivity (lambda = 10 cm)
- units :
- dBZ
- stagger :
[648750 values with dtype=float32]
- TimePandasIndex
PandasIndex(DatetimeIndex(['2019-01-29 18:30:00'], dtype='datetime64[ns]', name='Time', freq=None))
- DX :
- 500.0
- DY :
- 500.0
- SIMULATION_START_DATE :
- 2019-01-29_06:00:00
- WEST-EAST_GRID_DIMENSION :
- 751
- SOUTH-NORTH_GRID_DIMENSION :
- 866
- BOTTOM-TOP_GRID_DIMENSION :
- 150
- GRIDTYPE :
- C
- CEN_LAT :
- -32.01111
- CEN_LON :
- -64.23425
- TRUELAT1 :
- -30.0
- TRUELAT2 :
- -60.0
- MOAD_CEN_LAT :
- -32.500015
- STAND_LON :
- -64.728
- POLE_LAT :
- 90.0
- POLE_LON :
- 0.0
- MAP_PROJ :
- 1
- MAP_PROJ_CHAR :
- Lambert Conformal
- run_name :
- eda09_2019012900_base
- model_type :
- WRF
- model_version :
- NCAR V4.3.1 + LASSO modifications
- model_source_repository :
- https://code.arm.gov/lasso/lasso-cacti/lasso-wrf-cacti/
- model_source_git_hash :
- 3e761eac
- subset_source_repository :
- https://code.arm.gov/lasso/lasso-cacti/subsetwrf
- subset_source_git_hash :
- 99902f2
- domain_num :
- 3
- input_source :
- /gpfs/wolf/cli120/world-shared/d3m088/cacti/staged_runs/20190129/eda09/base/les/out_d3
- site_id :
- cor
- platform_id :
- corlasso
- facility_designation :
- M1
- location_description :
- Cloud, Aerosol, and Complex Terrain Interactions (CACTI), Cordoba, Argentina
- data_level :
- m1
- datastream :
- corlasso_sub_met
- contact :
- lasso@arm.gov, LASSO PI: William Gustafson (PNNL, william.gustafson@pnnl.gov), LASSO Co-PI: Andrew Vogelmann (BNL)
- doi_isPartOf_lasso-cacti :
- https://doi.org/10.5439/1905789
- doi_isDocumentedBy :
- https://doi.org/10.2172/1905845
- doi_thisFileType :
- https://doi.org/10.5439/1905819
- history :
- processed by user d3m088 on machine cirrus28.ccs.ornl.gov at 23-Jan-2023 07:15 using subsetwrf.py
- filename_user :
- corlasso_met_2019012900eda09d3_base_M1.m1.20190129.183000.nc
- filename_storage :
- corlassomet2019012900eda09d3baseM1.m1.20190129.183000.nc
We’ll also plot the location of the CSAPR radar using the metadata from one of the radar files
files = sorted(glob.glob('corcsapr2cmacppiM1.c1/*'))
radar = xd.io.open_cfradial1_datatree(files[-6], first_dim="auto")
radar = radar.xradar.georeference()
display(radar)
<xarray.DatasetView> Size: 740B Dimensions: (sweep: 15) Dimensions without coordinates: sweep Data variables: sweep_group_name (sweep) <U10 600B 'sweep_0.0' ... 'sweep_14.0' sweep_fixed_angle (sweep) float32 60B ... latitude float32 4B ... longitude float32 4B ... altitude float32 4B ... time_coverage_start |S32 32B ... time_coverage_end |S32 32B ... volume_number int32 4B ... Attributes: version: 2.0 lite history: created by zsherman on or-condo-c215.ornl.gov at 2020-10-01... references: See CSAPR2 Instrument Handbook institution: United States Department of Energy - Atmospheric Radiation ... source: Atmospheric Radiation Measurement (ARM) program C-band Scan... Conventions: CF/Radial instrument_parameters ARM-1.3 comment: This is highly experimental and initial data. There are man...
<xarray.DatasetView> Size: 0B Dimensions: () Data variables: *empty*
radar_parameters<xarray.DatasetView> Size: 0B Dimensions: () Data variables: *empty*
georeferencing_correction- azimuth: 361
- range: 1100
- time(azimuth)datetime64[ns]2019-01-29T18:30:15.709000 ... 2...
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2019-01-29T18:30:15.709000000', '2019-01-29T18:30:15.779999000', '2019-01-29T18:30:15.850999999', ..., '2019-01-29T18:30:15.516000000', '2019-01-29T18:30:15.577000000', '2019-01-29T18:30:15.648000000'], dtype='datetime64[ns]')
- range(range)float320.0 100.0 ... 1.098e+05 1.099e+05
- long_name :
- Range to measurement volume
- units :
- m
- meters_between_gates :
- 100.0
- meters_to_center_of_first_gate :
- 50.0
- spacing_is_constant :
- True
- standard_name :
- projection_range_coordinate
- axis :
- radial_range_coordinate
array([0.000e+00, 1.000e+02, 2.000e+02, ..., 1.097e+05, 1.098e+05, 1.099e+05], dtype=float32)
- elevation(azimuth)float320.4834 0.4834 ... 0.4834 0.4834
- long_name :
- Elevation angle from horizontal plane
- units :
- degree
- standard_name :
- sensor_to_target_elevation_angle
- axis :
- radial_elevation_coordinate
array([0.483398, 0.483398, 0.483398, ..., 0.483398, 0.483398, 0.483398], dtype=float32)
- azimuth(azimuth)float320.5273 1.593 2.593 ... 358.5 359.5
- long_name :
- Azimuth angle from true north
- units :
- degree
- standard_name :
- sensor_to_target_azimuth_angle
- axis :
- radial_azimuth_coordinate
array([ 0.527344, 1.593018, 2.592773, ..., 357.5583 , 358.53607 , 359.53583 ], dtype=float32)
- latitude()float32-32.13
- long_name :
- Latitude
- units :
- degree_N
- standard_name :
- latitude
- valid_min :
- -90.0
- valid_max :
- 90.0
array(-32.12641, dtype=float32)
- longitude()float32-64.73
- long_name :
- Longitude
- units :
- degree_E
- standard_name :
- longitude
- valid_min :
- -180.0
- valid_max :
- 180.0
array(-64.72837, dtype=float32)
- altitude()float321.141e+03
- long_name :
- Altitude
- units :
- m
- standard_name :
- altitude
array(1141., dtype=float32)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",-32.1264114379883,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",-64.7283706665039,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- unknown
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- -32.12641143798828
- longitude_of_projection_origin :
- -64.7283706665039
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- x(azimuth, range)float320.0 0.9202 1.84 ... -889.2 -890.0
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 0.0000000e+00, 9.2021906e-01, 1.8404381e+00, ..., 1.0093144e+03, 1.0102344e+03, 1.0111542e+03], [ 0.0000000e+00, 2.7795098e+00, 5.5590196e+00, ..., 3.0486211e+03, 3.0513997e+03, 3.0541780e+03], [ 0.0000000e+00, 4.5229301e+00, 9.0458603e+00, ..., 4.9608394e+03, 4.9653608e+03, 4.9698818e+03], ..., [-0.0000000e+00, -4.2595582e+00, -8.5191164e+00, ..., -4.6719673e+03, -4.6762256e+03, -4.6804829e+03], [-0.0000000e+00, -2.5543070e+00, -5.1086140e+00, ..., -2.8016143e+03, -2.8041680e+03, -2.8067209e+03], [-0.0000000e+00, -8.0998236e-01, -1.6199647e+00, ..., -8.8840460e+02, -8.8921436e+02, -8.9002393e+02]], dtype=float32)
- y(azimuth, range)float320.0 99.98 ... 1.098e+05 1.099e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[0.00000000e+00, 9.99787750e+01, 1.99957550e+02, ..., 1.09658688e+05, 1.09758641e+05, 1.09858570e+05], [0.00000000e+00, 9.99443665e+01, 1.99888733e+02, ..., 1.09620953e+05, 1.09720867e+05, 1.09820766e+05], [0.00000000e+00, 9.98806534e+01, 1.99761307e+02, ..., 1.09551070e+05, 1.09650922e+05, 1.09750758e+05], ..., [0.00000000e+00, 9.98922348e+01, 1.99784470e+02, ..., 1.09563773e+05, 1.09663633e+05, 1.09763484e+05], [0.00000000e+00, 9.99503784e+01, 1.99900757e+02, ..., 1.09627539e+05, 1.09727461e+05, 1.09827367e+05], [0.00000000e+00, 9.99797287e+01, 1.99959457e+02, ..., 1.09659734e+05, 1.09759688e+05, 1.09859617e+05]], dtype=float32)
- z(azimuth, range)float321.141e+03 1.142e+03 ... 2.778e+03
- standard_name :
- height_above_ground
- units :
- meters
array([[1141., 1142., 1142., ..., 2774., 2776., 2778.], [1141., 1142., 1142., ..., 2774., 2776., 2778.], [1141., 1142., 1142., ..., 2774., 2776., 2778.], ..., [1141., 1142., 1142., ..., 2774., 2776., 2778.], [1141., 1142., 1142., ..., 2774., 2776., 2778.], [1141., 1142., 1142., ..., 2774., 2776., 2778.]], dtype=float32)
- attenuation_corrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[397100 values with dtype=float32]
- attenuation_corrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1 corrected for rainfall attenuation.
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.73713
[397100 values with dtype=float32]
- attenuation_corrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected reflectivity, horizontal channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[397100 values with dtype=float32]
- censor_mask(azimuth, range)int32...
- long_name :
- Censor Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16 32 64 128 256 512 1024 2048]
- flag_meanings :
- horizontal_snr_below_noise_threshold vertical_snr_below_noise_threshold horizontal_ccor_below_ccor_threshold vertical_ccor_below_ccor_threshold horizontal_sqi_below_sqi1_threshold vertical_sqi_below_sqi1_threshold horizontal_sqi_below_sqi2_threshold vertical_sqi_below_sqi2_threshold horizontal_sigpow_below_sigpow_threshold vertical_sigpow_below_sigpow_threshold urhohv_below_rhohv_threshold censored_by_clutter_micro_suppression
- standard_name :
- radar_quality_mask
[397100 values with dtype=int32]
- classification_mask(azimuth, range)int32...
- long_name :
- Classification Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16]
- flag_meanings :
- second_trip third_trip interference clutter sunspoke
- standard_name :
- radar_quality_mask
[397100 values with dtype=int32]
- copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Copolar correlation coefficient (also known as rhohv)
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[397100 values with dtype=float32]
- differential_phase(azimuth, range)float32...
- long_name :
- Differential propagation phase shift
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[397100 values with dtype=float32]
- differential_reflectivity(azimuth, range)float32...
- long_name :
- Differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[397100 values with dtype=float32]
- differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[397100 values with dtype=float32]
- mean_doppler_velocity(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[397100 values with dtype=float32]
- mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Doppler velocity, vertical channel
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[397100 values with dtype=float32]
- normalized_coherent_power(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI.
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[397100 values with dtype=float32]
- normalized_coherent_power_v(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI, Vertical Channel
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[397100 values with dtype=float32]
- reflectivity(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[397100 values with dtype=float32]
- reflectivity_v(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor, vertical channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[397100 values with dtype=float32]
- signal_to_noise_ratio_copolar_h(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, horizontal channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_h
[397100 values with dtype=float32]
- signal_to_noise_ratio_copolar_v(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, vertical channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_v
[397100 values with dtype=float32]
- specific_attenuation(azimuth, range)float64...
- long_name :
- Specific attenuation
- units :
- dB/km
- standard_name :
- specific_attenuation
- valid_min :
- 0.0
- valid_max :
- 1.0
[397100 values with dtype=float64]
- specific_differential_attenuation(azimuth, range)float64...
- long_name :
- Specific Differential Attenuation
- units :
- dB/km
[397100 values with dtype=float64]
- specific_differential_phase(azimuth, range)float32...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[397100 values with dtype=float32]
- spectral_width(azimuth, range)float32...
- long_name :
- Spectral width
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[397100 values with dtype=float32]
- spectral_width_v(azimuth, range)float32...
- long_name :
- Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[397100 values with dtype=float32]
- uncorrected_copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Uncorrected copolar correlation coefficient
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[397100 values with dtype=float32]
- uncorrected_differential_phase(azimuth, range)float32...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[397100 values with dtype=float32]
- uncorrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Uncorrected Differential Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- radar_differential_reflectivity_hv
[397100 values with dtype=float32]
- uncorrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Uncorrected differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
[397100 values with dtype=float32]
- uncorrected_mean_doppler_velocity_h(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from horizontal channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[397100 values with dtype=float32]
- uncorrected_mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from vertical channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[397100 values with dtype=float32]
- uncorrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Horizontal Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[397100 values with dtype=float32]
- uncorrected_reflectivity_v(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[397100 values with dtype=float32]
- uncorrected_spectral_width_h(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Horizontal Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[397100 values with dtype=float32]
- uncorrected_spectral_width_v(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[397100 values with dtype=float32]
- unthresholded_power_copolar_h(azimuth, range)float32...
- long_name :
- Received copolar power, h channel, without thresholding.
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_h
[397100 values with dtype=float32]
- unthresholded_power_copolar_v(azimuth, range)float32...
- long_name :
- Received copolar power, v channel, without thresholding
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_v
[397100 values with dtype=float32]
- ground_clutter(azimuth, range)int64...
- long_name :
- Clutter mask
- standard_name :
- clutter_mask
- valid_min :
- 0
- valid_max :
- 1
- units :
- 1
- flag_values :
- [0 1]
- flag_meanings :
- no_clutter clutter
[397100 values with dtype=int64]
- clutter_masked_velocity(azimuth, range)float32...
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument, clutter removed
[397100 values with dtype=float32]
- sounding_temperature(azimuth, range)float32...
- long_name :
- Interpolated profile
- standard_name :
- interpolated_profile
- units :
- deg_C
[397100 values with dtype=float32]
- height(azimuth, range)float32...
- long_name :
- Height of radar beam
- standard_name :
- height
- units :
- m
[397100 values with dtype=float32]
- signal_to_noise_ratio(azimuth, range)float32...
- long_name :
- Signal to noise ratio
- units :
- dB
- standard_name :
- signal_to_noise_ratio
[397100 values with dtype=float32]
- velocity_texture(azimuth, range)float64...
- long_name :
- Mean dopper velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[397100 values with dtype=float64]
- gate_id(azimuth, range)int64...
- long_name :
- Classification of dominant scatterer
- units :
- 1
- valid_max :
- 6
- valid_min :
- 0
- flag_values :
- [0 1 2 3 4 5 6]
- flag_meanings :
- multi_trip rain snow no_scatter melting clutter terrain_blockage
[397100 values with dtype=int64]
- partial_beam_blockage(azimuth, range)float64...
- long_name :
- Partial Beam Block Fraction
- units :
- unitless
- standard_name :
- partial_beam_block
- comment :
- Partial beam block fraction due to terrain.
[397100 values with dtype=float64]
- cumulative_beam_blockage(azimuth, range)float64...
- long_name :
- Cumulative Beam Block Fraction
- units :
- unitless
- standard_name :
- cumulative_beam_block
- comment :
- Cumulative beam block fraction due to terrain.
[397100 values with dtype=float64]
- simulated_velocity(azimuth, range)float64...
- long_name :
- Simulated mean doppler velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[397100 values with dtype=float64]
- corrected_velocity(azimuth, range)float32...
- long_name :
- Corrected mean doppler velocity
- standard_name :
- corrected_radial_velocity_of_scatterers_away_from_instrument
- valid_min :
- -82.46
- valid_max :
- 82.46
- units :
- m/s
[397100 values with dtype=float32]
- unfolded_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- long_name :
- Unfolded Differential Phase
[397100 values with dtype=float64]
- corrected_differential_phase(azimuth, range)float64...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
[397100 values with dtype=float64]
- filtered_corrected_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
- long_name :
- Filtered Corrected Differential Phase
[397100 values with dtype=float64]
- corrected_specific_diff_phase(azimuth, range)float64...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[397100 values with dtype=float64]
- filtered_corrected_specific_diff_phase(azimuth, range)float64...
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Filtered Corrected Specific differential phase (KDP)
[397100 values with dtype=float64]
- corrected_differential_reflectivity(azimuth, range)float64...
- long_name :
- Corrected differential reflectivity
- units :
- dB
- standard_name :
- corrected_log_differential_reflectivity_hv
[397100 values with dtype=float64]
- corrected_reflectivity(azimuth, range)float64...
- long_name :
- Corrected reflectivity
- units :
- dBZ
- standard_name :
- corrected_equivalent_reflectivity_factor
[397100 values with dtype=float64]
- height_over_iso0(azimuth, range)float32...
- standard_name :
- height
- long_name :
- Height of radar beam over freezing level
- units :
- m
[397100 values with dtype=float32]
- path_integrated_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Attenuation
[397100 values with dtype=float64]
- path_integrated_differential_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Differential Attenuation
[397100 values with dtype=float64]
- rain_rate_A(azimuth, range)float64...
- long_name :
- rainfall_rate
- units :
- mm/hr
- standard_name :
- rainfall_rate
- valid_min :
- 0.0
- valid_max :
- 400.0
- comment :
- Rain rate calculated from specific_attenuation, R=51.3*specific_attenuation**0.81, note R=0.0 where norm coherent power < 0.4 or rhohv < 0.8
[397100 values with dtype=float64]
- sweep_number()float64...
- long_name :
- Sweep index number 0 based
- units :
- 1
[1 values with dtype=float64]
- sweep_fixed_angle()float32...
- long_name :
- Ray target fixed angle
- units :
- degree
[1 values with dtype=float32]
- sweep_mode()<U6'sector'
array('sector', dtype='<U6')
- prt(azimuth)float32...
- long_name :
- Pulse repetition time
- units :
- s
[361 values with dtype=float32]
- nyquist_velocity(azimuth)float32...
- long_name :
- Unambiguous doppler velocity
- units :
- m/s
- meta_group :
- instrument_parameters
[361 values with dtype=float32]
<xarray.DatasetView> Size: 122MB Dimensions: (azimuth: 361, range: 1100) Coordinates: time (azimuth) datetime64[ns] 3kB ... * range (range) float32 4kB ... elevation (azimuth) float32 1kB ... * azimuth (azimuth) float32 1kB ... latitude float32 4B -32.13 longitude float32 4B -64.73 altitude float32 4B 1.141e+03 crs_wkt int64 8B 0 x (azimuth, range) float32 2MB ... y (azimuth, range) float32 2MB ... z (azimuth, range) float32 2MB ... Data variables: (12/61) attenuation_corrected_differential_reflectivity (azimuth, range) float32 2MB ... attenuation_corrected_differential_reflectivity_lag_1 (azimuth, range) float32 2MB ... attenuation_corrected_reflectivity_h (azimuth, range) float32 2MB ... censor_mask (azimuth, range) int32 2MB ... classification_mask (azimuth, range) int32 2MB ... copol_correlation_coeff (azimuth, range) float32 2MB ... ... ... rain_rate_A (azimuth, range) float64 3MB ... sweep_number float64 8B ... sweep_fixed_angle float32 4B ... sweep_mode <U6 24B 'sector' prt (azimuth) float32 1kB ... nyquist_velocity (azimuth) float32 1kB ...
sweep_0- azimuth: 361
- range: 1100
- time(azimuth)datetime64[ns]2019-01-29T18:30:39.696000 ... 2...
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2019-01-29T18:30:39.696000000', '2019-01-29T18:30:39.768000000', '2019-01-29T18:30:39.833000000', ..., '2019-01-29T18:30:39.500000000', '2019-01-29T18:30:39.562000000', '2019-01-29T18:30:39.634999000'], dtype='datetime64[ns]')
- range(range)float320.0 100.0 ... 1.098e+05 1.099e+05
- long_name :
- Range to measurement volume
- units :
- m
- meters_between_gates :
- 100.0
- meters_to_center_of_first_gate :
- 50.0
- spacing_is_constant :
- True
- standard_name :
- projection_range_coordinate
- axis :
- radial_range_coordinate
array([0.000e+00, 1.000e+02, 2.000e+02, ..., 1.097e+05, 1.098e+05, 1.099e+05], dtype=float32)
- elevation(azimuth)float321.494 1.494 1.494 ... 1.494 1.494
- long_name :
- Elevation angle from horizontal plane
- units :
- degree
- standard_name :
- sensor_to_target_elevation_angle
- axis :
- radial_elevation_coordinate
array([1.494141, 1.494141, 1.494141, ..., 1.494141, 1.494141, 1.494141], dtype=float32)
- azimuth(azimuth)float320.5685 1.588 2.568 ... 358.6 359.6
- long_name :
- Azimuth angle from true north
- units :
- degree
- standard_name :
- sensor_to_target_azimuth_angle
- axis :
- radial_azimuth_coordinate
array([ 0.568542, 1.587524, 2.568054, ..., 357.5583 , 358.56903 , 359.57977 ], dtype=float32)
- latitude()float32-32.13
- long_name :
- Latitude
- units :
- degree_N
- standard_name :
- latitude
- valid_min :
- -90.0
- valid_max :
- 90.0
array(-32.12641, dtype=float32)
- longitude()float32-64.73
- long_name :
- Longitude
- units :
- degree_E
- standard_name :
- longitude
- valid_min :
- -180.0
- valid_max :
- 180.0
array(-64.72837, dtype=float32)
- altitude()float321.141e+03
- long_name :
- Altitude
- units :
- m
- standard_name :
- altitude
array(1141., dtype=float32)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",-32.1264114379883,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",-64.7283706665039,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- unknown
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- -32.12641143798828
- longitude_of_projection_origin :
- -64.7283706665039
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- x(azimuth, range)float320.0 0.9918 1.984 ... -804.6 -805.4
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 0.0000000e+00, 9.9180675e-01, 1.9836129e+00, ..., 1.0875859e+03, 1.0885768e+03, 1.0895677e+03], [ 0.0000000e+00, 2.7690840e+00, 5.5381660e+00, ..., 3.0364954e+03, 3.0392620e+03, 3.0420288e+03], [ 0.0000000e+00, 4.4784737e+00, 8.9569445e+00, ..., 4.9109614e+03, 4.9154360e+03, 4.9199106e+03], ..., [-0.0000000e+00, -4.2582603e+00, -8.5165186e+00, ..., -4.6694824e+03, -4.6737368e+03, -4.6779917e+03], [-0.0000000e+00, -2.4960680e+00, -4.9921346e+00, ..., -2.7371143e+03, -2.7396082e+03, -2.7421021e+03], [-0.0000000e+00, -7.3309886e-01, -1.4661974e+00, ..., -8.0389453e+02, -8.0462701e+02, -8.0535944e+02]], dtype=float32)
- y(azimuth, range)float320.0 99.95 ... 1.097e+05 1.098e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[0.00000000e+00, 9.99476318e+01, 1.99895203e+02, ..., 1.09599609e+05, 1.09699477e+05, 1.09799336e+05], [0.00000000e+00, 9.99141846e+01, 1.99828308e+02, ..., 1.09562938e+05, 1.09662766e+05, 1.09762594e+05], [0.00000000e+00, 9.98521729e+01, 1.99704285e+02, ..., 1.09494938e+05, 1.09594703e+05, 1.09694469e+05], ..., [0.00000000e+00, 9.98618088e+01, 1.99723557e+02, ..., 1.09505500e+05, 1.09605273e+05, 1.09705047e+05], [0.00000000e+00, 9.99213791e+01, 1.99842697e+02, ..., 1.09570828e+05, 1.09670664e+05, 1.09770500e+05], [0.00000000e+00, 9.99498672e+01, 1.99899673e+02, ..., 1.09602062e+05, 1.09701930e+05, 1.09801789e+05]], dtype=float32)
- z(azimuth, range)float321.141e+03 1.143e+03 ... 4.716e+03
- standard_name :
- height_above_ground
- units :
- meters
array([[1141., 1143., 1146., ..., 4708., 4712., 4716.], [1141., 1143., 1146., ..., 4708., 4712., 4716.], [1141., 1143., 1146., ..., 4708., 4712., 4716.], ..., [1141., 1143., 1146., ..., 4708., 4712., 4716.], [1141., 1143., 1146., ..., 4708., 4712., 4716.], [1141., 1143., 1146., ..., 4708., 4712., 4716.]], dtype=float32)
- attenuation_corrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[397100 values with dtype=float32]
- attenuation_corrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1 corrected for rainfall attenuation.
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.73713
[397100 values with dtype=float32]
- attenuation_corrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected reflectivity, horizontal channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[397100 values with dtype=float32]
- censor_mask(azimuth, range)int32...
- long_name :
- Censor Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16 32 64 128 256 512 1024 2048]
- flag_meanings :
- horizontal_snr_below_noise_threshold vertical_snr_below_noise_threshold horizontal_ccor_below_ccor_threshold vertical_ccor_below_ccor_threshold horizontal_sqi_below_sqi1_threshold vertical_sqi_below_sqi1_threshold horizontal_sqi_below_sqi2_threshold vertical_sqi_below_sqi2_threshold horizontal_sigpow_below_sigpow_threshold vertical_sigpow_below_sigpow_threshold urhohv_below_rhohv_threshold censored_by_clutter_micro_suppression
- standard_name :
- radar_quality_mask
[397100 values with dtype=int32]
- classification_mask(azimuth, range)int32...
- long_name :
- Classification Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16]
- flag_meanings :
- second_trip third_trip interference clutter sunspoke
- standard_name :
- radar_quality_mask
[397100 values with dtype=int32]
- copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Copolar correlation coefficient (also known as rhohv)
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[397100 values with dtype=float32]
- differential_phase(azimuth, range)float32...
- long_name :
- Differential propagation phase shift
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[397100 values with dtype=float32]
- differential_reflectivity(azimuth, range)float32...
- long_name :
- Differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[397100 values with dtype=float32]
- differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[397100 values with dtype=float32]
- mean_doppler_velocity(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[397100 values with dtype=float32]
- mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Doppler velocity, vertical channel
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[397100 values with dtype=float32]
- normalized_coherent_power(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI.
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[397100 values with dtype=float32]
- normalized_coherent_power_v(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI, Vertical Channel
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[397100 values with dtype=float32]
- reflectivity(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[397100 values with dtype=float32]
- reflectivity_v(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor, vertical channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[397100 values with dtype=float32]
- signal_to_noise_ratio_copolar_h(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, horizontal channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_h
[397100 values with dtype=float32]
- signal_to_noise_ratio_copolar_v(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, vertical channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_v
[397100 values with dtype=float32]
- specific_attenuation(azimuth, range)float64...
- long_name :
- Specific attenuation
- units :
- dB/km
- standard_name :
- specific_attenuation
- valid_min :
- 0.0
- valid_max :
- 1.0
[397100 values with dtype=float64]
- specific_differential_attenuation(azimuth, range)float64...
- long_name :
- Specific Differential Attenuation
- units :
- dB/km
[397100 values with dtype=float64]
- specific_differential_phase(azimuth, range)float32...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[397100 values with dtype=float32]
- spectral_width(azimuth, range)float32...
- long_name :
- Spectral width
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[397100 values with dtype=float32]
- spectral_width_v(azimuth, range)float32...
- long_name :
- Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[397100 values with dtype=float32]
- uncorrected_copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Uncorrected copolar correlation coefficient
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[397100 values with dtype=float32]
- uncorrected_differential_phase(azimuth, range)float32...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[397100 values with dtype=float32]
- uncorrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Uncorrected Differential Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- radar_differential_reflectivity_hv
[397100 values with dtype=float32]
- uncorrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Uncorrected differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
[397100 values with dtype=float32]
- uncorrected_mean_doppler_velocity_h(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from horizontal channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[397100 values with dtype=float32]
- uncorrected_mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from vertical channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[397100 values with dtype=float32]
- uncorrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Horizontal Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[397100 values with dtype=float32]
- uncorrected_reflectivity_v(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[397100 values with dtype=float32]
- uncorrected_spectral_width_h(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Horizontal Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[397100 values with dtype=float32]
- uncorrected_spectral_width_v(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[397100 values with dtype=float32]
- unthresholded_power_copolar_h(azimuth, range)float32...
- long_name :
- Received copolar power, h channel, without thresholding.
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_h
[397100 values with dtype=float32]
- unthresholded_power_copolar_v(azimuth, range)float32...
- long_name :
- Received copolar power, v channel, without thresholding
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_v
[397100 values with dtype=float32]
- ground_clutter(azimuth, range)int64...
- long_name :
- Clutter mask
- standard_name :
- clutter_mask
- valid_min :
- 0
- valid_max :
- 1
- units :
- 1
- flag_values :
- [0 1]
- flag_meanings :
- no_clutter clutter
[397100 values with dtype=int64]
- clutter_masked_velocity(azimuth, range)float32...
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument, clutter removed
[397100 values with dtype=float32]
- sounding_temperature(azimuth, range)float32...
- long_name :
- Interpolated profile
- standard_name :
- interpolated_profile
- units :
- deg_C
[397100 values with dtype=float32]
- height(azimuth, range)float32...
- long_name :
- Height of radar beam
- standard_name :
- height
- units :
- m
[397100 values with dtype=float32]
- signal_to_noise_ratio(azimuth, range)float32...
- long_name :
- Signal to noise ratio
- units :
- dB
- standard_name :
- signal_to_noise_ratio
[397100 values with dtype=float32]
- velocity_texture(azimuth, range)float64...
- long_name :
- Mean dopper velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[397100 values with dtype=float64]
- gate_id(azimuth, range)int64...
- long_name :
- Classification of dominant scatterer
- units :
- 1
- valid_max :
- 6
- valid_min :
- 0
- flag_values :
- [0 1 2 3 4 5 6]
- flag_meanings :
- multi_trip rain snow no_scatter melting clutter terrain_blockage
[397100 values with dtype=int64]
- partial_beam_blockage(azimuth, range)float64...
- long_name :
- Partial Beam Block Fraction
- units :
- unitless
- standard_name :
- partial_beam_block
- comment :
- Partial beam block fraction due to terrain.
[397100 values with dtype=float64]
- cumulative_beam_blockage(azimuth, range)float64...
- long_name :
- Cumulative Beam Block Fraction
- units :
- unitless
- standard_name :
- cumulative_beam_block
- comment :
- Cumulative beam block fraction due to terrain.
[397100 values with dtype=float64]
- simulated_velocity(azimuth, range)float64...
- long_name :
- Simulated mean doppler velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[397100 values with dtype=float64]
- corrected_velocity(azimuth, range)float32...
- long_name :
- Corrected mean doppler velocity
- standard_name :
- corrected_radial_velocity_of_scatterers_away_from_instrument
- valid_min :
- -82.46
- valid_max :
- 82.46
- units :
- m/s
[397100 values with dtype=float32]
- unfolded_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- long_name :
- Unfolded Differential Phase
[397100 values with dtype=float64]
- corrected_differential_phase(azimuth, range)float64...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
[397100 values with dtype=float64]
- filtered_corrected_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
- long_name :
- Filtered Corrected Differential Phase
[397100 values with dtype=float64]
- corrected_specific_diff_phase(azimuth, range)float64...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[397100 values with dtype=float64]
- filtered_corrected_specific_diff_phase(azimuth, range)float64...
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Filtered Corrected Specific differential phase (KDP)
[397100 values with dtype=float64]
- corrected_differential_reflectivity(azimuth, range)float64...
- long_name :
- Corrected differential reflectivity
- units :
- dB
- standard_name :
- corrected_log_differential_reflectivity_hv
[397100 values with dtype=float64]
- corrected_reflectivity(azimuth, range)float64...
- long_name :
- Corrected reflectivity
- units :
- dBZ
- standard_name :
- corrected_equivalent_reflectivity_factor
[397100 values with dtype=float64]
- height_over_iso0(azimuth, range)float32...
- standard_name :
- height
- long_name :
- Height of radar beam over freezing level
- units :
- m
[397100 values with dtype=float32]
- path_integrated_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Attenuation
[397100 values with dtype=float64]
- path_integrated_differential_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Differential Attenuation
[397100 values with dtype=float64]
- rain_rate_A(azimuth, range)float64...
- long_name :
- rainfall_rate
- units :
- mm/hr
- standard_name :
- rainfall_rate
- valid_min :
- 0.0
- valid_max :
- 400.0
- comment :
- Rain rate calculated from specific_attenuation, R=51.3*specific_attenuation**0.81, note R=0.0 where norm coherent power < 0.4 or rhohv < 0.8
[397100 values with dtype=float64]
- sweep_number()float64...
- long_name :
- Sweep index number 0 based
- units :
- 1
[1 values with dtype=float64]
- sweep_fixed_angle()float32...
- long_name :
- Ray target fixed angle
- units :
- degree
[1 values with dtype=float32]
- sweep_mode()<U6'sector'
array('sector', dtype='<U6')
- prt(azimuth)float32...
- long_name :
- Pulse repetition time
- units :
- s
[361 values with dtype=float32]
- nyquist_velocity(azimuth)float32...
- long_name :
- Unambiguous doppler velocity
- units :
- m/s
- meta_group :
- instrument_parameters
[361 values with dtype=float32]
<xarray.DatasetView> Size: 122MB Dimensions: (azimuth: 361, range: 1100) Coordinates: time (azimuth) datetime64[ns] 3kB ... * range (range) float32 4kB ... elevation (azimuth) float32 1kB ... * azimuth (azimuth) float32 1kB ... latitude float32 4B -32.13 longitude float32 4B -64.73 altitude float32 4B 1.141e+03 crs_wkt int64 8B 0 x (azimuth, range) float32 2MB ... y (azimuth, range) float32 2MB ... z (azimuth, range) float32 2MB ... Data variables: (12/61) attenuation_corrected_differential_reflectivity (azimuth, range) float32 2MB ... attenuation_corrected_differential_reflectivity_lag_1 (azimuth, range) float32 2MB ... attenuation_corrected_reflectivity_h (azimuth, range) float32 2MB ... censor_mask (azimuth, range) int32 2MB ... classification_mask (azimuth, range) int32 2MB ... copol_correlation_coeff (azimuth, range) float32 2MB ... ... ... rain_rate_A (azimuth, range) float64 3MB ... sweep_number float64 8B ... sweep_fixed_angle float32 4B ... sweep_mode <U6 24B 'sector' prt (azimuth) float32 1kB ... nyquist_velocity (azimuth) float32 1kB ...
sweep_1- azimuth: 361
- range: 1100
- time(azimuth)datetime64[ns]2019-01-29T18:31:03.685000 ... 2...
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2019-01-29T18:31:03.685000000', '2019-01-29T18:31:03.755000000', '2019-01-29T18:31:03.815999000', ..., '2019-01-29T18:31:03.482000000', '2019-01-29T18:31:03.552999000', '2019-01-29T18:31:03.614000000'], dtype='datetime64[ns]')
- range(range)float320.0 100.0 ... 1.098e+05 1.099e+05
- long_name :
- Range to measurement volume
- units :
- m
- meters_between_gates :
- 100.0
- meters_to_center_of_first_gate :
- 50.0
- spacing_is_constant :
- True
- standard_name :
- projection_range_coordinate
- axis :
- radial_range_coordinate
array([0.000e+00, 1.000e+02, 2.000e+02, ..., 1.097e+05, 1.098e+05, 1.099e+05], dtype=float32)
- elevation(azimuth)float322.593 2.593 2.593 ... 2.593 2.593
- long_name :
- Elevation angle from horizontal plane
- units :
- degree
- standard_name :
- sensor_to_target_elevation_angle
- axis :
- radial_elevation_coordinate
array([2.592773, 2.592773, 2.592773, ..., 2.592773, 2.592773, 2.592773], dtype=float32)
- azimuth(azimuth)float320.6262 1.604 2.604 ... 358.6 359.6
- long_name :
- Azimuth angle from true north
- units :
- degree
- standard_name :
- sensor_to_target_azimuth_angle
- axis :
- radial_azimuth_coordinate
array([ 0.626221, 1.604004, 2.60376 , ..., 357.58026 , 358.55804 , 359.5578 ], dtype=float32)
- latitude()float32-32.13
- long_name :
- Latitude
- units :
- degree_N
- standard_name :
- latitude
- valid_min :
- -90.0
- valid_max :
- 90.0
array(-32.12641, dtype=float32)
- longitude()float32-64.73
- long_name :
- Longitude
- units :
- degree_E
- standard_name :
- longitude
- valid_min :
- -180.0
- valid_max :
- 180.0
array(-64.72837, dtype=float32)
- altitude()float321.141e+03
- long_name :
- Altitude
- units :
- m
- standard_name :
- altitude
array(1141., dtype=float32)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",-32.1264114379883,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",-64.7283706665039,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- unknown
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- -32.12641143798828
- longitude_of_projection_origin :
- -64.7283706665039
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- x(azimuth, range)float320.0 1.092 2.183 ... -845.9 -846.7
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 0.0000000e+00, 1.0916736e+00, 2.1833458e+00, ..., 1.1968013e+03, 1.1978915e+03, 1.1989817e+03], [ 0.0000000e+00, 2.7959070e+00, 5.5918107e+00, ..., 3.0651516e+03, 3.0679438e+03, 3.0707358e+03], [ 0.0000000e+00, 4.5375919e+00, 9.0751791e+00, ..., 4.9745601e+03, 4.9790918e+03, 4.9836230e+03], ..., [-0.0000000e+00, -4.2170882e+00, -8.4341707e+00, ..., -4.6231919e+03, -4.6274033e+03, -4.6316147e+03], [-0.0000000e+00, -2.5135009e+00, -5.0269990e+00, ..., -2.7555498e+03, -2.7580603e+03, -2.7605701e+03], [-0.0000000e+00, -7.7088952e-01, -1.5417781e+00, ..., -8.4512579e+02, -8.4589575e+02, -8.4666553e+02]], dtype=float32)
- y(azimuth, range)float320.0 99.88 ... 1.096e+05 1.097e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[0.00000000e+00, 9.98782043e+01, 1.99756287e+02, ..., 1.09496430e+05, 1.09596180e+05, 1.09695914e+05], [0.00000000e+00, 9.98450317e+01, 1.99689941e+02, ..., 1.09460062e+05, 1.09559781e+05, 1.09659484e+05], [0.00000000e+00, 9.97810516e+01, 1.99561981e+02, ..., 1.09389914e+05, 1.09489570e+05, 1.09589211e+05], ..., [0.00000000e+00, 9.97951126e+01, 1.99590103e+02, ..., 1.09405336e+05, 1.09505000e+05, 1.09604656e+05], [0.00000000e+00, 9.98525391e+01, 1.99704956e+02, ..., 1.09468289e+05, 1.09568016e+05, 1.09667727e+05], [0.00000000e+00, 9.98811951e+01, 1.99762268e+02, ..., 1.09499703e+05, 1.09599461e+05, 1.09699203e+05]], dtype=float32)
- z(azimuth, range)float321.141e+03 1.145e+03 ... 6.821e+03
- standard_name :
- height_above_ground
- units :
- meters
array([[1141., 1145., 1150., ..., 6809., 6815., 6821.], [1141., 1145., 1150., ..., 6809., 6815., 6821.], [1141., 1145., 1150., ..., 6809., 6815., 6821.], ..., [1141., 1145., 1150., ..., 6809., 6815., 6821.], [1141., 1145., 1150., ..., 6809., 6815., 6821.], [1141., 1145., 1150., ..., 6809., 6815., 6821.]], dtype=float32)
- attenuation_corrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[397100 values with dtype=float32]
- attenuation_corrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1 corrected for rainfall attenuation.
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.73713
[397100 values with dtype=float32]
- attenuation_corrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected reflectivity, horizontal channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[397100 values with dtype=float32]
- censor_mask(azimuth, range)int32...
- long_name :
- Censor Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16 32 64 128 256 512 1024 2048]
- flag_meanings :
- horizontal_snr_below_noise_threshold vertical_snr_below_noise_threshold horizontal_ccor_below_ccor_threshold vertical_ccor_below_ccor_threshold horizontal_sqi_below_sqi1_threshold vertical_sqi_below_sqi1_threshold horizontal_sqi_below_sqi2_threshold vertical_sqi_below_sqi2_threshold horizontal_sigpow_below_sigpow_threshold vertical_sigpow_below_sigpow_threshold urhohv_below_rhohv_threshold censored_by_clutter_micro_suppression
- standard_name :
- radar_quality_mask
[397100 values with dtype=int32]
- classification_mask(azimuth, range)int32...
- long_name :
- Classification Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16]
- flag_meanings :
- second_trip third_trip interference clutter sunspoke
- standard_name :
- radar_quality_mask
[397100 values with dtype=int32]
- copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Copolar correlation coefficient (also known as rhohv)
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[397100 values with dtype=float32]
- differential_phase(azimuth, range)float32...
- long_name :
- Differential propagation phase shift
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[397100 values with dtype=float32]
- differential_reflectivity(azimuth, range)float32...
- long_name :
- Differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[397100 values with dtype=float32]
- differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[397100 values with dtype=float32]
- mean_doppler_velocity(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[397100 values with dtype=float32]
- mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Doppler velocity, vertical channel
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[397100 values with dtype=float32]
- normalized_coherent_power(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI.
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[397100 values with dtype=float32]
- normalized_coherent_power_v(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI, Vertical Channel
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[397100 values with dtype=float32]
- reflectivity(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[397100 values with dtype=float32]
- reflectivity_v(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor, vertical channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[397100 values with dtype=float32]
- signal_to_noise_ratio_copolar_h(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, horizontal channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_h
[397100 values with dtype=float32]
- signal_to_noise_ratio_copolar_v(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, vertical channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_v
[397100 values with dtype=float32]
- specific_attenuation(azimuth, range)float64...
- long_name :
- Specific attenuation
- units :
- dB/km
- standard_name :
- specific_attenuation
- valid_min :
- 0.0
- valid_max :
- 1.0
[397100 values with dtype=float64]
- specific_differential_attenuation(azimuth, range)float64...
- long_name :
- Specific Differential Attenuation
- units :
- dB/km
[397100 values with dtype=float64]
- specific_differential_phase(azimuth, range)float32...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[397100 values with dtype=float32]
- spectral_width(azimuth, range)float32...
- long_name :
- Spectral width
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[397100 values with dtype=float32]
- spectral_width_v(azimuth, range)float32...
- long_name :
- Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[397100 values with dtype=float32]
- uncorrected_copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Uncorrected copolar correlation coefficient
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[397100 values with dtype=float32]
- uncorrected_differential_phase(azimuth, range)float32...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[397100 values with dtype=float32]
- uncorrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Uncorrected Differential Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- radar_differential_reflectivity_hv
[397100 values with dtype=float32]
- uncorrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Uncorrected differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
[397100 values with dtype=float32]
- uncorrected_mean_doppler_velocity_h(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from horizontal channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[397100 values with dtype=float32]
- uncorrected_mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from vertical channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[397100 values with dtype=float32]
- uncorrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Horizontal Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[397100 values with dtype=float32]
- uncorrected_reflectivity_v(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[397100 values with dtype=float32]
- uncorrected_spectral_width_h(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Horizontal Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[397100 values with dtype=float32]
- uncorrected_spectral_width_v(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[397100 values with dtype=float32]
- unthresholded_power_copolar_h(azimuth, range)float32...
- long_name :
- Received copolar power, h channel, without thresholding.
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_h
[397100 values with dtype=float32]
- unthresholded_power_copolar_v(azimuth, range)float32...
- long_name :
- Received copolar power, v channel, without thresholding
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_v
[397100 values with dtype=float32]
- ground_clutter(azimuth, range)int64...
- long_name :
- Clutter mask
- standard_name :
- clutter_mask
- valid_min :
- 0
- valid_max :
- 1
- units :
- 1
- flag_values :
- [0 1]
- flag_meanings :
- no_clutter clutter
[397100 values with dtype=int64]
- clutter_masked_velocity(azimuth, range)float32...
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument, clutter removed
[397100 values with dtype=float32]
- sounding_temperature(azimuth, range)float32...
- long_name :
- Interpolated profile
- standard_name :
- interpolated_profile
- units :
- deg_C
[397100 values with dtype=float32]
- height(azimuth, range)float32...
- long_name :
- Height of radar beam
- standard_name :
- height
- units :
- m
[397100 values with dtype=float32]
- signal_to_noise_ratio(azimuth, range)float32...
- long_name :
- Signal to noise ratio
- units :
- dB
- standard_name :
- signal_to_noise_ratio
[397100 values with dtype=float32]
- velocity_texture(azimuth, range)float64...
- long_name :
- Mean dopper velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[397100 values with dtype=float64]
- gate_id(azimuth, range)int64...
- long_name :
- Classification of dominant scatterer
- units :
- 1
- valid_max :
- 6
- valid_min :
- 0
- flag_values :
- [0 1 2 3 4 5 6]
- flag_meanings :
- multi_trip rain snow no_scatter melting clutter terrain_blockage
[397100 values with dtype=int64]
- partial_beam_blockage(azimuth, range)float64...
- long_name :
- Partial Beam Block Fraction
- units :
- unitless
- standard_name :
- partial_beam_block
- comment :
- Partial beam block fraction due to terrain.
[397100 values with dtype=float64]
- cumulative_beam_blockage(azimuth, range)float64...
- long_name :
- Cumulative Beam Block Fraction
- units :
- unitless
- standard_name :
- cumulative_beam_block
- comment :
- Cumulative beam block fraction due to terrain.
[397100 values with dtype=float64]
- simulated_velocity(azimuth, range)float64...
- long_name :
- Simulated mean doppler velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[397100 values with dtype=float64]
- corrected_velocity(azimuth, range)float32...
- long_name :
- Corrected mean doppler velocity
- standard_name :
- corrected_radial_velocity_of_scatterers_away_from_instrument
- valid_min :
- -82.46
- valid_max :
- 82.46
- units :
- m/s
[397100 values with dtype=float32]
- unfolded_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- long_name :
- Unfolded Differential Phase
[397100 values with dtype=float64]
- corrected_differential_phase(azimuth, range)float64...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
[397100 values with dtype=float64]
- filtered_corrected_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
- long_name :
- Filtered Corrected Differential Phase
[397100 values with dtype=float64]
- corrected_specific_diff_phase(azimuth, range)float64...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[397100 values with dtype=float64]
- filtered_corrected_specific_diff_phase(azimuth, range)float64...
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Filtered Corrected Specific differential phase (KDP)
[397100 values with dtype=float64]
- corrected_differential_reflectivity(azimuth, range)float64...
- long_name :
- Corrected differential reflectivity
- units :
- dB
- standard_name :
- corrected_log_differential_reflectivity_hv
[397100 values with dtype=float64]
- corrected_reflectivity(azimuth, range)float64...
- long_name :
- Corrected reflectivity
- units :
- dBZ
- standard_name :
- corrected_equivalent_reflectivity_factor
[397100 values with dtype=float64]
- height_over_iso0(azimuth, range)float32...
- standard_name :
- height
- long_name :
- Height of radar beam over freezing level
- units :
- m
[397100 values with dtype=float32]
- path_integrated_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Attenuation
[397100 values with dtype=float64]
- path_integrated_differential_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Differential Attenuation
[397100 values with dtype=float64]
- rain_rate_A(azimuth, range)float64...
- long_name :
- rainfall_rate
- units :
- mm/hr
- standard_name :
- rainfall_rate
- valid_min :
- 0.0
- valid_max :
- 400.0
- comment :
- Rain rate calculated from specific_attenuation, R=51.3*specific_attenuation**0.81, note R=0.0 where norm coherent power < 0.4 or rhohv < 0.8
[397100 values with dtype=float64]
- sweep_number()float64...
- long_name :
- Sweep index number 0 based
- units :
- 1
[1 values with dtype=float64]
- sweep_fixed_angle()float32...
- long_name :
- Ray target fixed angle
- units :
- degree
[1 values with dtype=float32]
- sweep_mode()<U6'sector'
array('sector', dtype='<U6')
- prt(azimuth)float32...
- long_name :
- Pulse repetition time
- units :
- s
[361 values with dtype=float32]
- nyquist_velocity(azimuth)float32...
- long_name :
- Unambiguous doppler velocity
- units :
- m/s
- meta_group :
- instrument_parameters
[361 values with dtype=float32]
<xarray.DatasetView> Size: 122MB Dimensions: (azimuth: 361, range: 1100) Coordinates: time (azimuth) datetime64[ns] 3kB ... * range (range) float32 4kB ... elevation (azimuth) float32 1kB ... * azimuth (azimuth) float32 1kB ... latitude float32 4B -32.13 longitude float32 4B -64.73 altitude float32 4B 1.141e+03 crs_wkt int64 8B 0 x (azimuth, range) float32 2MB ... y (azimuth, range) float32 2MB ... z (azimuth, range) float32 2MB ... Data variables: (12/61) attenuation_corrected_differential_reflectivity (azimuth, range) float32 2MB ... attenuation_corrected_differential_reflectivity_lag_1 (azimuth, range) float32 2MB ... attenuation_corrected_reflectivity_h (azimuth, range) float32 2MB ... censor_mask (azimuth, range) int32 2MB ... classification_mask (azimuth, range) int32 2MB ... copol_correlation_coeff (azimuth, range) float32 2MB ... ... ... rain_rate_A (azimuth, range) float64 3MB ... sweep_number float64 8B ... sweep_fixed_angle float32 4B ... sweep_mode <U6 24B 'sector' prt (azimuth) float32 1kB ... nyquist_velocity (azimuth) float32 1kB ...
sweep_2- azimuth: 361
- range: 1100
- time(azimuth)datetime64[ns]2019-01-29T18:31:27.663000 ... 2...
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2019-01-29T18:31:27.663000000', '2019-01-29T18:31:27.734000000', '2019-01-29T18:31:27.804999999', ..., '2019-01-29T18:31:27.470000000', '2019-01-29T18:31:27.531000000', '2019-01-29T18:31:27.601999000'], dtype='datetime64[ns]')
- range(range)float320.0 100.0 ... 1.098e+05 1.099e+05
- long_name :
- Range to measurement volume
- units :
- m
- meters_between_gates :
- 100.0
- meters_to_center_of_first_gate :
- 50.0
- spacing_is_constant :
- True
- standard_name :
- projection_range_coordinate
- axis :
- radial_range_coordinate
array([0.000e+00, 1.000e+02, 2.000e+02, ..., 1.097e+05, 1.098e+05, 1.099e+05], dtype=float32)
- elevation(azimuth)float323.801 3.801 3.801 ... 3.801 3.801
- long_name :
- Elevation angle from horizontal plane
- units :
- degree
- standard_name :
- sensor_to_target_elevation_angle
- axis :
- radial_elevation_coordinate
array([3.80127, 3.80127, 3.80127, ..., 3.80127, 3.80127, 3.80127], dtype=float32)
- azimuth(azimuth)float320.5383 1.593 2.593 ... 358.5 359.5
- long_name :
- Azimuth angle from true north
- units :
- degree
- standard_name :
- sensor_to_target_azimuth_angle
- axis :
- radial_azimuth_coordinate
array([ 0.53833 , 1.593018, 2.592773, ..., 357.56927 , 358.54706 , 359.5468 ], dtype=float32)
- latitude()float32-32.13
- long_name :
- Latitude
- units :
- degree_N
- standard_name :
- latitude
- valid_min :
- -90.0
- valid_max :
- 90.0
array(-32.12641, dtype=float32)
- longitude()float32-64.73
- long_name :
- Longitude
- units :
- degree_E
- standard_name :
- longitude
- valid_min :
- -180.0
- valid_max :
- 180.0
array(-64.72837, dtype=float32)
- altitude()float321.141e+03
- long_name :
- Altitude
- units :
- m
- standard_name :
- altitude
array(1141., dtype=float32)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",-32.1264114379883,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",-64.7283706665039,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- unknown
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- -32.12641143798828
- longitude_of_projection_origin :
- -64.7283706665039
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- x(azimuth, range)float320.0 0.9374 1.875 ... -865.6 -866.4
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 0.0000000e+00, 9.3735582e-01, 1.8747102e+00, ..., 1.0273440e+03, 1.0282798e+03, 1.0292153e+03], [ 0.0000000e+00, 2.7734914e+00, 5.5469790e+00, ..., 3.0397527e+03, 3.0425215e+03, 3.0452898e+03], [ 0.0000000e+00, 4.5131373e+00, 9.0262680e+00, ..., 4.9464082e+03, 4.9509136e+03, 4.9554185e+03], ..., [-0.0000000e+00, -4.2312284e+00, -8.4624500e+00, ..., -4.6374351e+03, -4.6416592e+03, -4.6458828e+03], [-0.0000000e+00, -2.5296586e+00, -5.0593133e+00, ..., -2.7725112e+03, -2.7750364e+03, -2.7775615e+03], [-0.0000000e+00, -7.8910500e-01, -1.5782088e+00, ..., -8.6486078e+02, -8.6564856e+02, -8.6643622e+02]], dtype=float32)
- y(azimuth, range)float320.0 99.76 ... 1.094e+05 1.095e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[0.00000000e+00, 9.97621155e+01, 1.99524078e+02, ..., 1.09339500e+05, 1.09439086e+05, 1.09538672e+05], [0.00000000e+00, 9.97279663e+01, 1.99455780e+02, ..., 1.09302070e+05, 1.09401625e+05, 1.09501172e+05], [0.00000000e+00, 9.96643906e+01, 1.99328629e+02, ..., 1.09232391e+05, 1.09331883e+05, 1.09431367e+05], ..., [0.00000000e+00, 9.96767578e+01, 1.99353363e+02, ..., 1.09245938e+05, 1.09345445e+05, 1.09444945e+05], [0.00000000e+00, 9.97344513e+01, 1.99468750e+02, ..., 1.09309172e+05, 1.09408734e+05, 1.09508289e+05], [0.00000000e+00, 9.97634048e+01, 1.99526657e+02, ..., 1.09340906e+05, 1.09440500e+05, 1.09540078e+05]], dtype=float32)
- z(azimuth, range)float321.141e+03 1.147e+03 ... 9.133e+03
- standard_name :
- height_above_ground
- units :
- meters
array([[1141., 1147., 1154., ..., 9118., 9125., 9133.], [1141., 1147., 1154., ..., 9118., 9125., 9133.], [1141., 1147., 1154., ..., 9118., 9125., 9133.], ..., [1141., 1147., 1154., ..., 9118., 9125., 9133.], [1141., 1147., 1154., ..., 9118., 9125., 9133.], [1141., 1147., 1154., ..., 9118., 9125., 9133.]], dtype=float32)
- attenuation_corrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[397100 values with dtype=float32]
- attenuation_corrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1 corrected for rainfall attenuation.
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.73713
[397100 values with dtype=float32]
- attenuation_corrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected reflectivity, horizontal channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[397100 values with dtype=float32]
- censor_mask(azimuth, range)int32...
- long_name :
- Censor Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16 32 64 128 256 512 1024 2048]
- flag_meanings :
- horizontal_snr_below_noise_threshold vertical_snr_below_noise_threshold horizontal_ccor_below_ccor_threshold vertical_ccor_below_ccor_threshold horizontal_sqi_below_sqi1_threshold vertical_sqi_below_sqi1_threshold horizontal_sqi_below_sqi2_threshold vertical_sqi_below_sqi2_threshold horizontal_sigpow_below_sigpow_threshold vertical_sigpow_below_sigpow_threshold urhohv_below_rhohv_threshold censored_by_clutter_micro_suppression
- standard_name :
- radar_quality_mask
[397100 values with dtype=int32]
- classification_mask(azimuth, range)int32...
- long_name :
- Classification Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16]
- flag_meanings :
- second_trip third_trip interference clutter sunspoke
- standard_name :
- radar_quality_mask
[397100 values with dtype=int32]
- copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Copolar correlation coefficient (also known as rhohv)
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[397100 values with dtype=float32]
- differential_phase(azimuth, range)float32...
- long_name :
- Differential propagation phase shift
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[397100 values with dtype=float32]
- differential_reflectivity(azimuth, range)float32...
- long_name :
- Differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[397100 values with dtype=float32]
- differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[397100 values with dtype=float32]
- mean_doppler_velocity(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[397100 values with dtype=float32]
- mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Doppler velocity, vertical channel
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[397100 values with dtype=float32]
- normalized_coherent_power(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI.
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[397100 values with dtype=float32]
- normalized_coherent_power_v(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI, Vertical Channel
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[397100 values with dtype=float32]
- reflectivity(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[397100 values with dtype=float32]
- reflectivity_v(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor, vertical channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[397100 values with dtype=float32]
- signal_to_noise_ratio_copolar_h(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, horizontal channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_h
[397100 values with dtype=float32]
- signal_to_noise_ratio_copolar_v(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, vertical channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_v
[397100 values with dtype=float32]
- specific_attenuation(azimuth, range)float64...
- long_name :
- Specific attenuation
- units :
- dB/km
- standard_name :
- specific_attenuation
- valid_min :
- 0.0
- valid_max :
- 1.0
[397100 values with dtype=float64]
- specific_differential_attenuation(azimuth, range)float64...
- long_name :
- Specific Differential Attenuation
- units :
- dB/km
[397100 values with dtype=float64]
- specific_differential_phase(azimuth, range)float32...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[397100 values with dtype=float32]
- spectral_width(azimuth, range)float32...
- long_name :
- Spectral width
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[397100 values with dtype=float32]
- spectral_width_v(azimuth, range)float32...
- long_name :
- Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[397100 values with dtype=float32]
- uncorrected_copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Uncorrected copolar correlation coefficient
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[397100 values with dtype=float32]
- uncorrected_differential_phase(azimuth, range)float32...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[397100 values with dtype=float32]
- uncorrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Uncorrected Differential Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- radar_differential_reflectivity_hv
[397100 values with dtype=float32]
- uncorrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Uncorrected differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
[397100 values with dtype=float32]
- uncorrected_mean_doppler_velocity_h(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from horizontal channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[397100 values with dtype=float32]
- uncorrected_mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from vertical channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[397100 values with dtype=float32]
- uncorrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Horizontal Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[397100 values with dtype=float32]
- uncorrected_reflectivity_v(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[397100 values with dtype=float32]
- uncorrected_spectral_width_h(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Horizontal Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[397100 values with dtype=float32]
- uncorrected_spectral_width_v(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[397100 values with dtype=float32]
- unthresholded_power_copolar_h(azimuth, range)float32...
- long_name :
- Received copolar power, h channel, without thresholding.
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_h
[397100 values with dtype=float32]
- unthresholded_power_copolar_v(azimuth, range)float32...
- long_name :
- Received copolar power, v channel, without thresholding
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_v
[397100 values with dtype=float32]
- ground_clutter(azimuth, range)int64...
- long_name :
- Clutter mask
- standard_name :
- clutter_mask
- valid_min :
- 0
- valid_max :
- 1
- units :
- 1
- flag_values :
- [0 1]
- flag_meanings :
- no_clutter clutter
[397100 values with dtype=int64]
- clutter_masked_velocity(azimuth, range)float32...
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument, clutter removed
[397100 values with dtype=float32]
- sounding_temperature(azimuth, range)float32...
- long_name :
- Interpolated profile
- standard_name :
- interpolated_profile
- units :
- deg_C
[397100 values with dtype=float32]
- height(azimuth, range)float32...
- long_name :
- Height of radar beam
- standard_name :
- height
- units :
- m
[397100 values with dtype=float32]
- signal_to_noise_ratio(azimuth, range)float32...
- long_name :
- Signal to noise ratio
- units :
- dB
- standard_name :
- signal_to_noise_ratio
[397100 values with dtype=float32]
- velocity_texture(azimuth, range)float64...
- long_name :
- Mean dopper velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[397100 values with dtype=float64]
- gate_id(azimuth, range)int64...
- long_name :
- Classification of dominant scatterer
- units :
- 1
- valid_max :
- 6
- valid_min :
- 0
- flag_values :
- [0 1 2 3 4 5 6]
- flag_meanings :
- multi_trip rain snow no_scatter melting clutter terrain_blockage
[397100 values with dtype=int64]
- partial_beam_blockage(azimuth, range)float64...
- long_name :
- Partial Beam Block Fraction
- units :
- unitless
- standard_name :
- partial_beam_block
- comment :
- Partial beam block fraction due to terrain.
[397100 values with dtype=float64]
- cumulative_beam_blockage(azimuth, range)float64...
- long_name :
- Cumulative Beam Block Fraction
- units :
- unitless
- standard_name :
- cumulative_beam_block
- comment :
- Cumulative beam block fraction due to terrain.
[397100 values with dtype=float64]
- simulated_velocity(azimuth, range)float64...
- long_name :
- Simulated mean doppler velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[397100 values with dtype=float64]
- corrected_velocity(azimuth, range)float32...
- long_name :
- Corrected mean doppler velocity
- standard_name :
- corrected_radial_velocity_of_scatterers_away_from_instrument
- valid_min :
- -82.46
- valid_max :
- 82.46
- units :
- m/s
[397100 values with dtype=float32]
- unfolded_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- long_name :
- Unfolded Differential Phase
[397100 values with dtype=float64]
- corrected_differential_phase(azimuth, range)float64...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
[397100 values with dtype=float64]
- filtered_corrected_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
- long_name :
- Filtered Corrected Differential Phase
[397100 values with dtype=float64]
- corrected_specific_diff_phase(azimuth, range)float64...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[397100 values with dtype=float64]
- filtered_corrected_specific_diff_phase(azimuth, range)float64...
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Filtered Corrected Specific differential phase (KDP)
[397100 values with dtype=float64]
- corrected_differential_reflectivity(azimuth, range)float64...
- long_name :
- Corrected differential reflectivity
- units :
- dB
- standard_name :
- corrected_log_differential_reflectivity_hv
[397100 values with dtype=float64]
- corrected_reflectivity(azimuth, range)float64...
- long_name :
- Corrected reflectivity
- units :
- dBZ
- standard_name :
- corrected_equivalent_reflectivity_factor
[397100 values with dtype=float64]
- height_over_iso0(azimuth, range)float32...
- standard_name :
- height
- long_name :
- Height of radar beam over freezing level
- units :
- m
[397100 values with dtype=float32]
- path_integrated_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Attenuation
[397100 values with dtype=float64]
- path_integrated_differential_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Differential Attenuation
[397100 values with dtype=float64]
- rain_rate_A(azimuth, range)float64...
- long_name :
- rainfall_rate
- units :
- mm/hr
- standard_name :
- rainfall_rate
- valid_min :
- 0.0
- valid_max :
- 400.0
- comment :
- Rain rate calculated from specific_attenuation, R=51.3*specific_attenuation**0.81, note R=0.0 where norm coherent power < 0.4 or rhohv < 0.8
[397100 values with dtype=float64]
- sweep_number()float64...
- long_name :
- Sweep index number 0 based
- units :
- 1
[1 values with dtype=float64]
- sweep_fixed_angle()float32...
- long_name :
- Ray target fixed angle
- units :
- degree
[1 values with dtype=float32]
- sweep_mode()<U6'sector'
array('sector', dtype='<U6')
- prt(azimuth)float32...
- long_name :
- Pulse repetition time
- units :
- s
[361 values with dtype=float32]
- nyquist_velocity(azimuth)float32...
- long_name :
- Unambiguous doppler velocity
- units :
- m/s
- meta_group :
- instrument_parameters
[361 values with dtype=float32]
<xarray.DatasetView> Size: 122MB Dimensions: (azimuth: 361, range: 1100) Coordinates: time (azimuth) datetime64[ns] 3kB ... * range (range) float32 4kB ... elevation (azimuth) float32 1kB ... * azimuth (azimuth) float32 1kB ... latitude float32 4B -32.13 longitude float32 4B -64.73 altitude float32 4B 1.141e+03 crs_wkt int64 8B 0 x (azimuth, range) float32 2MB ... y (azimuth, range) float32 2MB ... z (azimuth, range) float32 2MB ... Data variables: (12/61) attenuation_corrected_differential_reflectivity (azimuth, range) float32 2MB ... attenuation_corrected_differential_reflectivity_lag_1 (azimuth, range) float32 2MB ... attenuation_corrected_reflectivity_h (azimuth, range) float32 2MB ... censor_mask (azimuth, range) int32 2MB ... classification_mask (azimuth, range) int32 2MB ... copol_correlation_coeff (azimuth, range) float32 2MB ... ... ... rain_rate_A (azimuth, range) float64 3MB ... sweep_number float64 8B ... sweep_fixed_angle float32 4B ... sweep_mode <U6 24B 'sector' prt (azimuth) float32 1kB ... nyquist_velocity (azimuth) float32 1kB ...
sweep_3- azimuth: 360
- range: 1100
- time(azimuth)datetime64[ns]2019-01-29T18:31:51.647000 ... 2...
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2019-01-29T18:31:51.647000000', '2019-01-29T18:31:51.719000000', '2019-01-29T18:31:51.789999999', ..., '2019-01-29T18:31:51.453999000', '2019-01-29T18:31:51.516000000', '2019-01-29T18:31:51.585999999'], dtype='datetime64[ns]')
- range(range)float320.0 100.0 ... 1.098e+05 1.099e+05
- long_name :
- Range to measurement volume
- units :
- m
- meters_between_gates :
- 100.0
- meters_to_center_of_first_gate :
- 50.0
- spacing_is_constant :
- True
- standard_name :
- projection_range_coordinate
- axis :
- radial_range_coordinate
array([0.000e+00, 1.000e+02, 2.000e+02, ..., 1.097e+05, 1.098e+05, 1.099e+05], dtype=float32)
- elevation(azimuth)float325.087 5.076 5.076 ... 5.098 5.098
- long_name :
- Elevation angle from horizontal plane
- units :
- degree
- standard_name :
- sensor_to_target_elevation_angle
- axis :
- radial_elevation_coordinate
array([5.08667 , 5.075684, 5.075684, ..., 5.097656, 5.097656, 5.097656], dtype=float32)
- azimuth(azimuth)float320.5164 1.571 2.582 ... 358.5 359.5
- long_name :
- Azimuth angle from true north
- units :
- degree
- standard_name :
- sensor_to_target_azimuth_angle
- axis :
- radial_azimuth_coordinate
array([ 0.516357, 1.571045, 2.581787, ..., 357.5473 , 358.5251 , 359.52484 ], dtype=float32)
- latitude()float32-32.13
- long_name :
- Latitude
- units :
- degree_N
- standard_name :
- latitude
- valid_min :
- -90.0
- valid_max :
- 90.0
array(-32.12641, dtype=float32)
- longitude()float32-64.73
- long_name :
- Longitude
- units :
- degree_E
- standard_name :
- longitude
- valid_min :
- -180.0
- valid_max :
- 180.0
array(-64.72837, dtype=float32)
- altitude()float321.141e+03
- long_name :
- Altitude
- units :
- m
- standard_name :
- altitude
array(1141., dtype=float32)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",-32.1264114379883,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",-64.7283706665039,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- unknown
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- -32.12641143798828
- longitude_of_projection_origin :
- -64.7283706665039
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- x(azimuth, range)float320.0 0.8975 1.795 ... -905.7 -906.6
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 0.0000000e+00, 8.9753079e-01, 1.7950599e+00, ..., 9.8341260e+02, 9.8430786e+02, 9.8520325e+02], [ 0.0000000e+00, 2.7305267e+00, 5.4610481e+00, ..., 2.9918088e+03, 2.9945330e+03, 2.9972568e+03], [ 0.0000000e+00, 4.4862733e+00, 8.9725380e+00, ..., 4.9155615e+03, 4.9200376e+03, 4.9245127e+03], ..., [-0.0000000e+00, -4.2619772e+00, -8.5239468e+00, ..., -4.6697803e+03, -4.6740317e+03, -4.6782837e+03], [-0.0000000e+00, -2.5634236e+00, -5.1268425e+00, ..., -2.8087021e+03, -2.8112593e+03, -2.8138167e+03], [-0.0000000e+00, -8.2589626e-01, -1.6517911e+00, ..., -9.0492133e+02, -9.0574524e+02, -9.0656915e+02]], dtype=float32)
- y(azimuth, range)float320.0 99.59 ... 1.092e+05 1.093e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[0.00000000e+00, 9.95886459e+01, 1.99177109e+02, ..., 1.09117961e+05, 1.09217305e+05, 1.09316648e+05], [0.00000000e+00, 9.95569534e+01, 1.99113724e+02, ..., 1.09083492e+05, 1.09182812e+05, 1.09282133e+05], [0.00000000e+00, 9.94932938e+01, 1.98986404e+02, ..., 1.09013750e+05, 1.09113008e+05, 1.09212258e+05], ..., [0.00000000e+00, 9.94997482e+01, 1.98999313e+02, ..., 1.09020281e+05, 1.09119539e+05, 1.09218805e+05], [0.00000000e+00, 9.95579910e+01, 1.99115799e+02, ..., 1.09084094e+05, 1.09183414e+05, 1.09282734e+05], [0.00000000e+00, 9.95875626e+01, 1.99174942e+02, ..., 1.09116500e+05, 1.09215844e+05, 1.09315195e+05]], dtype=float32)
- z(azimuth, range)float321.141e+03 1.15e+03 ... 1.161e+04
- standard_name :
- height_above_ground
- units :
- meters
array([[ 1141., 1150., 1158., ..., 11569., 11579., 11589.], [ 1141., 1150., 1158., ..., 11548., 11558., 11568.], [ 1141., 1150., 1158., ..., 11548., 11558., 11568.], ..., [ 1141., 1150., 1158., ..., 11590., 11600., 11610.], [ 1141., 1150., 1158., ..., 11590., 11600., 11610.], [ 1141., 1150., 1158., ..., 11590., 11600., 11610.]], dtype=float32)
- attenuation_corrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- attenuation_corrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1 corrected for rainfall attenuation.
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.73713
[396000 values with dtype=float32]
- attenuation_corrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected reflectivity, horizontal channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- censor_mask(azimuth, range)int32...
- long_name :
- Censor Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16 32 64 128 256 512 1024 2048]
- flag_meanings :
- horizontal_snr_below_noise_threshold vertical_snr_below_noise_threshold horizontal_ccor_below_ccor_threshold vertical_ccor_below_ccor_threshold horizontal_sqi_below_sqi1_threshold vertical_sqi_below_sqi1_threshold horizontal_sqi_below_sqi2_threshold vertical_sqi_below_sqi2_threshold horizontal_sigpow_below_sigpow_threshold vertical_sigpow_below_sigpow_threshold urhohv_below_rhohv_threshold censored_by_clutter_micro_suppression
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- classification_mask(azimuth, range)int32...
- long_name :
- Classification Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16]
- flag_meanings :
- second_trip third_trip interference clutter sunspoke
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Copolar correlation coefficient (also known as rhohv)
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- differential_phase(azimuth, range)float32...
- long_name :
- Differential propagation phase shift
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- differential_reflectivity(azimuth, range)float32...
- long_name :
- Differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- mean_doppler_velocity(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Doppler velocity, vertical channel
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- normalized_coherent_power(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI.
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- normalized_coherent_power_v(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI, Vertical Channel
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- reflectivity(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- reflectivity_v(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor, vertical channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_h(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, horizontal channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_h
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_v(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, vertical channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_v
[396000 values with dtype=float32]
- specific_attenuation(azimuth, range)float64...
- long_name :
- Specific attenuation
- units :
- dB/km
- standard_name :
- specific_attenuation
- valid_min :
- 0.0
- valid_max :
- 1.0
[396000 values with dtype=float64]
- specific_differential_attenuation(azimuth, range)float64...
- long_name :
- Specific Differential Attenuation
- units :
- dB/km
[396000 values with dtype=float64]
- specific_differential_phase(azimuth, range)float32...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float32]
- spectral_width(azimuth, range)float32...
- long_name :
- Spectral width
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- spectral_width_v(azimuth, range)float32...
- long_name :
- Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Uncorrected copolar correlation coefficient
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- uncorrected_differential_phase(azimuth, range)float32...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Uncorrected Differential Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Uncorrected differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_h(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from horizontal channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from vertical channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Horizontal Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- uncorrected_reflectivity_v(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- uncorrected_spectral_width_h(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Horizontal Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_spectral_width_v(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- unthresholded_power_copolar_h(azimuth, range)float32...
- long_name :
- Received copolar power, h channel, without thresholding.
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_h
[396000 values with dtype=float32]
- unthresholded_power_copolar_v(azimuth, range)float32...
- long_name :
- Received copolar power, v channel, without thresholding
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_v
[396000 values with dtype=float32]
- ground_clutter(azimuth, range)int64...
- long_name :
- Clutter mask
- standard_name :
- clutter_mask
- valid_min :
- 0
- valid_max :
- 1
- units :
- 1
- flag_values :
- [0 1]
- flag_meanings :
- no_clutter clutter
[396000 values with dtype=int64]
- clutter_masked_velocity(azimuth, range)float32...
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument, clutter removed
[396000 values with dtype=float32]
- sounding_temperature(azimuth, range)float32...
- long_name :
- Interpolated profile
- standard_name :
- interpolated_profile
- units :
- deg_C
[396000 values with dtype=float32]
- height(azimuth, range)float32...
- long_name :
- Height of radar beam
- standard_name :
- height
- units :
- m
[396000 values with dtype=float32]
- signal_to_noise_ratio(azimuth, range)float32...
- long_name :
- Signal to noise ratio
- units :
- dB
- standard_name :
- signal_to_noise_ratio
[396000 values with dtype=float32]
- velocity_texture(azimuth, range)float64...
- long_name :
- Mean dopper velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- gate_id(azimuth, range)int64...
- long_name :
- Classification of dominant scatterer
- units :
- 1
- valid_max :
- 6
- valid_min :
- 0
- flag_values :
- [0 1 2 3 4 5 6]
- flag_meanings :
- multi_trip rain snow no_scatter melting clutter terrain_blockage
[396000 values with dtype=int64]
- partial_beam_blockage(azimuth, range)float64...
- long_name :
- Partial Beam Block Fraction
- units :
- unitless
- standard_name :
- partial_beam_block
- comment :
- Partial beam block fraction due to terrain.
[396000 values with dtype=float64]
- cumulative_beam_blockage(azimuth, range)float64...
- long_name :
- Cumulative Beam Block Fraction
- units :
- unitless
- standard_name :
- cumulative_beam_block
- comment :
- Cumulative beam block fraction due to terrain.
[396000 values with dtype=float64]
- simulated_velocity(azimuth, range)float64...
- long_name :
- Simulated mean doppler velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- corrected_velocity(azimuth, range)float32...
- long_name :
- Corrected mean doppler velocity
- standard_name :
- corrected_radial_velocity_of_scatterers_away_from_instrument
- valid_min :
- -82.46
- valid_max :
- 82.46
- units :
- m/s
[396000 values with dtype=float32]
- unfolded_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- long_name :
- Unfolded Differential Phase
[396000 values with dtype=float64]
- corrected_differential_phase(azimuth, range)float64...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
[396000 values with dtype=float64]
- filtered_corrected_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
- long_name :
- Filtered Corrected Differential Phase
[396000 values with dtype=float64]
- corrected_specific_diff_phase(azimuth, range)float64...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float64]
- filtered_corrected_specific_diff_phase(azimuth, range)float64...
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Filtered Corrected Specific differential phase (KDP)
[396000 values with dtype=float64]
- corrected_differential_reflectivity(azimuth, range)float64...
- long_name :
- Corrected differential reflectivity
- units :
- dB
- standard_name :
- corrected_log_differential_reflectivity_hv
[396000 values with dtype=float64]
- corrected_reflectivity(azimuth, range)float64...
- long_name :
- Corrected reflectivity
- units :
- dBZ
- standard_name :
- corrected_equivalent_reflectivity_factor
[396000 values with dtype=float64]
- height_over_iso0(azimuth, range)float32...
- standard_name :
- height
- long_name :
- Height of radar beam over freezing level
- units :
- m
[396000 values with dtype=float32]
- path_integrated_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Attenuation
[396000 values with dtype=float64]
- path_integrated_differential_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Differential Attenuation
[396000 values with dtype=float64]
- rain_rate_A(azimuth, range)float64...
- long_name :
- rainfall_rate
- units :
- mm/hr
- standard_name :
- rainfall_rate
- valid_min :
- 0.0
- valid_max :
- 400.0
- comment :
- Rain rate calculated from specific_attenuation, R=51.3*specific_attenuation**0.81, note R=0.0 where norm coherent power < 0.4 or rhohv < 0.8
[396000 values with dtype=float64]
- sweep_number()float64...
- long_name :
- Sweep index number 0 based
- units :
- 1
[1 values with dtype=float64]
- sweep_fixed_angle()float32...
- long_name :
- Ray target fixed angle
- units :
- degree
[1 values with dtype=float32]
- sweep_mode()<U6'sector'
array('sector', dtype='<U6')
- prt(azimuth)float32...
- long_name :
- Pulse repetition time
- units :
- s
[360 values with dtype=float32]
- nyquist_velocity(azimuth)float32...
- long_name :
- Unambiguous doppler velocity
- units :
- m/s
- meta_group :
- instrument_parameters
[360 values with dtype=float32]
<xarray.DatasetView> Size: 122MB Dimensions: (azimuth: 360, range: 1100) Coordinates: time (azimuth) datetime64[ns] 3kB ... * range (range) float32 4kB ... elevation (azimuth) float32 1kB ... * azimuth (azimuth) float32 1kB ... latitude float32 4B -32.13 longitude float32 4B -64.73 altitude float32 4B 1.141e+03 crs_wkt int64 8B 0 x (azimuth, range) float32 2MB ... y (azimuth, range) float32 2MB ... z (azimuth, range) float32 2MB ... Data variables: (12/61) attenuation_corrected_differential_reflectivity (azimuth, range) float32 2MB ... attenuation_corrected_differential_reflectivity_lag_1 (azimuth, range) float32 2MB ... attenuation_corrected_reflectivity_h (azimuth, range) float32 2MB ... censor_mask (azimuth, range) int32 2MB ... classification_mask (azimuth, range) int32 2MB ... copol_correlation_coeff (azimuth, range) float32 2MB ... ... ... rain_rate_A (azimuth, range) float64 3MB ... sweep_number float64 8B ... sweep_fixed_angle float32 4B ... sweep_mode <U6 24B 'sector' prt (azimuth) float32 1kB ... nyquist_velocity (azimuth) float32 1kB ...
sweep_4- azimuth: 360
- range: 1100
- time(azimuth)datetime64[ns]2019-01-29T18:32:15.638999999 .....
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2019-01-29T18:32:15.638999999', '2019-01-29T18:32:15.710000000', '2019-01-29T18:32:15.769999000', ..., '2019-01-29T18:32:15.435000000', '2019-01-29T18:32:15.505999999', '2019-01-29T18:32:15.566999999'], dtype='datetime64[ns]')
- range(range)float320.0 100.0 ... 1.098e+05 1.099e+05
- long_name :
- Range to measurement volume
- units :
- m
- meters_between_gates :
- 100.0
- meters_to_center_of_first_gate :
- 50.0
- spacing_is_constant :
- True
- standard_name :
- projection_range_coordinate
- axis :
- radial_range_coordinate
array([0.000e+00, 1.000e+02, 2.000e+02, ..., 1.097e+05, 1.098e+05, 1.099e+05], dtype=float32)
- elevation(azimuth)float326.504 6.504 6.504 ... 6.504 6.504
- long_name :
- Elevation angle from horizontal plane
- units :
- degree
- standard_name :
- sensor_to_target_elevation_angle
- axis :
- radial_elevation_coordinate
array([6.503906, 6.503906, 6.503906, ..., 6.503906, 6.503906, 6.503906], dtype=float32)
- azimuth(azimuth)float320.6152 1.604 2.604 ... 358.5 359.5
- long_name :
- Azimuth angle from true north
- units :
- degree
- standard_name :
- sensor_to_target_azimuth_angle
- axis :
- radial_azimuth_coordinate
array([ 0.615234, 1.604004, 2.60376 , ..., 357.5583 , 358.54706 , 359.5468 ], dtype=float32)
- latitude()float32-32.13
- long_name :
- Latitude
- units :
- degree_N
- standard_name :
- latitude
- valid_min :
- -90.0
- valid_max :
- 90.0
array(-32.12641, dtype=float32)
- longitude()float32-64.73
- long_name :
- Longitude
- units :
- degree_E
- standard_name :
- longitude
- valid_min :
- -180.0
- valid_max :
- 180.0
array(-64.72837, dtype=float32)
- altitude()float321.141e+03
- long_name :
- Altitude
- units :
- m
- standard_name :
- altitude
array(1141., dtype=float32)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",-32.1264114379883,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",-64.7283706665039,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- unknown
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- -32.12641143798828
- longitude_of_projection_origin :
- -64.7283706665039
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- x(azimuth, range)float320.0 1.067 2.133 ... -861.5 -862.2
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 0.0000000e+00, 1.0667107e+00, 2.1334183e+00, ..., 1.1684106e+03, 1.1694740e+03, 1.1705374e+03], [ 0.0000000e+00, 2.7807574e+00, 5.5615072e+00, ..., 3.0458740e+03, 3.0486462e+03, 3.0514182e+03], [ 0.0000000e+00, 4.5130053e+00, 9.0259981e+00, ..., 4.9432739e+03, 4.9477729e+03, 4.9522715e+03], ..., [-0.0000000e+00, -4.2322898e+00, -8.4645672e+00, ..., -4.6357949e+03, -4.6400142e+03, -4.6442329e+03], [-0.0000000e+00, -2.5189183e+00, -5.0378299e+00, ..., -2.7590715e+03, -2.7615825e+03, -2.7640935e+03], [-0.0000000e+00, -7.8575474e-01, -1.5715073e+00, ..., -8.6066840e+02, -8.6145166e+02, -8.6223499e+02]], dtype=float32)
- y(azimuth, range)float320.0 99.34 ... 1.089e+05 1.09e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[0.00000000e+00, 9.93372192e+01, 1.98674164e+02, ..., 1.08808008e+05, 1.08907031e+05, 1.09006062e+05], [0.00000000e+00, 9.93040237e+01, 1.98607773e+02, ..., 1.08771641e+05, 1.08870633e+05, 1.08969625e+05], [0.00000000e+00, 9.92403870e+01, 1.98480499e+02, ..., 1.08701938e+05, 1.08800867e+05, 1.08899797e+05], ..., [0.00000000e+00, 9.92527542e+01, 1.98505234e+02, ..., 1.08715492e+05, 1.08814430e+05, 1.08913375e+05], [0.00000000e+00, 9.93110123e+01, 1.98621750e+02, ..., 1.08779297e+05, 1.08878297e+05, 1.08977297e+05], [0.00000000e+00, 9.93398438e+01, 1.98679413e+02, ..., 1.08810875e+05, 1.08909906e+05, 1.09008930e+05]], dtype=float32)
- z(azimuth, range)float321.141e+03 1.152e+03 ... 1.429e+04
- standard_name :
- height_above_ground
- units :
- meters
array([[ 1141., 1152., 1163., ..., 14264., 14277., 14290.], [ 1141., 1152., 1163., ..., 14264., 14277., 14290.], [ 1141., 1152., 1163., ..., 14264., 14277., 14290.], ..., [ 1141., 1152., 1163., ..., 14264., 14277., 14290.], [ 1141., 1152., 1163., ..., 14264., 14277., 14290.], [ 1141., 1152., 1163., ..., 14264., 14277., 14290.]], dtype=float32)
- attenuation_corrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- attenuation_corrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1 corrected for rainfall attenuation.
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.73713
[396000 values with dtype=float32]
- attenuation_corrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected reflectivity, horizontal channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- censor_mask(azimuth, range)int32...
- long_name :
- Censor Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16 32 64 128 256 512 1024 2048]
- flag_meanings :
- horizontal_snr_below_noise_threshold vertical_snr_below_noise_threshold horizontal_ccor_below_ccor_threshold vertical_ccor_below_ccor_threshold horizontal_sqi_below_sqi1_threshold vertical_sqi_below_sqi1_threshold horizontal_sqi_below_sqi2_threshold vertical_sqi_below_sqi2_threshold horizontal_sigpow_below_sigpow_threshold vertical_sigpow_below_sigpow_threshold urhohv_below_rhohv_threshold censored_by_clutter_micro_suppression
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- classification_mask(azimuth, range)int32...
- long_name :
- Classification Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16]
- flag_meanings :
- second_trip third_trip interference clutter sunspoke
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Copolar correlation coefficient (also known as rhohv)
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- differential_phase(azimuth, range)float32...
- long_name :
- Differential propagation phase shift
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- differential_reflectivity(azimuth, range)float32...
- long_name :
- Differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- mean_doppler_velocity(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Doppler velocity, vertical channel
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- normalized_coherent_power(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI.
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- normalized_coherent_power_v(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI, Vertical Channel
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- reflectivity(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- reflectivity_v(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor, vertical channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_h(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, horizontal channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_h
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_v(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, vertical channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_v
[396000 values with dtype=float32]
- specific_attenuation(azimuth, range)float64...
- long_name :
- Specific attenuation
- units :
- dB/km
- standard_name :
- specific_attenuation
- valid_min :
- 0.0
- valid_max :
- 1.0
[396000 values with dtype=float64]
- specific_differential_attenuation(azimuth, range)float64...
- long_name :
- Specific Differential Attenuation
- units :
- dB/km
[396000 values with dtype=float64]
- specific_differential_phase(azimuth, range)float32...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float32]
- spectral_width(azimuth, range)float32...
- long_name :
- Spectral width
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- spectral_width_v(azimuth, range)float32...
- long_name :
- Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Uncorrected copolar correlation coefficient
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- uncorrected_differential_phase(azimuth, range)float32...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Uncorrected Differential Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Uncorrected differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_h(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from horizontal channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from vertical channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Horizontal Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- uncorrected_reflectivity_v(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- uncorrected_spectral_width_h(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Horizontal Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_spectral_width_v(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- unthresholded_power_copolar_h(azimuth, range)float32...
- long_name :
- Received copolar power, h channel, without thresholding.
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_h
[396000 values with dtype=float32]
- unthresholded_power_copolar_v(azimuth, range)float32...
- long_name :
- Received copolar power, v channel, without thresholding
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_v
[396000 values with dtype=float32]
- ground_clutter(azimuth, range)int64...
- long_name :
- Clutter mask
- standard_name :
- clutter_mask
- valid_min :
- 0
- valid_max :
- 1
- units :
- 1
- flag_values :
- [0 1]
- flag_meanings :
- no_clutter clutter
[396000 values with dtype=int64]
- clutter_masked_velocity(azimuth, range)float32...
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument, clutter removed
[396000 values with dtype=float32]
- sounding_temperature(azimuth, range)float32...
- long_name :
- Interpolated profile
- standard_name :
- interpolated_profile
- units :
- deg_C
[396000 values with dtype=float32]
- height(azimuth, range)float32...
- long_name :
- Height of radar beam
- standard_name :
- height
- units :
- m
[396000 values with dtype=float32]
- signal_to_noise_ratio(azimuth, range)float32...
- long_name :
- Signal to noise ratio
- units :
- dB
- standard_name :
- signal_to_noise_ratio
[396000 values with dtype=float32]
- velocity_texture(azimuth, range)float64...
- long_name :
- Mean dopper velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- gate_id(azimuth, range)int64...
- long_name :
- Classification of dominant scatterer
- units :
- 1
- valid_max :
- 6
- valid_min :
- 0
- flag_values :
- [0 1 2 3 4 5 6]
- flag_meanings :
- multi_trip rain snow no_scatter melting clutter terrain_blockage
[396000 values with dtype=int64]
- partial_beam_blockage(azimuth, range)float64...
- long_name :
- Partial Beam Block Fraction
- units :
- unitless
- standard_name :
- partial_beam_block
- comment :
- Partial beam block fraction due to terrain.
[396000 values with dtype=float64]
- cumulative_beam_blockage(azimuth, range)float64...
- long_name :
- Cumulative Beam Block Fraction
- units :
- unitless
- standard_name :
- cumulative_beam_block
- comment :
- Cumulative beam block fraction due to terrain.
[396000 values with dtype=float64]
- simulated_velocity(azimuth, range)float64...
- long_name :
- Simulated mean doppler velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- corrected_velocity(azimuth, range)float32...
- long_name :
- Corrected mean doppler velocity
- standard_name :
- corrected_radial_velocity_of_scatterers_away_from_instrument
- valid_min :
- -82.46
- valid_max :
- 82.46
- units :
- m/s
[396000 values with dtype=float32]
- unfolded_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- long_name :
- Unfolded Differential Phase
[396000 values with dtype=float64]
- corrected_differential_phase(azimuth, range)float64...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
[396000 values with dtype=float64]
- filtered_corrected_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
- long_name :
- Filtered Corrected Differential Phase
[396000 values with dtype=float64]
- corrected_specific_diff_phase(azimuth, range)float64...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float64]
- filtered_corrected_specific_diff_phase(azimuth, range)float64...
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Filtered Corrected Specific differential phase (KDP)
[396000 values with dtype=float64]
- corrected_differential_reflectivity(azimuth, range)float64...
- long_name :
- Corrected differential reflectivity
- units :
- dB
- standard_name :
- corrected_log_differential_reflectivity_hv
[396000 values with dtype=float64]
- corrected_reflectivity(azimuth, range)float64...
- long_name :
- Corrected reflectivity
- units :
- dBZ
- standard_name :
- corrected_equivalent_reflectivity_factor
[396000 values with dtype=float64]
- height_over_iso0(azimuth, range)float32...
- standard_name :
- height
- long_name :
- Height of radar beam over freezing level
- units :
- m
[396000 values with dtype=float32]
- path_integrated_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Attenuation
[396000 values with dtype=float64]
- path_integrated_differential_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Differential Attenuation
[396000 values with dtype=float64]
- rain_rate_A(azimuth, range)float64...
- long_name :
- rainfall_rate
- units :
- mm/hr
- standard_name :
- rainfall_rate
- valid_min :
- 0.0
- valid_max :
- 400.0
- comment :
- Rain rate calculated from specific_attenuation, R=51.3*specific_attenuation**0.81, note R=0.0 where norm coherent power < 0.4 or rhohv < 0.8
[396000 values with dtype=float64]
- sweep_number()float64...
- long_name :
- Sweep index number 0 based
- units :
- 1
[1 values with dtype=float64]
- sweep_fixed_angle()float32...
- long_name :
- Ray target fixed angle
- units :
- degree
[1 values with dtype=float32]
- sweep_mode()<U6'sector'
array('sector', dtype='<U6')
- prt(azimuth)float32...
- long_name :
- Pulse repetition time
- units :
- s
[360 values with dtype=float32]
- nyquist_velocity(azimuth)float32...
- long_name :
- Unambiguous doppler velocity
- units :
- m/s
- meta_group :
- instrument_parameters
[360 values with dtype=float32]
<xarray.DatasetView> Size: 122MB Dimensions: (azimuth: 360, range: 1100) Coordinates: time (azimuth) datetime64[ns] 3kB ... * range (range) float32 4kB ... elevation (azimuth) float32 1kB ... * azimuth (azimuth) float32 1kB ... latitude float32 4B -32.13 longitude float32 4B -64.73 altitude float32 4B 1.141e+03 crs_wkt int64 8B 0 x (azimuth, range) float32 2MB ... y (azimuth, range) float32 2MB ... z (azimuth, range) float32 2MB ... Data variables: (12/61) attenuation_corrected_differential_reflectivity (azimuth, range) float32 2MB ... attenuation_corrected_differential_reflectivity_lag_1 (azimuth, range) float32 2MB ... attenuation_corrected_reflectivity_h (azimuth, range) float32 2MB ... censor_mask (azimuth, range) int32 2MB ... classification_mask (azimuth, range) int32 2MB ... copol_correlation_coeff (azimuth, range) float32 2MB ... ... ... rain_rate_A (azimuth, range) float64 3MB ... sweep_number float64 8B ... sweep_fixed_angle float32 4B ... sweep_mode <U6 24B 'sector' prt (azimuth) float32 1kB ... nyquist_velocity (azimuth) float32 1kB ...
sweep_5- azimuth: 360
- range: 1100
- time(azimuth)datetime64[ns]2019-01-29T18:32:39.626000 ... 2...
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2019-01-29T18:32:39.626000000', '2019-01-29T18:32:39.687000000', '2019-01-29T18:32:39.758000000', ..., '2019-01-29T18:32:39.422000000', '2019-01-29T18:32:39.493000000', '2019-01-29T18:32:39.554999999'], dtype='datetime64[ns]')
- range(range)float320.0 100.0 ... 1.098e+05 1.099e+05
- long_name :
- Range to measurement volume
- units :
- m
- meters_between_gates :
- 100.0
- meters_to_center_of_first_gate :
- 50.0
- spacing_is_constant :
- True
- standard_name :
- projection_range_coordinate
- axis :
- radial_range_coordinate
array([0.000e+00, 1.000e+02, 2.000e+02, ..., 1.097e+05, 1.098e+05, 1.099e+05], dtype=float32)
- elevation(azimuth)float328.02 8.02 8.02 ... 8.02 8.02 8.02
- long_name :
- Elevation angle from horizontal plane
- units :
- degree
- standard_name :
- sensor_to_target_elevation_angle
- axis :
- radial_elevation_coordinate
array([8.02002, 8.02002, 8.02002, ..., 8.02002, 8.02002, 8.02002], dtype=float32)
- azimuth(azimuth)float320.5713 1.56 2.571 ... 358.6 359.6
- long_name :
- Azimuth angle from true north
- units :
- degree
- standard_name :
- sensor_to_target_azimuth_angle
- axis :
- radial_azimuth_coordinate
array([ 0.571289, 1.560059, 2.570801, ..., 357.60223 , 358.58002 , 359.57977 ], dtype=float32)
- latitude()float32-32.13
- long_name :
- Latitude
- units :
- degree_N
- standard_name :
- latitude
- valid_min :
- -90.0
- valid_max :
- 90.0
array(-32.12641, dtype=float32)
- longitude()float32-64.73
- long_name :
- Longitude
- units :
- degree_E
- standard_name :
- longitude
- valid_min :
- -180.0
- valid_max :
- 180.0
array(-64.72837, dtype=float32)
- altitude()float321.141e+03
- long_name :
- Altitude
- units :
- m
- standard_name :
- altitude
array(1141., dtype=float32)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",-32.1264114379883,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",-64.7283706665039,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- unknown
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- -32.12641143798828
- longitude_of_projection_origin :
- -64.7283706665039
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- x(azimuth, range)float320.0 0.9872 1.974 ... -795.9 -796.6
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 0.0000000e+00, 9.8718488e-01, 1.9743664e+00, ..., 1.0809379e+03, 1.0819214e+03, 1.0829049e+03], [ 0.0000000e+00, 2.6954854e+00, 5.3909616e+00, ..., 2.9514758e+03, 2.9541614e+03, 2.9568469e+03], [ 0.0000000e+00, 4.4409146e+00, 8.8818150e+00, ..., 4.8626689e+03, 4.8670933e+03, 4.8715176e+03], ..., [-0.0000000e+00, -4.1421924e+00, -8.2843714e+00, ..., -4.5355767e+03, -4.5397036e+03, -4.5438306e+03], [-0.0000000e+00, -2.4535191e+00, -4.9070296e+00, ..., -2.6865300e+03, -2.6889744e+03, -2.6914187e+03], [-0.0000000e+00, -7.2617459e-01, -1.4523467e+00, ..., -7.9513947e+02, -7.9586292e+02, -7.9658643e+02]], dtype=float32)
- y(azimuth, range)float320.0 99.0 ... 1.085e+05 1.086e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[0.0000000e+00, 9.9003555e+01, 1.9800677e+02, ..., 1.0840593e+05, 1.0850457e+05, 1.0860320e+05], [0.0000000e+00, 9.8971779e+01, 1.9794322e+02, ..., 1.0837113e+05, 1.0846974e+05, 1.0856834e+05], [0.0000000e+00, 9.8908829e+01, 1.9781732e+02, ..., 1.0830221e+05, 1.0840075e+05, 1.0849930e+05], ..., [0.0000000e+00, 9.8921791e+01, 1.9784325e+02, ..., 1.0831641e+05, 1.0841495e+05, 1.0851351e+05], [0.0000000e+00, 9.8978073e+01, 1.9795581e+02, ..., 1.0837803e+05, 1.0847664e+05, 1.0857525e+05], [0.0000000e+00, 9.9005814e+01, 1.9801129e+02, ..., 1.0840841e+05, 1.0850705e+05, 1.0860568e+05]], dtype=float32)
- z(azimuth, range)float321.141e+03 1.155e+03 ... 1.717e+04
- standard_name :
- height_above_ground
- units :
- meters
array([[ 1141., 1155., 1169., ..., 17139., 17154., 17169.], [ 1141., 1155., 1169., ..., 17139., 17154., 17169.], [ 1141., 1155., 1169., ..., 17139., 17154., 17169.], ..., [ 1141., 1155., 1169., ..., 17139., 17154., 17169.], [ 1141., 1155., 1169., ..., 17139., 17154., 17169.], [ 1141., 1155., 1169., ..., 17139., 17154., 17169.]], dtype=float32)
- attenuation_corrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- attenuation_corrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1 corrected for rainfall attenuation.
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.73713
[396000 values with dtype=float32]
- attenuation_corrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected reflectivity, horizontal channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- censor_mask(azimuth, range)int32...
- long_name :
- Censor Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16 32 64 128 256 512 1024 2048]
- flag_meanings :
- horizontal_snr_below_noise_threshold vertical_snr_below_noise_threshold horizontal_ccor_below_ccor_threshold vertical_ccor_below_ccor_threshold horizontal_sqi_below_sqi1_threshold vertical_sqi_below_sqi1_threshold horizontal_sqi_below_sqi2_threshold vertical_sqi_below_sqi2_threshold horizontal_sigpow_below_sigpow_threshold vertical_sigpow_below_sigpow_threshold urhohv_below_rhohv_threshold censored_by_clutter_micro_suppression
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- classification_mask(azimuth, range)int32...
- long_name :
- Classification Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16]
- flag_meanings :
- second_trip third_trip interference clutter sunspoke
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Copolar correlation coefficient (also known as rhohv)
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- differential_phase(azimuth, range)float32...
- long_name :
- Differential propagation phase shift
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- differential_reflectivity(azimuth, range)float32...
- long_name :
- Differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- mean_doppler_velocity(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Doppler velocity, vertical channel
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- normalized_coherent_power(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI.
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- normalized_coherent_power_v(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI, Vertical Channel
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- reflectivity(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- reflectivity_v(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor, vertical channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_h(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, horizontal channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_h
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_v(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, vertical channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_v
[396000 values with dtype=float32]
- specific_attenuation(azimuth, range)float64...
- long_name :
- Specific attenuation
- units :
- dB/km
- standard_name :
- specific_attenuation
- valid_min :
- 0.0
- valid_max :
- 1.0
[396000 values with dtype=float64]
- specific_differential_attenuation(azimuth, range)float64...
- long_name :
- Specific Differential Attenuation
- units :
- dB/km
[396000 values with dtype=float64]
- specific_differential_phase(azimuth, range)float32...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float32]
- spectral_width(azimuth, range)float32...
- long_name :
- Spectral width
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- spectral_width_v(azimuth, range)float32...
- long_name :
- Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Uncorrected copolar correlation coefficient
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- uncorrected_differential_phase(azimuth, range)float32...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Uncorrected Differential Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Uncorrected differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_h(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from horizontal channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from vertical channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Horizontal Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- uncorrected_reflectivity_v(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- uncorrected_spectral_width_h(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Horizontal Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_spectral_width_v(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- unthresholded_power_copolar_h(azimuth, range)float32...
- long_name :
- Received copolar power, h channel, without thresholding.
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_h
[396000 values with dtype=float32]
- unthresholded_power_copolar_v(azimuth, range)float32...
- long_name :
- Received copolar power, v channel, without thresholding
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_v
[396000 values with dtype=float32]
- ground_clutter(azimuth, range)int64...
- long_name :
- Clutter mask
- standard_name :
- clutter_mask
- valid_min :
- 0
- valid_max :
- 1
- units :
- 1
- flag_values :
- [0 1]
- flag_meanings :
- no_clutter clutter
[396000 values with dtype=int64]
- clutter_masked_velocity(azimuth, range)float32...
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument, clutter removed
[396000 values with dtype=float32]
- sounding_temperature(azimuth, range)float32...
- long_name :
- Interpolated profile
- standard_name :
- interpolated_profile
- units :
- deg_C
[396000 values with dtype=float32]
- height(azimuth, range)float32...
- long_name :
- Height of radar beam
- standard_name :
- height
- units :
- m
[396000 values with dtype=float32]
- signal_to_noise_ratio(azimuth, range)float32...
- long_name :
- Signal to noise ratio
- units :
- dB
- standard_name :
- signal_to_noise_ratio
[396000 values with dtype=float32]
- velocity_texture(azimuth, range)float64...
- long_name :
- Mean dopper velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- gate_id(azimuth, range)int64...
- long_name :
- Classification of dominant scatterer
- units :
- 1
- valid_max :
- 6
- valid_min :
- 0
- flag_values :
- [0 1 2 3 4 5 6]
- flag_meanings :
- multi_trip rain snow no_scatter melting clutter terrain_blockage
[396000 values with dtype=int64]
- partial_beam_blockage(azimuth, range)float64...
- long_name :
- Partial Beam Block Fraction
- units :
- unitless
- standard_name :
- partial_beam_block
- comment :
- Partial beam block fraction due to terrain.
[396000 values with dtype=float64]
- cumulative_beam_blockage(azimuth, range)float64...
- long_name :
- Cumulative Beam Block Fraction
- units :
- unitless
- standard_name :
- cumulative_beam_block
- comment :
- Cumulative beam block fraction due to terrain.
[396000 values with dtype=float64]
- simulated_velocity(azimuth, range)float64...
- long_name :
- Simulated mean doppler velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- corrected_velocity(azimuth, range)float32...
- long_name :
- Corrected mean doppler velocity
- standard_name :
- corrected_radial_velocity_of_scatterers_away_from_instrument
- valid_min :
- -82.46
- valid_max :
- 82.46
- units :
- m/s
[396000 values with dtype=float32]
- unfolded_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- long_name :
- Unfolded Differential Phase
[396000 values with dtype=float64]
- corrected_differential_phase(azimuth, range)float64...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
[396000 values with dtype=float64]
- filtered_corrected_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
- long_name :
- Filtered Corrected Differential Phase
[396000 values with dtype=float64]
- corrected_specific_diff_phase(azimuth, range)float64...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float64]
- filtered_corrected_specific_diff_phase(azimuth, range)float64...
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Filtered Corrected Specific differential phase (KDP)
[396000 values with dtype=float64]
- corrected_differential_reflectivity(azimuth, range)float64...
- long_name :
- Corrected differential reflectivity
- units :
- dB
- standard_name :
- corrected_log_differential_reflectivity_hv
[396000 values with dtype=float64]
- corrected_reflectivity(azimuth, range)float64...
- long_name :
- Corrected reflectivity
- units :
- dBZ
- standard_name :
- corrected_equivalent_reflectivity_factor
[396000 values with dtype=float64]
- height_over_iso0(azimuth, range)float32...
- standard_name :
- height
- long_name :
- Height of radar beam over freezing level
- units :
- m
[396000 values with dtype=float32]
- path_integrated_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Attenuation
[396000 values with dtype=float64]
- path_integrated_differential_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Differential Attenuation
[396000 values with dtype=float64]
- rain_rate_A(azimuth, range)float64...
- long_name :
- rainfall_rate
- units :
- mm/hr
- standard_name :
- rainfall_rate
- valid_min :
- 0.0
- valid_max :
- 400.0
- comment :
- Rain rate calculated from specific_attenuation, R=51.3*specific_attenuation**0.81, note R=0.0 where norm coherent power < 0.4 or rhohv < 0.8
[396000 values with dtype=float64]
- sweep_number()float64...
- long_name :
- Sweep index number 0 based
- units :
- 1
[1 values with dtype=float64]
- sweep_fixed_angle()float32...
- long_name :
- Ray target fixed angle
- units :
- degree
[1 values with dtype=float32]
- sweep_mode()<U6'sector'
array('sector', dtype='<U6')
- prt(azimuth)float32...
- long_name :
- Pulse repetition time
- units :
- s
[360 values with dtype=float32]
- nyquist_velocity(azimuth)float32...
- long_name :
- Unambiguous doppler velocity
- units :
- m/s
- meta_group :
- instrument_parameters
[360 values with dtype=float32]
<xarray.DatasetView> Size: 122MB Dimensions: (azimuth: 360, range: 1100) Coordinates: time (azimuth) datetime64[ns] 3kB ... * range (range) float32 4kB ... elevation (azimuth) float32 1kB ... * azimuth (azimuth) float32 1kB ... latitude float32 4B -32.13 longitude float32 4B -64.73 altitude float32 4B 1.141e+03 crs_wkt int64 8B 0 x (azimuth, range) float32 2MB ... y (azimuth, range) float32 2MB ... z (azimuth, range) float32 2MB ... Data variables: (12/61) attenuation_corrected_differential_reflectivity (azimuth, range) float32 2MB ... attenuation_corrected_differential_reflectivity_lag_1 (azimuth, range) float32 2MB ... attenuation_corrected_reflectivity_h (azimuth, range) float32 2MB ... censor_mask (azimuth, range) int32 2MB ... classification_mask (azimuth, range) int32 2MB ... copol_correlation_coeff (azimuth, range) float32 2MB ... ... ... rain_rate_A (azimuth, range) float64 3MB ... sweep_number float64 8B ... sweep_fixed_angle float32 4B ... sweep_mode <U6 24B 'sector' prt (azimuth) float32 1kB ... nyquist_velocity (azimuth) float32 1kB ...
sweep_6- azimuth: 360
- range: 1100
- time(azimuth)datetime64[ns]2019-01-29T18:33:03.607999999 .....
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2019-01-29T18:33:03.607999999', '2019-01-29T18:33:03.679000000', '2019-01-29T18:33:03.739000000', ..., '2019-01-29T18:33:03.403999999', '2019-01-29T18:33:03.475000000', '2019-01-29T18:33:03.546000000'], dtype='datetime64[ns]')
- range(range)float320.0 100.0 ... 1.098e+05 1.099e+05
- long_name :
- Range to measurement volume
- units :
- m
- meters_between_gates :
- 100.0
- meters_to_center_of_first_gate :
- 50.0
- spacing_is_constant :
- True
- standard_name :
- projection_range_coordinate
- axis :
- radial_range_coordinate
array([0.000e+00, 1.000e+02, 2.000e+02, ..., 1.097e+05, 1.098e+05, 1.099e+05], dtype=float32)
- elevation(azimuth)float329.624 9.624 9.624 ... 9.624 9.624
- long_name :
- Elevation angle from horizontal plane
- units :
- degree
- standard_name :
- sensor_to_target_elevation_angle
- axis :
- radial_elevation_coordinate
array([9.624023, 9.624023, 9.624023, ..., 9.63501 , 9.624023, 9.624023], dtype=float32)
- azimuth(azimuth)float320.6042 1.582 2.582 ... 358.6 359.6
- long_name :
- Azimuth angle from true north
- units :
- degree
- standard_name :
- sensor_to_target_azimuth_angle
- axis :
- radial_azimuth_coordinate
array([ 0.604248, 1.582031, 2.581787, ..., 357.5583 , 358.602 , 359.60175 ], dtype=float32)
- latitude()float32-32.13
- long_name :
- Latitude
- units :
- degree_N
- standard_name :
- latitude
- valid_min :
- -90.0
- valid_max :
- 90.0
array(-32.12641, dtype=float32)
- longitude()float32-64.73
- long_name :
- Longitude
- units :
- degree_E
- standard_name :
- longitude
- valid_min :
- -180.0
- valid_max :
- 180.0
array(-64.72837, dtype=float32)
- altitude()float321.141e+03
- long_name :
- Altitude
- units :
- m
- standard_name :
- altitude
array(1141., dtype=float32)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",-32.1264114379883,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",-64.7283706665039,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- unknown
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- -32.12641143798828
- longitude_of_projection_origin :
- -64.7283706665039
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- x(azimuth, range)float320.0 1.04 2.079 ... -750.7 -751.4
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 0.0000000e+00, 1.0396082e+00, 2.0792127e+00, ..., 1.1379352e+03, 1.1389702e+03, 1.1400051e+03], [ 0.0000000e+00, 2.7215881e+00, 5.4431658e+00, ..., 2.9789978e+03, 2.9817075e+03, 2.9844167e+03], [ 0.0000000e+00, 4.4405422e+00, 8.8810673e+00, ..., 4.8605317e+03, 4.8649526e+03, 4.8693730e+03], ..., [-0.0000000e+00, -4.1996136e+00, -8.3992119e+00, ..., -4.5968057e+03, -4.6009863e+03, -4.6051675e+03], [-0.0000000e+00, -2.4050989e+00, -4.8101888e+00, ..., -2.6325750e+03, -2.6349695e+03, -2.6373638e+03], [-0.0000000e+00, -6.8518680e-01, -1.3703711e+00, ..., -7.4999231e+02, -7.5067450e+02, -7.5135657e+02]], dtype=float32)
- y(azimuth, range)float320.0 98.57 ... 1.08e+05 1.081e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[0.00000000e+00, 9.85736847e+01, 1.97147003e+02, ..., 1.07896859e+05, 1.07995000e+05, 1.08093133e+05], [0.00000000e+00, 9.85415955e+01, 1.97082825e+02, ..., 1.07861727e+05, 1.07959844e+05, 1.08057938e+05], [0.00000000e+00, 9.84791031e+01, 1.96957840e+02, ..., 1.07793328e+05, 1.07891383e+05, 1.07989414e+05], ..., [0.00000000e+00, 9.84864578e+01, 1.96972549e+02, ..., 1.07801141e+05, 1.07899188e+05, 1.07997227e+05], [0.00000000e+00, 9.85498276e+01, 1.97099289e+02, ..., 1.07870742e+05, 1.07968859e+05, 1.08066961e+05], [0.00000000e+00, 9.85767899e+01, 1.97153214e+02, ..., 1.07900258e+05, 1.07998398e+05, 1.08096531e+05]], dtype=float32)
- z(azimuth, range)float321.141e+03 1.158e+03 ... 2.02e+04
- standard_name :
- height_above_ground
- units :
- meters
array([[ 1141., 1158., 1174., ..., 20168., 20185., 20204.], [ 1141., 1158., 1174., ..., 20168., 20185., 20204.], [ 1141., 1158., 1174., ..., 20168., 20185., 20204.], ..., [ 1141., 1158., 1174., ..., 20188., 20206., 20224.], [ 1141., 1158., 1174., ..., 20168., 20185., 20204.], [ 1141., 1158., 1174., ..., 20168., 20185., 20204.]], dtype=float32)
- attenuation_corrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- attenuation_corrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1 corrected for rainfall attenuation.
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.73713
[396000 values with dtype=float32]
- attenuation_corrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected reflectivity, horizontal channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- censor_mask(azimuth, range)int32...
- long_name :
- Censor Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16 32 64 128 256 512 1024 2048]
- flag_meanings :
- horizontal_snr_below_noise_threshold vertical_snr_below_noise_threshold horizontal_ccor_below_ccor_threshold vertical_ccor_below_ccor_threshold horizontal_sqi_below_sqi1_threshold vertical_sqi_below_sqi1_threshold horizontal_sqi_below_sqi2_threshold vertical_sqi_below_sqi2_threshold horizontal_sigpow_below_sigpow_threshold vertical_sigpow_below_sigpow_threshold urhohv_below_rhohv_threshold censored_by_clutter_micro_suppression
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- classification_mask(azimuth, range)int32...
- long_name :
- Classification Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16]
- flag_meanings :
- second_trip third_trip interference clutter sunspoke
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Copolar correlation coefficient (also known as rhohv)
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- differential_phase(azimuth, range)float32...
- long_name :
- Differential propagation phase shift
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- differential_reflectivity(azimuth, range)float32...
- long_name :
- Differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- mean_doppler_velocity(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Doppler velocity, vertical channel
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- normalized_coherent_power(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI.
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- normalized_coherent_power_v(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI, Vertical Channel
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- reflectivity(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- reflectivity_v(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor, vertical channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_h(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, horizontal channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_h
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_v(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, vertical channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_v
[396000 values with dtype=float32]
- specific_attenuation(azimuth, range)float64...
- long_name :
- Specific attenuation
- units :
- dB/km
- standard_name :
- specific_attenuation
- valid_min :
- 0.0
- valid_max :
- 1.0
[396000 values with dtype=float64]
- specific_differential_attenuation(azimuth, range)float64...
- long_name :
- Specific Differential Attenuation
- units :
- dB/km
[396000 values with dtype=float64]
- specific_differential_phase(azimuth, range)float32...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float32]
- spectral_width(azimuth, range)float32...
- long_name :
- Spectral width
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- spectral_width_v(azimuth, range)float32...
- long_name :
- Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Uncorrected copolar correlation coefficient
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- uncorrected_differential_phase(azimuth, range)float32...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Uncorrected Differential Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Uncorrected differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_h(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from horizontal channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from vertical channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Horizontal Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- uncorrected_reflectivity_v(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- uncorrected_spectral_width_h(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Horizontal Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_spectral_width_v(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- unthresholded_power_copolar_h(azimuth, range)float32...
- long_name :
- Received copolar power, h channel, without thresholding.
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_h
[396000 values with dtype=float32]
- unthresholded_power_copolar_v(azimuth, range)float32...
- long_name :
- Received copolar power, v channel, without thresholding
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_v
[396000 values with dtype=float32]
- ground_clutter(azimuth, range)int64...
- long_name :
- Clutter mask
- standard_name :
- clutter_mask
- valid_min :
- 0
- valid_max :
- 1
- units :
- 1
- flag_values :
- [0 1]
- flag_meanings :
- no_clutter clutter
[396000 values with dtype=int64]
- clutter_masked_velocity(azimuth, range)float32...
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument, clutter removed
[396000 values with dtype=float32]
- sounding_temperature(azimuth, range)float32...
- long_name :
- Interpolated profile
- standard_name :
- interpolated_profile
- units :
- deg_C
[396000 values with dtype=float32]
- height(azimuth, range)float32...
- long_name :
- Height of radar beam
- standard_name :
- height
- units :
- m
[396000 values with dtype=float32]
- signal_to_noise_ratio(azimuth, range)float32...
- long_name :
- Signal to noise ratio
- units :
- dB
- standard_name :
- signal_to_noise_ratio
[396000 values with dtype=float32]
- velocity_texture(azimuth, range)float64...
- long_name :
- Mean dopper velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- gate_id(azimuth, range)int64...
- long_name :
- Classification of dominant scatterer
- units :
- 1
- valid_max :
- 6
- valid_min :
- 0
- flag_values :
- [0 1 2 3 4 5 6]
- flag_meanings :
- multi_trip rain snow no_scatter melting clutter terrain_blockage
[396000 values with dtype=int64]
- partial_beam_blockage(azimuth, range)float64...
- long_name :
- Partial Beam Block Fraction
- units :
- unitless
- standard_name :
- partial_beam_block
- comment :
- Partial beam block fraction due to terrain.
[396000 values with dtype=float64]
- cumulative_beam_blockage(azimuth, range)float64...
- long_name :
- Cumulative Beam Block Fraction
- units :
- unitless
- standard_name :
- cumulative_beam_block
- comment :
- Cumulative beam block fraction due to terrain.
[396000 values with dtype=float64]
- simulated_velocity(azimuth, range)float64...
- long_name :
- Simulated mean doppler velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- corrected_velocity(azimuth, range)float32...
- long_name :
- Corrected mean doppler velocity
- standard_name :
- corrected_radial_velocity_of_scatterers_away_from_instrument
- valid_min :
- -82.46
- valid_max :
- 82.46
- units :
- m/s
[396000 values with dtype=float32]
- unfolded_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- long_name :
- Unfolded Differential Phase
[396000 values with dtype=float64]
- corrected_differential_phase(azimuth, range)float64...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
[396000 values with dtype=float64]
- filtered_corrected_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
- long_name :
- Filtered Corrected Differential Phase
[396000 values with dtype=float64]
- corrected_specific_diff_phase(azimuth, range)float64...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float64]
- filtered_corrected_specific_diff_phase(azimuth, range)float64...
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Filtered Corrected Specific differential phase (KDP)
[396000 values with dtype=float64]
- corrected_differential_reflectivity(azimuth, range)float64...
- long_name :
- Corrected differential reflectivity
- units :
- dB
- standard_name :
- corrected_log_differential_reflectivity_hv
[396000 values with dtype=float64]
- corrected_reflectivity(azimuth, range)float64...
- long_name :
- Corrected reflectivity
- units :
- dBZ
- standard_name :
- corrected_equivalent_reflectivity_factor
[396000 values with dtype=float64]
- height_over_iso0(azimuth, range)float32...
- standard_name :
- height
- long_name :
- Height of radar beam over freezing level
- units :
- m
[396000 values with dtype=float32]
- path_integrated_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Attenuation
[396000 values with dtype=float64]
- path_integrated_differential_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Differential Attenuation
[396000 values with dtype=float64]
- rain_rate_A(azimuth, range)float64...
- long_name :
- rainfall_rate
- units :
- mm/hr
- standard_name :
- rainfall_rate
- valid_min :
- 0.0
- valid_max :
- 400.0
- comment :
- Rain rate calculated from specific_attenuation, R=51.3*specific_attenuation**0.81, note R=0.0 where norm coherent power < 0.4 or rhohv < 0.8
[396000 values with dtype=float64]
- sweep_number()float64...
- long_name :
- Sweep index number 0 based
- units :
- 1
[1 values with dtype=float64]
- sweep_fixed_angle()float32...
- long_name :
- Ray target fixed angle
- units :
- degree
[1 values with dtype=float32]
- sweep_mode()<U6'sector'
array('sector', dtype='<U6')
- prt(azimuth)float32...
- long_name :
- Pulse repetition time
- units :
- s
[360 values with dtype=float32]
- nyquist_velocity(azimuth)float32...
- long_name :
- Unambiguous doppler velocity
- units :
- m/s
- meta_group :
- instrument_parameters
[360 values with dtype=float32]
<xarray.DatasetView> Size: 122MB Dimensions: (azimuth: 360, range: 1100) Coordinates: time (azimuth) datetime64[ns] 3kB ... * range (range) float32 4kB ... elevation (azimuth) float32 1kB ... * azimuth (azimuth) float32 1kB ... latitude float32 4B -32.13 longitude float32 4B -64.73 altitude float32 4B 1.141e+03 crs_wkt int64 8B 0 x (azimuth, range) float32 2MB ... y (azimuth, range) float32 2MB ... z (azimuth, range) float32 2MB ... Data variables: (12/61) attenuation_corrected_differential_reflectivity (azimuth, range) float32 2MB ... attenuation_corrected_differential_reflectivity_lag_1 (azimuth, range) float32 2MB ... attenuation_corrected_reflectivity_h (azimuth, range) float32 2MB ... censor_mask (azimuth, range) int32 2MB ... classification_mask (azimuth, range) int32 2MB ... copol_correlation_coeff (azimuth, range) float32 2MB ... ... ... rain_rate_A (azimuth, range) float64 3MB ... sweep_number float64 8B ... sweep_fixed_angle float32 4B ... sweep_mode <U6 24B 'sector' prt (azimuth) float32 1kB ... nyquist_velocity (azimuth) float32 1kB ...
sweep_7- azimuth: 360
- range: 1100
- time(azimuth)datetime64[ns]2019-01-29T18:33:27.591000 ... 2...
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2019-01-29T18:33:27.591000000', '2019-01-29T18:33:27.656000000', '2019-01-29T18:33:27.721999999', ..., '2019-01-29T18:33:27.391000000', '2019-01-29T18:33:27.455000000', '2019-01-29T18:33:27.528999999'], dtype='datetime64[ns]')
- range(range)float320.0 100.0 ... 1.098e+05 1.099e+05
- long_name :
- Range to measurement volume
- units :
- m
- meters_between_gates :
- 100.0
- meters_to_center_of_first_gate :
- 50.0
- spacing_is_constant :
- True
- standard_name :
- projection_range_coordinate
- axis :
- radial_range_coordinate
array([0.000e+00, 1.000e+02, 2.000e+02, ..., 1.097e+05, 1.098e+05, 1.099e+05], dtype=float32)
- elevation(azimuth)float3211.35 11.34 11.34 ... 11.36 11.36
- long_name :
- Elevation angle from horizontal plane
- units :
- degree
- standard_name :
- sensor_to_target_elevation_angle
- axis :
- radial_elevation_coordinate
array([11.348877, 11.337891, 11.337891, ..., 11.359863, 11.359863, 11.359863], dtype=float32)
- azimuth(azimuth)float320.5383 1.516 2.571 ... 358.6 359.6
- long_name :
- Azimuth angle from true north
- units :
- degree
- standard_name :
- sensor_to_target_azimuth_angle
- axis :
- radial_azimuth_coordinate
array([ 0.53833 , 1.516113, 2.570801, ..., 357.5473 , 358.56903 , 359.59076 ], dtype=float32)
- latitude()float32-32.13
- long_name :
- Latitude
- units :
- degree_N
- standard_name :
- latitude
- valid_min :
- -90.0
- valid_max :
- 90.0
array(-32.12641, dtype=float32)
- longitude()float32-64.73
- long_name :
- Longitude
- units :
- degree_E
- standard_name :
- longitude
- valid_min :
- -180.0
- valid_max :
- 180.0
array(-64.72837, dtype=float32)
- altitude()float321.141e+03
- long_name :
- Altitude
- units :
- m
- standard_name :
- altitude
array(1141., dtype=float32)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",-32.1264114379883,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",-64.7283706665039,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- unknown
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- -32.12641143798828
- longitude_of_projection_origin :
- -64.7283706665039
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- x(azimuth, range)float320.0 0.9211 1.842 ... -766.8 -767.5
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 0.00000000e+00, 9.21052814e-01, 1.84210134e+00, ..., 1.00778326e+03, 1.00869952e+03, 1.00961578e+03], [ 0.00000000e+00, 2.59382057e+00, 5.18762875e+00, ..., 2.83807349e+03, 2.84065356e+03, 2.84323364e+03], [ 0.00000000e+00, 4.39725494e+00, 8.79448891e+00, ..., 4.81133203e+03, 4.81570605e+03, 4.82008057e+03], ..., [-0.00000000e+00, -4.19507074e+00, -8.39012146e+00, ..., -4.59008643e+03, -4.59425928e+03, -4.59843262e+03], [-0.00000000e+00, -2.44799590e+00, -4.89598036e+00, ..., -2.67850391e+03, -2.68093896e+03, -2.68337427e+03], [-0.00000000e+00, -7.00189829e-01, -1.40037632e+00, ..., -7.66120972e+02, -7.66817505e+02, -7.67514038e+02]], dtype=float32)
- y(azimuth, range)float320.0 98.03 ... 1.074e+05 1.075e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[0.00000000e+00, 9.80270004e+01, 1.96053543e+02, ..., 1.07257664e+05, 1.07355180e+05, 1.07452703e+05], [0.00000000e+00, 9.80007782e+01, 1.96001099e+02, ..., 1.07229242e+05, 1.07326719e+05, 1.07424211e+05], [0.00000000e+00, 9.79364319e+01, 1.95872406e+02, ..., 1.07158836e+05, 1.07256250e+05, 1.07353680e+05], ..., [0.00000000e+00, 9.79377518e+01, 1.95875046e+02, ..., 1.07159758e+05, 1.07257180e+05, 1.07354609e+05], [0.00000000e+00, 9.79969864e+01, 1.95993515e+02, ..., 1.07224570e+05, 1.07322055e+05, 1.07419539e+05], [0.00000000e+00, 9.80250549e+01, 1.96049652e+02, ..., 1.07255281e+05, 1.07352789e+05, 1.07450305e+05]], dtype=float32)
- z(azimuth, range)float321.141e+03 1.16e+03 ... 2.347e+04
- standard_name :
- height_above_ground
- units :
- meters
array([[ 1141., 1160., 1180., ..., 23407., 23428., 23448.], [ 1141., 1160., 1180., ..., 23386., 23407., 23428.], [ 1141., 1160., 1180., ..., 23386., 23407., 23428.], ..., [ 1141., 1160., 1180., ..., 23427., 23448., 23469.], [ 1141., 1160., 1180., ..., 23427., 23448., 23469.], [ 1141., 1160., 1180., ..., 23427., 23448., 23469.]], dtype=float32)
- attenuation_corrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- attenuation_corrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1 corrected for rainfall attenuation.
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.73713
[396000 values with dtype=float32]
- attenuation_corrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected reflectivity, horizontal channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- censor_mask(azimuth, range)int32...
- long_name :
- Censor Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16 32 64 128 256 512 1024 2048]
- flag_meanings :
- horizontal_snr_below_noise_threshold vertical_snr_below_noise_threshold horizontal_ccor_below_ccor_threshold vertical_ccor_below_ccor_threshold horizontal_sqi_below_sqi1_threshold vertical_sqi_below_sqi1_threshold horizontal_sqi_below_sqi2_threshold vertical_sqi_below_sqi2_threshold horizontal_sigpow_below_sigpow_threshold vertical_sigpow_below_sigpow_threshold urhohv_below_rhohv_threshold censored_by_clutter_micro_suppression
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- classification_mask(azimuth, range)int32...
- long_name :
- Classification Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16]
- flag_meanings :
- second_trip third_trip interference clutter sunspoke
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Copolar correlation coefficient (also known as rhohv)
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- differential_phase(azimuth, range)float32...
- long_name :
- Differential propagation phase shift
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- differential_reflectivity(azimuth, range)float32...
- long_name :
- Differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- mean_doppler_velocity(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Doppler velocity, vertical channel
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- normalized_coherent_power(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI.
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- normalized_coherent_power_v(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI, Vertical Channel
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- reflectivity(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- reflectivity_v(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor, vertical channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_h(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, horizontal channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_h
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_v(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, vertical channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_v
[396000 values with dtype=float32]
- specific_attenuation(azimuth, range)float64...
- long_name :
- Specific attenuation
- units :
- dB/km
- standard_name :
- specific_attenuation
- valid_min :
- 0.0
- valid_max :
- 1.0
[396000 values with dtype=float64]
- specific_differential_attenuation(azimuth, range)float64...
- long_name :
- Specific Differential Attenuation
- units :
- dB/km
[396000 values with dtype=float64]
- specific_differential_phase(azimuth, range)float32...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float32]
- spectral_width(azimuth, range)float32...
- long_name :
- Spectral width
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- spectral_width_v(azimuth, range)float32...
- long_name :
- Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Uncorrected copolar correlation coefficient
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- uncorrected_differential_phase(azimuth, range)float32...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Uncorrected Differential Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Uncorrected differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_h(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from horizontal channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from vertical channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Horizontal Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- uncorrected_reflectivity_v(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- uncorrected_spectral_width_h(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Horizontal Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_spectral_width_v(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- unthresholded_power_copolar_h(azimuth, range)float32...
- long_name :
- Received copolar power, h channel, without thresholding.
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_h
[396000 values with dtype=float32]
- unthresholded_power_copolar_v(azimuth, range)float32...
- long_name :
- Received copolar power, v channel, without thresholding
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_v
[396000 values with dtype=float32]
- ground_clutter(azimuth, range)int64...
- long_name :
- Clutter mask
- standard_name :
- clutter_mask
- valid_min :
- 0
- valid_max :
- 1
- units :
- 1
- flag_values :
- [0 1]
- flag_meanings :
- no_clutter clutter
[396000 values with dtype=int64]
- clutter_masked_velocity(azimuth, range)float32...
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument, clutter removed
[396000 values with dtype=float32]
- sounding_temperature(azimuth, range)float32...
- long_name :
- Interpolated profile
- standard_name :
- interpolated_profile
- units :
- deg_C
[396000 values with dtype=float32]
- height(azimuth, range)float32...
- long_name :
- Height of radar beam
- standard_name :
- height
- units :
- m
[396000 values with dtype=float32]
- signal_to_noise_ratio(azimuth, range)float32...
- long_name :
- Signal to noise ratio
- units :
- dB
- standard_name :
- signal_to_noise_ratio
[396000 values with dtype=float32]
- velocity_texture(azimuth, range)float64...
- long_name :
- Mean dopper velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- gate_id(azimuth, range)int64...
- long_name :
- Classification of dominant scatterer
- units :
- 1
- valid_max :
- 6
- valid_min :
- 0
- flag_values :
- [0 1 2 3 4 5 6]
- flag_meanings :
- multi_trip rain snow no_scatter melting clutter terrain_blockage
[396000 values with dtype=int64]
- partial_beam_blockage(azimuth, range)float64...
- long_name :
- Partial Beam Block Fraction
- units :
- unitless
- standard_name :
- partial_beam_block
- comment :
- Partial beam block fraction due to terrain.
[396000 values with dtype=float64]
- cumulative_beam_blockage(azimuth, range)float64...
- long_name :
- Cumulative Beam Block Fraction
- units :
- unitless
- standard_name :
- cumulative_beam_block
- comment :
- Cumulative beam block fraction due to terrain.
[396000 values with dtype=float64]
- simulated_velocity(azimuth, range)float64...
- long_name :
- Simulated mean doppler velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- corrected_velocity(azimuth, range)float32...
- long_name :
- Corrected mean doppler velocity
- standard_name :
- corrected_radial_velocity_of_scatterers_away_from_instrument
- valid_min :
- -82.46
- valid_max :
- 82.46
- units :
- m/s
[396000 values with dtype=float32]
- unfolded_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- long_name :
- Unfolded Differential Phase
[396000 values with dtype=float64]
- corrected_differential_phase(azimuth, range)float64...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
[396000 values with dtype=float64]
- filtered_corrected_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
- long_name :
- Filtered Corrected Differential Phase
[396000 values with dtype=float64]
- corrected_specific_diff_phase(azimuth, range)float64...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float64]
- filtered_corrected_specific_diff_phase(azimuth, range)float64...
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Filtered Corrected Specific differential phase (KDP)
[396000 values with dtype=float64]
- corrected_differential_reflectivity(azimuth, range)float64...
- long_name :
- Corrected differential reflectivity
- units :
- dB
- standard_name :
- corrected_log_differential_reflectivity_hv
[396000 values with dtype=float64]
- corrected_reflectivity(azimuth, range)float64...
- long_name :
- Corrected reflectivity
- units :
- dBZ
- standard_name :
- corrected_equivalent_reflectivity_factor
[396000 values with dtype=float64]
- height_over_iso0(azimuth, range)float32...
- standard_name :
- height
- long_name :
- Height of radar beam over freezing level
- units :
- m
[396000 values with dtype=float32]
- path_integrated_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Attenuation
[396000 values with dtype=float64]
- path_integrated_differential_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Differential Attenuation
[396000 values with dtype=float64]
- rain_rate_A(azimuth, range)float64...
- long_name :
- rainfall_rate
- units :
- mm/hr
- standard_name :
- rainfall_rate
- valid_min :
- 0.0
- valid_max :
- 400.0
- comment :
- Rain rate calculated from specific_attenuation, R=51.3*specific_attenuation**0.81, note R=0.0 where norm coherent power < 0.4 or rhohv < 0.8
[396000 values with dtype=float64]
- sweep_number()float64...
- long_name :
- Sweep index number 0 based
- units :
- 1
[1 values with dtype=float64]
- sweep_fixed_angle()float32...
- long_name :
- Ray target fixed angle
- units :
- degree
[1 values with dtype=float32]
- sweep_mode()<U6'sector'
array('sector', dtype='<U6')
- prt(azimuth)float32...
- long_name :
- Pulse repetition time
- units :
- s
[360 values with dtype=float32]
- nyquist_velocity(azimuth)float32...
- long_name :
- Unambiguous doppler velocity
- units :
- m/s
- meta_group :
- instrument_parameters
[360 values with dtype=float32]
<xarray.DatasetView> Size: 122MB Dimensions: (azimuth: 360, range: 1100) Coordinates: time (azimuth) datetime64[ns] 3kB ... * range (range) float32 4kB ... elevation (azimuth) float32 1kB ... * azimuth (azimuth) float32 1kB ... latitude float32 4B -32.13 longitude float32 4B -64.73 altitude float32 4B 1.141e+03 crs_wkt int64 8B 0 x (azimuth, range) float32 2MB ... y (azimuth, range) float32 2MB ... z (azimuth, range) float32 2MB ... Data variables: (12/61) attenuation_corrected_differential_reflectivity (azimuth, range) float32 2MB ... attenuation_corrected_differential_reflectivity_lag_1 (azimuth, range) float32 2MB ... attenuation_corrected_reflectivity_h (azimuth, range) float32 2MB ... censor_mask (azimuth, range) int32 2MB ... classification_mask (azimuth, range) int32 2MB ... copol_correlation_coeff (azimuth, range) float32 2MB ... ... ... rain_rate_A (azimuth, range) float64 3MB ... sweep_number float64 8B ... sweep_fixed_angle float32 4B ... sweep_mode <U6 24B 'sector' prt (azimuth) float32 1kB ... nyquist_velocity (azimuth) float32 1kB ...
sweep_8- azimuth: 360
- range: 1100
- time(azimuth)datetime64[ns]2019-01-29T18:33:51.571000 ... 2...
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2019-01-29T18:33:51.571000000', '2019-01-29T18:33:51.642000000', '2019-01-29T18:33:51.713000000', ..., '2019-01-29T18:33:51.378000000', '2019-01-29T18:33:51.439000000', '2019-01-29T18:33:51.509999000'], dtype='datetime64[ns]')
- range(range)float320.0 100.0 ... 1.098e+05 1.099e+05
- long_name :
- Range to measurement volume
- units :
- m
- meters_between_gates :
- 100.0
- meters_to_center_of_first_gate :
- 50.0
- spacing_is_constant :
- True
- standard_name :
- projection_range_coordinate
- axis :
- radial_range_coordinate
array([0.000e+00, 1.000e+02, 2.000e+02, ..., 1.097e+05, 1.098e+05, 1.099e+05], dtype=float32)
- elevation(azimuth)float3213.28 13.27 13.27 ... 13.29 13.29
- long_name :
- Elevation angle from horizontal plane
- units :
- degree
- standard_name :
- sensor_to_target_elevation_angle
- axis :
- radial_elevation_coordinate
array([13.282471, 13.271484, 13.271484, ..., 13.293457, 13.293457, 13.293457], dtype=float32)
- azimuth(azimuth)float320.5164 1.582 2.593 ... 358.5 359.5
- long_name :
- Azimuth angle from true north
- units :
- degree
- standard_name :
- sensor_to_target_azimuth_angle
- axis :
- radial_azimuth_coordinate
array([ 0.516357, 1.582031, 2.592773, ..., 357.5473 , 358.5251 , 359.52484 ], dtype=float32)
- latitude()float32-32.13
- long_name :
- Latitude
- units :
- degree_N
- standard_name :
- latitude
- valid_min :
- -90.0
- valid_max :
- 90.0
array(-32.12641, dtype=float32)
- longitude()float32-64.73
- long_name :
- Longitude
- units :
- degree_E
- standard_name :
- longitude
- valid_min :
- -180.0
- valid_max :
- 180.0
array(-64.72837, dtype=float32)
- altitude()float321.141e+03
- long_name :
- Altitude
- units :
- m
- standard_name :
- altitude
array(1141., dtype=float32)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",-32.1264114379883,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",-64.7283706665039,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- unknown
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- -32.12641143798828
- longitude_of_projection_origin :
- -64.7283706665039
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- x(azimuth, range)float320.0 0.877 1.754 ... -883.4 -884.2
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 0.0000000e+00, 8.7697351e-01, 1.7539421e+00, ..., 9.5914728e+02, 9.6001892e+02, 9.6089056e+02], [ 0.0000000e+00, 2.6867139e+00, 5.3734136e+00, ..., 2.9384702e+03, 2.9411409e+03, 2.9438115e+03], [ 0.0000000e+00, 4.4022822e+00, 8.8045416e+00, ..., 4.8147949e+03, 4.8191709e+03, 4.8235469e+03], ..., [-0.0000000e+00, -4.1642427e+00, -8.3284626e+00, ..., -4.5544277e+03, -4.5585664e+03, -4.5627051e+03], [-0.0000000e+00, -2.5046396e+00, -5.0092659e+00, ..., -2.7393218e+03, -2.7418113e+03, -2.7443005e+03], [-0.0000000e+00, -8.0695701e-01, -1.6139096e+00, ..., -8.8256799e+02, -8.8337006e+02, -8.8417206e+02]], dtype=float32)
- y(azimuth, range)float320.0 97.31 ... 1.065e+05 1.066e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[0.00000000e+00, 9.73076401e+01, 1.94614746e+02, ..., 1.06425523e+05, 1.06522242e+05, 1.06618953e+05], [0.00000000e+00, 9.72788925e+01, 1.94557266e+02, ..., 1.06394336e+05, 1.06491031e+05, 1.06587734e+05], [0.00000000e+00, 9.72163620e+01, 1.94432205e+02, ..., 1.06325945e+05, 1.06422586e+05, 1.06519219e+05], ..., [0.00000000e+00, 9.72180481e+01, 1.94435562e+02, ..., 1.06327266e+05, 1.06423898e+05, 1.06520523e+05], [0.00000000e+00, 9.72749481e+01, 1.94549362e+02, ..., 1.06389500e+05, 1.06486188e+05, 1.06582867e+05], [0.00000000e+00, 9.73038406e+01, 1.94607147e+02, ..., 1.06421109e+05, 1.06517820e+05, 1.06614531e+05]], dtype=float32)
- z(azimuth, range)float321.141e+03 1.164e+03 ... 2.708e+04
- standard_name :
- height_above_ground
- units :
- meters
array([[ 1141., 1164., 1187., ..., 27013., 27038., 27062.], [ 1141., 1164., 1187., ..., 26993., 27017., 27041.], [ 1141., 1164., 1187., ..., 26993., 27017., 27041.], ..., [ 1141., 1164., 1187., ..., 27034., 27058., 27082.], [ 1141., 1164., 1187., ..., 27034., 27058., 27082.], [ 1141., 1164., 1187., ..., 27034., 27058., 27082.]], dtype=float32)
- attenuation_corrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- attenuation_corrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1 corrected for rainfall attenuation.
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.73713
[396000 values with dtype=float32]
- attenuation_corrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected reflectivity, horizontal channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- censor_mask(azimuth, range)int32...
- long_name :
- Censor Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16 32 64 128 256 512 1024 2048]
- flag_meanings :
- horizontal_snr_below_noise_threshold vertical_snr_below_noise_threshold horizontal_ccor_below_ccor_threshold vertical_ccor_below_ccor_threshold horizontal_sqi_below_sqi1_threshold vertical_sqi_below_sqi1_threshold horizontal_sqi_below_sqi2_threshold vertical_sqi_below_sqi2_threshold horizontal_sigpow_below_sigpow_threshold vertical_sigpow_below_sigpow_threshold urhohv_below_rhohv_threshold censored_by_clutter_micro_suppression
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- classification_mask(azimuth, range)int32...
- long_name :
- Classification Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16]
- flag_meanings :
- second_trip third_trip interference clutter sunspoke
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Copolar correlation coefficient (also known as rhohv)
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- differential_phase(azimuth, range)float32...
- long_name :
- Differential propagation phase shift
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- differential_reflectivity(azimuth, range)float32...
- long_name :
- Differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- mean_doppler_velocity(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Doppler velocity, vertical channel
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- normalized_coherent_power(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI.
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- normalized_coherent_power_v(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI, Vertical Channel
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- reflectivity(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- reflectivity_v(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor, vertical channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_h(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, horizontal channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_h
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_v(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, vertical channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_v
[396000 values with dtype=float32]
- specific_attenuation(azimuth, range)float64...
- long_name :
- Specific attenuation
- units :
- dB/km
- standard_name :
- specific_attenuation
- valid_min :
- 0.0
- valid_max :
- 1.0
[396000 values with dtype=float64]
- specific_differential_attenuation(azimuth, range)float64...
- long_name :
- Specific Differential Attenuation
- units :
- dB/km
[396000 values with dtype=float64]
- specific_differential_phase(azimuth, range)float32...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float32]
- spectral_width(azimuth, range)float32...
- long_name :
- Spectral width
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- spectral_width_v(azimuth, range)float32...
- long_name :
- Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Uncorrected copolar correlation coefficient
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- uncorrected_differential_phase(azimuth, range)float32...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Uncorrected Differential Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Uncorrected differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_h(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from horizontal channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from vertical channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Horizontal Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- uncorrected_reflectivity_v(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- uncorrected_spectral_width_h(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Horizontal Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_spectral_width_v(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- unthresholded_power_copolar_h(azimuth, range)float32...
- long_name :
- Received copolar power, h channel, without thresholding.
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_h
[396000 values with dtype=float32]
- unthresholded_power_copolar_v(azimuth, range)float32...
- long_name :
- Received copolar power, v channel, without thresholding
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_v
[396000 values with dtype=float32]
- ground_clutter(azimuth, range)int64...
- long_name :
- Clutter mask
- standard_name :
- clutter_mask
- valid_min :
- 0
- valid_max :
- 1
- units :
- 1
- flag_values :
- [0 1]
- flag_meanings :
- no_clutter clutter
[396000 values with dtype=int64]
- clutter_masked_velocity(azimuth, range)float32...
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument, clutter removed
[396000 values with dtype=float32]
- sounding_temperature(azimuth, range)float32...
- long_name :
- Interpolated profile
- standard_name :
- interpolated_profile
- units :
- deg_C
[396000 values with dtype=float32]
- height(azimuth, range)float32...
- long_name :
- Height of radar beam
- standard_name :
- height
- units :
- m
[396000 values with dtype=float32]
- signal_to_noise_ratio(azimuth, range)float32...
- long_name :
- Signal to noise ratio
- units :
- dB
- standard_name :
- signal_to_noise_ratio
[396000 values with dtype=float32]
- velocity_texture(azimuth, range)float64...
- long_name :
- Mean dopper velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- gate_id(azimuth, range)int64...
- long_name :
- Classification of dominant scatterer
- units :
- 1
- valid_max :
- 6
- valid_min :
- 0
- flag_values :
- [0 1 2 3 4 5 6]
- flag_meanings :
- multi_trip rain snow no_scatter melting clutter terrain_blockage
[396000 values with dtype=int64]
- partial_beam_blockage(azimuth, range)float64...
- long_name :
- Partial Beam Block Fraction
- units :
- unitless
- standard_name :
- partial_beam_block
- comment :
- Partial beam block fraction due to terrain.
[396000 values with dtype=float64]
- cumulative_beam_blockage(azimuth, range)float64...
- long_name :
- Cumulative Beam Block Fraction
- units :
- unitless
- standard_name :
- cumulative_beam_block
- comment :
- Cumulative beam block fraction due to terrain.
[396000 values with dtype=float64]
- simulated_velocity(azimuth, range)float64...
- long_name :
- Simulated mean doppler velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- corrected_velocity(azimuth, range)float32...
- long_name :
- Corrected mean doppler velocity
- standard_name :
- corrected_radial_velocity_of_scatterers_away_from_instrument
- valid_min :
- -82.46
- valid_max :
- 82.46
- units :
- m/s
[396000 values with dtype=float32]
- unfolded_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- long_name :
- Unfolded Differential Phase
[396000 values with dtype=float64]
- corrected_differential_phase(azimuth, range)float64...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
[396000 values with dtype=float64]
- filtered_corrected_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
- long_name :
- Filtered Corrected Differential Phase
[396000 values with dtype=float64]
- corrected_specific_diff_phase(azimuth, range)float64...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float64]
- filtered_corrected_specific_diff_phase(azimuth, range)float64...
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Filtered Corrected Specific differential phase (KDP)
[396000 values with dtype=float64]
- corrected_differential_reflectivity(azimuth, range)float64...
- long_name :
- Corrected differential reflectivity
- units :
- dB
- standard_name :
- corrected_log_differential_reflectivity_hv
[396000 values with dtype=float64]
- corrected_reflectivity(azimuth, range)float64...
- long_name :
- Corrected reflectivity
- units :
- dBZ
- standard_name :
- corrected_equivalent_reflectivity_factor
[396000 values with dtype=float64]
- height_over_iso0(azimuth, range)float32...
- standard_name :
- height
- long_name :
- Height of radar beam over freezing level
- units :
- m
[396000 values with dtype=float32]
- path_integrated_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Attenuation
[396000 values with dtype=float64]
- path_integrated_differential_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Differential Attenuation
[396000 values with dtype=float64]
- rain_rate_A(azimuth, range)float64...
- long_name :
- rainfall_rate
- units :
- mm/hr
- standard_name :
- rainfall_rate
- valid_min :
- 0.0
- valid_max :
- 400.0
- comment :
- Rain rate calculated from specific_attenuation, R=51.3*specific_attenuation**0.81, note R=0.0 where norm coherent power < 0.4 or rhohv < 0.8
[396000 values with dtype=float64]
- sweep_number()float64...
- long_name :
- Sweep index number 0 based
- units :
- 1
[1 values with dtype=float64]
- sweep_fixed_angle()float32...
- long_name :
- Ray target fixed angle
- units :
- degree
[1 values with dtype=float32]
- sweep_mode()<U6'sector'
array('sector', dtype='<U6')
- prt(azimuth)float32...
- long_name :
- Pulse repetition time
- units :
- s
[360 values with dtype=float32]
- nyquist_velocity(azimuth)float32...
- long_name :
- Unambiguous doppler velocity
- units :
- m/s
- meta_group :
- instrument_parameters
[360 values with dtype=float32]
<xarray.DatasetView> Size: 122MB Dimensions: (azimuth: 360, range: 1100) Coordinates: time (azimuth) datetime64[ns] 3kB ... * range (range) float32 4kB ... elevation (azimuth) float32 1kB ... * azimuth (azimuth) float32 1kB ... latitude float32 4B -32.13 longitude float32 4B -64.73 altitude float32 4B 1.141e+03 crs_wkt int64 8B 0 x (azimuth, range) float32 2MB ... y (azimuth, range) float32 2MB ... z (azimuth, range) float32 2MB ... Data variables: (12/61) attenuation_corrected_differential_reflectivity (azimuth, range) float32 2MB ... attenuation_corrected_differential_reflectivity_lag_1 (azimuth, range) float32 2MB ... attenuation_corrected_reflectivity_h (azimuth, range) float32 2MB ... censor_mask (azimuth, range) int32 2MB ... classification_mask (azimuth, range) int32 2MB ... copol_correlation_coeff (azimuth, range) float32 2MB ... ... ... rain_rate_A (azimuth, range) float64 3MB ... sweep_number float64 8B ... sweep_fixed_angle float32 4B ... sweep_mode <U6 24B 'sector' prt (azimuth) float32 1kB ... nyquist_velocity (azimuth) float32 1kB ...
sweep_9- azimuth: 360
- range: 1100
- time(azimuth)datetime64[ns]2019-01-29T18:34:39.547000 ... 2...
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2019-01-29T18:34:39.547000000', '2019-01-29T18:34:39.614000000', '2019-01-29T18:34:39.675000000', ..., '2019-01-29T18:34:39.350000000', '2019-01-29T18:34:39.410999999', '2019-01-29T18:34:39.482000000'], dtype='datetime64[ns]')
- range(range)float320.0 100.0 ... 1.098e+05 1.099e+05
- long_name :
- Range to measurement volume
- units :
- m
- meters_between_gates :
- 100.0
- meters_to_center_of_first_gate :
- 50.0
- spacing_is_constant :
- True
- standard_name :
- projection_range_coordinate
- axis :
- radial_range_coordinate
array([0.000e+00, 1.000e+02, 2.000e+02, ..., 1.097e+05, 1.098e+05, 1.099e+05], dtype=float32)
- elevation(azimuth)float3215.47 15.47 15.47 ... 15.47 15.47
- long_name :
- Elevation angle from horizontal plane
- units :
- degree
- standard_name :
- sensor_to_target_elevation_angle
- axis :
- radial_elevation_coordinate
array([15.46875, 15.46875, 15.46875, ..., 15.46875, 15.46875, 15.46875], dtype=float32)
- azimuth(azimuth)float320.5905 1.557 2.56 ... 358.6 359.6
- long_name :
- Azimuth angle from true north
- units :
- degree
- standard_name :
- sensor_to_target_azimuth_angle
- axis :
- radial_azimuth_coordinate
array([ 0.590515, 1.557312, 2.559814, ..., 357.59125 , 358.58002 , 359.60175 ], dtype=float32)
- latitude()float32-32.13
- long_name :
- Latitude
- units :
- degree_N
- standard_name :
- latitude
- valid_min :
- -90.0
- valid_max :
- 90.0
array(-32.12641, dtype=float32)
- longitude()float32-64.73
- long_name :
- Longitude
- units :
- degree_E
- standard_name :
- longitude
- valid_min :
- -180.0
- valid_max :
- 180.0
array(-64.72837, dtype=float32)
- altitude()float321.141e+03
- long_name :
- Altitude
- units :
- m
- standard_name :
- altitude
array(1141., dtype=float32)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",-32.1264114379883,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",-64.7283706665039,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- unknown
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- -32.12641143798828
- longitude_of_projection_origin :
- -64.7283706665039
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- x(azimuth, range)float320.0 0.9932 1.986 ... -732.9 -733.5
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 0.0000000e+00, 9.9315536e-01, 1.9863044e+00, ..., 1.0857006e+03, 1.0866869e+03, 1.0876731e+03], [ 0.0000000e+00, 2.6188824e+00, 5.2377481e+00, ..., 2.8629177e+03, 2.8655186e+03, 2.8681189e+03], [ 0.0000000e+00, 4.3038568e+00, 8.6076870e+00, ..., 4.7049038e+03, 4.7091777e+03, 4.7134512e+03], ..., [-0.0000000e+00, -4.0500274e+00, -8.1000290e+00, ..., -4.4274214e+03, -4.4314429e+03, -4.4354648e+03], [-0.0000000e+00, -2.3879957e+00, -4.7759762e+00, ..., -2.6105164e+03, -2.6128877e+03, -2.6152590e+03], [-0.0000000e+00, -6.6979253e-01, -1.3395808e+00, ..., -7.3220587e+02, -7.3287097e+02, -7.3353607e+02]], dtype=float32)
- y(azimuth, range)float320.0 96.36 ... 1.054e+05 1.055e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[0.00000000e+00, 9.63592453e+01, 1.92717880e+02, ..., 1.05338297e+05, 1.05433984e+05, 1.05529672e+05], [0.00000000e+00, 9.63287735e+01, 1.92656937e+02, ..., 1.05304977e+05, 1.05400641e+05, 1.05496289e+05], [0.00000000e+00, 9.62682114e+01, 1.92535812e+02, ..., 1.05238773e+05, 1.05334375e+05, 1.05429969e+05], ..., [0.00000000e+00, 9.62792206e+01, 1.92557831e+02, ..., 1.05250812e+05, 1.05346422e+05, 1.05442023e+05], [0.00000000e+00, 9.63347702e+01, 1.92668930e+02, ..., 1.05311539e+05, 1.05407211e+05, 1.05502867e+05], [0.00000000e+00, 9.63620377e+01, 1.92723465e+02, ..., 1.05341344e+05, 1.05437039e+05, 1.05532727e+05]], dtype=float32)
- z(azimuth, range)float321.141e+03 1.167e+03 ... 3.111e+04
- standard_name :
- height_above_ground
- units :
- meters
array([[ 1141., 1167., 1194., ..., 31055., 31082., 31110.], [ 1141., 1167., 1194., ..., 31055., 31082., 31110.], [ 1141., 1167., 1194., ..., 31055., 31082., 31110.], ..., [ 1141., 1167., 1194., ..., 31055., 31082., 31110.], [ 1141., 1167., 1194., ..., 31055., 31082., 31110.], [ 1141., 1167., 1194., ..., 31055., 31082., 31110.]], dtype=float32)
- attenuation_corrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- attenuation_corrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1 corrected for rainfall attenuation.
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.73713
[396000 values with dtype=float32]
- attenuation_corrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected reflectivity, horizontal channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- censor_mask(azimuth, range)int32...
- long_name :
- Censor Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16 32 64 128 256 512 1024 2048]
- flag_meanings :
- horizontal_snr_below_noise_threshold vertical_snr_below_noise_threshold horizontal_ccor_below_ccor_threshold vertical_ccor_below_ccor_threshold horizontal_sqi_below_sqi1_threshold vertical_sqi_below_sqi1_threshold horizontal_sqi_below_sqi2_threshold vertical_sqi_below_sqi2_threshold horizontal_sigpow_below_sigpow_threshold vertical_sigpow_below_sigpow_threshold urhohv_below_rhohv_threshold censored_by_clutter_micro_suppression
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- classification_mask(azimuth, range)int32...
- long_name :
- Classification Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16]
- flag_meanings :
- second_trip third_trip interference clutter sunspoke
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Copolar correlation coefficient (also known as rhohv)
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- differential_phase(azimuth, range)float32...
- long_name :
- Differential propagation phase shift
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- differential_reflectivity(azimuth, range)float32...
- long_name :
- Differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- mean_doppler_velocity(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Doppler velocity, vertical channel
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- normalized_coherent_power(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI.
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- normalized_coherent_power_v(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI, Vertical Channel
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- reflectivity(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- reflectivity_v(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor, vertical channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_h(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, horizontal channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_h
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_v(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, vertical channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_v
[396000 values with dtype=float32]
- specific_attenuation(azimuth, range)float64...
- long_name :
- Specific attenuation
- units :
- dB/km
- standard_name :
- specific_attenuation
- valid_min :
- 0.0
- valid_max :
- 1.0
[396000 values with dtype=float64]
- specific_differential_attenuation(azimuth, range)float64...
- long_name :
- Specific Differential Attenuation
- units :
- dB/km
[396000 values with dtype=float64]
- specific_differential_phase(azimuth, range)float32...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float32]
- spectral_width(azimuth, range)float32...
- long_name :
- Spectral width
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- spectral_width_v(azimuth, range)float32...
- long_name :
- Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Uncorrected copolar correlation coefficient
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- uncorrected_differential_phase(azimuth, range)float32...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Uncorrected Differential Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Uncorrected differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_h(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from horizontal channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from vertical channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Horizontal Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- uncorrected_reflectivity_v(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- uncorrected_spectral_width_h(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Horizontal Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_spectral_width_v(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- unthresholded_power_copolar_h(azimuth, range)float32...
- long_name :
- Received copolar power, h channel, without thresholding.
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_h
[396000 values with dtype=float32]
- unthresholded_power_copolar_v(azimuth, range)float32...
- long_name :
- Received copolar power, v channel, without thresholding
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_v
[396000 values with dtype=float32]
- ground_clutter(azimuth, range)int64...
- long_name :
- Clutter mask
- standard_name :
- clutter_mask
- valid_min :
- 0
- valid_max :
- 1
- units :
- 1
- flag_values :
- [0 1]
- flag_meanings :
- no_clutter clutter
[396000 values with dtype=int64]
- clutter_masked_velocity(azimuth, range)float32...
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument, clutter removed
[396000 values with dtype=float32]
- sounding_temperature(azimuth, range)float32...
- long_name :
- Interpolated profile
- standard_name :
- interpolated_profile
- units :
- deg_C
[396000 values with dtype=float32]
- height(azimuth, range)float32...
- long_name :
- Height of radar beam
- standard_name :
- height
- units :
- m
[396000 values with dtype=float32]
- signal_to_noise_ratio(azimuth, range)float32...
- long_name :
- Signal to noise ratio
- units :
- dB
- standard_name :
- signal_to_noise_ratio
[396000 values with dtype=float32]
- velocity_texture(azimuth, range)float64...
- long_name :
- Mean dopper velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- gate_id(azimuth, range)int64...
- long_name :
- Classification of dominant scatterer
- units :
- 1
- valid_max :
- 6
- valid_min :
- 0
- flag_values :
- [0 1 2 3 4 5 6]
- flag_meanings :
- multi_trip rain snow no_scatter melting clutter terrain_blockage
[396000 values with dtype=int64]
- partial_beam_blockage(azimuth, range)float64...
- long_name :
- Partial Beam Block Fraction
- units :
- unitless
- standard_name :
- partial_beam_block
- comment :
- Partial beam block fraction due to terrain.
[396000 values with dtype=float64]
- cumulative_beam_blockage(azimuth, range)float64...
- long_name :
- Cumulative Beam Block Fraction
- units :
- unitless
- standard_name :
- cumulative_beam_block
- comment :
- Cumulative beam block fraction due to terrain.
[396000 values with dtype=float64]
- simulated_velocity(azimuth, range)float64...
- long_name :
- Simulated mean doppler velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- corrected_velocity(azimuth, range)float32...
- long_name :
- Corrected mean doppler velocity
- standard_name :
- corrected_radial_velocity_of_scatterers_away_from_instrument
- valid_min :
- -82.46
- valid_max :
- 82.46
- units :
- m/s
[396000 values with dtype=float32]
- unfolded_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- long_name :
- Unfolded Differential Phase
[396000 values with dtype=float64]
- corrected_differential_phase(azimuth, range)float64...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
[396000 values with dtype=float64]
- filtered_corrected_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
- long_name :
- Filtered Corrected Differential Phase
[396000 values with dtype=float64]
- corrected_specific_diff_phase(azimuth, range)float64...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float64]
- filtered_corrected_specific_diff_phase(azimuth, range)float64...
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Filtered Corrected Specific differential phase (KDP)
[396000 values with dtype=float64]
- corrected_differential_reflectivity(azimuth, range)float64...
- long_name :
- Corrected differential reflectivity
- units :
- dB
- standard_name :
- corrected_log_differential_reflectivity_hv
[396000 values with dtype=float64]
- corrected_reflectivity(azimuth, range)float64...
- long_name :
- Corrected reflectivity
- units :
- dBZ
- standard_name :
- corrected_equivalent_reflectivity_factor
[396000 values with dtype=float64]
- height_over_iso0(azimuth, range)float32...
- standard_name :
- height
- long_name :
- Height of radar beam over freezing level
- units :
- m
[396000 values with dtype=float32]
- path_integrated_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Attenuation
[396000 values with dtype=float64]
- path_integrated_differential_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Differential Attenuation
[396000 values with dtype=float64]
- rain_rate_A(azimuth, range)float64...
- long_name :
- rainfall_rate
- units :
- mm/hr
- standard_name :
- rainfall_rate
- valid_min :
- 0.0
- valid_max :
- 400.0
- comment :
- Rain rate calculated from specific_attenuation, R=51.3*specific_attenuation**0.81, note R=0.0 where norm coherent power < 0.4 or rhohv < 0.8
[396000 values with dtype=float64]
- sweep_number()float64...
- long_name :
- Sweep index number 0 based
- units :
- 1
[1 values with dtype=float64]
- sweep_fixed_angle()float32...
- long_name :
- Ray target fixed angle
- units :
- degree
[1 values with dtype=float32]
- sweep_mode()<U6'sector'
array('sector', dtype='<U6')
- prt(azimuth)float32...
- long_name :
- Pulse repetition time
- units :
- s
[360 values with dtype=float32]
- nyquist_velocity(azimuth)float32...
- long_name :
- Unambiguous doppler velocity
- units :
- m/s
- meta_group :
- instrument_parameters
[360 values with dtype=float32]
<xarray.DatasetView> Size: 122MB Dimensions: (azimuth: 360, range: 1100) Coordinates: time (azimuth) datetime64[ns] 3kB ... * range (range) float32 4kB ... elevation (azimuth) float32 1kB ... * azimuth (azimuth) float32 1kB ... latitude float32 4B -32.13 longitude float32 4B -64.73 altitude float32 4B 1.141e+03 crs_wkt int64 8B 0 x (azimuth, range) float32 2MB ... y (azimuth, range) float32 2MB ... z (azimuth, range) float32 2MB ... Data variables: (12/61) attenuation_corrected_differential_reflectivity (azimuth, range) float32 2MB ... attenuation_corrected_differential_reflectivity_lag_1 (azimuth, range) float32 2MB ... attenuation_corrected_reflectivity_h (azimuth, range) float32 2MB ... censor_mask (azimuth, range) int32 2MB ... classification_mask (azimuth, range) int32 2MB ... copol_correlation_coeff (azimuth, range) float32 2MB ... ... ... rain_rate_A (azimuth, range) float64 3MB ... sweep_number float64 8B ... sweep_fixed_angle float32 4B ... sweep_mode <U6 24B 'sector' prt (azimuth) float32 1kB ... nyquist_velocity (azimuth) float32 1kB ...
sweep_10- azimuth: 360
- range: 1100
- time(azimuth)datetime64[ns]2019-01-29T18:35:03.534000 ... 2...
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2019-01-29T18:35:03.534000000', '2019-01-29T18:35:03.595000000', '2019-01-29T18:35:03.666000000', ..., '2019-01-29T18:35:03.331000000', '2019-01-29T18:35:03.402000000', '2019-01-29T18:35:03.463000000'], dtype='datetime64[ns]')
- range(range)float320.0 100.0 ... 1.098e+05 1.099e+05
- long_name :
- Range to measurement volume
- units :
- m
- meters_between_gates :
- 100.0
- meters_to_center_of_first_gate :
- 50.0
- spacing_is_constant :
- True
- standard_name :
- projection_range_coordinate
- axis :
- radial_range_coordinate
array([0.000e+00, 1.000e+02, 2.000e+02, ..., 1.097e+05, 1.098e+05, 1.099e+05], dtype=float32)
- elevation(azimuth)float3218.39 18.39 18.39 ... 18.39 18.39
- long_name :
- Elevation angle from horizontal plane
- units :
- degree
- standard_name :
- sensor_to_target_elevation_angle
- axis :
- radial_elevation_coordinate
array([18.391113, 18.391113, 18.391113, ..., 18.391113, 18.391113, 18.391113], dtype=float32)
- azimuth(azimuth)float320.5823 1.557 2.579 ... 358.6 359.6
- long_name :
- Azimuth angle from true north
- units :
- degree
- standard_name :
- sensor_to_target_azimuth_angle
- axis :
- radial_azimuth_coordinate
array([ 0.582275, 1.557312, 2.579041, ..., 357.60223 , 358.591 , 359.59076 ], dtype=float32)
- latitude()float32-32.13
- long_name :
- Latitude
- units :
- degree_N
- standard_name :
- latitude
- valid_min :
- -90.0
- valid_max :
- 90.0
array(-32.12641, dtype=float32)
- longitude()float32-64.73
- long_name :
- Longitude
- units :
- degree_E
- standard_name :
- longitude
- valid_min :
- -180.0
- valid_max :
- 180.0
array(-64.72837, dtype=float32)
- altitude()float321.141e+03
- long_name :
- Altitude
- units :
- m
- standard_name :
- altitude
array(1141., dtype=float32)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",-32.1264114379883,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",-64.7283706665039,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- unknown
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- -32.12641143798828
- longitude_of_projection_origin :
- -64.7283706665039
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- x(azimuth, range)float320.0 0.9642 1.928 ... -741.1 -741.7
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 0.0000000e+00, 9.6420705e-01, 1.9284066e+00, ..., 1.0533960e+03, 1.0543522e+03, 1.0553085e+03], [ 0.0000000e+00, 2.5785260e+00, 5.1570320e+00, ..., 2.8170391e+03, 2.8195962e+03, 2.8221533e+03], [ 0.0000000e+00, 4.2693410e+00, 8.5386496e+00, ..., 4.6642539e+03, 4.6684883e+03, 4.6727222e+03], ..., [-0.0000000e+00, -3.9694457e+00, -7.9388609e+00, ..., -4.3366187e+03, -4.3405552e+03, -4.3444917e+03], [-0.0000000e+00, -2.3330152e+00, -4.6660128e+00, ..., -2.5488186e+03, -2.5511323e+03, -2.5534460e+03], [-0.0000000e+00, -6.7770326e-01, -1.3554013e+00, ..., -7.4039069e+02, -7.4106274e+02, -7.4173486e+02]], dtype=float32)
- y(azimuth, range)float320.0 94.87 ... 1.037e+05 1.038e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[0.00000000e+00, 9.48745117e+01, 1.89748291e+02, ..., 1.03650383e+05, 1.03744477e+05, 1.03838562e+05], [0.00000000e+00, 9.48443680e+01, 1.89688004e+02, ..., 1.03617445e+05, 1.03711508e+05, 1.03805562e+05], [0.00000000e+00, 9.47833023e+01, 1.89565872e+02, ..., 1.03550742e+05, 1.03644734e+05, 1.03738734e+05], ..., [0.00000000e+00, 9.47963409e+01, 1.89591949e+02, ..., 1.03564977e+05, 1.03658992e+05, 1.03753000e+05], [0.00000000e+00, 9.48507233e+01, 1.89700714e+02, ..., 1.03624391e+05, 1.03718453e+05, 1.03812523e+05], [0.00000000e+00, 9.48769913e+01, 1.89753250e+02, ..., 1.03653094e+05, 1.03747180e+05, 1.03841273e+05]], dtype=float32)
- z(azimuth, range)float321.141e+03 1.172e+03 ... 3.645e+04
- standard_name :
- height_above_ground
- units :
- meters
array([[ 1141., 1172., 1204., ..., 36386., 36419., 36452.], [ 1141., 1172., 1204., ..., 36386., 36419., 36452.], [ 1141., 1172., 1204., ..., 36386., 36419., 36452.], ..., [ 1141., 1172., 1204., ..., 36386., 36419., 36452.], [ 1141., 1172., 1204., ..., 36386., 36419., 36452.], [ 1141., 1172., 1204., ..., 36386., 36419., 36452.]], dtype=float32)
- attenuation_corrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- attenuation_corrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1 corrected for rainfall attenuation.
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.73713
[396000 values with dtype=float32]
- attenuation_corrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected reflectivity, horizontal channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- censor_mask(azimuth, range)int32...
- long_name :
- Censor Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16 32 64 128 256 512 1024 2048]
- flag_meanings :
- horizontal_snr_below_noise_threshold vertical_snr_below_noise_threshold horizontal_ccor_below_ccor_threshold vertical_ccor_below_ccor_threshold horizontal_sqi_below_sqi1_threshold vertical_sqi_below_sqi1_threshold horizontal_sqi_below_sqi2_threshold vertical_sqi_below_sqi2_threshold horizontal_sigpow_below_sigpow_threshold vertical_sigpow_below_sigpow_threshold urhohv_below_rhohv_threshold censored_by_clutter_micro_suppression
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- classification_mask(azimuth, range)int32...
- long_name :
- Classification Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16]
- flag_meanings :
- second_trip third_trip interference clutter sunspoke
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Copolar correlation coefficient (also known as rhohv)
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- differential_phase(azimuth, range)float32...
- long_name :
- Differential propagation phase shift
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- differential_reflectivity(azimuth, range)float32...
- long_name :
- Differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- mean_doppler_velocity(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Doppler velocity, vertical channel
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- normalized_coherent_power(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI.
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- normalized_coherent_power_v(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI, Vertical Channel
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- reflectivity(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- reflectivity_v(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor, vertical channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_h(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, horizontal channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_h
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_v(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, vertical channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_v
[396000 values with dtype=float32]
- specific_attenuation(azimuth, range)float64...
- long_name :
- Specific attenuation
- units :
- dB/km
- standard_name :
- specific_attenuation
- valid_min :
- 0.0
- valid_max :
- 1.0
[396000 values with dtype=float64]
- specific_differential_attenuation(azimuth, range)float64...
- long_name :
- Specific Differential Attenuation
- units :
- dB/km
[396000 values with dtype=float64]
- specific_differential_phase(azimuth, range)float32...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float32]
- spectral_width(azimuth, range)float32...
- long_name :
- Spectral width
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- spectral_width_v(azimuth, range)float32...
- long_name :
- Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Uncorrected copolar correlation coefficient
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- uncorrected_differential_phase(azimuth, range)float32...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Uncorrected Differential Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Uncorrected differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_h(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from horizontal channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from vertical channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Horizontal Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- uncorrected_reflectivity_v(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- uncorrected_spectral_width_h(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Horizontal Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_spectral_width_v(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- unthresholded_power_copolar_h(azimuth, range)float32...
- long_name :
- Received copolar power, h channel, without thresholding.
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_h
[396000 values with dtype=float32]
- unthresholded_power_copolar_v(azimuth, range)float32...
- long_name :
- Received copolar power, v channel, without thresholding
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_v
[396000 values with dtype=float32]
- ground_clutter(azimuth, range)int64...
- long_name :
- Clutter mask
- standard_name :
- clutter_mask
- valid_min :
- 0
- valid_max :
- 1
- units :
- 1
- flag_values :
- [0 1]
- flag_meanings :
- no_clutter clutter
[396000 values with dtype=int64]
- clutter_masked_velocity(azimuth, range)float32...
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument, clutter removed
[396000 values with dtype=float32]
- sounding_temperature(azimuth, range)float32...
- long_name :
- Interpolated profile
- standard_name :
- interpolated_profile
- units :
- deg_C
[396000 values with dtype=float32]
- height(azimuth, range)float32...
- long_name :
- Height of radar beam
- standard_name :
- height
- units :
- m
[396000 values with dtype=float32]
- signal_to_noise_ratio(azimuth, range)float32...
- long_name :
- Signal to noise ratio
- units :
- dB
- standard_name :
- signal_to_noise_ratio
[396000 values with dtype=float32]
- velocity_texture(azimuth, range)float64...
- long_name :
- Mean dopper velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- gate_id(azimuth, range)int64...
- long_name :
- Classification of dominant scatterer
- units :
- 1
- valid_max :
- 6
- valid_min :
- 0
- flag_values :
- [0 1 2 3 4 5 6]
- flag_meanings :
- multi_trip rain snow no_scatter melting clutter terrain_blockage
[396000 values with dtype=int64]
- partial_beam_blockage(azimuth, range)float64...
- long_name :
- Partial Beam Block Fraction
- units :
- unitless
- standard_name :
- partial_beam_block
- comment :
- Partial beam block fraction due to terrain.
[396000 values with dtype=float64]
- cumulative_beam_blockage(azimuth, range)float64...
- long_name :
- Cumulative Beam Block Fraction
- units :
- unitless
- standard_name :
- cumulative_beam_block
- comment :
- Cumulative beam block fraction due to terrain.
[396000 values with dtype=float64]
- simulated_velocity(azimuth, range)float64...
- long_name :
- Simulated mean doppler velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- corrected_velocity(azimuth, range)float32...
- long_name :
- Corrected mean doppler velocity
- standard_name :
- corrected_radial_velocity_of_scatterers_away_from_instrument
- valid_min :
- -82.46
- valid_max :
- 82.46
- units :
- m/s
[396000 values with dtype=float32]
- unfolded_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- long_name :
- Unfolded Differential Phase
[396000 values with dtype=float64]
- corrected_differential_phase(azimuth, range)float64...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
[396000 values with dtype=float64]
- filtered_corrected_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
- long_name :
- Filtered Corrected Differential Phase
[396000 values with dtype=float64]
- corrected_specific_diff_phase(azimuth, range)float64...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float64]
- filtered_corrected_specific_diff_phase(azimuth, range)float64...
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Filtered Corrected Specific differential phase (KDP)
[396000 values with dtype=float64]
- corrected_differential_reflectivity(azimuth, range)float64...
- long_name :
- Corrected differential reflectivity
- units :
- dB
- standard_name :
- corrected_log_differential_reflectivity_hv
[396000 values with dtype=float64]
- corrected_reflectivity(azimuth, range)float64...
- long_name :
- Corrected reflectivity
- units :
- dBZ
- standard_name :
- corrected_equivalent_reflectivity_factor
[396000 values with dtype=float64]
- height_over_iso0(azimuth, range)float32...
- standard_name :
- height
- long_name :
- Height of radar beam over freezing level
- units :
- m
[396000 values with dtype=float32]
- path_integrated_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Attenuation
[396000 values with dtype=float64]
- path_integrated_differential_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Differential Attenuation
[396000 values with dtype=float64]
- rain_rate_A(azimuth, range)float64...
- long_name :
- rainfall_rate
- units :
- mm/hr
- standard_name :
- rainfall_rate
- valid_min :
- 0.0
- valid_max :
- 400.0
- comment :
- Rain rate calculated from specific_attenuation, R=51.3*specific_attenuation**0.81, note R=0.0 where norm coherent power < 0.4 or rhohv < 0.8
[396000 values with dtype=float64]
- sweep_number()float64...
- long_name :
- Sweep index number 0 based
- units :
- 1
[1 values with dtype=float64]
- sweep_fixed_angle()float32...
- long_name :
- Ray target fixed angle
- units :
- degree
[1 values with dtype=float32]
- sweep_mode()<U6'sector'
array('sector', dtype='<U6')
- prt(azimuth)float32...
- long_name :
- Pulse repetition time
- units :
- s
[360 values with dtype=float32]
- nyquist_velocity(azimuth)float32...
- long_name :
- Unambiguous doppler velocity
- units :
- m/s
- meta_group :
- instrument_parameters
[360 values with dtype=float32]
<xarray.DatasetView> Size: 122MB Dimensions: (azimuth: 360, range: 1100) Coordinates: time (azimuth) datetime64[ns] 3kB ... * range (range) float32 4kB ... elevation (azimuth) float32 1kB ... * azimuth (azimuth) float32 1kB ... latitude float32 4B -32.13 longitude float32 4B -64.73 altitude float32 4B 1.141e+03 crs_wkt int64 8B 0 x (azimuth, range) float32 2MB ... y (azimuth, range) float32 2MB ... z (azimuth, range) float32 2MB ... Data variables: (12/61) attenuation_corrected_differential_reflectivity (azimuth, range) float32 2MB ... attenuation_corrected_differential_reflectivity_lag_1 (azimuth, range) float32 2MB ... attenuation_corrected_reflectivity_h (azimuth, range) float32 2MB ... censor_mask (azimuth, range) int32 2MB ... classification_mask (azimuth, range) int32 2MB ... copol_correlation_coeff (azimuth, range) float32 2MB ... ... ... rain_rate_A (azimuth, range) float64 3MB ... sweep_number float64 8B ... sweep_fixed_angle float32 4B ... sweep_mode <U6 24B 'sector' prt (azimuth) float32 1kB ... nyquist_velocity (azimuth) float32 1kB ...
sweep_11- azimuth: 360
- range: 1100
- time(azimuth)datetime64[ns]2019-01-29T18:35:27.511000 ... 2...
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2019-01-29T18:35:27.511000000', '2019-01-29T18:35:27.581999999', '2019-01-29T18:35:27.653000000', ..., '2019-01-29T18:35:27.318000000', '2019-01-29T18:35:27.378000000', '2019-01-29T18:35:27.450000000'], dtype='datetime64[ns]')
- range(range)float320.0 100.0 ... 1.098e+05 1.099e+05
- long_name :
- Range to measurement volume
- units :
- m
- meters_between_gates :
- 100.0
- meters_to_center_of_first_gate :
- 50.0
- spacing_is_constant :
- True
- standard_name :
- projection_range_coordinate
- axis :
- radial_range_coordinate
array([0.000e+00, 1.000e+02, 2.000e+02, ..., 1.097e+05, 1.098e+05, 1.099e+05], dtype=float32)
- elevation(azimuth)float3222.09 22.08 22.08 ... 22.08 22.09
- long_name :
- Elevation angle from horizontal plane
- units :
- degree
- standard_name :
- sensor_to_target_elevation_angle
- axis :
- radial_elevation_coordinate
array([22.093506, 22.08252 , 22.08252 , ..., 22.093506, 22.08252 , 22.093506], dtype=float32)
- azimuth(azimuth)float320.5383 1.604 2.615 ... 358.6 359.6
- long_name :
- Azimuth angle from true north
- units :
- degree
- standard_name :
- sensor_to_target_azimuth_angle
- axis :
- radial_azimuth_coordinate
array([ 0.53833 , 1.604004, 2.614746, ..., 357.56927 , 358.55804 , 359.5578 ], dtype=float32)
- latitude()float32-32.13
- long_name :
- Latitude
- units :
- degree_N
- standard_name :
- latitude
- valid_min :
- -90.0
- valid_max :
- 90.0
array(-32.12641, dtype=float32)
- longitude()float32-64.73
- long_name :
- Longitude
- units :
- degree_E
- standard_name :
- longitude
- valid_min :
- -180.0
- valid_max :
- 180.0
array(-64.72837, dtype=float32)
- altitude()float321.141e+03
- long_name :
- Altitude
- units :
- m
- standard_name :
- altitude
array(1141., dtype=float32)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",-32.1264114379883,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",-64.7283706665039,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- unknown
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- -32.12641143798828
- longitude_of_projection_origin :
- -64.7283706665039
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- x(azimuth, range)float320.0 0.8704 1.741 ... -781.3 -782.0
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 0.0000000e+00, 8.7043875e-01, 1.7408699e+00, ..., 9.5021655e+02, 9.5107843e+02, 9.5194031e+02], [ 0.0000000e+00, 2.5934534e+00, 5.1868834e+00, ..., 2.8311560e+03, 2.8337241e+03, 2.8362922e+03], [ 0.0000000e+00, 4.2267690e+00, 8.4534998e+00, ..., 4.6141729e+03, 4.6183584e+03, 4.6225439e+03], ..., [-0.0000000e+00, -3.9291644e+00, -7.8582940e+00, ..., -4.2892817e+03, -4.2931719e+03, -4.2970625e+03], [-0.0000000e+00, -2.3314967e+00, -4.6629720e+00, ..., -2.5451895e+03, -2.5474983e+03, -2.5498069e+03], [-0.0000000e+00, -7.1501327e-01, -1.4300201e+00, ..., -7.8054590e+02, -7.8125385e+02, -7.8196185e+02]], dtype=float32)
- y(azimuth, range)float320.0 92.64 ... 1.012e+05 1.013e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[0.00000000e+00, 9.26401901e+01, 1.85279556e+02, ..., 1.01130875e+05, 1.01222609e+05, 1.01314336e+05], [0.00000000e+00, 9.26151810e+01, 1.85229523e+02, ..., 1.01103812e+05, 1.01195523e+05, 1.01287234e+05], [0.00000000e+00, 9.25550308e+01, 1.85109222e+02, ..., 1.01038141e+05, 1.01129797e+05, 1.01221445e+05], ..., [0.00000000e+00, 9.25609207e+01, 1.85121017e+02, ..., 1.01044344e+05, 1.01135992e+05, 1.01227648e+05], [0.00000000e+00, 9.26221466e+01, 1.85243454e+02, ..., 1.01111414e+05, 1.01203133e+05, 1.01294852e+05], [0.00000000e+00, 9.26415176e+01, 1.85282211e+02, ..., 1.01132328e+05, 1.01224062e+05, 1.01315789e+05]], dtype=float32)
- z(azimuth, range)float321.141e+03 1.178e+03 ... 4.308e+04
- standard_name :
- height_above_ground
- units :
- meters
array([[ 1141., 1178., 1216., ..., 43006., 43045., 43083.], [ 1141., 1178., 1216., ..., 42987., 43025., 43064.], [ 1141., 1178., 1216., ..., 42987., 43025., 43064.], ..., [ 1141., 1178., 1216., ..., 43006., 43045., 43083.], [ 1141., 1178., 1216., ..., 42987., 43025., 43064.], [ 1141., 1178., 1216., ..., 43006., 43045., 43083.]], dtype=float32)
- attenuation_corrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- attenuation_corrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1 corrected for rainfall attenuation.
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.73713
[396000 values with dtype=float32]
- attenuation_corrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected reflectivity, horizontal channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- censor_mask(azimuth, range)int32...
- long_name :
- Censor Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16 32 64 128 256 512 1024 2048]
- flag_meanings :
- horizontal_snr_below_noise_threshold vertical_snr_below_noise_threshold horizontal_ccor_below_ccor_threshold vertical_ccor_below_ccor_threshold horizontal_sqi_below_sqi1_threshold vertical_sqi_below_sqi1_threshold horizontal_sqi_below_sqi2_threshold vertical_sqi_below_sqi2_threshold horizontal_sigpow_below_sigpow_threshold vertical_sigpow_below_sigpow_threshold urhohv_below_rhohv_threshold censored_by_clutter_micro_suppression
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- classification_mask(azimuth, range)int32...
- long_name :
- Classification Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16]
- flag_meanings :
- second_trip third_trip interference clutter sunspoke
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Copolar correlation coefficient (also known as rhohv)
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- differential_phase(azimuth, range)float32...
- long_name :
- Differential propagation phase shift
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- differential_reflectivity(azimuth, range)float32...
- long_name :
- Differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- mean_doppler_velocity(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Doppler velocity, vertical channel
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- normalized_coherent_power(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI.
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- normalized_coherent_power_v(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI, Vertical Channel
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- reflectivity(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- reflectivity_v(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor, vertical channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_h(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, horizontal channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_h
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_v(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, vertical channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_v
[396000 values with dtype=float32]
- specific_attenuation(azimuth, range)float64...
- long_name :
- Specific attenuation
- units :
- dB/km
- standard_name :
- specific_attenuation
- valid_min :
- 0.0
- valid_max :
- 1.0
[396000 values with dtype=float64]
- specific_differential_attenuation(azimuth, range)float64...
- long_name :
- Specific Differential Attenuation
- units :
- dB/km
[396000 values with dtype=float64]
- specific_differential_phase(azimuth, range)float32...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float32]
- spectral_width(azimuth, range)float32...
- long_name :
- Spectral width
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- spectral_width_v(azimuth, range)float32...
- long_name :
- Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Uncorrected copolar correlation coefficient
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- uncorrected_differential_phase(azimuth, range)float32...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Uncorrected Differential Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Uncorrected differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_h(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from horizontal channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from vertical channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Horizontal Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- uncorrected_reflectivity_v(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- uncorrected_spectral_width_h(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Horizontal Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_spectral_width_v(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- unthresholded_power_copolar_h(azimuth, range)float32...
- long_name :
- Received copolar power, h channel, without thresholding.
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_h
[396000 values with dtype=float32]
- unthresholded_power_copolar_v(azimuth, range)float32...
- long_name :
- Received copolar power, v channel, without thresholding
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_v
[396000 values with dtype=float32]
- ground_clutter(azimuth, range)int64...
- long_name :
- Clutter mask
- standard_name :
- clutter_mask
- valid_min :
- 0
- valid_max :
- 1
- units :
- 1
- flag_values :
- [0 1]
- flag_meanings :
- no_clutter clutter
[396000 values with dtype=int64]
- clutter_masked_velocity(azimuth, range)float32...
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument, clutter removed
[396000 values with dtype=float32]
- sounding_temperature(azimuth, range)float32...
- long_name :
- Interpolated profile
- standard_name :
- interpolated_profile
- units :
- deg_C
[396000 values with dtype=float32]
- height(azimuth, range)float32...
- long_name :
- Height of radar beam
- standard_name :
- height
- units :
- m
[396000 values with dtype=float32]
- signal_to_noise_ratio(azimuth, range)float32...
- long_name :
- Signal to noise ratio
- units :
- dB
- standard_name :
- signal_to_noise_ratio
[396000 values with dtype=float32]
- velocity_texture(azimuth, range)float64...
- long_name :
- Mean dopper velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- gate_id(azimuth, range)int64...
- long_name :
- Classification of dominant scatterer
- units :
- 1
- valid_max :
- 6
- valid_min :
- 0
- flag_values :
- [0 1 2 3 4 5 6]
- flag_meanings :
- multi_trip rain snow no_scatter melting clutter terrain_blockage
[396000 values with dtype=int64]
- partial_beam_blockage(azimuth, range)float64...
- long_name :
- Partial Beam Block Fraction
- units :
- unitless
- standard_name :
- partial_beam_block
- comment :
- Partial beam block fraction due to terrain.
[396000 values with dtype=float64]
- cumulative_beam_blockage(azimuth, range)float64...
- long_name :
- Cumulative Beam Block Fraction
- units :
- unitless
- standard_name :
- cumulative_beam_block
- comment :
- Cumulative beam block fraction due to terrain.
[396000 values with dtype=float64]
- simulated_velocity(azimuth, range)float64...
- long_name :
- Simulated mean doppler velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- corrected_velocity(azimuth, range)float32...
- long_name :
- Corrected mean doppler velocity
- standard_name :
- corrected_radial_velocity_of_scatterers_away_from_instrument
- valid_min :
- -82.46
- valid_max :
- 82.46
- units :
- m/s
[396000 values with dtype=float32]
- unfolded_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- long_name :
- Unfolded Differential Phase
[396000 values with dtype=float64]
- corrected_differential_phase(azimuth, range)float64...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
[396000 values with dtype=float64]
- filtered_corrected_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
- long_name :
- Filtered Corrected Differential Phase
[396000 values with dtype=float64]
- corrected_specific_diff_phase(azimuth, range)float64...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float64]
- filtered_corrected_specific_diff_phase(azimuth, range)float64...
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Filtered Corrected Specific differential phase (KDP)
[396000 values with dtype=float64]
- corrected_differential_reflectivity(azimuth, range)float64...
- long_name :
- Corrected differential reflectivity
- units :
- dB
- standard_name :
- corrected_log_differential_reflectivity_hv
[396000 values with dtype=float64]
- corrected_reflectivity(azimuth, range)float64...
- long_name :
- Corrected reflectivity
- units :
- dBZ
- standard_name :
- corrected_equivalent_reflectivity_factor
[396000 values with dtype=float64]
- height_over_iso0(azimuth, range)float32...
- standard_name :
- height
- long_name :
- Height of radar beam over freezing level
- units :
- m
[396000 values with dtype=float32]
- path_integrated_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Attenuation
[396000 values with dtype=float64]
- path_integrated_differential_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Differential Attenuation
[396000 values with dtype=float64]
- rain_rate_A(azimuth, range)float64...
- long_name :
- rainfall_rate
- units :
- mm/hr
- standard_name :
- rainfall_rate
- valid_min :
- 0.0
- valid_max :
- 400.0
- comment :
- Rain rate calculated from specific_attenuation, R=51.3*specific_attenuation**0.81, note R=0.0 where norm coherent power < 0.4 or rhohv < 0.8
[396000 values with dtype=float64]
- sweep_number()float64...
- long_name :
- Sweep index number 0 based
- units :
- 1
[1 values with dtype=float64]
- sweep_fixed_angle()float32...
- long_name :
- Ray target fixed angle
- units :
- degree
[1 values with dtype=float32]
- sweep_mode()<U6'sector'
array('sector', dtype='<U6')
- prt(azimuth)float32...
- long_name :
- Pulse repetition time
- units :
- s
[360 values with dtype=float32]
- nyquist_velocity(azimuth)float32...
- long_name :
- Unambiguous doppler velocity
- units :
- m/s
- meta_group :
- instrument_parameters
[360 values with dtype=float32]
<xarray.DatasetView> Size: 122MB Dimensions: (azimuth: 360, range: 1100) Coordinates: time (azimuth) datetime64[ns] 3kB ... * range (range) float32 4kB ... elevation (azimuth) float32 1kB ... * azimuth (azimuth) float32 1kB ... latitude float32 4B -32.13 longitude float32 4B -64.73 altitude float32 4B 1.141e+03 crs_wkt int64 8B 0 x (azimuth, range) float32 2MB ... y (azimuth, range) float32 2MB ... z (azimuth, range) float32 2MB ... Data variables: (12/61) attenuation_corrected_differential_reflectivity (azimuth, range) float32 2MB ... attenuation_corrected_differential_reflectivity_lag_1 (azimuth, range) float32 2MB ... attenuation_corrected_reflectivity_h (azimuth, range) float32 2MB ... censor_mask (azimuth, range) int32 2MB ... classification_mask (azimuth, range) int32 2MB ... copol_correlation_coeff (azimuth, range) float32 2MB ... ... ... rain_rate_A (azimuth, range) float64 3MB ... sweep_number float64 8B ... sweep_fixed_angle float32 4B ... sweep_mode <U6 24B 'sector' prt (azimuth) float32 1kB ... nyquist_velocity (azimuth) float32 1kB ...
sweep_12- azimuth: 360
- range: 1100
- time(azimuth)datetime64[ns]2019-01-29T18:35:51.499000 ... 2...
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2019-01-29T18:35:51.499000000', '2019-01-29T18:35:51.571000000', '2019-01-29T18:35:51.630999999', ..., '2019-01-29T18:35:51.296000000', '2019-01-29T18:35:51.367000000', '2019-01-29T18:35:51.439000000'], dtype='datetime64[ns]')
- range(range)float320.0 100.0 ... 1.098e+05 1.099e+05
- long_name :
- Range to measurement volume
- units :
- m
- meters_between_gates :
- 100.0
- meters_to_center_of_first_gate :
- 50.0
- spacing_is_constant :
- True
- standard_name :
- projection_range_coordinate
- axis :
- radial_range_coordinate
array([0.000e+00, 1.000e+02, 2.000e+02, ..., 1.097e+05, 1.098e+05, 1.099e+05], dtype=float32)
- elevation(azimuth)float3226.89 26.89 26.89 ... 26.89 26.89
- long_name :
- Elevation angle from horizontal plane
- units :
- degree
- standard_name :
- sensor_to_target_elevation_angle
- axis :
- radial_elevation_coordinate
array([26.894531, 26.894531, 26.894531, ..., 26.894531, 26.894531, 26.894531], dtype=float32)
- azimuth(azimuth)float320.6042 1.582 2.582 ... 358.6 359.6
- long_name :
- Azimuth angle from true north
- units :
- degree
- standard_name :
- sensor_to_target_azimuth_angle
- axis :
- radial_azimuth_coordinate
array([ 0.604248, 1.582031, 2.581787, ..., 357.5473 , 358.602 , 359.61273 ], dtype=float32)
- latitude()float32-32.13
- long_name :
- Latitude
- units :
- degree_N
- standard_name :
- latitude
- valid_min :
- -90.0
- valid_max :
- 90.0
array(-32.12641, dtype=float32)
- longitude()float32-64.73
- long_name :
- Longitude
- units :
- degree_E
- standard_name :
- longitude
- valid_min :
- -180.0
- valid_max :
- 180.0
array(-64.72837, dtype=float32)
- altitude()float321.141e+03
- long_name :
- Altitude
- units :
- m
- standard_name :
- altitude
array(1141., dtype=float32)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",-32.1264114379883,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",-64.7283706665039,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- unknown
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- -32.12641143798828
- longitude_of_projection_origin :
- -64.7283706665039
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- x(azimuth, range)float320.0 0.9404 1.881 ... -657.9 -658.5
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 0.0000000e+00, 9.4039702e-01, 1.8807840e+00, ..., 1.0255868e+03, 1.0265162e+03, 1.0274454e+03], [ 0.0000000e+00, 2.4618630e+00, 4.9237003e+00, ..., 2.6848811e+03, 2.6873142e+03, 2.6897468e+03], [ 0.0000000e+00, 4.0167751e+00, 8.0335073e+00, ..., 4.3806509e+03, 4.3846211e+03, 4.3885898e+03], ..., [-0.0000000e+00, -3.8160825e+00, -7.6321244e+00, ..., -4.1617783e+03, -4.1655498e+03, -4.1693203e+03], [-0.0000000e+00, -2.1755769e+00, -4.3511310e+00, ..., -2.3726606e+03, -2.3748108e+03, -2.3769604e+03], [-0.0000000e+00, -6.0270572e-01, -1.2054050e+00, ..., -6.5730426e+02, -6.5789996e+02, -6.5849548e+02]], dtype=float32)
- y(azimuth, range)float320.0 89.17 ... 9.734e+04 9.742e+04
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[0.0000000e+00, 8.9166664e+01, 1.7833238e+02, ..., 9.7244195e+04, 9.7332320e+04, 9.7420430e+04], [0.0000000e+00, 8.9137634e+01, 1.7827432e+02, ..., 9.7212531e+04, 9.7300633e+04, 9.7388711e+04], [0.0000000e+00, 8.9081108e+01, 1.7816127e+02, ..., 9.7150883e+04, 9.7238930e+04, 9.7326953e+04], ..., [0.0000000e+00, 8.9089928e+01, 1.7817891e+02, ..., 9.7160508e+04, 9.7248562e+04, 9.7336586e+04], [0.0000000e+00, 8.9145081e+01, 1.7828922e+02, ..., 9.7220656e+04, 9.7308758e+04, 9.7396844e+04], [0.0000000e+00, 8.9169586e+01, 1.7833823e+02, ..., 9.7247383e+04, 9.7335516e+04, 9.7423617e+04]], dtype=float32)
- z(azimuth, range)float321.141e+03 1.186e+03 ... 5.142e+04
- standard_name :
- height_above_ground
- units :
- meters
array([[ 1141., 1186., 1231., ..., 51323., 51369., 51416.], [ 1141., 1186., 1231., ..., 51323., 51369., 51416.], [ 1141., 1186., 1231., ..., 51323., 51369., 51416.], ..., [ 1141., 1186., 1231., ..., 51323., 51369., 51416.], [ 1141., 1186., 1231., ..., 51323., 51369., 51416.], [ 1141., 1186., 1231., ..., 51323., 51369., 51416.]], dtype=float32)
- attenuation_corrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- attenuation_corrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1 corrected for rainfall attenuation.
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.73713
[396000 values with dtype=float32]
- attenuation_corrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected reflectivity, horizontal channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- censor_mask(azimuth, range)int32...
- long_name :
- Censor Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16 32 64 128 256 512 1024 2048]
- flag_meanings :
- horizontal_snr_below_noise_threshold vertical_snr_below_noise_threshold horizontal_ccor_below_ccor_threshold vertical_ccor_below_ccor_threshold horizontal_sqi_below_sqi1_threshold vertical_sqi_below_sqi1_threshold horizontal_sqi_below_sqi2_threshold vertical_sqi_below_sqi2_threshold horizontal_sigpow_below_sigpow_threshold vertical_sigpow_below_sigpow_threshold urhohv_below_rhohv_threshold censored_by_clutter_micro_suppression
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- classification_mask(azimuth, range)int32...
- long_name :
- Classification Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16]
- flag_meanings :
- second_trip third_trip interference clutter sunspoke
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Copolar correlation coefficient (also known as rhohv)
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- differential_phase(azimuth, range)float32...
- long_name :
- Differential propagation phase shift
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- differential_reflectivity(azimuth, range)float32...
- long_name :
- Differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- mean_doppler_velocity(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Doppler velocity, vertical channel
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- normalized_coherent_power(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI.
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- normalized_coherent_power_v(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI, Vertical Channel
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- reflectivity(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- reflectivity_v(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor, vertical channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_h(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, horizontal channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_h
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_v(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, vertical channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_v
[396000 values with dtype=float32]
- specific_attenuation(azimuth, range)float64...
- long_name :
- Specific attenuation
- units :
- dB/km
- standard_name :
- specific_attenuation
- valid_min :
- 0.0
- valid_max :
- 1.0
[396000 values with dtype=float64]
- specific_differential_attenuation(azimuth, range)float64...
- long_name :
- Specific Differential Attenuation
- units :
- dB/km
[396000 values with dtype=float64]
- specific_differential_phase(azimuth, range)float32...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float32]
- spectral_width(azimuth, range)float32...
- long_name :
- Spectral width
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- spectral_width_v(azimuth, range)float32...
- long_name :
- Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Uncorrected copolar correlation coefficient
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- uncorrected_differential_phase(azimuth, range)float32...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Uncorrected Differential Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Uncorrected differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_h(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from horizontal channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from vertical channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Horizontal Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- uncorrected_reflectivity_v(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- uncorrected_spectral_width_h(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Horizontal Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_spectral_width_v(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- unthresholded_power_copolar_h(azimuth, range)float32...
- long_name :
- Received copolar power, h channel, without thresholding.
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_h
[396000 values with dtype=float32]
- unthresholded_power_copolar_v(azimuth, range)float32...
- long_name :
- Received copolar power, v channel, without thresholding
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_v
[396000 values with dtype=float32]
- ground_clutter(azimuth, range)int64...
- long_name :
- Clutter mask
- standard_name :
- clutter_mask
- valid_min :
- 0
- valid_max :
- 1
- units :
- 1
- flag_values :
- [0 1]
- flag_meanings :
- no_clutter clutter
[396000 values with dtype=int64]
- clutter_masked_velocity(azimuth, range)float32...
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument, clutter removed
[396000 values with dtype=float32]
- sounding_temperature(azimuth, range)float32...
- long_name :
- Interpolated profile
- standard_name :
- interpolated_profile
- units :
- deg_C
[396000 values with dtype=float32]
- height(azimuth, range)float32...
- long_name :
- Height of radar beam
- standard_name :
- height
- units :
- m
[396000 values with dtype=float32]
- signal_to_noise_ratio(azimuth, range)float32...
- long_name :
- Signal to noise ratio
- units :
- dB
- standard_name :
- signal_to_noise_ratio
[396000 values with dtype=float32]
- velocity_texture(azimuth, range)float64...
- long_name :
- Mean dopper velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- gate_id(azimuth, range)int64...
- long_name :
- Classification of dominant scatterer
- units :
- 1
- valid_max :
- 6
- valid_min :
- 0
- flag_values :
- [0 1 2 3 4 5 6]
- flag_meanings :
- multi_trip rain snow no_scatter melting clutter terrain_blockage
[396000 values with dtype=int64]
- partial_beam_blockage(azimuth, range)float64...
- long_name :
- Partial Beam Block Fraction
- units :
- unitless
- standard_name :
- partial_beam_block
- comment :
- Partial beam block fraction due to terrain.
[396000 values with dtype=float64]
- cumulative_beam_blockage(azimuth, range)float64...
- long_name :
- Cumulative Beam Block Fraction
- units :
- unitless
- standard_name :
- cumulative_beam_block
- comment :
- Cumulative beam block fraction due to terrain.
[396000 values with dtype=float64]
- simulated_velocity(azimuth, range)float64...
- long_name :
- Simulated mean doppler velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- corrected_velocity(azimuth, range)float32...
- long_name :
- Corrected mean doppler velocity
- standard_name :
- corrected_radial_velocity_of_scatterers_away_from_instrument
- valid_min :
- -82.46
- valid_max :
- 82.46
- units :
- m/s
[396000 values with dtype=float32]
- unfolded_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- long_name :
- Unfolded Differential Phase
[396000 values with dtype=float64]
- corrected_differential_phase(azimuth, range)float64...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
[396000 values with dtype=float64]
- filtered_corrected_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
- long_name :
- Filtered Corrected Differential Phase
[396000 values with dtype=float64]
- corrected_specific_diff_phase(azimuth, range)float64...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float64]
- filtered_corrected_specific_diff_phase(azimuth, range)float64...
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Filtered Corrected Specific differential phase (KDP)
[396000 values with dtype=float64]
- corrected_differential_reflectivity(azimuth, range)float64...
- long_name :
- Corrected differential reflectivity
- units :
- dB
- standard_name :
- corrected_log_differential_reflectivity_hv
[396000 values with dtype=float64]
- corrected_reflectivity(azimuth, range)float64...
- long_name :
- Corrected reflectivity
- units :
- dBZ
- standard_name :
- corrected_equivalent_reflectivity_factor
[396000 values with dtype=float64]
- height_over_iso0(azimuth, range)float32...
- standard_name :
- height
- long_name :
- Height of radar beam over freezing level
- units :
- m
[396000 values with dtype=float32]
- path_integrated_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Attenuation
[396000 values with dtype=float64]
- path_integrated_differential_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Differential Attenuation
[396000 values with dtype=float64]
- rain_rate_A(azimuth, range)float64...
- long_name :
- rainfall_rate
- units :
- mm/hr
- standard_name :
- rainfall_rate
- valid_min :
- 0.0
- valid_max :
- 400.0
- comment :
- Rain rate calculated from specific_attenuation, R=51.3*specific_attenuation**0.81, note R=0.0 where norm coherent power < 0.4 or rhohv < 0.8
[396000 values with dtype=float64]
- sweep_number()float64...
- long_name :
- Sweep index number 0 based
- units :
- 1
[1 values with dtype=float64]
- sweep_fixed_angle()float32...
- long_name :
- Ray target fixed angle
- units :
- degree
[1 values with dtype=float32]
- sweep_mode()<U6'sector'
array('sector', dtype='<U6')
- prt(azimuth)float32...
- long_name :
- Pulse repetition time
- units :
- s
[360 values with dtype=float32]
- nyquist_velocity(azimuth)float32...
- long_name :
- Unambiguous doppler velocity
- units :
- m/s
- meta_group :
- instrument_parameters
[360 values with dtype=float32]
<xarray.DatasetView> Size: 122MB Dimensions: (azimuth: 360, range: 1100) Coordinates: time (azimuth) datetime64[ns] 3kB ... * range (range) float32 4kB ... elevation (azimuth) float32 1kB ... * azimuth (azimuth) float32 1kB ... latitude float32 4B -32.13 longitude float32 4B -64.73 altitude float32 4B 1.141e+03 crs_wkt int64 8B 0 x (azimuth, range) float32 2MB ... y (azimuth, range) float32 2MB ... z (azimuth, range) float32 2MB ... Data variables: (12/61) attenuation_corrected_differential_reflectivity (azimuth, range) float32 2MB ... attenuation_corrected_differential_reflectivity_lag_1 (azimuth, range) float32 2MB ... attenuation_corrected_reflectivity_h (azimuth, range) float32 2MB ... censor_mask (azimuth, range) int32 2MB ... classification_mask (azimuth, range) int32 2MB ... copol_correlation_coeff (azimuth, range) float32 2MB ... ... ... rain_rate_A (azimuth, range) float64 3MB ... sweep_number float64 8B ... sweep_fixed_angle float32 4B ... sweep_mode <U6 24B 'sector' prt (azimuth) float32 1kB ... nyquist_velocity (azimuth) float32 1kB ...
sweep_13- azimuth: 360
- range: 1100
- time(azimuth)datetime64[ns]2019-01-29T18:36:15.481000 ... 2...
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2019-01-29T18:36:15.481000000', '2019-01-29T18:36:15.555999000', '2019-01-29T18:36:15.621998999', ..., '2019-01-29T18:36:15.285999999', '2019-01-29T18:36:15.348998999', '2019-01-29T18:36:15.414999999'], dtype='datetime64[ns]')
- range(range)float320.0 100.0 ... 1.098e+05 1.099e+05
- long_name :
- Range to measurement volume
- units :
- m
- meters_between_gates :
- 100.0
- meters_to_center_of_first_gate :
- 50.0
- spacing_is_constant :
- True
- standard_name :
- projection_range_coordinate
- axis :
- radial_range_coordinate
array([0.000e+00, 1.000e+02, 2.000e+02, ..., 1.097e+05, 1.098e+05, 1.099e+05], dtype=float32)
- elevation(azimuth)float3232.7 32.68 32.68 ... 32.68 32.68
- long_name :
- Elevation angle from horizontal plane
- units :
- degree
- standard_name :
- sensor_to_target_elevation_angle
- axis :
- radial_elevation_coordinate
array([32.695312, 32.684326, 32.684326, ..., 32.695312, 32.684326, 32.684326], dtype=float32)
- azimuth(azimuth)float320.5823 1.626 2.615 ... 358.5 359.5
- long_name :
- Azimuth angle from true north
- units :
- degree
- standard_name :
- sensor_to_target_azimuth_angle
- axis :
- radial_azimuth_coordinate
array([ 0.582275, 1.625977, 2.614746, ..., 357.58026 , 358.53607 , 359.53583 ], dtype=float32)
- latitude()float32-32.13
- long_name :
- Latitude
- units :
- degree_N
- standard_name :
- latitude
- valid_min :
- -90.0
- valid_max :
- 90.0
array(-32.12641, dtype=float32)
- longitude()float32-64.73
- long_name :
- Longitude
- units :
- degree_E
- standard_name :
- longitude
- valid_min :
- -180.0
- valid_max :
- 180.0
array(-64.72837, dtype=float32)
- altitude()float321.141e+03
- long_name :
- Altitude
- units :
- m
- standard_name :
- altitude
array(1141., dtype=float32)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",-32.1264114379883,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",-64.7283706665039,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- unknown
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- -32.12641143798828
- longitude_of_projection_origin :
- -64.7283706665039
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- x(azimuth, range)float320.0 0.8551 1.71 ... -743.3 -744.0
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 0.0000000e+00, 8.5510564e-01, 1.7102004e+00, ..., 9.3152441e+02, 9.3236755e+02, 9.3321082e+02], [ 0.0000000e+00, 2.3878565e+00, 4.7756829e+00, ..., 2.6012585e+03, 2.6036135e+03, 2.6059680e+03], [ 0.0000000e+00, 3.8391140e+00, 7.6781788e+00, ..., 4.1822144e+03, 4.1860005e+03, 4.1897861e+03], ..., [-0.0000000e+00, -3.5525274e+00, -7.1050100e+00, ..., -3.8700085e+03, -3.8735115e+03, -3.8770146e+03], [-0.0000000e+00, -2.1499174e+00, -4.2998075e+00, ..., -2.3420549e+03, -2.3441753e+03, -2.3462949e+03], [-0.0000000e+00, -6.8174857e-01, -1.3634884e+00, ..., -7.4267621e+02, -7.4334857e+02, -7.4402075e+02]], dtype=float32)
- y(azimuth, range)float320.0 84.14 ... 9.175e+04 9.184e+04
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[0.0000000e+00, 8.4139328e+01, 1.6827759e+02, ..., 9.1658656e+04, 9.1741625e+04, 9.1824594e+04], [0.0000000e+00, 8.4120140e+01, 1.6823921e+02, ..., 9.1637930e+04, 9.1720891e+04, 9.1803836e+04], [0.0000000e+00, 8.4066406e+01, 1.6813174e+02, ..., 9.1579398e+04, 9.1662305e+04, 9.1745195e+04], ..., [0.0000000e+00, 8.4068642e+01, 1.6813622e+02, ..., 9.1581664e+04, 9.1664555e+04, 9.1747461e+04], [0.0000000e+00, 8.4126556e+01, 1.6825204e+02, ..., 9.1644922e+04, 9.1727883e+04, 9.1810836e+04], [0.0000000e+00, 8.4151260e+01, 1.6830145e+02, ..., 9.1671836e+04, 9.1754820e+04, 9.1837797e+04]], dtype=float32)
- z(azimuth, range)float321.141e+03 1.195e+03 ... 6.099e+04
- standard_name :
- height_above_ground
- units :
- meters
array([[ 1141., 1195., 1249., ..., 60896., 60950., 61005.], [ 1141., 1195., 1249., ..., 60878., 60933., 60988.], [ 1141., 1195., 1249., ..., 60878., 60933., 60988.], ..., [ 1141., 1195., 1249., ..., 60896., 60950., 61005.], [ 1141., 1195., 1249., ..., 60878., 60933., 60988.], [ 1141., 1195., 1249., ..., 60878., 60933., 60988.]], dtype=float32)
- attenuation_corrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- attenuation_corrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1 corrected for rainfall attenuation.
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.73713
[396000 values with dtype=float32]
- attenuation_corrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Rainfall attenuation-corrected reflectivity, horizontal channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- censor_mask(azimuth, range)int32...
- long_name :
- Censor Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16 32 64 128 256 512 1024 2048]
- flag_meanings :
- horizontal_snr_below_noise_threshold vertical_snr_below_noise_threshold horizontal_ccor_below_ccor_threshold vertical_ccor_below_ccor_threshold horizontal_sqi_below_sqi1_threshold vertical_sqi_below_sqi1_threshold horizontal_sqi_below_sqi2_threshold vertical_sqi_below_sqi2_threshold horizontal_sigpow_below_sigpow_threshold vertical_sigpow_below_sigpow_threshold urhohv_below_rhohv_threshold censored_by_clutter_micro_suppression
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- classification_mask(azimuth, range)int32...
- long_name :
- Classification Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16]
- flag_meanings :
- second_trip third_trip interference clutter sunspoke
- standard_name :
- radar_quality_mask
[396000 values with dtype=int32]
- copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Copolar correlation coefficient (also known as rhohv)
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- differential_phase(azimuth, range)float32...
- long_name :
- Differential propagation phase shift
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- differential_reflectivity(azimuth, range)float32...
- long_name :
- Differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
[396000 values with dtype=float32]
- mean_doppler_velocity(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Doppler velocity, vertical channel
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- normalized_coherent_power(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI.
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- normalized_coherent_power_v(azimuth, range)float32...
- long_name :
- Normalized coherent power, also known as SQI, Vertical Channel
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
[396000 values with dtype=float32]
- reflectivity(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- reflectivity_v(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor, vertical channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_h(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, horizontal channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_h
[396000 values with dtype=float32]
- signal_to_noise_ratio_copolar_v(azimuth, range)float32...
- long_name :
- Signal-to-noise ratio, vertical channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_v
[396000 values with dtype=float32]
- specific_attenuation(azimuth, range)float64...
- long_name :
- Specific attenuation
- units :
- dB/km
- standard_name :
- specific_attenuation
- valid_min :
- 0.0
- valid_max :
- 1.0
[396000 values with dtype=float64]
- specific_differential_attenuation(azimuth, range)float64...
- long_name :
- Specific Differential Attenuation
- units :
- dB/km
[396000 values with dtype=float64]
- specific_differential_phase(azimuth, range)float32...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float32]
- spectral_width(azimuth, range)float32...
- long_name :
- Spectral width
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- spectral_width_v(azimuth, range)float32...
- long_name :
- Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_copol_correlation_coeff(azimuth, range)float32...
- long_name :
- Uncorrected copolar correlation coefficient
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
[396000 values with dtype=float32]
- uncorrected_differential_phase(azimuth, range)float32...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity(azimuth, range)float32...
- long_name :
- Uncorrected Differential Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_differential_reflectivity_lag_1(azimuth, range)float32...
- long_name :
- Uncorrected differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_h(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from horizontal channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_mean_doppler_velocity_v(azimuth, range)float32...
- long_name :
- Radial mean Doppler velocity from vertical channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
[396000 values with dtype=float32]
- uncorrected_reflectivity_h(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Horizontal Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
[396000 values with dtype=float32]
- uncorrected_reflectivity_v(azimuth, range)float32...
- long_name :
- Uncorrected Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
[396000 values with dtype=float32]
- uncorrected_spectral_width_h(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Horizontal Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- uncorrected_spectral_width_v(azimuth, range)float32...
- long_name :
- Uncorrected Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
[396000 values with dtype=float32]
- unthresholded_power_copolar_h(azimuth, range)float32...
- long_name :
- Received copolar power, h channel, without thresholding.
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_h
[396000 values with dtype=float32]
- unthresholded_power_copolar_v(azimuth, range)float32...
- long_name :
- Received copolar power, v channel, without thresholding
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_v
[396000 values with dtype=float32]
- ground_clutter(azimuth, range)int64...
- long_name :
- Clutter mask
- standard_name :
- clutter_mask
- valid_min :
- 0
- valid_max :
- 1
- units :
- 1
- flag_values :
- [0 1]
- flag_meanings :
- no_clutter clutter
[396000 values with dtype=int64]
- clutter_masked_velocity(azimuth, range)float32...
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument, clutter removed
[396000 values with dtype=float32]
- sounding_temperature(azimuth, range)float32...
- long_name :
- Interpolated profile
- standard_name :
- interpolated_profile
- units :
- deg_C
[396000 values with dtype=float32]
- height(azimuth, range)float32...
- long_name :
- Height of radar beam
- standard_name :
- height
- units :
- m
[396000 values with dtype=float32]
- signal_to_noise_ratio(azimuth, range)float32...
- long_name :
- Signal to noise ratio
- units :
- dB
- standard_name :
- signal_to_noise_ratio
[396000 values with dtype=float32]
- velocity_texture(azimuth, range)float64...
- long_name :
- Mean dopper velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- gate_id(azimuth, range)int64...
- long_name :
- Classification of dominant scatterer
- units :
- 1
- valid_max :
- 6
- valid_min :
- 0
- flag_values :
- [0 1 2 3 4 5 6]
- flag_meanings :
- multi_trip rain snow no_scatter melting clutter terrain_blockage
[396000 values with dtype=int64]
- partial_beam_blockage(azimuth, range)float64...
- long_name :
- Partial Beam Block Fraction
- units :
- unitless
- standard_name :
- partial_beam_block
- comment :
- Partial beam block fraction due to terrain.
[396000 values with dtype=float64]
- cumulative_beam_blockage(azimuth, range)float64...
- long_name :
- Cumulative Beam Block Fraction
- units :
- unitless
- standard_name :
- cumulative_beam_block
- comment :
- Cumulative beam block fraction due to terrain.
[396000 values with dtype=float64]
- simulated_velocity(azimuth, range)float64...
- long_name :
- Simulated mean doppler velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
[396000 values with dtype=float64]
- corrected_velocity(azimuth, range)float32...
- long_name :
- Corrected mean doppler velocity
- standard_name :
- corrected_radial_velocity_of_scatterers_away_from_instrument
- valid_min :
- -82.46
- valid_max :
- 82.46
- units :
- m/s
[396000 values with dtype=float32]
- unfolded_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- long_name :
- Unfolded Differential Phase
[396000 values with dtype=float64]
- corrected_differential_phase(azimuth, range)float64...
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
[396000 values with dtype=float64]
- filtered_corrected_differential_phase(azimuth, range)float64...
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
- long_name :
- Filtered Corrected Differential Phase
[396000 values with dtype=float64]
- corrected_specific_diff_phase(azimuth, range)float64...
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
[396000 values with dtype=float64]
- filtered_corrected_specific_diff_phase(azimuth, range)float64...
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Filtered Corrected Specific differential phase (KDP)
[396000 values with dtype=float64]
- corrected_differential_reflectivity(azimuth, range)float64...
- long_name :
- Corrected differential reflectivity
- units :
- dB
- standard_name :
- corrected_log_differential_reflectivity_hv
[396000 values with dtype=float64]
- corrected_reflectivity(azimuth, range)float64...
- long_name :
- Corrected reflectivity
- units :
- dBZ
- standard_name :
- corrected_equivalent_reflectivity_factor
[396000 values with dtype=float64]
- height_over_iso0(azimuth, range)float32...
- standard_name :
- height
- long_name :
- Height of radar beam over freezing level
- units :
- m
[396000 values with dtype=float32]
- path_integrated_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Attenuation
[396000 values with dtype=float64]
- path_integrated_differential_attenuation(azimuth, range)float64...
- units :
- dB
- long_name :
- Path Integrated Differential Attenuation
[396000 values with dtype=float64]
- rain_rate_A(azimuth, range)float64...
- long_name :
- rainfall_rate
- units :
- mm/hr
- standard_name :
- rainfall_rate
- valid_min :
- 0.0
- valid_max :
- 400.0
- comment :
- Rain rate calculated from specific_attenuation, R=51.3*specific_attenuation**0.81, note R=0.0 where norm coherent power < 0.4 or rhohv < 0.8
[396000 values with dtype=float64]
- sweep_number()float64...
- long_name :
- Sweep index number 0 based
- units :
- 1
[1 values with dtype=float64]
- sweep_fixed_angle()float32...
- long_name :
- Ray target fixed angle
- units :
- degree
[1 values with dtype=float32]
- sweep_mode()<U6'sector'
array('sector', dtype='<U6')
- prt(azimuth)float32...
- long_name :
- Pulse repetition time
- units :
- s
[360 values with dtype=float32]
- nyquist_velocity(azimuth)float32...
- long_name :
- Unambiguous doppler velocity
- units :
- m/s
- meta_group :
- instrument_parameters
[360 values with dtype=float32]
<xarray.DatasetView> Size: 122MB Dimensions: (azimuth: 360, range: 1100) Coordinates: time (azimuth) datetime64[ns] 3kB ... * range (range) float32 4kB ... elevation (azimuth) float32 1kB ... * azimuth (azimuth) float32 1kB ... latitude float32 4B -32.13 longitude float32 4B -64.73 altitude float32 4B 1.141e+03 crs_wkt int64 8B 0 x (azimuth, range) float32 2MB ... y (azimuth, range) float32 2MB ... z (azimuth, range) float32 2MB ... Data variables: (12/61) attenuation_corrected_differential_reflectivity (azimuth, range) float32 2MB ... attenuation_corrected_differential_reflectivity_lag_1 (azimuth, range) float32 2MB ... attenuation_corrected_reflectivity_h (azimuth, range) float32 2MB ... censor_mask (azimuth, range) int32 2MB ... classification_mask (azimuth, range) int32 2MB ... copol_correlation_coeff (azimuth, range) float32 2MB ... ... ... rain_rate_A (azimuth, range) float64 3MB ... sweep_number float64 8B ... sweep_fixed_angle float32 4B ... sweep_mode <U6 24B 'sector' prt (azimuth) float32 1kB ... nyquist_velocity (azimuth) float32 1kB ...
sweep_14- sweep: 15
- sweep_group_name(sweep)<U10'sweep_0.0' ... 'sweep_14.0'
array(['sweep_0.0', 'sweep_1.0', 'sweep_2.0', 'sweep_3.0', 'sweep_4.0', 'sweep_5.0', 'sweep_6.0', 'sweep_7.0', 'sweep_8.0', 'sweep_9.0', 'sweep_10.0', 'sweep_11.0', 'sweep_12.0', 'sweep_13.0', 'sweep_14.0'], dtype='<U10')
- sweep_fixed_angle(sweep)float32...
- long_name :
- Ray target fixed angle
- units :
- degree
[15 values with dtype=float32]
- latitude()float32...
- long_name :
- Latitude
- units :
- degree_N
- standard_name :
- latitude
- valid_min :
- -90.0
- valid_max :
- 90.0
[1 values with dtype=float32]
- longitude()float32...
- long_name :
- Longitude
- units :
- degree_E
- standard_name :
- longitude
- valid_min :
- -180.0
- valid_max :
- 180.0
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- Altitude
- units :
- m
- standard_name :
- altitude
[1 values with dtype=float32]
- time_coverage_start()|S32...
- long_name :
- UTC time of first ray in the file
- units :
- unitless
[1 values with dtype=|S32]
- time_coverage_end()|S32...
- long_name :
- UTC time of last ray in the file
- units :
- unitless
[1 values with dtype=|S32]
- volume_number()int32...
- long_name :
- Volume number
- units :
- unitless
[1 values with dtype=int32]
- version :
- 2.0 lite
- history :
- created by zsherman on or-condo-c215.ornl.gov at 2020-10-01T16:38:39.942470 using Py-ART
- references :
- See CSAPR2 Instrument Handbook
- institution :
- United States Department of Energy - Atmospheric Radiation Measurement (ARM) program
- source :
- Atmospheric Radiation Measurement (ARM) program C-band Scanning ARM Precipitation Radar 2 (CSAPR2)
- Conventions :
- CF/Radial instrument_parameters ARM-1.3
- comment :
- This is highly experimental and initial data. There are many, known and unknown issues. Please do not use before contacting the Translator responsible scollis@anl.gov
CACTI Domain Overview
CSAPR_lat = float(radar.latitude.values)
CSAPR_lon = float(radar.longitude.values)
cf = plt.contourf(ds.XLONG, ds.XLAT, ds.HGT[0,:,:], cmap='terrain', levels=np.arange(0, 2500, 50))
plt.scatter(CSAPR_lon, CSAPR_lat, s=50, c='tab:red', label='ARM Site')
plt.title('CACTI Domain', fontsize=15)
plt.colorbar(cf, label='Height (m)')
plt.legend()
<matplotlib.legend.Legend at 0x7fa060a4c2d0>
Now let’s examine the convection occurring during this particular day. To do this, we’ll use one of the radar files we imported above.
vel_plot = radar['sweep_0']["mean_doppler_velocity"].hvplot.quadmesh(x="x", y="y", cmap="balance",
height=300, width=400,
clim=(-20, 20),
rasterize=True)
ref_plot = radar['sweep_0']["reflectivity"].hvplot.quadmesh(x="x", y="y", cmap="ChaseSpectral",
height=300, width=400,
clim=(-20, 70),
rasterize=True)
ref_plot+vel_plot
We can see that all of the storms seem to be forming along one particular area. It looks like this might be the mountain range in the center of the CACTI domain shown above, but let’s overlay terrain on the radar image to verify this.
proj_crs = xd.georeference.get_crs(radar["sweep_0"].ds)
cart_crs = ccrs.Projection(proj_crs)
fig = plt.figure(figsize=(9, 9))
ax = fig.add_subplot(111, projection=ccrs.PlateCarree())
radar["sweep_0"]["reflectivity"].plot(
x="x",
y="y",
cmap="ChaseSpectral",
transform=cart_crs,
cbar_kwargs=dict(pad=0.075, shrink=0.75),
vmin=-20,
vmax=70
)
ax.coastlines()
ax.gridlines(draw_labels=True)
ax.set_xlim([-66,-63.5])
ax.set_ylim([-33.2, -31])
cf = plt.contour(ds.XLONG, ds.XLAT, ds.HGT[0,:,:], cmap='terrain', levels=np.arange(0, 2500, 350),
transform=ccrs.PlateCarree())
/data/project/jupyterhub/notebook-envs/arm-summer-school-2024-env/lib/python3.11/site-packages/cartopy/mpl/geoaxes.py:1768: UserWarning: The input coordinates to pcolormesh are interpreted as cell centers, but are not monotonically increasing or decreasing. This may lead to incorrectly calculated cell edges, in which case, please supply explicit cell edges to pcolormesh.
result = super().pcolormesh(*args, **kwargs)
As we suspected, the storms are all located just east of the Sierras de Cordoba. This leads us to our hypothesis…
Science Question
How is deep convection initiation controlled by local and regional meteorological conditions (Thunderstorm life cycle)as well as geography?
Project Scope
Learning how to use LASSO simulation and ARM data.
Understand how convection is initiated in our domain by looking at measurements
Where convection is initiated in our domain of study
Comparison between observation and simulations
Hypothesis
Convection initiation near the ARM site is caused largely by orographic effects, surface heating, and advection of moisture from the Pacific.
Radar reflectivity plots
CSARP
We found in total 15 files for the 2021-01-29 deep convective storms as follows
files = sorted(glob.glob('corcsapr2cmacppiM1.c1/*'))
files[:3]
['corcsapr2cmacppiM1.c1/corcsapr2cmacppiM1.c1.20190129.130003.nc',
'corcsapr2cmacppiM1.c1/corcsapr2cmacppiM1.c1.20190129.131503.nc',
'corcsapr2cmacppiM1.c1/corcsapr2cmacppiM1.c1.20190129.133003.nc']
Data concatenation
An easy way to handle radar data is to combine or concatenate all files into a single dataset. To do this, we need to fix the azimuth angle to ensure the azimuth
dimension is equal in all files. We also need to coarsen the azimuth angle, which will make merging across different volume scans easier. To do this we can use the following function
def fix_angle(ds):
"""
Aligns the radar volumes
"""
ds["time"] = ds.time.load() # Convert time from dask to numpy
start_ang = 0 # Set consistent start/end values
stop_ang = 360
# Find the median angle resolution
angle_res = ds.azimuth.diff("azimuth").median()
# Determine whether the radar is spinning clockwise or counterclockwise
median_diff = ds.azimuth.diff("time").median()
ascending = median_diff > 0
direction = 1 if ascending else -1
# first find exact duplicates and remove
ds = xd.util.remove_duplicate_rays(ds)
# second reindex according to retrieved parameters
ds = xd.util.reindex_angle(
ds, start_ang, stop_ang, angle_res, direction, method="nearest"
)
ds = ds.expand_dims("volume_time") # Expand for volumes for concatenation
ds["volume_time"] = [np.nanmin(ds.time.values)]
return ds
Now we loop through all CSARP files just selecting the lowest elevation angle (sweep_0)
and then fixing the angle. The resulting datasets will be store in a list to be concatenated later
dsets = []
for file in files:
ds = xd.io.open_cfradial1_datatree(file)["sweep_0"].to_dataset()
ds["azimuth"] = ds.azimuth.round(2)
ds = fix_angle(ds)
dsets.append(ds)
Now we concatenate them into a single big xr.Dataset
ds = xr.concat(dsets, dim='volume_time')
ds
<xarray.Dataset> Size: 3GB Dimensions: (volume_time: 27, azimuth: 360, range: 1100) Coordinates: * range (range) float32 4kB ... * azimuth (azimuth) float32 1kB ... time (volume_time, azimuth) datetime64[ns] 78kB ... elevation (volume_time, azimuth) float32 39kB ... latitude float32 4B -32.13 longitude float32 4B -64.73 altitude float32 4B 1.141e+03 * volume_time (volume_time) datetime64[ns] 216B ... Data variables: (12/61) attenuation_corrected_differential_reflectivity (volume_time, azimuth, range) float32 43MB ... attenuation_corrected_differential_reflectivity_lag_1 (volume_time, azimuth, range) float32 43MB ... attenuation_corrected_reflectivity_h (volume_time, azimuth, range) float32 43MB ... censor_mask (volume_time, azimuth, range) int32 43MB ... classification_mask (volume_time, azimuth, range) int32 43MB ... copol_correlation_coeff (volume_time, azimuth, range) float32 43MB ... ... ... rain_rate_A (volume_time, azimuth, range) float64 86MB ... sweep_number (volume_time) float64 216B ... sweep_fixed_angle (volume_time) float32 108B ... sweep_mode (volume_time) <U6 648B ... prt (volume_time, azimuth) float32 39kB ... nyquist_velocity (volume_time, azimuth) float32 39kB ...
- volume_time: 27
- azimuth: 360
- range: 1100
- range(range)float320.0 100.0 ... 1.098e+05 1.099e+05
- long_name :
- Range to measurement volume
- units :
- m
- meters_between_gates :
- 100.0
- meters_to_center_of_first_gate :
- 50.0
- spacing_is_constant :
- True
- standard_name :
- projection_range_coordinate
- axis :
- radial_range_coordinate
array([0.000e+00, 1.000e+02, 2.000e+02, ..., 1.097e+05, 1.098e+05, 1.099e+05], dtype=float32)
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- long_name :
- Azimuth angle from true north
- units :
- degree
- standard_name :
- sensor_to_target_azimuth_angle
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- time(volume_time, azimuth)datetime64[ns]2019-01-29T13:00:15.586000 ... 2...
- long_name :
- Time offset from midnight
- standard_name :
- time
array([['2019-01-29T13:00:15.586000000', '2019-01-29T13:00:15.647000000', '2019-01-29T13:00:15.718000000', ..., '2019-01-29T13:00:15.383000000', '2019-01-29T13:00:15.453999000', '2019-01-29T13:00:15.515000000'], ['2019-01-29T13:15:15.508999000', '2019-01-29T13:15:15.579999000', '2019-01-29T13:15:15.640999000', ..., '2019-01-29T13:15:15.305999000', '2019-01-29T13:15:15.376999000', '2019-01-29T13:15:15.448999000'], ['2019-01-29T13:30:15.518000000', '2019-01-29T13:30:15.588999000', '2019-01-29T13:30:15.651000000', ..., '2019-01-29T13:30:15.314000000', '2019-01-29T13:30:15.386000000', '2019-01-29T13:30:15.457000000'], ..., ['2019-01-29T19:15:15.584000000', '2019-01-29T19:15:15.651000000', '2019-01-29T19:15:15.714999000', ..., '2019-01-29T19:15:15.384000000', '2019-01-29T19:15:15.450000000', '2019-01-29T19:15:15.518000000'], ['2019-01-29T19:30:15.723000000', '2019-01-29T19:30:15.789000000', '2019-01-29T19:30:15.854000000', ..., '2019-01-29T19:30:15.518000000', '2019-01-29T19:30:15.584000000', '2019-01-29T19:30:15.648000000'], ['2019-01-29T19:45:15.711999000', '2019-01-29T19:45:15.782000000', '2019-01-29T19:45:15.849999000', ..., '2019-01-29T19:45:15.516999000', '2019-01-29T19:45:15.581000000', '2019-01-29T19:45:15.647000000']], dtype='datetime64[ns]')
- elevation(volume_time, azimuth)float320.4944 0.4834 ... 0.4834 0.4834
- long_name :
- Elevation angle from horizontal plane
- units :
- degree
- standard_name :
- sensor_to_target_elevation_angle
- axis :
- radial_elevation_coordinate
array([[0.49438477, 0.48339844, 0.48339844, ..., 0.5053711 , 0.5053711 , 0.5053711 ], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], ..., [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844]], dtype=float32)
- latitude()float32-32.13
- long_name :
- Latitude
- units :
- degree_N
- standard_name :
- latitude
- valid_min :
- -90.0
- valid_max :
- 90.0
array(-32.12641, dtype=float32)
- longitude()float32-64.73
- long_name :
- Longitude
- units :
- degree_E
- standard_name :
- longitude
- valid_min :
- -180.0
- valid_max :
- 180.0
array(-64.72837, dtype=float32)
- altitude()float321.141e+03
- long_name :
- Altitude
- units :
- m
- standard_name :
- altitude
array(1141., dtype=float32)
- volume_time(volume_time)datetime64[ns]2019-01-29T13:00:03 ... 2019-01-...
array(['2019-01-29T13:00:03.000000000', '2019-01-29T13:15:03.000000000', '2019-01-29T13:30:03.000000000', '2019-01-29T13:45:03.000000000', '2019-01-29T14:00:03.060000000', '2019-01-29T14:15:03.000000000', '2019-01-29T14:30:03.000000000', '2019-01-29T14:45:03.000000000', '2019-01-29T15:00:03.000000000', '2019-01-29T15:15:03.000000000', '2019-01-29T15:30:03.000000000', '2019-01-29T15:45:03.060999000', '2019-01-29T16:15:03.000000000', '2019-01-29T16:30:03.000000000', '2019-01-29T16:45:03.000000000', '2019-01-29T17:00:03.000000000', '2019-01-29T17:15:03.000000000', '2019-01-29T17:30:03.000000000', '2019-01-29T17:45:03.000000000', '2019-01-29T18:00:03.000000000', '2019-01-29T18:15:03.000000000', '2019-01-29T18:30:03.071000000', '2019-01-29T18:45:03.000000000', '2019-01-29T19:00:06.000000000', '2019-01-29T19:15:03.000000000', '2019-01-29T19:30:03.000000000', '2019-01-29T19:45:03.071000000'], dtype='datetime64[ns]')
- attenuation_corrected_differential_reflectivity(volume_time, azimuth, range)float325.647 4.088 ... -2.671 -4.832
- long_name :
- Rainfall attenuation-corrected differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
array([[[ 5.6470394e+00, 4.0881066e+00, -1.2491331e+00, ..., -3.0900660e+00, -2.2239242e+00, -6.1658154e+00], [ 1.0735241e+01, 5.3015594e+00, 7.1705704e+00, ..., -3.2365594e+00, -1.8247299e+00, -3.4056368e+00], [ 8.4847374e+00, 5.1208844e+00, 8.4017239e+00, ..., -3.4819355e+00, -3.7730908e+00, -1.2729383e+00], ..., [ 1.3330004e+01, -2.5834432e+00, -9.2787981e+00, ..., -5.1574526e+00, -2.1500673e+00, -1.5952234e+00], [ 8.1777115e+00, 6.4917612e-01, -6.9977751e+00, ..., -5.7653999e+00, -7.5092812e+00, -3.0729752e+00], [ 4.4769244e+00, 9.0798092e-01, 6.0621042e+00, ..., -6.8317490e+00, -3.0583258e+00, -3.1559877e+00]], [[ 1.0575261e+00, 1.3879964e+01, 1.2260602e+01, ..., -2.5944300e+00, -1.6262867e+01, -2.2037811e+00], [ 3.1841207e+00, 4.4713736e-01, 2.7031345e+00, ..., -3.2524295e+00, -5.3832970e+00, -4.0495973e+00], [ 3.8079381e+00, -1.2521853e+00, -4.0618048e+00, ..., -5.9363089e+00, -3.5338187e+00, -1.8137426e+00], ... [ 2.8651977e-01, -3.8606000e-01, 1.4660358e-01, ..., -5.0045214e+00, -2.5836031e+00, -6.7154264e+00], [-7.1559930e-01, 3.2204642e+00, -9.3161035e-01, ..., -2.5750120e+00, -1.6262867e+01, -1.9815953e+00], [ 6.1654549e+00, 1.1585414e+00, 6.2280965e-01, ..., -4.1110220e+00, -4.3681479e+00, -1.8171327e+00]], [[ 1.0085900e+00, -1.5665197e-01, 3.2861924e+00, ..., -3.3388252e+00, -2.3757744e+00, -3.0016332e+00], [ 1.4957144e+00, 1.3109431e+00, 3.1678605e-01, ..., -3.0196748e+00, -6.3275180e+00, -1.8842950e+00], [-1.9284658e+00, 3.6712883e+00, 7.1371512e+00, ..., -2.4292774e+00, -1.5806975e+00, -3.7656035e+00], ..., [-6.4004326e-01, -2.0466700e+00, 4.3462949e+00, ..., -3.2075567e+00, -2.5984955e+00, -2.8734751e+00], [ 8.4497070e-01, -3.1795611e+00, -5.2756786e-02, ..., -4.2502398e+00, 9.1278243e-01, -5.9525061e-01], [ 8.0379896e+00, -1.9850793e+00, -3.5013294e-01, ..., -5.6717973e+00, -2.6706619e+00, -4.8319268e+00]]], dtype=float32)
- attenuation_corrected_differential_reflectivity_lag_1(volume_time, azimuth, range)float3211.15 10.27 3.049 ... 7.337 4.314
- long_name :
- Differential reflectivity estimated at lag 1 corrected for rainfall attenuation.
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.73713
array([[[ 11.154273 , 10.269209 , 3.0490723 , ..., 3.111637 , 2.0533757 , 2.0289598 ], [ 12.854969 , 13.595828 , 12.591739 , ..., 8.761549 , 11.22523 , 6.0476074 ], [ 12.654304 , 12.362843 , 15.083651 , ..., 6.3108377 , 6.3878994 , 1.6756973 ], ..., [ 15.974055 , -3.556861 , -5.0713882 , ..., 3.0895104 , 5.1114235 , 8.422783 ], [ 12.787063 , 9.123967 , -2.6435661 , ..., 2.5683908 , 6.1994414 , 4.641424 ], [ 11.57773 , 7.7498293 , 11.564759 , ..., 1.8427916 , 1.3712659 , 0.77995205]], [[ 7.5155926 , 19.055756 , 16.588259 , ..., 2.7743974 , 9.713755 , 6.6320543 ], [ 12.384207 , 4.8573494 , 7.008207 , ..., 6.4580936 , 7.3118753 , 1.3849998 ], [ 5.0969267 , 6.898337 , 0.17490387, ..., 4.365223 , 6.5740676 , 2.292953 ], ... [ 5.106846 , 3.7257423 , 4.4605503 , ..., 1.3961797 , -10.006699 , 2.348454 ], [ 3.1153097 , 7.822507 , 3.2930984 , ..., 9.745369 , 8.442096 , 12.088666 ], [ 10.175724 , 5.4876027 , 4.967972 , ..., 7.9857974 , 12.467897 , 3.5449018 ]], [[ 4.7475076 , 4.716151 , 7.912218 , ..., 5.540597 , 9.021167 , 10.264719 ], [ 7.3271523 , 4.0928454 , 3.6989775 , ..., 13.899013 , 7.415868 , 1.870359 ], [ -0.41560555, 10.625701 , 11.795834 , ..., 6.296212 , 3.7349224 , 3.007605 ], ..., [ 3.354056 , 2.296348 , 8.867444 , ..., 9.142769 , 18.644548 , -0.743701 ], [ 3.3647628 , 0.7468786 , 3.6699152 , ..., 7.6460705 , 6.1791987 , 12.055862 ], [ 16.048079 , 1.8772421 , 3.52384 , ..., 2.642799 , 7.3370943 , 4.3138704 ]]], dtype=float32)
- attenuation_corrected_reflectivity_h(volume_time, azimuth, range)float328.063 11.04 ... -0.007809 -1.631
- long_name :
- Rainfall attenuation-corrected reflectivity, horizontal channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
array([[[ 8.06341457e+00, 1.10384321e+01, 2.79769058e+01, ..., 2.45207429e-01, 4.71652389e-01, -1.98996043e+00], [ 8.60610199e+00, 8.61390972e+00, 1.40778704e+01, ..., 3.43793631e-02, 5.24359465e-01, 6.72719955e-01], [ 1.03259115e+01, 9.56653976e+00, 6.82382345e+00, ..., 2.33494759e-01, -4.69265461e-01, 2.04213142e-01], ..., [ 9.08436871e+00, 3.80976343e+00, 2.77172737e+01, ..., -1.61125064e+00, 3.42813015e-01, 1.82056153e+00], [ 1.06792440e+01, 5.94537354e+00, 2.31551895e+01, ..., -2.46237135e+00, -4.01820421e+00, -2.56485224e-01], [-2.80882120e-02, 8.09660053e+00, 1.05074577e+01, ..., -4.10019302e+00, 4.50179219e-01, -1.20521140e+00]], [[-1.96705151e+00, 2.36154156e+01, 2.87808418e+01, ..., 5.09684086e-02, -3.08273697e+00, 3.77844572e-01], [-1.10582113e+00, 2.60444775e+01, 2.89922352e+01, ..., -6.22357368e-01, -2.72650051e+00, -8.51366520e-01], [-1.51882029e+00, 2.52700663e+00, 2.30105953e+01, ..., -2.38200855e+00, -8.10262442e-01, 3.85673881e-01], ... -1.13009357e+00, 7.85065889e-01, -4.03696012e+00], [ 6.61485863e+00, 2.81373138e+01, 2.72600346e+01, ..., 7.03942776e-02, -3.14562798e+00, 1.41140723e+00], [ 1.24948397e+01, 2.70372009e+01, 3.35635986e+01, ..., -1.94514036e+00, -1.28065634e+00, 5.03191948e-02]], [[ 6.61972046e+00, 1.02201843e+01, 2.19961548e+01, ..., -1.11813736e+00, -6.11600399e-01, -7.80868530e-03], [ 7.98331785e+00, 9.33273220e+00, 8.36423302e+00, ..., -1.23362780e+00, -2.15957737e+00, 1.10859871e+00], [-2.99029779e+00, 7.90429783e+00, 2.49401474e+01, ..., 4.62257624e-01, 7.29709148e-01, 3.87926102e-02], ..., [ 4.83063221e+00, 2.22534752e+01, 2.11613827e+01, ..., -1.55173302e+00, -2.08397388e-01, 6.16244793e-01], [-2.15552521e+00, 1.35086222e+01, 1.29372492e+01, ..., -1.55173302e+00, 1.48546219e+00, 2.31213045e+00], [ 2.70520306e+00, 8.45338440e+00, 1.50018930e+01, ..., -2.63369608e+00, -7.80868530e-03, -1.63075304e+00]]], dtype=float32)
- censor_mask(volume_time, azimuth, range)int320 12 0 0 12 28 ... 49 49 49 49 49
- long_name :
- Censor Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16 32 64 128 256 512 1024 2048]
- flag_meanings :
- horizontal_snr_below_noise_threshold vertical_snr_below_noise_threshold horizontal_ccor_below_ccor_threshold vertical_ccor_below_ccor_threshold horizontal_sqi_below_sqi1_threshold vertical_sqi_below_sqi1_threshold horizontal_sqi_below_sqi2_threshold vertical_sqi_below_sqi2_threshold horizontal_sigpow_below_sigpow_threshold vertical_sigpow_below_sigpow_threshold urhohv_below_rhohv_threshold censored_by_clutter_micro_suppression
- standard_name :
- radar_quality_mask
array([[[ 0, 12, 0, ..., 17, 49, 49], [ 16, 12, 12, ..., 49, 49, 49], [ 0, 8, 12, ..., 49, 49, 49], ..., [ 56, 28, 0, ..., 49, 49, 49], [ 0, 44, 0, ..., 49, 49, 49], [ 48, 12, 12, ..., 49, 49, 49]], [[ 56, 8, 8, ..., 17, 120, 49], [ 60, 0, 0, ..., 49, 49, 49], [ 24, 44, 0, ..., 49, 49, 49], ..., [ 0, 0, 44, ..., 49, 49, 33], [ 56, 44, 0, ..., 49, 17, 49], [ 0, 44, 0, ..., 49, 49, 49]], [[ 32, 12, 0, ..., 49, 17, 49], [ 60, 8, 0, ..., 49, 49, 120], [ 0, 0, 0, ..., 49, 49, 49], ..., ... ..., [ 56, 12, 0, ..., 49, 49, 120], [ 0, 60, 12, ..., 49, 49, 120], [ 0, 12, 0, ..., 49, 49, 49]], [[ 0, 0, 0, ..., 49, 49, 17], [ 0, 0, 0, ..., 120, 49, 49], [ 0, 0, 0, ..., 49, 49, 49], ..., [ 0, 0, 0, ..., 49, 49, 49], [ 0, 0, 0, ..., 33, 120, 49], [ 0, 0, 0, ..., 49, 49, 49]], [[ 0, 12, 0, ..., 49, 49, 49], [ 48, 12, 12, ..., 49, 49, 49], [ 60, 12, 0, ..., 49, 49, 49], ..., [ 0, 0, 0, ..., 49, 33, 49], [ 8, 4, 12, ..., 49, 120, 49], [ 40, 12, 4, ..., 49, 49, 49]]], dtype=int32)
- classification_mask(volume_time, azimuth, range)int320 8 8 8 8 8 0 0 ... 0 0 0 0 0 0 0 0
- long_name :
- Classification Mask
- units :
- 1
- flag_masks :
- [ 1 2 4 8 16]
- flag_meanings :
- second_trip third_trip interference clutter sunspoke
- standard_name :
- radar_quality_mask
array([[[0, 8, 8, ..., 0, 0, 0], [8, 8, 8, ..., 0, 0, 0], [0, 8, 8, ..., 0, 0, 0], ..., [8, 8, 8, ..., 0, 0, 0], [0, 8, 8, ..., 0, 0, 0], [8, 8, 8, ..., 0, 0, 0]], [[8, 8, 8, ..., 0, 1, 0], [8, 8, 0, ..., 0, 0, 0], [8, 8, 8, ..., 0, 0, 0], ..., [0, 8, 8, ..., 0, 0, 0], [8, 8, 8, ..., 0, 0, 0], [0, 8, 8, ..., 0, 0, 0]], [[8, 8, 8, ..., 0, 0, 0], [8, 8, 8, ..., 0, 0, 1], [0, 8, 8, ..., 0, 0, 0], ..., ... ..., [8, 8, 8, ..., 0, 0, 1], [0, 8, 8, ..., 0, 0, 0], [8, 8, 8, ..., 0, 0, 0]], [[0, 0, 0, ..., 0, 0, 0], [0, 0, 0, ..., 1, 0, 0], [0, 0, 0, ..., 0, 0, 0], ..., [0, 8, 8, ..., 0, 0, 0], [0, 0, 8, ..., 0, 1, 0], [0, 0, 0, ..., 0, 0, 0]], [[0, 8, 8, ..., 0, 0, 0], [8, 8, 8, ..., 0, 0, 0], [8, 8, 0, ..., 0, 0, 0], ..., [0, 8, 8, ..., 0, 0, 0], [8, 8, 8, ..., 0, 0, 0], [8, 8, 8, ..., 0, 0, 0]]], dtype=int32)
- copol_correlation_coeff(volume_time, azimuth, range)float320.6302 0.5423 ... 0.08929 0.1478
- long_name :
- Copolar correlation coefficient (also known as rhohv)
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
array([[[0.6302106 , 0.5423253 , 0.9833384 , ..., 0.10148001, 0.06524259, 0.09028074], [0.17322245, 0.321361 , 0.5362527 , ..., 0.18291119, 0.1584681 , 0.066982 ], [0.47546536, 0.38809887, 0.1798749 , ..., 0.06743973, 0.11995727, 0.10651511], ..., [0.25648457, 0.4670583 , 0.97700644, ..., 0.09427831, 0.0967806 , 0.22847116], [0.6174245 , 0.33323163, 0.03556606, ..., 0.06278607, 0.1596277 , 0.16000915], [0.34043333, 0.3023802 , 0.52615196, ..., 0.06849253, 0.04073849, 0.01496795]], [[0.44073716, 0.8027217 , 0.4479381 , ..., 0.01136589, 0.2365478 , 0.10279647], [0.27877706, 0.15993103, 0.560346 , ..., 0.12406364, 0.06602895, 0.1658962 ], [0.07853907, 0.20435718, 0.9846217 , ..., 0.06500679, 0.1349566 , 0.11619142], ... [0.34877545, 0.94554055, 0.9708705 , ..., 0.00811779, 0.07879758, 0.23631647], [0.2512703 , 0.3038987 , 0.9858701 , ..., 0.05546653, 0.04055849, 0.11044481], [0.39931333, 0.7756618 , 0.6507515 , ..., 0.0730907 , 0.04858473, 0.09428549]], [[0.37454033, 0.6615603 , 0.64434916, ..., 0.05265567, 0.14711851, 0.1065625 ], [0.32487527, 0.58937424, 0.70260453, ..., 0.10900381, 0.13292849, 0.06499946], [0.2959612 , 0.46276262, 0.67514 , ..., 0.15226048, 0.04395857, 0.09496635], ..., [0.3505699 , 0.97047555, 0.5224981 , ..., 0.10465524, 0.1177772 , 0.23087016], [0.19328949, 0.8957262 , 0.8710081 , ..., 0.10276324, 0.13305056, 0.18607241], [0.11942509, 0.5940585 , 0.86350113, ..., 0.01234379, 0.08929035, 0.14783564]]], dtype=float32)
- differential_phase(volume_time, azimuth, range)float3250.83 242.3 337.9 ... 10.23 56.82
- long_name :
- Differential propagation phase shift
- units :
- degree
- standard_name :
- radar_differential_phase_hv
array([[[ 50.83135 , 242.29628 , 337.92712 , ..., 151.9502 , 293.00128 , 152.79619 ], [317.0628 , 208.1487 , 228.92511 , ..., 220.68486 , 178.86833 , 322.66617 ], [238.69804 , 188.39957 , 338.86652 , ..., 210.90643 , 36.70207 , 352.7101 ], ..., [276.13074 , 17.78795 , 359.08258 , ..., 317.0683 , 223.43161 , 194.21169 ], [ 11.508882 , 350.1886 , 252.65701 , ..., 150.03845 , 65.806625 , 221.4924 ], [341.2397 , 228.79875 , 222.75041 , ..., 110.886284 , 3.587255 , 142.10034 ]], [[280.87714 , 179.51108 , 118.09376 , ..., 344.71158 , 323.17157 , 124.59806 ], [315.06866 , 132.1736 , 314.83795 , ..., 62.07105 , 234.77568 , 152.48856 ], [318.26587 , 345.0357 , 295.00092 , ..., 239.21443 , 173.89124 , 165.72789 ], ... [246.14172 , 222.88776 , 218.9544 , ..., 64.45523 , 340.70132 , 259.50192 ], [ 86.42373 , 205.46786 , 213.64769 , ..., 355.1767 , 31.505219 , 138.53506 ], [145.29756 , 200.63908 , 268.5662 , ..., 52.24318 , 169.07343 , 332.76324 ]], [[275.26825 , 206.627 , 93.91137 , ..., 119.7473 , 197.14522 , 250.65738 ], [286.96393 , 227.85387 , 213.77403 , ..., 174.73723 , 209.93958 , 151.88428 ], [285.5521 , 234.10547 , 311.6627 , ..., 27.797106 , 216.00989 , 217.78978 ], ..., [175.8524 , 267.00055 , 333.94434 , ..., 144.1714 , 81.74327 , 75.1291 ], [251.31662 , 247.66891 , 218.31166 , ..., 147.95093 , 98.52591 , 235.34702 ], [252.49771 , 212.03809 , 209.64842 , ..., 358.9947 , 10.228896 , 56.824757 ]]], dtype=float32)
- differential_reflectivity(volume_time, azimuth, range)float325.647 4.088 -1.249 ... -2.67 -4.832
- long_name :
- Differential reflectivity
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
array([[[ 5.6470394e+00, 4.0881066e+00, -1.2491331e+00, ..., -3.0900660e+00, -2.2239242e+00, -6.1664257e+00], [ 1.0735241e+01, 5.3015594e+00, 7.1705704e+00, ..., -3.2365594e+00, -1.8247299e+00, -3.4056368e+00], [ 8.4847374e+00, 5.1208844e+00, 8.4017239e+00, ..., -3.4819355e+00, -3.7730908e+00, -1.2729383e+00], ..., [ 1.3330004e+01, -2.5834432e+00, -9.2787981e+00, ..., -5.1574526e+00, -2.1506777e+00, -1.5958343e+00], [ 8.1777115e+00, 6.4917612e-01, -6.9977751e+00, ..., -5.7660103e+00, -7.5098915e+00, -3.0729752e+00], [ 4.4769244e+00, 9.0798092e-01, 6.0621042e+00, ..., -6.8323593e+00, -3.0583258e+00, -3.1559877e+00]], [[ 1.0575261e+00, 1.3879964e+01, 1.2260602e+01, ..., -2.5944300e+00, -1.6262867e+01, -2.2037811e+00], [ 3.1841207e+00, 4.4713736e-01, 2.7031345e+00, ..., -3.2524295e+00, -5.3839073e+00, -4.0495973e+00], [ 3.8079381e+00, -1.2521853e+00, -4.0618048e+00, ..., -5.9363089e+00, -3.5338187e+00, -1.8143535e+00], ... [ 2.8660512e-01, -3.8604355e-01, 1.4682603e-01, ..., -5.0042448e+00, -2.5834432e+00, -6.7151651e+00], [-7.1504307e-01, 3.2207441e+00, -9.3112087e-01, ..., -2.5748978e+00, -1.6262867e+01, -1.9809895e+00], [ 6.1658702e+00, 1.1588507e+00, 6.2292933e-01, ..., -4.1112466e+00, -4.3676100e+00, -1.8167949e+00]], [[ 1.0086951e+00, -1.5653729e-01, 3.2866662e+00, ..., -3.3384943e+00, -2.3753004e+00, -3.0021701e+00], [ 1.4957852e+00, 1.3114479e+00, 3.1712461e-01, ..., -3.0192609e+00, -6.3275681e+00, -1.8845482e+00], [-1.9278855e+00, 3.6718214e+00, 7.1376090e+00, ..., -2.4290147e+00, -1.5805745e+00, -3.7651558e+00], ..., [-6.3996506e-01, -2.0463009e+00, 4.3463011e+00, ..., -3.2072606e+00, -2.5980926e+00, -2.8733778e+00], [ 8.4511089e-01, -3.1791825e+00, -5.2160740e-02, ..., -4.2498045e+00, 9.1286397e-01, -5.9479618e-01], [ 8.0385437e+00, -1.9846516e+00, -3.5003042e-01, ..., -5.6720104e+00, -2.6701183e+00, -4.8315048e+00]]], dtype=float32)
- differential_reflectivity_lag_1(volume_time, azimuth, range)float3211.15 10.27 3.049 ... 7.338 4.314
- long_name :
- Differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
- applied_bias_correction :
- 3.7371335
array([[[ 11.154273 , 10.269209 , 3.0490723 , ..., 3.111637 , 2.0526123 , 2.0281968 ], [ 12.854969 , 13.595828 , 12.591739 , ..., 8.761549 , 11.22523 , 6.0476074 ], [ 12.654304 , 12.3636055 , 15.084414 , ..., 6.3108377 , 6.3878994 , 1.6756973 ], ..., [ 15.974055 , -3.556861 , -5.072151 , ..., 3.0895104 , 5.1114235 , 8.422783 ], [ 12.787063 , 9.123967 , -2.644329 , ..., 2.5683908 , 6.1994414 , 4.641424 ], [ 11.57773 , 7.7498293 , 11.564759 , ..., 1.8420281 , 1.3712659 , 0.77918863]], [[ 7.5155926 , 19.055756 , 16.588259 , ..., 2.7743974 , 9.713755 , 6.6320543 ], [ 12.384207 , 4.8573494 , 7.008207 , ..., 6.4580936 , 7.3118753 , 1.3849998 ], [ 5.0969267 , 6.898337 , 0.17414093, ..., 4.365223 , 6.5740676 , 2.292953 ], ... [ 5.107609 , 3.725841 , 4.4605966 , ..., 1.3956814 , -10.007145 , 2.347888 ], [ 3.1154518 , 7.823076 , 3.2932277 , ..., 9.7458 , 8.44262 , 12.088167 ], [ 10.175362 , 5.4883385 , 4.9679823 , ..., 7.986355 , 12.468135 , 3.545013 ]], [[ 4.7482424 , 4.7161965 , 7.912345 , ..., 5.5409846 , 9.020964 , 10.265394 ], [ 7.327898 , 4.0936003 , 3.6991363 , ..., 13.898733 , 7.4164042 , 1.8710217 ], [ -0.4156475 , 10.6262865 , 11.795944 , ..., 6.296341 , 3.7349968 , 3.0078712 ], ..., [ 3.3542666 , 2.2967682 , 8.867603 , ..., 9.143042 , 18.64527 , -0.74296856], [ 3.3649483 , 0.7463803 , 3.6701427 , ..., 7.646826 , 6.1796036 , 12.055359 ], [ 16.048828 , 1.8778887 , 3.5244126 , ..., 2.6431637 , 7.3378167 , 4.314103 ]]], dtype=float32)
- mean_doppler_velocity(volume_time, azimuth, range)float320.09009 4.748 ... 9.282 -5.538
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
array([[[ 9.00927186e-02, 4.74773550e+00, -2.41589416e-02, ..., 1.22551260e+01, 1.44027557e+01, 1.10869408e+01], [ 1.40927160e+00, 2.68164253e+00, -3.24283457e+00, ..., 1.50993392e-01, 1.53172722e+01, -5.62299347e+00], [ 4.87205327e-01, 1.64180136e+00, 2.68768221e-01, ..., 2.81250334e+00, -1.62141724e+01, 4.70948362e+00], ..., [-1.05030994e+01, 5.74378824e+00, 4.07682136e-02, ..., 1.59091663e+01, 1.45960273e-02, -4.54792070e+00], [ 4.90225196e-01, 7.12688804e-01, 1.20291397e-01, ..., 5.79160309e+00, -7.64831829e+00, -1.22848215e+01], [-2.54172206e-01, 1.68709946e+00, 1.84916568e+00, ..., 1.36598682e+00, 1.56429148e+01, 1.17462788e+01]], [[ 1.12877617e+01, -1.87634444e+00, -3.33695382e-01, ..., -9.83218575e+00, -7.80182838e+00, 4.76031828e+00], [ 1.54883986e+01, -1.92868888e+00, -5.35523176e-01, ..., 5.88119221e+00, -1.64879742e+01, 1.56977758e+01], [-5.58172226e-01, -3.51613259e+00, -1.68609276e-01, ..., 3.14015913e+00, -1.55794973e+01, 1.45557618e+00], ... 1.38652191e+01, 1.56117096e+01, -1.48265438e+01], [ 1.00259602e+00, 1.02725828e+00, 5.76945734e+00, ..., 1.49030476e+01, -1.56877098e+01, -3.36161613e+00], [ 2.85075521e+00, 1.61764252e+00, 1.47268879e+00, ..., 1.49070740e+01, 1.07270737e+01, 1.44938555e+01]], [[ 3.41245055e-01, 6.96029186e+00, 9.79443729e-01, ..., -9.27703381e+00, 1.35758152e+01, -8.76063633e+00], [ 8.08066273e+00, 8.58145714e+00, 7.56124544e+00, ..., 1.09656429e+01, -1.27534046e+01, -8.00264931e+00], [ 1.08639736e+01, 4.50413275e+00, -7.85165578e-02, ..., 1.15827026e+01, -7.46007967e+00, -1.03354969e+01], ..., [ 4.47947048e-02, 1.15258284e-01, 1.05242383e+00, ..., -1.37977753e+01, -2.96752334e+00, -1.46710205e+01], [ 4.70847702e+00, 1.52402651e+00, 6.99099350e+00, ..., 1.18861990e+01, -3.86140418e+00, 1.27010603e+01], [ 1.29300666e+00, 5.82280827e+00, 7.99107313e+00, ..., 1.26648216e+01, 9.28156376e+00, -5.53843737e+00]]], dtype=float32)
- mean_doppler_velocity_v(volume_time, azimuth, range)float32-0.0609 4.792 0.0 ... 2.665 0.5199
- long_name :
- Doppler velocity, vertical channel
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
array([[[-6.09006658e-02, 4.79152346e+00, 0.00000000e+00, ..., -1.35264912e+01, -1.18514709e+01, -1.24388351e+01], [ 1.35541725e+00, 4.08084774e+00, -1.64029145e+00, ..., 3.74765587e+00, -1.94479477e+00, -1.53706236e+01], [ 4.04662281e-01, 8.50596055e-02, -1.16466236e+00, ..., -1.03027821e+01, -1.55256433e+01, 1.06933517e+01], ..., [ 8.55629158e+00, -4.95258301e-01, 4.52980166e-03, ..., 9.92378902e+00, -1.18328488e+00, 8.76667595e+00], [ 8.70728493e-02, -1.15615635e+01, -7.19735101e-02, ..., -3.33896708e+00, -2.23973513e+00, -6.85711288e+00], [ 1.34741459e+01, -6.87019885e-01, 2.66805315e+00, ..., 1.62841339e+01, 1.01804771e+01, -4.92087460e+00]], [[ 2.38368225e+00, -1.96945703e+00, -6.44238472e-01, ..., 2.28704643e+00, -9.43054390e+00, -1.29250336e+00], [-5.18410635e+00, -1.10728480e-01, -3.23629141e-01, ..., 1.49735105e+00, -1.03269405e+01, 1.24161863e+01], [-1.51773520e+01, -2.80898023e+00, -9.46225226e-02, ..., 9.48389435e+00, -1.14729805e+01, 1.39824905e+01], ... 1.24921856e+01, -7.28190756e+00, 6.46251678e+00], [ 6.92053020e-01, 2.48434448e+00, 5.71660948e+00, ..., 2.23923182e+00, 8.62172222e+00, 1.09706764e+01], [ 2.62929821e+00, 2.45414591e+00, 1.77618551e+00, ..., 3.69279480e+00, -2.65194726e+00, 5.56662273e+00]], [[ 2.33033121e-01, 7.28945732e+00, 1.79984117e+00, ..., 7.43793392e+00, 1.52634182e+01, 7.05894089e+00], [ 1.24811134e+01, 8.20447731e+00, 7.77716589e+00, ..., -1.02745962e+01, 9.14466286e+00, 4.87205327e-01], [-8.65192127e+00, 6.77507305e+00, 6.84000015e-01, ..., 1.38043184e+01, 1.24896698e+01, 1.05086365e+01], ..., [ 8.75761658e-02, 1.35390729e-01, 2.68063593e+00, ..., -9.13962936e+00, 1.01683979e+01, 7.26378822e+00], [ 6.35631800e+00, 5.43072879e-01, 8.10733795e+00, ..., -7.76810646e+00, 1.55457754e+01, -1.57058287e+01], [ 1.18268089e+01, 6.14442396e+00, 8.15867615e+00, ..., 7.46813297e+00, 2.66453004e+00, 5.19920528e-01]]], dtype=float32)
- normalized_coherent_power(volume_time, azimuth, range)float320.844 0.751 ... 0.134 0.08034
- long_name :
- Normalized coherent power, also known as SQI.
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
array([[[0.84395075, 0.7510414 , 0.9537666 , ..., 0.14265224, 0.05593786, 0.09182599], [0.1788913 , 0.70071864, 0.8686391 , ..., 0.14587179, 0.16370904, 0.10246122], [0.6496178 , 0.8508934 , 0.5226971 , ..., 0.1672185 , 0.14599386, 0.06256008], ..., [0.05645666, 0.13043013, 0.94159025, ..., 0.03974855, 0.049041 , 0.13168135], [0.7625311 , 0.44362727, 0.99391186, ..., 0.11536995, 0.12855333, 0.09478614], [0.19273081, 0.59439707, 0.79915166, ..., 0.08618033, 0.01631141, 0.06298733]], [[0.16464737, 0.9943083 , 0.969512 , ..., 0.13435775, 0.2638325 , 0.13472396], [0.05021819, 0.99114966, 0.9931638 , ..., 0.08961761, 0.09300515, 0.06079286], [0.1142613 , 0.40629292, 0.959563 , ..., 0.1429792 , 0.11703849, 0.03346354], ... [0.7146563 , 0.94168 , 0.990219 , ..., 0.0700084 , 0.00480658, 0.07022202], [0.7929961 , 0.91735715, 0.98930347, ..., 0.24306095, 0.14929426, 0.17424276], [0.72880137, 0.8820783 , 0.8906996 , ..., 0.09668115, 0.1420615 , 0.07798886]], [[0.7715336 , 0.8842639 , 0.78660905, ..., 0.12180907, 0.14076018, 0.05975249], [0.11775029, 0.4608389 , 0.70877516, ..., 0.09971467, 0.14394921, 0.03362986], [0.02505454, 0.6394861 , 0.93892 , ..., 0.09802097, 0.07559088, 0.04922411], ..., [0.80414116, 0.9341746 , 0.8107023 , ..., 0.08036682, 0.20133665, 0.03781071], [0.21838045, 0.72948104, 0.7416879 , ..., 0.11456123, 0.13778475, 0.1780521 ], [0.2974198 , 0.6714833 , 0.85231245, ..., 0.09956208, 0.13400063, 0.0803363 ]]], dtype=float32)
- normalized_coherent_power_v(volume_time, azimuth, range)float320.6373 0.4857 ... 0.07927 0.0781
- long_name :
- Normalized coherent power, also known as SQI, Vertical Channel
- units :
- 1
- standard_name :
- radar_normalized_coherent_power
array([[[0.63729304, 0.48567942, 0.9514611 , ..., 0.20283818, 0.11540398, 0.12457466], [0.29463646, 0.27858394, 0.6691081 , ..., 0.05618373, 0.0434882 , 0.06733805], [0.66767377, 0.43077743, 0.30110627, ..., 0.10635537, 0.09315634, 0.1679408 ], ..., [0.08241397, 0.43801022, 0.95925844, ..., 0.04820326, 0.05123979, 0.06260777], [0.7082017 , 0.16911575, 0.9790646 , ..., 0.15716791, 0.06869611, 0.09988555], [0.10084689, 0.33008316, 0.60408944, ..., 0.14254978, 0.03414968, 0.17471579]], [[0.09990081, 0.8100405 , 0.9603723 , ..., 0.2289311 , 0.11332875, 0.0981155 ], [0.01620507, 0.963302 , 0.9891966 , ..., 0.0624094 , 0.04692149, 0.12188905], [0.22801557, 0.16694894, 0.9709163 , ..., 0.12375066, 0.07718015, 0.07049668], ... [0.6320536 , 0.9806665 , 0.9841914 , ..., 0.12170783, 0.14526811, 0.10475478], [0.8809168 , 0.853206 , 1. , ..., 0.08322397, 0.07976013, 0.03436384], [0.77681816, 0.87371445, 0.87897885, ..., 0.04707479, 0.02197331, 0.12649924]], [[0.87530136, 0.7729423 , 0.7278207 , ..., 0.10844752, 0.06259346, 0.01704457], [0.08249152, 0.65181434, 0.8730888 , ..., 0.0137791 , 0.05597094, 0.07266456], [0.04744104, 0.34597307, 0.8621174 , ..., 0.07353434, 0.11531419, 0.06503496], ..., [0.8603778 , 0.92234564, 0.7681509 , ..., 0.03326517, 0.00907925, 0.13119906], [0.32808924, 0.7929014 , 0.84502697, ..., 0.05648977, 0.16745505, 0.0420545 ], [0.12620929, 0.7405011 , 0.93740654, ..., 0.13837093, 0.07927182, 0.07809687]]], dtype=float32)
- reflectivity(volume_time, azimuth, range)float328.063 11.04 ... -0.007808 -1.631
- long_name :
- Equivalent reflectivity factor
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
array([[[ 8.06341457e+00, 1.10384321e+01, 2.79769058e+01, ..., 2.45207429e-01, 4.71652389e-01, -1.98996043e+00], [ 8.60610199e+00, 8.61390972e+00, 1.40778704e+01, ..., 3.43793631e-02, 5.24359465e-01, 6.72719955e-01], [ 1.03259115e+01, 9.56653976e+00, 6.82382345e+00, ..., 2.33494759e-01, -4.69265461e-01, 2.04213142e-01], ..., [ 9.08436871e+00, 3.80976343e+00, 2.77192268e+01, ..., -1.61125064e+00, 3.42813015e-01, 1.82056153e+00], [ 1.06792440e+01, 5.94537354e+00, 2.31571407e+01, ..., -2.46237135e+00, -4.01820421e+00, -2.56485224e-01], [-2.80882120e-02, 8.09660053e+00, 1.05074577e+01, ..., -4.10019302e+00, 4.50179219e-01, -1.20521140e+00]], [[-1.96705151e+00, 2.36154156e+01, 2.87827988e+01, ..., 5.09684086e-02, -3.08273697e+00, 3.77844572e-01], [-1.10582113e+00, 2.60464344e+01, 2.89941921e+01, ..., -6.22357368e-01, -2.72650051e+00, -8.51366520e-01], [-1.51882029e+00, 2.52700663e+00, 2.30125523e+01, ..., -2.38396549e+00, -8.10262442e-01, 3.85673881e-01], ... -1.13009310e+00, 7.85066128e-01, -4.03695917e+00], [ 6.61485863e+00, 2.81373119e+01, 2.72600327e+01, ..., 7.03945160e-02, -3.14562702e+00, 1.41140747e+00], [ 1.24948387e+01, 2.70371990e+01, 3.35635948e+01, ..., -1.94513941e+00, -1.28065586e+00, 5.03196716e-02]], [[ 6.61972046e+00, 1.02201843e+01, 2.19961529e+01, ..., -1.11813688e+00, -6.11599922e-01, -7.80820847e-03], [ 7.98331738e+00, 9.33273125e+00, 8.36423302e+00, ..., -1.23362732e+00, -2.15957689e+00, 1.10859919e+00], [-2.99029732e+00, 7.90429783e+00, 2.49401455e+01, ..., 4.62258101e-01, 7.29709625e-01, 3.87930870e-02], ..., [ 4.83063221e+00, 2.22534733e+01, 2.11613808e+01, ..., -1.55173254e+00, -2.08396912e-01, 6.16245270e-01], [-2.15552425e+00, 1.35086212e+01, 1.29372482e+01, ..., -1.55173254e+00, 1.48546267e+00, 2.31213069e+00], [ 2.70520329e+00, 8.45338345e+00, 1.50018921e+01, ..., -2.63369513e+00, -7.80820847e-03, -1.63075209e+00]]], dtype=float32)
- reflectivity_v(volume_time, azimuth, range)float324.946 9.482 33.53 ... 5.192 5.729
- long_name :
- Equivalent reflectivity factor, vertical channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
array([[[ 4.9457455 , 9.481649 , 33.52613 , ..., 5.8661747 , 5.224663 , 6.704672 ], [ 0.40286636, 5.845256 , 9.438068 , ..., 5.798188 , 4.8760157 , 6.6105375 ], [ 4.37222 , 6.9801035 , 0.9554739 , ..., 6.2444572 , 5.8330536 , 4.0061398 ], ..., [-1.7169094 , 8.9273 , 13.24007 , ..., 6.07362 , 5.018961 , 5.94462 ], [ 5.031164 , 7.8290606 , 32.684143 , ..., 5.8313103 , 6.021323 , 5.344947 ], [-1.9766521 , 9.718731 , 6.976617 , ..., 5.259528 , 6.0387554 , 4.480301 ]], [[-0.49428368, 12.267253 , 19.050097 , ..., 5.174986 , 1.9688683 , 5.1068077 ], [-1.7616959 , 28.12827 , 28.824036 , ..., 5.159252 , 5.1872225 , 5.729151 ], [-2.8018494 , 6.311287 , 30.642117 , ..., 6.0822783 , 5.2536526 , 4.729206 ], ... [13.133911 , 25.219706 , 26.106972 , ..., 6.403865 , 5.897544 , 5.207983 ], [ 9.864527 , 27.44591 , 30.744226 , ..., 5.1758366 , 0.7346802 , 5.9232626 ], [ 8.8583145 , 28.41033 , 35.469887 , ..., 4.6952343 , 5.6178627 , 4.396263 ]], [[ 8.145863 , 12.911522 , 21.24115 , ..., 4.7479267 , 4.2925663 , 5.5222015 ], [ 9.022059 , 10.555816 , 10.582119 , ..., 4.313937 , 6.697589 , 5.5222015 ], [ 1.4667072 , 6.768276 , 20.335361 , ..., 5.423568 , 4.839985 , 6.3309994 ], ..., [ 8.004487 , 26.830402 , 19.345736 , ..., 4.1840696 , 4.920535 , 6.0186586 ], [-0.4714489 , 19.222445 , 15.522031 , ..., 5.2263002 , 3.1023846 , 5.436719 ], [-2.8074265 , 12.977278 , 17.8876 , ..., 5.5665874 , 5.191778 , 5.729333 ]]], dtype=float32)
- signal_to_noise_ratio_copolar_h(volume_time, azimuth, range)float3273.59 81.01 79.52 ... -3.076 -4.705
- long_name :
- Signal-to-noise ratio, horizontal channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_h
array([[[73.58752 , 81.00845 , 79.52155 , ..., -2.814455 , -2.599268 , -5.0690403 ], [81.086 , 76.70671 , 77.39685 , ..., -3.0257587 , -2.5469265 , -2.4054089 ], [75.84985 , 73.639854 , 76.18329 , ..., -2.8241444 , -3.5394878 , -2.874548 ], ..., [80.0062 , 83.46078 , 80.219444 , ..., -4.671629 , -2.7252789 , -1.257761 ], [76.20461 , 83.668205 , 79.0621 , ..., -5.520731 , -7.0851765 , -3.3339977 ], [74.03533 , 75.61916 , 79.420746 , ..., -7.1627216 , -2.6186543 , -4.283907 ]], [[72.74527 , 84.42261 , 81.13939 , ..., -3.009182 , -4.4860497 , -2.7010155 ], [75.30168 , 82.80232 , 80.53856 , ..., -3.6836586 , -5.796238 , -3.929802 ], [72.16964 , 70.66176 , 74.55162 , ..., -5.4434967 , -3.877472 , -2.6913261 ], ... [76.41377 , 83.54009 , 83.7261 , ..., -4.188381 , -2.2837677 , -7.1121483 ], [72.14342 , 84.117485 , 81.77498 , ..., -2.9870987 , -1.7509422 , -1.6637497 ], [78.020004 , 83.01889 , 85.107574 , ..., -5.0040894 , -4.3472595 , -3.0277863 ]], [[72.14819 , 80.68274 , 79.296196 , ..., -4.175953 , -3.6775703 , -3.0861053 ], [78.318825 , 77.47526 , 79.17403 , ..., -4.290367 , -5.2270126 , -1.9691086 ], [74.564476 , 76.99433 , 76.48625 , ..., -2.5954819 , -2.3375626 , -3.041504 ], ..., [70.35829 , 79.70149 , 80.45586 , ..., -4.6083984 , -3.2722702 , -2.4597359 ], [69.188934 , 82.9594 , 83.4539 , ..., -4.6083984 , -1.5812645 , -0.76290894], [75.08225 , 80.13782 , 77.15529 , ..., -5.6943665 , -3.0764084 , -4.7053604 ]]], dtype=float32)
- signal_to_noise_ratio_copolar_v(volume_time, azimuth, range)float3272.64 86.47 88.19 ... 4.291 4.82
- long_name :
- Signal-to-noise ratio, vertical channel
- units :
- dB
- standard_name :
- radar_signal_to_noise_ratio_copolar_v
array([[[72.63927 , 86.47241 , 88.18829 , ..., 4.975521 , 4.3242264, 5.7940598], [73.39991 , 79.378944 , 82.97633 , ..., 4.909588 , 3.9768715, 5.7007904], [72.06195 , 82.13046 , 81.582085 , ..., 5.3550415, 4.935318 , 3.0956154], ..., [77.00856 , 91.90147 , 91.1183 , ..., 5.182972 , 4.119995 , 5.0366287], [72.724495 , 87.91812 , 88.13522 , ..., 4.9417496, 5.1234703, 4.436798 ], [74.6237 , 85.837204 , 84.5314 , ..., 4.370865 , 5.1395493, 3.570015 ]], [[77.28511 , 90.83729 , 83.23703 , ..., 4.280792 , 3.7510223, 4.197815 ], [76.890976 , 89.93413 , 82.53173 , ..., 4.269623 , 4.2855797, 4.8185387], [78.55847 , 90.033066 , 86.19862 , ..., 5.191929 , 4.3541946, 3.8196373], ... [80.82593 , 91.29863 , 87.48566 , ..., 5.513954 , 4.998646 , 4.2995224], [77.55498 , 85.59567 , 88.61682 , ..., 4.285385 , 5.011215 , 5.0159264], [76.55107 , 86.55873 , 89.1824 , ..., 3.804638 , 4.718998 , 3.4872856]], [[75.83524 , 81.55754 , 83.36963 , ..., 3.858303 , 3.393299 , 4.612541 ], [79.916435 , 80.4134 , 80.76176 , ..., 3.4268532, 5.796631 , 4.610943 ], [79.360344 , 80.31433 , 74.04713 , ..., 4.531044 , 3.9398003, 5.4211082], ..., [75.694626 , 86.71256 , 79.48179 , ..., 3.2942238, 4.022896 , 5.1095085], [77.3613 , 86.32426 , 80.669075 , ..., 4.3376923, 2.202816 , 4.527851 ], [78.751526 , 84.62882 , 80.747375 , ..., 4.6764603, 4.2913513, 4.820278 ]]], dtype=float32)
- specific_attenuation(volume_time, azimuth, range)float640.0 nan nan nan ... nan nan nan nan
- long_name :
- Specific attenuation
- units :
- dB/km
- standard_name :
- specific_attenuation
- valid_min :
- 0.0
- valid_max :
- 1.0
array([[[0. , nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [0. , nan, nan, ..., nan, nan, nan], ..., [ nan, nan, nan, ..., nan, nan, nan], [0. , nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]], [[ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, 0.02128454, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], ... [0. , nan, nan, ..., nan, nan, nan], [0. , 0. , nan, ..., nan, nan, nan], [0. , 0. , 0.03875692, ..., nan, nan, nan]], [[0. , nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, 0.00401073, ..., nan, nan, nan], ..., [0. , nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]]])
- specific_differential_attenuation(volume_time, azimuth, range)float640.0 nan nan nan ... nan nan nan nan
- long_name :
- Specific Differential Attenuation
- units :
- dB/km
array([[[0.00000000e+00, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [0.00000000e+00, nan, nan, ..., nan, nan, nan], ..., [ nan, nan, nan, ..., nan, nan, nan], [0.00000000e+00, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]], [[ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, 2.89034174e-04, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], ... [0.00000000e+00, nan, nan, ..., nan, nan, nan], [0.00000000e+00, 0.00000000e+00, nan, ..., nan, nan, nan], [0.00000000e+00, 0.00000000e+00, 8.52124878e-04, ..., nan, nan, nan]], [[0.00000000e+00, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, 1.42342908e-05, ..., nan, nan, nan], ..., [0.00000000e+00, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]]])
- specific_differential_phase(volume_time, azimuth, range)float32nan nan nan nan ... nan nan nan nan
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
array([[[nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], ..., [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan]], [[nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], ..., [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan]], [[nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], ..., ... ..., [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan]], [[nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], ..., [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan]], [[nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], ..., [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan], [nan, nan, nan, ..., nan, nan, nan]]], dtype=float32)
- spectral_width(volume_time, azimuth, range)float323.058 3.972 1.615 ... 10.52 11.79
- long_name :
- Spectral width
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
array([[[ 3.0580626 , 3.9721603 , 1.6153336 , ..., 10.359773 , 12.607149 , 11.47239 ], [ 9.739304 , 4.427322 , 2.7860727 , ..., 10.300392 , 9.987139 , 11.2059355 ], [ 4.8761935 , 2.9833345 , 5.979753 , ..., 9.928011 , 10.298128 , 12.359566 ], ..., [12.586769 , 10.5955305 , 1.8214016 , ..., 13.332791 , 12.891468 , 10.5706215 ], [ 3.865478 , 6.693569 , 0.57920504, ..., 10.910043 , 10.63302 , 11.3961525 ], [ 9.525686 , 5.354755 , 3.515489 , ..., 11.623859 , 15.063362 , 12.344469 ]], [[ 9.970924 , 0.56101274, 1.3064294 , ..., 10.517849 , 8.569401 , 10.510805 ], [12.8401375 , 0.7003851 , 0.6145983 , ..., 11.529935 , 11.440878 , 12.423279 ], [10.934206 , 7.045862 , 1.5086956 , ..., 10.353571 , 10.873576 , 13.683669 ], ... [ 4.3031044 , 1.8200316 , 0.7357631 , ..., 12.106615 , 16.491497 , 12.099318 ], [ 3.5756454 , 2.1803641 , 0.76948166, ..., 8.829402 , 10.2385235 , 9.813271 ], [ 4.17578 , 2.6297731 , 2.5258503 , ..., 11.347954 , 10.371383 , 11.858257 ]], [[ 3.780723 , 2.6038551 , 3.637043 , ..., 10.771725 , 10.395288 , 12.461663 ], [10.858285 , 6.534548 , 4.355695 , ..., 11.272214 , 10.335903 , 13.674514 ], [14.255273 , 4.9641333 , 1.8638153 , ..., 11.314236 , 11.930475 , 12.883392 ], ..., [ 3.466187 , 1.9370389 , 3.4007635 , ..., 11.7880535 , 9.398586 , 13.435467 ], [ 9.157274 , 4.1694894 , 4.0582695 , ..., 10.927734 , 10.451653 , 9.752377 ], [ 8.175671 , 4.6850767 , 2.9679623 , ..., 11.275989 , 10.524877 , 11.78906 ]]], dtype=float32)
- spectral_width_v(volume_time, azimuth, range)float324.983 6.31 1.656 ... 11.82 11.85
- long_name :
- Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
array([[[ 4.983033 , 6.30951 , 1.6561456 , ..., 9.376941 , 10.909272 , 10.714491 ], [ 8.207245 , 8.392715 , 4.7059603 , ..., 12.597378 , 13.145484 , 12.194729 ], [ 4.718795 , 6.813325 , 8.134013 , ..., 11.113868 , 11.437497 , 9.916491 ], ..., [11.728914 , 6.7456293 , 16.491749 , ..., 12.928053 , 12.797193 , 12.358557 ], [ 4.360689 , 9.896861 , 1.079351 , ..., 10.098941 , 12.149431 , 11.268133 ], [11.244981 , 7.816424 , 5.2709274 , ..., 10.361921 , 13.643259 , 9.805762 ]], [[11.267886 , 3.4076872 , 1.4928913 , ..., 9.01446 , 10.955169 , 11.312164 ], [15.07408 , 1.4352789 , 0.7736163 , ..., 12.365038 , 12.985189 , 10.770255 ], [ 9.026787 , 9.932988 , 1.2752724 , ..., 10.731763 , 11.882503 , 12.090561 ], ... [ 5.0288343 , 1.0375762 , 0.93741703, ..., 10.773881 , 10.311338 , 11.150862 ], [ 2.6436424 , 2.9579601 , 0.45901966, ..., 11.705762 , 11.80567 , 13.630173 ], [ 3.7310462 , 2.7281985 , 2.666543 , ..., 12.977881 , 14.505934 , 10.674728 ]], [[ 2.709663 , 3.768062 , 4.184778 , ..., 11.065126 , 12.358055 , 14.98065 ], [11.726688 , 4.857161 , 2.73533 , ..., 15.365911 , 12.604914 , 12.020605 ], [12.961236 , 7.648607 , 2.8598924 , ..., 11.993679 , 10.91062 , 12.272497 ], ..., [ 2.8790169 , 2.1110106 , 3.8131056 , ..., 13.695774 , 16.097178 , 10.579964 ], [ 7.8375883 , 3.5765638 , 3.0463576 , ..., 12.584782 , 9.923938 , 13.215141 ], [10.68062 , 4.0692754 , 1.8880577 , ..., 10.440556 , 11.819544 , 11.854271 ]]], dtype=float32)
- uncorrected_copol_correlation_coeff(volume_time, azimuth, range)float320.6302 0.8791 ... 0.08929 0.1478
- long_name :
- Uncorrected copolar correlation coefficient
- units :
- 1
- standard_name :
- radar_correlation_coefficient_hv
array([[[0.6302026 , 0.87910414, 0.6435677 , ..., 0.10148907, 0.06523862, 0.09027523], [0.37661722, 0.5292628 , 0.62654096, ..., 0.18290004, 0.1584737 , 0.06697792], [0.47546685, 0.59576774, 0.7990968 , ..., 0.06743562, 0.11996523, 0.10652387], ..., [0.6818321 , 0.5067588 , 0.85020745, ..., 0.09427255, 0.0967747 , 0.22847247], [0.6174173 , 0.91022825, 0.34959722, ..., 0.06278226, 0.15963322, 0.16001466], [0.36743256, 0.40937385, 0.73340046, ..., 0.06850359, 0.04073599, 0.01496705]], [[0.39753133, 0.6313814 , 0.27274114, ..., 0.01136675, 0.05614719, 0.10278904], [0.8971194 , 0.04322419, 0.5603277 , ..., 0.12405786, 0.06603399, 0.16589361], [0.4045345 , 0.39919442, 0.4764731 , ..., 0.06501174, 0.13496688, 0.11618504], ... [0.34876943, 0.6813958 , 0.6933429 , ..., 0.00811732, 0.07879278, 0.2363173 ], [0.25127023, 0.30388013, 0.50456977, ..., 0.05546317, 0.07893011, 0.11043805], [0.3993042 , 0.77567554, 0.65075755, ..., 0.07308626, 0.04858175, 0.09427974]], [[0.37455374, 0.2335144 , 0.3515761 , ..., 0.05265325, 0.14712703, 0.10655764], [0.7876171 , 0.8135241 , 0.91605383, ..., 0.10899881, 0.13293767, 0.06499648], [0.66970795, 0.5698789 , 0.6751396 , ..., 0.15226877, 0.04395655, 0.094962 ], ..., [0.35055384, 0.5234506 , 0.50305146, ..., 0.10465047, 0.1177718 , 0.23085961], [0.7057154 , 0.6029569 , 0.78459615, ..., 0.10275853, 0.13305971, 0.18607914], [0.7888987 , 0.8594184 , 0.11491868, ..., 0.01234323, 0.08928627, 0.14784414]]], dtype=float32)
- uncorrected_differential_phase(volume_time, azimuth, range)float3250.83 -13.84 -42.08 ... 10.23 56.82
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
array([[[ 50.83135 , -13.843618 , -42.080204 , ..., 151.9502 , -66.99872 , 152.79619 ], [ -77.84838 , -76.60685 , -20.320454 , ..., -139.31514 , 178.86833 , -37.33382 ], [-121.301956 , -159.11371 , -63.724594 , ..., -149.09357 , 36.70207 , -7.2898736 ], ..., [ -99.64658 , 42.49771 , 7.592016 , ..., -42.931698 , -136.56839 , -165.78831 ], [ 11.508882 , 108.72185 , -50.71049 , ..., 150.03845 , 65.806625 , -138.5076 ], [ 9.520234 , 138.30434 , 16.024538 , ..., 110.886284 , 3.587255 , 142.10034 ]], [[-131.61325 , -47.886833 , -135.19502 , ..., -15.288408 , -6.95477 , 124.59806 ], [ -73.39315 , -31.812855 , -45.16206 , ..., 62.07105 , -125.22432 , 152.48856 ], [ 154.55411 , 151.96118 , -88.516754 , ..., -120.78557 , 173.89124 , 165.72789 ], ... [-113.85827 , 75.96411 , -158.56436 , ..., 64.45523 , -19.298664 , -100.49808 ], [ 86.42373 , -154.53214 , -118.698044 , ..., -4.8232923 , 113.02875 , 138.53506 ], [ 145.29756 , -159.36092 , -91.4338 , ..., 52.24318 , 169.07343 , -27.23677 ]], [[ -84.731735 , 152.46658 , 13.173411 , ..., 119.7473 , -162.85478 , -109.34261 ], [ -90.846 , -59.840687 , -74.36001 , ..., 174.73723 , -150.06042 , 151.88428 ], [-131.14632 , -21.3807 , -48.3373 , ..., 27.797106 , -143.99011 , -142.21022 ], ..., [ 175.8524 , -111.23787 , 32.796192 , ..., 144.1714 , 81.74327 , 75.1291 ], [ 66.64713 , -57.874016 , -142.09485 , ..., 147.95093 , 98.52591 , -124.65299 ], [ 56.89068 , -50.150154 , -51.298298 , ..., -1.0053104 , 10.228896 , 56.824757 ]]], dtype=float32)
- uncorrected_differential_reflectivity(volume_time, azimuth, range)float321.909 -4.506 ... -6.407 -8.569
- long_name :
- Uncorrected Differential Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- radar_differential_reflectivity_hv
array([[[ 1.9094343 , -4.505854 , -7.706442 , ..., -6.8274956 , -5.9618783 , -9.903416 ], [ 8.646976 , -1.7145529 , -4.6187606 , ..., -6.9741173 , -5.5620008 , -7.143477 ], [ 4.74778 , -7.530025 , -4.436856 , ..., -7.219532 , -7.510423 , -5.0107975 ], ..., [ 3.9566498 , -7.47906 , -9.937914 , ..., -8.895097 , -5.887391 , -5.3330517 ], [ 4.441207 , -3.2897563 , -8.11416 , ..., -9.502754 , -11.246532 , -6.8102455 ], [ 0.37186623, -9.258907 , -4.153021 , ..., -10.569094 , -6.795348 , -6.8933573 ]], [[ -3.5771742 , -5.455014 , -1.1390465 , ..., -6.332215 , -7.276825 , -5.940889 ], [ -0.6295348 , -6.1737585 , -1.036619 , ..., -6.9896774 , -9.1205225 , -7.7872124 ], [ -5.429626 , -18.412546 , -10.6832 , ..., -9.672932 , -7.2715726 , -5.5513134 ], ... [ -3.4509797 , -6.799577 , -2.8014786 , ..., -8.741817 , -6.3209505 , -10.453243 ], [ -4.452965 , -0.51927924, -5.879898 , ..., -6.312004 , -5.8020654 , -5.718865 ], [ 2.4285245 , -2.578716 , -3.114599 , ..., -7.848083 , -8.104841 , -5.554253 ]], [[ -2.7289906 , 0.08420205, -3.1107497 , ..., -7.076177 , -6.112648 , -6.738768 ], [ -0.6375753 , -1.9785159 , -0.63061845, ..., -6.7561603 , -10.064161 , -5.6213174 ], [ -3.837745 , -2.3602753 , 3.4000297 , ..., -6.166564 , -5.3178234 , -7.502287 ], ..., [ -4.3777733 , -6.051775 , 1.9347348 , ..., -6.9448657 , -6.3352685 , -6.610935 ], [ -7.215315 , -2.4072342 , 3.7478743 , ..., -7.9866605 , -2.8246477 , -4.332554 ], [ -2.7089894 , -3.5281632 , -2.631594 , ..., -9.408475 , -6.4074464 , -8.5693 ]]], dtype=float32)
- uncorrected_differential_reflectivity_lag_1(volume_time, azimuth, range)float327.417 -0.2791 ... 3.601 0.5762
- long_name :
- Uncorrected differential reflectivity estimated at lag 1
- units :
- dB
- standard_name :
- radar_differential_reflectivity_hv
array([[[ 7.4171400e+00, -2.7910042e-01, -3.4851675e+00, ..., -6.2625885e-01, -1.6845207e+00, -1.7089362e+00], [ 1.3128090e+01, 2.5218215e+00, -3.6989546e-01, ..., 5.0236526e+00, 7.4873343e+00, 2.3097112e+00], [ 8.9171705e+00, -3.3470669e+00, -9.8272800e-02, ..., 2.5729415e+00, 2.6500030e+00, -2.0621986e+00], ..., [ 7.0020752e+00, -3.1608982e+00, -5.7031679e+00, ..., -6.4838552e-01, 1.3735275e+00, 4.6856499e+00], [ 9.0499296e+00, 9.8135281e-01, -3.8796310e+00, ..., -1.1695051e+00, 2.4615455e+00, 9.0352821e-01], [ 4.4498873e+00, -5.0965939e+00, 1.3901615e-01, ..., -1.8951049e+00, -2.3666301e+00, -2.9579444e+00]], [[ 3.2823658e-01, -1.2946348e+00, 3.1100836e+00, ..., -9.6349859e-01, 1.6114283e-01, 2.8941586e+00], [ 3.3939145e+00, -2.0248122e+00, 3.2703106e+00, ..., 2.7201977e+00, 3.5739791e+00, -2.3528962e+00], [-1.4937739e+00, -1.4386711e+01, -6.5348225e+00, ..., 6.2732697e-01, 2.8361716e+00, -1.4449430e+00], ... [ 1.3697126e+00, -2.6458831e+00, 1.4849234e+00, ..., -2.3414516e+00, -1.3744278e+01, -1.3892450e+00], [-6.2244415e-01, 4.0851798e+00, -1.8760300e+00, ..., 6.0079045e+00, 3.8677287e+00, 8.3510342e+00], [ 6.4382286e+00, 1.7504425e+00, 1.2300861e+00, ..., 4.2492218e+00, 8.7310019e+00, -1.9288301e-01]], [[ 1.0103462e+00, 4.6009583e+00, 1.1568394e+00, ..., 1.8030887e+00, 5.2838306e+00, 6.5282612e+00], [ 4.2759261e+00, 2.3478606e+00, 3.7738814e+00, ..., 1.0161600e+01, 3.6792712e+00, -1.8668742e+00], [ 3.5799313e-01, 1.8648903e+00, 8.0588112e+00, ..., 2.5584447e+00, -2.8991699e-03, -7.2926188e-01], ..., [-3.8362932e-01, -1.8813710e+00, 6.4260206e+00, ..., 5.4059086e+00, 1.4908136e+01, -4.4808645e+00], [-3.8590307e+00, 1.8595495e+00, 8.2495575e+00, ..., 3.9089298e+00, 2.4417078e+00, 8.3182259e+00], [ 1.1926997e+00, 8.2722950e-01, 1.6764328e+00, ..., -1.0947323e+00, 3.6006837e+00, 5.7620716e-01]]], dtype=float32)
- uncorrected_mean_doppler_velocity_h(volume_time, azimuth, range)float320.09009 0.06593 ... 9.282 -5.538
- long_name :
- Radial mean Doppler velocity from horizontal channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
array([[[ 9.00927186e-02, 6.59337789e-02, -2.34039754e-01, ..., 1.22551260e+01, 1.44027557e+01, 1.10869408e+01], [ 1.00662254e-01, 3.18596035e-01, -2.70278156e-01, ..., 1.50993392e-01, 1.53172722e+01, -5.62299347e+00], [ 4.87205327e-01, 2.93430477e-01, -8.30463618e-02, ..., 2.81250334e+00, -1.62141724e+01, 4.70948362e+00], ..., [-3.15072864e-01, -3.32185440e-02, -7.44900703e-02, ..., 1.59091663e+01, 1.45960273e-02, -4.54792070e+00], [ 4.90225196e-01, 5.78807965e-02, 1.56026501e-02, ..., 5.79160309e+00, -7.64831829e+00, -1.22848215e+01], [ 2.11390741e-02, 1.36900663e-01, -1.08211927e-01, ..., 1.36598682e+00, 1.56429148e+01, 1.17462788e+01]], [[ 7.75099397e-02, -8.92874241e-01, -4.32847708e-01, ..., -9.83218575e+00, 1.56675768e+01, 4.76031828e+00], [-1.10728480e-02, -1.66545701e+00, -5.35523176e-01, ..., 5.88119221e+00, -1.64879742e+01, 1.56977758e+01], [ 1.56026501e-02, 6.49271533e-02, -3.08026493e-01, ..., 3.14015913e+00, -1.55794973e+01, 1.45557618e+00], ... 1.38652191e+01, 1.56117096e+01, -1.48265438e+01], [ 1.00259602e+00, 1.02725828e+00, 1.89949679e+00, ..., 1.49030476e+01, -1.31852455e+01, -3.36161613e+00], [ 2.85075521e+00, 1.61764252e+00, 1.47268879e+00, ..., 1.49070740e+01, 1.07270737e+01, 1.44938555e+01]], [[ 3.41245055e-01, 1.96291395e-02, -1.33880794e-01, ..., -9.27703381e+00, 1.35758152e+01, -8.76063633e+00], [ 1.00158945e-01, 4.93245050e-02, -1.03178814e-01, ..., 1.09656429e+01, -1.27534046e+01, -8.00264931e+00], [ 1.73139080e-01, 3.73960286e-01, -7.85165578e-02, ..., 1.15827026e+01, -7.46007967e+00, -1.03354969e+01], ..., [ 4.47947048e-02, -4.07682136e-02, -1.00662257e-03, ..., -1.37977753e+01, -2.96752334e+00, -1.46710205e+01], [ 3.72953653e-01, 6.03973530e-02, -7.44900703e-02, ..., 1.18861990e+01, -3.86140418e+00, 1.27010603e+01], [ 2.65245050e-01, 6.54304698e-02, 1.12238415e-01, ..., 1.26648216e+01, 9.28156376e+00, -5.53843737e+00]]], dtype=float32)
- uncorrected_mean_doppler_velocity_v(volume_time, azimuth, range)float32-0.0609 -0.09513 ... 2.665 0.5199
- long_name :
- Radial mean Doppler velocity from vertical channel, positive for motion away from the instrument, uncorrected
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
array([[[-6.09006658e-02, -9.51258317e-02, -3.17086093e-02, ..., -1.35264912e+01, -1.18514709e+01, -1.24388351e+01], [ 1.87735111e-01, -1.84715241e-01, -2.61721872e-02, ..., 3.74765587e+00, -1.94479477e+00, -1.53706236e+01], [ 4.04662281e-01, -5.88874184e-02, -1.29854307e-01, ..., -1.03027821e+01, -1.55256433e+01, 1.06933517e+01], ..., [ 8.40529874e-02, -4.02649026e-03, -2.46622533e-01, ..., 9.92378902e+00, -1.18328488e+00, 8.76667595e+00], [ 8.70728493e-02, 7.39867613e-02, -8.70728493e-02, ..., -3.33896708e+00, -2.23973513e+00, -6.85711288e+00], [ 1.03178814e-01, -3.17086093e-02, -1.42940402e-01, ..., 1.62841339e+01, 1.01804771e+01, -4.92087460e+00]], [[ 1.59549683e-01, -1.23814575e-01, -7.70066231e-02, ..., 2.28704643e+00, -7.18275547e+00, -1.29250336e+00], [-9.41192135e-02, -3.32185440e-02, -3.23629141e-01, ..., 1.49735105e+00, -1.03269405e+01, 1.24161863e+01], [-2.56688762e-02, 6.64370880e-02, -6.49271533e-02, ..., 9.48389435e+00, -1.14729805e+01, 1.39824905e+01], ... 1.24921856e+01, -7.28190756e+00, 6.46251678e+00], [ 6.92053020e-01, 2.48434448e+00, 1.33528483e+00, ..., 2.23923182e+00, -1.42869940e+01, 1.09706764e+01], [ 2.62929821e+00, 2.45414591e+00, 1.77618551e+00, ..., 3.69279480e+00, -2.65194726e+00, 5.56662273e+00]], [[ 2.33033121e-01, 3.89059633e-01, 2.21456960e-02, ..., 7.43793392e+00, 1.52634182e+01, 7.05894089e+00], [ 8.10331181e-02, 1.46463588e-01, -6.09006658e-02, ..., -1.02745962e+01, 9.14466286e+00, 4.87205327e-01], [-3.82516570e-02, -5.03311306e-03, 6.84000015e-01, ..., 1.38043184e+01, 1.24896698e+01, 1.05086365e+01], ..., [ 8.75761658e-02, -9.61324573e-02, 2.33536437e-01, ..., -9.13962936e+00, 1.01683979e+01, 7.26378822e+00], [ 1.75152332e-01, 1.11735106e-01, 2.22463593e-01, ..., -7.76810646e+00, 1.55457754e+01, -1.57058287e+01], [ 3.17086093e-02, 1.33880794e-01, 3.17589432e-01, ..., 7.46813297e+00, 2.66453004e+00, 5.19920528e-01]]], dtype=float32)
- uncorrected_reflectivity_h(volume_time, azimuth, range)float328.064 25.03 ... -0.008228 -1.632
- long_name :
- Uncorrected Reflectivity, Horizontal Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
- applied_bias_correction :
- 1.8
array([[[ 8.0642557e+00, 2.5025162e+01, 2.7978065e+01, ..., 2.4627256e-01, 4.7197199e-01, -1.9898252e+00], [ 1.5560408e+01, 2.0724331e+01, 2.5852726e+01, ..., 3.5201550e-02, 5.2421713e-01, 6.7259359e-01], [ 1.0325431e+01, 1.7658577e+01, 2.4640636e+01, ..., 2.3373365e-01, -4.6844292e-01, 2.0447636e-01], ..., [ 1.4482065e+01, 2.7478600e+01, 2.8673971e+01, ..., -1.6115694e+00, 3.4240389e-01, 1.8219900e+00], [ 1.0680698e+01, 2.7687580e+01, 2.7518307e+01, ..., -2.4621229e+00, -4.0169420e+00, -2.5528240e-01], [ 8.5093851e+00, 1.9635540e+01, 2.7877754e+01, ..., -4.0984449e+00, 4.5107365e-01, -1.2040563e+00]], [[ 7.2203722e+00, 2.8441387e+01, 2.9597607e+01, ..., 4.9305916e-02, -1.4178829e+00, 3.7697077e-01], [ 9.7769957e+00, 2.6819757e+01, 2.8994452e+01, ..., -6.2272072e-01, -2.7264566e+00, -8.5229492e-01], [ 6.6401753e+00, 1.4677363e+01, 2.3008823e+01, ..., -2.3841820e+00, -8.1055450e-01, 3.8323212e-01], ... [ 1.0885689e+01, 2.7553810e+01, 3.2180244e+01, ..., -1.1309137e+00, 7.8613997e-01, -4.0368071e+00], [ 6.6146517e+00, 2.8137079e+01, 3.0233923e+01, ..., 7.1164608e-02, 1.3150544e+00, 1.4133115e+00], [ 1.2495428e+01, 2.7037439e+01, 3.3562111e+01, ..., -1.9441462e+00, -1.2793441e+00, 5.0259113e-02]], [[ 6.6213822e+00, 2.4701000e+01, 2.7753918e+01, ..., -1.1183801e+00, -6.1129951e-01, -8.2283020e-03], [ 1.2791908e+01, 2.1493664e+01, 2.7630800e+01, ..., -1.2331514e+00, -2.1596689e+00, 1.1081839e+00], [ 9.0399284e+00, 2.1009537e+01, 2.4940977e+01, ..., 4.6337748e-01, 7.3048210e-01, 3.7680149e-02], ..., [ 4.8351231e+00, 2.3720226e+01, 2.8914152e+01, ..., -1.5524244e+00, -2.0855618e-01, 6.1571074e-01], [ 3.6644552e+00, 2.6977648e+01, 3.1910728e+01, ..., -1.5524244e+00, 1.4858861e+00, 2.3122396e+00], [ 9.5574427e+00, 2.4156359e+01, 2.5612911e+01, ..., -2.6333618e+00, -8.2283020e-03, -1.6317215e+00]]], dtype=float32)
- uncorrected_reflectivity_v(volume_time, azimuth, range)float324.945 28.32 34.48 ... 5.19 5.73
- long_name :
- Uncorrected Reflectivity, Vertical Channel
- units :
- dBZ
- standard_name :
- equivalent_reflectivity_factor
array([[[ 4.9448223, 28.323063 , 34.477154 , ..., 5.8642845, 5.2219887, 6.702423 ], [ 5.7066154, 21.232914 , 29.262442 , ..., 5.796238 , 4.8751163, 6.60948 ], [ 4.370573 , 23.983002 , 27.86831 , ..., 6.2443504, 5.8327503, 4.003784 ], ..., [ 9.3197365, 33.751877 , 37.40815 , ..., 6.071745 , 5.0195084, 5.945608 ], [ 5.0294666, 29.766985 , 34.425705 , ..., 5.8294315, 6.020294 , 5.3431454], [ 6.933119 , 27.685747 , 30.82088 , ..., 5.2601604, 6.036892 , 4.4784527]], [[ 9.591798 , 32.68712 , 29.526707 , ..., 5.1742153, 4.6513653, 5.1059437], [ 9.198828 , 31.784618 , 28.822357 , ..., 5.1592293, 5.185871 , 5.7270374], [10.868951 , 31.884525 , 32.485638 , ..., 6.081709 , 5.2524757, 4.7279606], ... [13.132374 , 33.146557 , 33.772816 , ..., 6.4029617, 5.8970776, 5.207382 ], [ 9.862825 , 27.445183 , 34.903328 , ..., 5.1764755, 5.9117165, 5.9231033], [ 8.85919 , 28.408154 , 35.4694 , ..., 4.69499 , 5.6189213, 4.395687 ]], [[ 8.1444435, 23.409985 , 29.653355 , ..., 4.748129 , 4.2914944, 5.5216427], [12.221646 , 22.265963 , 27.05168 , ..., 4.314245 , 6.696541 , 5.5216427], [11.670761 , 22.16521 , 20.337051 , ..., 5.422516 , 4.8391304, 6.3309097], ..., [ 8.003065 , 28.561333 , 25.76953 , ..., 4.182617 , 4.9203815, 6.0172787], [ 9.670347 , 28.174576 , 26.955803 , ..., 5.2258873, 3.1019726, 5.4371414], [11.058124 , 26.474792 , 27.033804 , ..., 5.5655193, 5.190138 , 5.7296467]]], dtype=float32)
- uncorrected_spectral_width_h(volume_time, azimuth, range)float323.058 1.099 0.7478 ... 10.52 11.79
- long_name :
- Uncorrected Spectral Width, Horizontal Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
array([[[ 3.0579987 , 1.0985956 , 0.7478304 , ..., 10.359901 , 12.606913 , 11.472084 ], [ 3.4598436 , 1.495408 , 1.1547079 , ..., 10.300266 , 9.986742 , 11.205613 ], [ 4.875989 , 1.5990772 , 0.81073666, ..., 9.927862 , 10.29775 , 12.359314 ], ..., [ 4.6754436 , 0.17035103, 0.802433 , ..., 13.3328495 , 12.891249 , 10.570512 ], [ 3.8654628 , 0.46651363, 0.9111347 , ..., 10.909954 , 10.632915 , 11.395842 ], [ 3.2779188 , 1.4790525 , 0.68240786, ..., 11.623562 , 15.063274 , 12.344215 ]], [[ 3.0733943 , 1.1854239 , 0.76948166, ..., 10.517831 , 11.501196 , 10.510786 ], [ 3.0857244 , 1.4020762 , 0.6144786 , ..., 11.529882 , 11.440805 , 12.423164 ], [ 2.8051581 , 1.8283353 , 1.2583961 , ..., 10.353518 , 10.873383 , 13.683573 ], ... [ 4.3030596 , 2.0487285 , 2.7010198 , ..., 12.106649 , 16.491749 , 12.099352 ], [ 3.5755234 , 2.1803446 , 3.1769009 , ..., 8.829338 , 11.008173 , 9.813312 ], [ 4.175722 , 2.6298013 , 2.5258675 , ..., 11.347908 , 10.371232 , 11.858265 ]], [[ 3.7806654 , 1.1114283 , 1.2717133 , ..., 10.7718115 , 10.395381 , 12.461725 ], [ 3.454308 , 1.9370098 , 0.6449156 , ..., 11.272294 , 10.335998 , 13.674557 ], [ 2.7248473 , 1.8524637 , 1.8637867 , ..., 11.314315 , 11.930293 , 12.883448 ], ..., [ 3.466134 , 1.4435735 , 1.4191656 , ..., 11.787873 , 9.398695 , 13.435513 ], [ 4.097713 , 0.9078636 , 0.16104126, ..., 10.927819 , 10.451745 , 9.752228 ], [ 2.7097497 , 1.065381 , 1.834095 , ..., 11.276068 , 10.524968 , 11.788879 ]]], dtype=float32)
- uncorrected_spectral_width_v(volume_time, azimuth, range)float324.983 0.6586 0.5312 ... 11.82 11.85
- long_name :
- Uncorrected Spectral Width, Vertical Channel
- units :
- m/s
- standard_name :
- radar_doppler_spectrum_width
array([[[ 4.983033 , 0.6585827 , 0.53124475, ..., 9.376941 , 10.909272 , 10.714491 ], [ 3.7974834 , 1.2539997 , 0.9099865 , ..., 12.597378 , 13.145484 , 12.194729 ], [ 4.718795 , 1.1070333 , 1.1483045 , ..., 11.113868 , 11.437497 , 9.916491 ], ..., [ 2.4679866 , 16.491749 , 16.491749 , ..., 12.928053 , 12.797193 , 12.358557 ], [ 4.360689 , 0.08707237, 0.403152 , ..., 10.098941 , 12.149431 , 11.268133 ], [ 2.840437 , 0.77132463, 0.71646357, ..., 10.361921 , 13.643259 , 9.805762 ]], [[ 2.1451359 , 16.491497 , 0.2783022 , ..., 9.014349 , 10.860298 , 11.312223 ], [ 2.4785442 , 0.44639015, 0.77375937, ..., 12.365038 , 12.98505 , 10.770214 ], [ 1.8451943 , 0.13286114, 0.42173052, ..., 10.731715 , 11.882414 , 12.09051 ], ... [ 5.0288343 , 16.491749 , 2.69951 , ..., 10.773881 , 10.311338 , 11.150862 ], [ 2.6436424 , 2.9579601 , 2.548768 , ..., 11.705762 , 12.416185 , 13.630173 ], [ 3.7310462 , 2.7281985 , 2.666543 , ..., 12.977881 , 14.505934 , 10.674728 ]], [[ 2.7095761 , 2.0296025 , 1.1681852 , ..., 11.065046 , 12.358053 , 14.980808 ], [ 4.4573245 , 2.0608077 , 1.3742914 , ..., 15.366093 , 12.604927 , 12.020583 ], [ 2.5001988 , 1.6264501 , 2.8598146 , ..., 11.993656 , 10.910782 , 12.2724905 ], ..., [ 2.8789406 , 0.76704645, 2.1473775 , ..., 13.695854 , 16.097404 , 10.580107 ], [ 2.2301722 , 0.75144386, 1.6606755 , ..., 12.584795 , 9.92404 , 13.215193 ], [ 1.5597615 , 1.4135494 , 1.9022651 , ..., 10.440689 , 11.81951 , 11.8542385 ]]], dtype=float32)
- unthresholded_power_copolar_h(volume_time, azimuth, range)float3283.38 62.83 91.08 ... 11.53 11.06
- long_name :
- Received copolar power, h channel, without thresholding.
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_h
array([[[83.38257 , 62.82637 , 91.08481 , ..., 11.624607 , 11.699732 , 10.9747715], [76.968735 , 62.283585 , 63.639603 , ..., 11.553238 , 11.7185135, 11.771101 ], [85.64573 , 67.253136 , 50.34615 , ..., 11.62085 , 11.389839 , 11.603947 ], ..., [79.00464 , 45.917503 , 88.10045 , ..., 11.072433 , 11.652779 , 12.225611 ], [85.99882 , 49.97991 , 80.13528 , ..., 10.871473 , 10.574728 , 11.453695 ], [66.74792 , 62.32866 , 54.474297 , ..., 10.561581 , 11.692219 , 11.175732 ]], [[64.157906 , 84.56357 , 89.30397 , ..., 11.557581 , 7.788151 , 11.662498 ], [63.322372 , 91.04942 , 90.33217 , ..., 11.345837 , 10.813614 , 11.273348 ], [65.63058 , 56.149776 , 85.38765 , ..., 10.889917 , 11.290516 , 11.6682205], ... [86.20772 , 82.82929 , 76.606094 , ..., 11.19969 , 11.81377 , 10.567951 ], [81.93858 , 93.91609 , 85.63287 , ..., 11.564606 , 3.0950089, 12.055086 ], [87.81453 , 92.81741 , 94.90293 , ..., 10.9878025, 11.156527 , 11.552834 ]], [[81.940765 , 61.519253 , 77.580215 , ..., 11.20376 , 11.343941 , 11.532717 ], [78.49606 , 62.952835 , 50.439377 , ..., 11.171986 , 10.936481 , 11.932699 ], [60.29501 , 60.57911 , 86.28449 , ..., 11.700933 , 11.794388 , 11.54767 ], ..., [80.15393 , 86.570465 , 74.748566 , ..., 11.086008 , 11.471037 , 11.747662 ], [67.34329 , 65.81812 , 55.30458 , ..., 11.087877 , 12.085962 , 12.441088 ], [71.16742 , 58.53434 , 65.73402 , ..., 10.833683 , 11.534586 , 11.06171 ]]], dtype=float32)
- unthresholded_power_copolar_v(volume_time, azimuth, range)float3278.14 54.29 91.79 ... 11.18 11.57
- long_name :
- Received copolar power, v channel, without thresholding
- units :
- dBm
- standard_name :
- radar_received_signal_power_copolar_v
array([[[78.144455 , 54.28882 , 91.79288 , ..., 11.681149 , 11.198273 , 12.318623 ], [68.292244 , 54.113228 , 48.824486 , ..., 11.633434 , 10.946337 , 12.242279 ], [77.568054 , 53.62844 , 33.25219 , ..., 11.975075 , 11.650612 , 10.335583 ], ..., [60.447884 , 47.75567 , nan, ..., 11.839563 , 11.0494 , 11.730772 ], [78.232254 , 49.54403 , 90.16293 , ..., 11.656338 , 11.7937565, 11.280342 ], [62.312588 , 55.403442 , 42.344776 , ..., 11.230719 , 11.809025 , 10.660046 ]], [[62.61274 , 55.498253 , 67.79337 , ..., 11.169691 , 5.423895 , 11.108177 ], [60.475124 , 88.12953 , 88.04111 , ..., 11.158157 , 11.171614 , 11.5637665], [56.730457 , 44.389202 , 88.018036 , ..., 11.850191 , 11.219671 , 10.8371315], ... [86.333694 , 80.95209 , 77.65897 , ..., 12.098352 , 11.701271 , 11.1800995], [83.061584 , 91.104416 , 85.81444 , ..., 11.170553 , 1.3618507, 11.712725 ], [82.05743 , 92.066574 , 94.68961 , ..., 10.825016 , 11.491274 , 10.601658 ]], [[81.342896 , 66.06534 , 72.04582 , ..., 10.865553 , 10.540136 , 11.412329 ], [79.0139 , 62.500885 , 53.324886 , ..., 10.5628395, 12.322361 , 11.412329 ], [64.462845 , 55.021973 , 79.55311 , ..., 11.3498955, 10.924204 , 12.029108 ], ..., [81.201004 , 88.75559 , 72.13852 , ..., 10.472027 , 10.982855 , 11.785046 ], [62.582237 , 73.91696 , 63.303078 , ..., 11.20989 , 9.758759 , 11.348003 ], [56.52608 , 63.12334 , 67.951614 , ..., 11.461521 , 11.177727 , 11.567471 ]]], dtype=float32)
- ground_clutter(volume_time, azimuth, range)int640 1 0 0 1 1 0 0 ... 0 0 0 0 0 0 0 0
- long_name :
- Clutter mask
- standard_name :
- clutter_mask
- valid_min :
- 0
- valid_max :
- 1
- units :
- 1
- flag_values :
- [0 1]
- flag_meanings :
- no_clutter clutter
array([[[0, 1, 0, ..., 0, 0, 0], [1, 1, 1, ..., 0, 0, 0], [0, 1, 1, ..., 0, 0, 0], ..., [1, 1, 1, ..., 0, 0, 0], [0, 1, 1, ..., 0, 0, 0], [1, 1, 1, ..., 0, 0, 0]], [[1, 1, 1, ..., 0, 1, 0], [1, 1, 0, ..., 0, 0, 0], [1, 1, 0, ..., 0, 0, 0], ..., [0, 1, 1, ..., 0, 0, 0], [1, 1, 0, ..., 0, 0, 0], [0, 1, 1, ..., 0, 0, 0]], [[1, 1, 0, ..., 0, 0, 0], [1, 1, 1, ..., 0, 0, 1], [0, 0, 0, ..., 0, 0, 0], ..., ... ..., [1, 1, 0, ..., 0, 0, 1], [0, 1, 1, ..., 0, 0, 0], [1, 1, 1, ..., 0, 0, 0]], [[0, 0, 0, ..., 0, 0, 0], [0, 0, 0, ..., 1, 0, 0], [0, 0, 0, ..., 0, 0, 0], ..., [0, 1, 1, ..., 0, 0, 0], [0, 0, 1, ..., 0, 1, 0], [0, 0, 0, ..., 0, 0, 0]], [[0, 1, 1, ..., 0, 0, 0], [1, 1, 1, ..., 0, 0, 0], [1, 1, 0, ..., 0, 0, 0], ..., [0, 1, 1, ..., 0, 0, 0], [1, 1, 1, ..., 0, 0, 0], [1, 1, 1, ..., 0, 0, 0]]])
- clutter_masked_velocity(volume_time, azimuth, range)float320.09009 nan ... 9.282 -5.538
- units :
- m/s
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- long_name :
- Radial mean Doppler velocity, positive for motion away from the instrument, clutter removed
array([[[ 9.00927186e-02, nan, -2.41589416e-02, ..., 1.22551260e+01, 1.44027557e+01, 1.10869408e+01], [ nan, nan, nan, ..., 1.50993392e-01, 1.53172722e+01, -5.62299347e+00], [ 4.87205327e-01, nan, nan, ..., 2.81250334e+00, -1.62141724e+01, 4.70948362e+00], ..., [ nan, nan, nan, ..., 1.59091663e+01, 1.45960273e-02, -4.54792070e+00], [ 4.90225196e-01, nan, nan, ..., 5.79160309e+00, -7.64831829e+00, -1.22848215e+01], [ nan, nan, nan, ..., 1.36598682e+00, 1.56429148e+01, 1.17462788e+01]], [[ nan, nan, nan, ..., -9.83218575e+00, nan, 4.76031828e+00], [ nan, nan, -5.35523176e-01, ..., 5.88119221e+00, -1.64879742e+01, 1.56977758e+01], [ nan, nan, -1.68609276e-01, ..., 3.14015913e+00, -1.55794973e+01, 1.45557618e+00], ... 1.38652191e+01, 1.56117096e+01, -1.48265438e+01], [ 1.00259602e+00, 1.02725828e+00, nan, ..., 1.49030476e+01, nan, -3.36161613e+00], [ 2.85075521e+00, 1.61764252e+00, 1.47268879e+00, ..., 1.49070740e+01, 1.07270737e+01, 1.44938555e+01]], [[ 3.41245055e-01, nan, nan, ..., -9.27703381e+00, 1.35758152e+01, -8.76063633e+00], [ nan, nan, nan, ..., 1.09656429e+01, -1.27534046e+01, -8.00264931e+00], [ nan, nan, -7.85165578e-02, ..., 1.15827026e+01, -7.46007967e+00, -1.03354969e+01], ..., [ 4.47947048e-02, nan, nan, ..., -1.37977753e+01, -2.96752334e+00, -1.46710205e+01], [ nan, nan, nan, ..., 1.18861990e+01, -3.86140418e+00, 1.27010603e+01], [ nan, nan, nan, ..., 1.26648216e+01, 9.28156376e+00, -5.53843737e+00]]], dtype=float32)
- sounding_temperature(volume_time, azimuth, range)float3224.01 23.96 23.96 ... 14.7 14.69
- long_name :
- Interpolated profile
- standard_name :
- interpolated_profile
- units :
- deg_C
array([[[24.010798, 23.955046, 23.955046, ..., 14.572223, 14.557407, 14.538889], [24.010798, 23.955046, 23.955046, ..., 14.7 , 14.7 , 14.687647], [24.010798, 23.955046, 23.955046, ..., 14.7 , 14.7 , 14.687647], ..., [24.010798, 23.955046, 23.899292, ..., 14.409461, 14.398649, 14.373397], [24.010798, 23.955046, 23.899292, ..., 14.409461, 14.398649, 14.373397], [24.010798, 23.955046, 23.899292, ..., 14.409461, 14.398649, 14.373397]], [[24.010798, 23.955046, 23.955046, ..., 14.7 , 14.7 , 14.687647], [24.010798, 23.955046, 23.955046, ..., 14.7 , 14.7 , 14.687647], [24.010798, 23.955046, 23.955046, ..., 14.7 , 14.7 , 14.687647], ... [24.010798, 23.955046, 23.955046, ..., 14.7 , 14.7 , 14.687647], [24.010798, 23.955046, 23.955046, ..., 14.7 , 14.7 , 14.687647], [24.010798, 23.955046, 23.955046, ..., 14.7 , 14.7 , 14.687647]], [[24.010798, 23.955046, 23.955046, ..., 14.7 , 14.7 , 14.687647], [24.010798, 23.955046, 23.955046, ..., 14.7 , 14.7 , 14.687647], [24.010798, 23.955046, 23.955046, ..., 14.7 , 14.7 , 14.687647], ..., [24.010798, 23.955046, 23.955046, ..., 14.7 , 14.7 , 14.687647], [24.010798, 23.955046, 23.955046, ..., 14.7 , 14.7 , 14.687647], [24.010798, 23.955046, 23.955046, ..., 14.7 , 14.7 , 14.687647]]], dtype=float32)
- height(volume_time, azimuth, range)float321.141e+03 1.142e+03 ... 2.779e+03
- long_name :
- Height of radar beam
- standard_name :
- height
- units :
- m
array([[[1141., 1142., 1142., ..., 2795., 2797., 2800.], [1141., 1142., 1142., ..., 2774., 2776., 2779.], [1141., 1142., 1142., ..., 2774., 2776., 2779.], ..., [1141., 1142., 1143., ..., 2817., 2818., 2821.], [1141., 1142., 1143., ..., 2817., 2818., 2821.], [1141., 1142., 1143., ..., 2817., 2818., 2821.]], [[1141., 1142., 1142., ..., 2774., 2776., 2779.], [1141., 1142., 1142., ..., 2774., 2776., 2779.], [1141., 1142., 1142., ..., 2774., 2776., 2779.], ..., [1141., 1142., 1142., ..., 2774., 2776., 2779.], [1141., 1142., 1142., ..., 2774., 2776., 2779.], [1141., 1142., 1142., ..., 2774., 2776., 2779.]], [[1141., 1142., 1142., ..., 2774., 2776., 2779.], [1141., 1142., 1142., ..., 2774., 2776., 2779.], [1141., 1142., 1142., ..., 2774., 2776., 2779.], ..., ... ..., [1141., 1142., 1142., ..., 2774., 2776., 2779.], [1141., 1142., 1142., ..., 2774., 2776., 2779.], [1141., 1142., 1142., ..., 2774., 2776., 2779.]], [[1141., 1142., 1142., ..., 2774., 2776., 2779.], [1141., 1142., 1142., ..., 2774., 2776., 2779.], [1141., 1142., 1142., ..., 2774., 2776., 2779.], ..., [1141., 1142., 1142., ..., 2774., 2776., 2779.], [1141., 1142., 1142., ..., 2774., 2776., 2779.], [1141., 1142., 1142., ..., 2774., 2776., 2779.]], [[1141., 1142., 1142., ..., 2774., 2776., 2779.], [1141., 1142., 1142., ..., 2774., 2776., 2779.], [1141., 1142., 1142., ..., 2774., 2776., 2779.], ..., [1141., 1142., 1142., ..., 2774., 2776., 2779.], [1141., 1142., 1142., ..., 2774., 2776., 2779.], [1141., 1142., 1142., ..., 2774., 2776., 2779.]]], dtype=float32)
- signal_to_noise_ratio(volume_time, azimuth, range)float32118.5 81.43 92.39 ... 8.973 7.342
- long_name :
- Signal to noise ratio
- units :
- dB
- standard_name :
- signal_to_noise_ratio
array([[[118.54393 , 81.43251 , 92.39349 , ..., 9.921509 , 10.140038 , 7.670521 ], [119.08661 , 79.007996 , 78.49446 , ..., 9.710678 , 10.192745 , 10.333202 ], [120.80643 , 79.960625 , 71.24042 , ..., 9.909794 , 9.19912 , 9.864693 ], ..., [119.56488 , 74.20384 , 92.13582 , ..., 8.065048 , 10.011196 , 11.481041 ], [121.15976 , 76.339455 , 87.57373 , ..., 7.213928 , 5.650181 , 9.4039955], [110.45242 , 78.490685 , 74.92405 , ..., 5.576107 , 10.118565 , 8.455269 ]], [[108.5282 , 94.02425 , 93.214134 , ..., 9.742012 , 6.6003914, 10.05307 ], [109.389435 , 96.45526 , 93.42552 , ..., 9.068687 , 6.956627 , 8.823856 ], [108.97643 , 72.93584 , 87.443886 , ..., 7.3070793, 8.872868 , 10.060898 ], ... [120.08518 , 91.415436 , 86.85925 , ..., 7.2640533, 9.171295 , 4.341366 ], [115.81322 , 97.24924 , 90.39447 , ..., 8.464539 , 5.2406044, 9.789734 ], [121.6932 , 96.149124 , 96.69803 , ..., 6.449005 , 7.1055756, 8.428646 ]], [[116.41275 , 79.92679 , 85.725266 , ..., 7.870682 , 8.369305 , 8.965191 ], [117.776344 , 79.03934 , 72.09334 , ..., 7.755192 , 6.821327 , 10.0816 ], [106.802734 , 77.6109 , 88.66925 , ..., 9.4510765, 9.710613 , 9.011791 ], ..., [114.623665 , 91.960075 , 84.89049 , ..., 7.437088 , 8.772507 , 9.589245 ], [107.637505 , 83.215225 , 76.66636 , ..., 7.437088 , 10.466366 , 11.28513 ], [112.49823 , 78.15999 , 78.731 , ..., 6.3551254, 8.973095 , 7.342247 ]]], dtype=float32)
- velocity_texture(volume_time, azimuth, range)float640.0 0.0 0.0 0.0 ... 0.0 0.0 7.912
- long_name :
- Mean dopper velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
array([[[ 0. , 0. , 0. , ..., 0. , 0. , 0. ], [ 0. , 0. , 0. , ..., 0. , 0. , 0. ], [ 0. , 0. , 0. , ..., 0. , 0. , 0. ], ..., [ 0. , 0. , 0. , ..., 0. , 0. , 0. ], [ 0. , 0. , 0. , ..., 0. , 0. , 0. ], [ 0. , 0. , 0. , ..., 8.21960316, 0. , 8.62934657]], [[ 0. , 0. , 0. , ..., 0. , 0. , 0. ], [ 0. , 0. , 0. , ..., 0. , 0. , 0. ], [ 0. , 0. , 0. , ..., 0. , 0. , 0. ], ... [ 0. , 0. , 0. , ..., 0. , 0. , 0. ], [ 0. , 0. , 0. , ..., 0. , 0. , 0. ], [ 0. , 0. , 0. , ..., 0. , 0. , 0. ]], [[ 0. , 0. , 0. , ..., 0. , 0. , 0. ], [ 0. , 0. , 0. , ..., 0. , 0. , 7.79422066], [ 0. , 0. , 0. , ..., 0. , 0. , 0. ], ..., [ 0. , 0. , 0. , ..., 0. , 0. , 0. ], [ 0. , 0. , 0. , ..., 0. , 7.82267515, 7.82267515], [ 0. , 0. , 0. , ..., 0. , 0. , 7.91212709]]])
- gate_id(volume_time, azimuth, range)int641 5 5 5 5 5 1 1 ... 6 6 6 6 6 6 6 6
- long_name :
- Classification of dominant scatterer
- units :
- 1
- valid_max :
- 6
- valid_min :
- 0
- flag_values :
- [0 1 2 3 4 5 6]
- flag_meanings :
- multi_trip rain snow no_scatter melting clutter terrain_blockage
array([[[1, 5, 5, ..., 6, 6, 6], [5, 5, 5, ..., 6, 6, 6], [1, 5, 5, ..., 6, 6, 6], ..., [5, 5, 5, ..., 6, 6, 6], [1, 5, 5, ..., 6, 6, 6], [5, 5, 5, ..., 6, 6, 6]], [[5, 5, 5, ..., 6, 6, 6], [5, 5, 1, ..., 6, 6, 6], [5, 5, 5, ..., 6, 6, 6], ..., [1, 5, 5, ..., 6, 6, 6], [5, 5, 5, ..., 6, 6, 6], [1, 5, 5, ..., 6, 6, 6]], [[5, 5, 5, ..., 6, 6, 6], [5, 5, 5, ..., 6, 6, 6], [1, 5, 5, ..., 6, 6, 6], ..., ... ..., [5, 5, 5, ..., 6, 6, 6], [1, 5, 5, ..., 6, 6, 6], [5, 5, 5, ..., 6, 6, 6]], [[1, 1, 1, ..., 6, 6, 6], [1, 1, 1, ..., 6, 6, 6], [1, 1, 1, ..., 6, 6, 6], ..., [1, 5, 5, ..., 6, 6, 6], [1, 1, 5, ..., 6, 6, 6], [1, 1, 1, ..., 6, 6, 6]], [[1, 5, 5, ..., 6, 6, 6], [5, 5, 5, ..., 6, 6, 6], [5, 5, 1, ..., 6, 6, 6], ..., [1, 5, 5, ..., 6, 6, 6], [5, 5, 5, ..., 6, 6, 6], [5, 5, 5, ..., 6, 6, 6]]])
- partial_beam_blockage(volume_time, azimuth, range)float640.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- long_name :
- Partial Beam Block Fraction
- units :
- unitless
- standard_name :
- partial_beam_block
- comment :
- Partial beam block fraction due to terrain.
array([[[0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], ..., [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.]], [[0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], ..., [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.]], [[0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], ..., ... ..., [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.]], [[0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], ..., [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.]], [[0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], ..., [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.]]])
- cumulative_beam_blockage(volume_time, azimuth, range)float640.0 0.0 0.0 0.0 ... 1.0 1.0 1.0 1.0
- long_name :
- Cumulative Beam Block Fraction
- units :
- unitless
- standard_name :
- cumulative_beam_block
- comment :
- Cumulative beam block fraction due to terrain.
array([[[0. , 0. , 0. , ..., 1. , 1. , 1. ], [0. , 0. , 0. , ..., 0.98905566, 0.98905566, 0.98905566], [0. , 0. , 0. , ..., 0.923735 , 0.923735 , 0.923735 ], ..., [0. , 0. , 0. , ..., 1. , 1. , 1. ], [0. , 0. , 0. , ..., 1. , 1. , 1. ], [0. , 0. , 0. , ..., 1. , 1. , 1. ]], [[0. , 0. , 0. , ..., 1. , 1. , 1. ], [0. , 0. , 0. , ..., 0.98907973, 0.98907973, 0.98907973], [0. , 0. , 0. , ..., 0.92292069, 0.92292069, 0.92292069], ... [0. , 0. , 0. , ..., 1. , 1. , 1. ], [0. , 0. , 0. , ..., 1. , 1. , 1. ], [0. , 0. , 0. , ..., 1. , 1. , 1. ]], [[0. , 0. , 0. , ..., 1. , 1. , 1. ], [0. , 0. , 0. , ..., 0.98859013, 0.98859013, 0.98859013], [0. , 0. , 0. , ..., 0.92082937, 0.92082937, 0.92082937], ..., [0. , 0. , 0. , ..., 1. , 1. , 1. ], [0. , 0. , 0. , ..., 1. , 1. , 1. ], [0. , 0. , 0. , ..., 1. , 1. , 1. ]]])
- simulated_velocity(volume_time, azimuth, range)float64-3.044 -3.047 ... -5.552 -5.521
- long_name :
- Simulated mean doppler velocity
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument
- units :
- m/s
array([[[-3.0437047 , -3.04718892, -3.04718892, ..., -5.41352625, -5.41352625, -5.36248471], [-3.07584495, -3.07892622, -3.07892622, ..., -5.64363643, -5.64363643, -5.61544035], [-3.10749777, -3.11016956, -3.11016956, ..., -5.68755716, -5.68755716, -5.66042261], ..., [-2.94113968, -2.94583495, -2.95053021, ..., -5.03469492, -5.03469492, -4.99927446], [-2.97606455, -2.98035924, -2.98465393, ..., -5.08701831, -5.08701831, -5.05122974], [-3.01047626, -3.01436462, -3.01825299, ..., -5.13838266, -5.13838266, -5.10223272]], [[-3.04479858, -3.04826935, -3.04826935, ..., -5.60016736, -5.60016736, -5.57096729], [-3.07699165, -3.08005832, -3.08005832, ..., -5.64523482, -5.64523482, -5.6170765 ], [-3.10861073, -3.11126787, -3.11126787, ..., -5.6890937 , -5.6890937 , -5.66199722], ... [-2.93996946, -2.94467808, -2.94467808, ..., -5.45091245, -5.45091245, -5.41855922], [-2.9745404 , -2.97885294, -2.97885294, ..., -5.500524 , -5.500524 , -5.46917342], [-3.0107665 , -3.01465152, -3.01465152, ..., -5.55211027, -5.55211027, -5.5218486 ]], [[-3.04434502, -3.0478214 , -3.0478214 , ..., -5.5995296 , -5.5995296 , -5.57031512], [-3.07796088, -3.08101518, -3.08101518, ..., -5.64658534, -5.64658534, -5.61845898], [-3.10997903, -3.11261816, -3.11261816, ..., -5.69098211, -5.69098211, -5.66393249], ..., [-2.94232737, -2.94700933, -2.94700933, ..., -5.45430748, -5.45430748, -5.42202156], [-2.97645746, -2.98074771, -2.98074771, ..., -5.5032645 , -5.5032645 , -5.47197054], [-3.01048631, -3.01437468, -3.01437468, ..., -5.55171293, -5.55171293, -5.52144267]]])
- corrected_velocity(volume_time, azimuth, range)float320.09009 nan nan nan ... nan nan nan
- long_name :
- Corrected mean doppler velocity
- standard_name :
- corrected_radial_velocity_of_scatterers_away_from_instrument
- valid_min :
- -49.476
- valid_max :
- 49.476
- units :
- m/s
array([[[ 0.09009272, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ 0.48720533, nan, nan, ..., nan, nan, nan], ..., [ nan, nan, nan, ..., nan, nan, nan], [ 0.4902252 , nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]], [[ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, -0.5355232 , ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], ... [ 2.9584637 , nan, nan, ..., nan, nan, nan], [ 1.002596 , 1.0272583 , nan, ..., nan, nan, nan], [ 2.8507552 , 1.6176425 , 1.4726888 , ..., nan, nan, nan]], [[ 0.34124506, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, -0.07851656, ..., nan, nan, nan], ..., [ 0.0447947 , nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]]], dtype=float32)
- unfolded_differential_phase(volume_time, azimuth, range)float640.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- long_name :
- Unfolded Differential Phase
array([[[0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], ..., [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.]], [[0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], ..., [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.]], [[0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], ..., ... ..., [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.]], [[0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], ..., [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.]], [[0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], ..., [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.]]])
- corrected_differential_phase(volume_time, azimuth, range)float64-5.342 -14.12 ... 0.06847 0.01
- long_name :
- Uncorrected Differential Phase
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
array([[[-5.34223474e+00, -1.41171177e+01, -1.75397660e+01, ..., 1.72929233e-01, 7.05290309e-02, 1.00000000e-02], [-3.43031328e+00, -9.27705382e+00, -1.16834811e+01, ..., 1.87978440e-01, 7.53956610e-02, 1.00000000e-02], [-1.49499583e+00, -4.11693115e+00, -5.23387063e+00, ..., 1.68919247e-01, 6.83500641e-02, 1.00000000e-02], ..., [-2.58817027e+00, -7.41031635e+00, -9.63429215e+00, ..., 1.72471621e-01, 6.92660878e-02, 1.00000000e-02], [-4.36932245e+00, -1.17618025e+01, -1.47749601e+01, ..., 1.82225070e-01, 7.30643185e-02, 1.00000000e-02], [-3.45695122e+00, -9.14052527e+00, -1.13571481e+01, ..., 1.67759430e-01, 6.81969001e-02, 1.00000000e-02]], [[-8.21599154e+00, -2.21408928e+01, -2.78398026e+01, ..., 1.74781985e-01, 7.07618481e-02, 1.00000000e-02], [-3.89588244e+00, -1.02925228e+01, -1.27832806e+01, ..., 1.71223876e-01, 6.97181577e-02, 1.00000000e-02], [-3.04607532e+00, -7.95817916e+00, -9.81420767e+00, ..., 1.81488673e-01, 7.36643337e-02, 1.00000000e-02], ... [-1.09461088e+00, -2.90183504e+00, -3.60444831e+00, ..., 1.84114413e-01, 7.42157660e-02, 1.00000000e-02], [-3.11310972e+00, -9.09603147e+00, -1.19558435e+01, ..., 1.64004416e-01, 6.59701354e-02, 1.00000000e-02], [-5.55333350e+00, -1.45296273e+01, -1.79425877e+01, ..., 1.78088610e-01, 7.22466792e-02, 1.00000000e-02]], [[-3.70816316e+00, -9.99560684e+00, -1.25648874e+01, ..., 1.67269853e-01, 6.79112406e-02, 1.00000000e-02], [-4.40912596e+00, -1.16703753e+01, -1.45124986e+01, ..., 1.86723500e-01, 7.53438889e-02, 1.00000000e-02], [-1.61182104e+00, -4.46378451e+00, -5.69392694e+00, ..., 1.65983548e-01, 6.72484298e-02, 1.00000000e-02], ..., [-4.66135098e+00, -1.27838554e+01, -1.62350088e+01, ..., 1.86027098e-01, 7.48733820e-02, 1.00000000e-02], [-4.91632893e+00, -1.42284164e+01, -1.86141749e+01, ..., 1.62629497e-01, 6.52185653e-02, 1.00000000e-02], [-5.82056836e+00, -1.60079133e+01, -2.03646899e+01, ..., 1.69469056e-01, 6.84676324e-02, 1.00000000e-02]]])
- filtered_corrected_differential_phase(volume_time, azimuth, range)float640.00373 0.00373 ... 1.562 0.01
- units :
- degree
- standard_name :
- radar_differential_phase_hv
- valid_min :
- 0.0
- valid_max :
- 400.0
- long_name :
- Filtered Corrected Differential Phase
array([[[3.72984368e-03, 3.72984368e-03, 3.72984368e-03, ..., 1.43034501e+00, 1.43034501e+00, 1.00000000e-02], [0.00000000e+00, 0.00000000e+00, 0.00000000e+00, ..., 4.15850663e-01, 4.15850663e-01, 1.00000000e-02], [1.12006434e-03, 1.12006434e-03, 1.12006434e-03, ..., 2.30884063e-01, 2.30884063e-01, 1.00000000e-02], ..., [0.00000000e+00, 0.00000000e+00, 0.00000000e+00, ..., 3.89425023e-01, 3.89425023e-01, 1.00000000e-02], [3.16814586e-03, 3.16814586e-03, 3.16814586e-03, ..., 9.91243897e-01, 9.91243897e-01, 1.00000000e-02], [0.00000000e+00, 0.00000000e+00, 0.00000000e+00, ..., 6.56909585e-01, 6.56909585e-01, 1.00000000e-02]], [[0.00000000e+00, 0.00000000e+00, 0.00000000e+00, ..., 1.80544536e+00, 1.80544536e+00, 1.00000000e-02], [0.00000000e+00, 1.30768561e-02, 2.61537122e-02, ..., 5.95117086e-01, 5.95117086e-01, 1.00000000e-02], [0.00000000e+00, 0.00000000e+00, 0.00000000e+00, ..., 5.61747477e-01, 5.61747477e-01, 1.00000000e-02], ... [7.82341680e-04, 7.82341680e-04, 7.82341680e-04, ..., 3.14908396e-01, 3.14908396e-01, 1.00000000e-02], [8.89092759e-03, 1.55591211e-02, 1.55591211e-02, ..., 1.10741567e+00, 1.10741567e+00, 1.00000000e-02], [1.36199005e-02, 4.08596667e-02, 8.17192290e-02, ..., 1.07417328e+00, 1.07417328e+00, 1.00000000e-02]], [[2.67721122e-03, 2.67721122e-03, 2.14162004e-02, ..., 1.12388721e+00, 1.12388721e+00, 1.00000000e-02], [0.00000000e+00, 0.00000000e+00, 1.83991856e-02, ..., 1.10038571e+00, 1.10038571e+00, 1.00000000e-02], [0.00000000e+00, 6.77258714e-03, 2.30194936e-02, ..., 6.16326072e-01, 6.16326072e-01, 1.00000000e-02], ..., [3.34745671e-03, 3.34745671e-03, 3.34745671e-03, ..., 1.63279738e+00, 1.63279738e+00, 1.00000000e-02], [0.00000000e+00, 0.00000000e+00, 2.36478788e-02, ..., 1.46085434e+00, 1.46085434e+00, 1.00000000e-02], [0.00000000e+00, 0.00000000e+00, 0.00000000e+00, ..., 1.56169856e+00, 1.56169856e+00, 1.00000000e-02]]])
- corrected_specific_diff_phase(volume_time, azimuth, range)float640.08206 0.2462 ... 0.0007236
- long_name :
- Specific differential phase (KDP)
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
array([[[8.20565610e-02, 2.46169492e-01, 4.10281681e-01, ..., 3.81960088e-03, 2.29214351e-03, 7.64111669e-04], [4.33480336e-02, 1.30043909e-01, 2.16739067e-01, ..., 4.27008122e-03, 2.56243172e-03, 8.54207736e-04], [2.46414156e-02, 7.39240553e-02, 1.23206120e-01, ..., 3.60093222e-03, 2.16094232e-03, 7.20377936e-04], ..., [2.03782523e-02, 6.11345654e-02, 1.01890426e-01, ..., 3.93779019e-03, 2.36305710e-03, 7.87749529e-04], [6.96992090e-02, 2.09097436e-01, 3.48495088e-01, ..., 4.01097789e-03, 2.40696972e-03, 8.02387071e-04], [5.02151141e-02, 1.50645151e-01, 2.51074613e-01, ..., 3.66892519e-03, 2.20173810e-03, 7.33976529e-04]], [[1.29108419e-01, 3.87325066e-01, 6.45541139e-01, ..., 3.79392262e-03, 2.27673656e-03, 7.58976016e-04], [5.75383584e-02, 1.72614884e-01, 2.87690834e-01, ..., 3.82369533e-03, 2.29460018e-03, 7.64930559e-04], [4.16093126e-02, 1.24827746e-01, 2.08045606e-01, ..., 4.16860582e-03, 2.50154647e-03, 8.33912655e-04], ... [1.72115170e-02, 5.16343594e-02, 8.60566274e-02, ..., 4.06742271e-03, 2.44083661e-03, 8.13676034e-04], [4.89001496e-02, 1.46700257e-01, 2.44499791e-01, ..., 3.48278489e-03, 2.09005392e-03, 6.96748471e-04], [7.49095007e-02, 2.24728311e-01, 3.74546546e-01, ..., 4.06789909e-03, 2.44112244e-03, 8.13771310e-04]], [[5.88986469e-02, 1.76692830e-01, 2.94479952e-01, ..., 3.58401790e-03, 2.15079372e-03, 7.16995071e-04], [5.78317941e-02, 1.73492582e-01, 2.89144262e-01, ..., 4.36383123e-03, 2.61868172e-03, 8.72957738e-04], [2.98193028e-02, 8.94551839e-02, 1.48996917e-01, ..., 3.51775330e-03, 2.11103497e-03, 7.03742152e-04], ..., [7.36440477e-02, 2.20927464e-01, 3.68197472e-01, ..., 4.22163220e-03, 2.53336230e-03, 8.44517931e-04], [7.43247065e-02, 2.22972144e-01, 3.71615724e-01, ..., 3.54027751e-03, 2.12454949e-03, 7.08246993e-04], [9.91254044e-02, 2.97376338e-01, 4.95623590e-01, ..., 3.61723558e-03, 2.17072433e-03, 7.23638607e-04]]])
- filtered_corrected_specific_diff_phase(volume_time, azimuth, range)float640.08206 0.0 0.0 0.0 ... 0.0 0.0 0.0
- units :
- degree/km
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Filtered Corrected Specific differential phase (KDP)
array([[[0.08205656, 0. , 0. , ..., 0. , 0. , 0. ], [0. , 0. , 0. , ..., 0. , 0. , 0. ], [0.02464142, 0. , 0. , ..., 0. , 0. , 0. ], ..., [0. , 0. , 0. , ..., 0. , 0. , 0. ], [0.06969921, 0. , 0. , ..., 0. , 0. , 0. ], [0. , 0. , 0. , ..., 0. , 0. , 0. ]], [[0. , 0. , 0. , ..., 0. , 0. , 0. ], [0. , 0. , 0.28769083, ..., 0. , 0. , 0. ], [0. , 0. , 0. , ..., 0. , 0. , 0. ], ... [0.01721152, 0. , 0. , ..., 0. , 0. , 0. ], [0.04890015, 0.14670026, 0. , ..., 0. , 0. , 0. ], [0.0749095 , 0.22472831, 0.37454655, ..., 0. , 0. , 0. ]], [[0.05889865, 0. , 0. , ..., 0. , 0. , 0. ], [0. , 0. , 0. , ..., 0. , 0. , 0. ], [0. , 0. , 0.14899692, ..., 0. , 0. , 0. ], ..., [0.07364405, 0. , 0. , ..., 0. , 0. , 0. ], [0. , 0. , 0. , ..., 0. , 0. , 0. ], [0. , 0. , 0. , ..., 0. , 0. , 0. ]]])
- corrected_differential_reflectivity(volume_time, azimuth, range)float645.647 nan nan nan ... nan nan nan
- long_name :
- Corrected differential reflectivity
- units :
- dB
- standard_name :
- corrected_log_differential_reflectivity_hv
array([[[ 5.64703941, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ 8.4847374 , nan, nan, ..., nan, nan, nan], ..., [ nan, nan, nan, ..., nan, nan, nan], [ 8.17771149, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]], [[ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, 2.70319234, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], ... [ 0.28660512, nan, nan, ..., nan, nan, nan], [ -0.71504307, 3.22074413, nan, ..., nan, nan, nan], [ 6.16587019, 1.15893588, 0.62321795, ..., nan, nan, nan]], [[ 1.00869513, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, 7.13761824, ..., nan, nan, nan], ..., [ -0.63996506, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]]])
- corrected_reflectivity(volume_time, azimuth, range)float648.063 nan nan nan ... nan nan nan
- long_name :
- Corrected reflectivity
- units :
- dBZ
- standard_name :
- corrected_equivalent_reflectivity_factor
array([[[ 8.06341457, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [10.32591152, nan, nan, ..., nan, nan, nan], ..., [ nan, nan, nan, ..., nan, nan, nan], [10.67924404, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]], [[ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, 28.99844903, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], ... [10.88682747, nan, nan, ..., nan, nan, nan], [ 6.61485863, 28.13731194, nan, ..., nan, nan, nan], [12.49483871, 27.04107471, 33.57599247, ..., nan, nan, nan]], [[ 6.61972046, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, 24.94186974, ..., nan, nan, nan], ..., [ 4.83063221, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]]])
- height_over_iso0(volume_time, azimuth, range)float32-4.195e+03 ... -2.557e+03
- standard_name :
- height
- long_name :
- Height of radar beam over freezing level
- units :
- m
array([[[-4194.9175, -4193.9175, -4193.9175, ..., -2540.9175, -2538.9175, -2535.9175], [-4194.9175, -4193.9175, -4193.9175, ..., -2561.9175, -2559.9175, -2556.9175], [-4194.9175, -4193.9175, -4193.9175, ..., -2561.9175, -2559.9175, -2556.9175], ..., [-4194.9175, -4193.9175, -4192.9175, ..., -2518.9175, -2517.9175, -2514.9175], [-4194.9175, -4193.9175, -4192.9175, ..., -2518.9175, -2517.9175, -2514.9175], [-4194.9175, -4193.9175, -4192.9175, ..., -2518.9175, -2517.9175, -2514.9175]], [[-4195.1523, -4194.1523, -4194.1523, ..., -2562.1523, -2560.1523, -2557.1523], [-4195.1523, -4194.1523, -4194.1523, ..., -2562.1523, -2560.1523, -2557.1523], [-4195.1523, -4194.1523, -4194.1523, ..., -2562.1523, -2560.1523, -2557.1523], ... [-4194.848 , -4193.848 , -4193.848 , ..., -2561.8481, -2559.8481, -2556.8481], [-4194.848 , -4193.848 , -4193.848 , ..., -2561.8481, -2559.8481, -2556.8481], [-4194.848 , -4193.848 , -4193.848 , ..., -2561.8481, -2559.8481, -2556.8481]], [[-4194.705 , -4193.705 , -4193.705 , ..., -2561.705 , -2559.705 , -2556.705 ], [-4194.705 , -4193.705 , -4193.705 , ..., -2561.705 , -2559.705 , -2556.705 ], [-4194.705 , -4193.705 , -4193.705 , ..., -2561.705 , -2559.705 , -2556.705 ], ..., [-4194.705 , -4193.705 , -4193.705 , ..., -2561.705 , -2559.705 , -2556.705 ], [-4194.705 , -4193.705 , -4193.705 , ..., -2561.705 , -2559.705 , -2556.705 ], [-4194.705 , -4193.705 , -4193.705 , ..., -2561.705 , -2559.705 , -2556.705 ]]], dtype=float32)
- path_integrated_attenuation(volume_time, azimuth, range)float640.0 nan nan nan ... nan nan nan nan
- units :
- dB
- long_name :
- Path Integrated Attenuation
array([[[0. , nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [0. , nan, nan, ..., nan, nan, nan], ..., [ nan, nan, nan, ..., nan, nan, nan], [0. , nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]], [[ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, 0.00425691, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], ... [0. , nan, nan, ..., nan, nan, nan], [0. , 0. , nan, ..., nan, nan, nan], [0. , 0.00387569, 0.01239765, ..., nan, nan, nan]], [[0. , nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, 0.00172424, ..., nan, nan, nan], ..., [0. , nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]]])
- path_integrated_differential_attenuation(volume_time, azimuth, range)float640.0 nan nan nan ... nan nan nan nan
- units :
- dB
- long_name :
- Path Integrated Differential Attenuation
array([[[0.00000000e+00, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [0.00000000e+00, nan, nan, ..., nan, nan, nan], ..., [ nan, nan, nan, ..., nan, nan, nan], [0.00000000e+00, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]], [[ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, 5.78068348e-05, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], ... [0.00000000e+00, nan, nan, ..., nan, nan, nan], [0.00000000e+00, 0.00000000e+00, nan, ..., nan, nan, nan], [0.00000000e+00, 8.52124878e-05, 2.88613919e-04, ..., nan, nan, nan]], [[0.00000000e+00, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, 9.23799872e-06, ..., nan, nan, nan], ..., [0.00000000e+00, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]]])
- rain_rate_A(volume_time, azimuth, range)float640.0 nan nan nan ... nan nan nan nan
- long_name :
- rainfall_rate
- units :
- mm/hr
- standard_name :
- rainfall_rate
- valid_min :
- 0.0
- valid_max :
- 400.0
- comment :
- Rain rate calculated from specific_attenuation, R=51.3*specific_attenuation**0.81, note R=0.0 where norm coherent power < 0.4 or rhohv < 0.8
array([[[ 0. , nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ 0. , nan, nan, ..., nan, nan, nan], ..., [ nan, nan, nan, ..., nan, nan, nan], [ 0. , nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]], [[ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, 9.5625, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], ..., [ 0. , nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ 0. , nan, nan, ..., nan, nan, nan]], [[ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ 0. , nan, nan, ..., nan, nan, nan], ..., ... ..., [ nan, nan, nan, ..., nan, nan, nan], [ 0. , nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]], [[ 0. , 0. , 14. , ..., nan, nan, nan], [ 0. , 0. , 2.625 , ..., nan, nan, nan], [ 0. , 0. , 5.0625, ..., nan, nan, nan], ..., [ 0. , nan, nan, ..., nan, nan, nan], [ 0. , 0. , nan, ..., nan, nan, nan], [ 0. , 0. , 16.3125, ..., nan, nan, nan]], [[ 0. , nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, 2.1875, ..., nan, nan, nan], ..., [ 0. , nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan], [ nan, nan, nan, ..., nan, nan, nan]]])
- sweep_number(volume_time)float640.0 0.0 0.0 0.0 ... 0.0 0.0 0.0 0.0
- long_name :
- Sweep index number 0 based
- units :
- 1
array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.])
- sweep_fixed_angle(volume_time)float320.4999 0.4999 ... 0.4999 0.4999
- long_name :
- Ray target fixed angle
- units :
- degree
array([0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793], dtype=float32)
- sweep_mode(volume_time)<U6'sector' 'sector' ... 'sector'
array(['sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector', 'sector'], dtype='<U6')
- prt(volume_time, azimuth)float320.0008065 0.0008065 ... 0.0008065
- long_name :
- Pulse repetition time
- units :
- s
array([[0.00080645, 0.00080645, 0.00080645, ..., 0.00080645, 0.00080645, 0.00080645], [0.00080645, 0.00080645, 0.00080645, ..., 0.00080645, 0.00080645, 0.00080645], [0.00080645, 0.00080645, 0.00080645, ..., 0.00080645, 0.00080645, 0.00080645], ..., [0.00080645, 0.00080645, 0.00080645, ..., 0.00080645, 0.00080645, 0.00080645], [0.00080645, 0.00080645, 0.00080645, ..., 0.00080645, 0.00080645, 0.00080645], [0.00080645, 0.00080645, 0.00080645, ..., 0.00080645, 0.00080645, 0.00080645]], dtype=float32)
- nyquist_velocity(volume_time, azimuth)float3216.49 16.49 16.49 ... 16.49 16.49
- long_name :
- Unambiguous doppler velocity
- units :
- m/s
- meta_group :
- instrument_parameters
array([[16.492, 16.492, 16.492, ..., 16.492, 16.492, 16.492], [16.492, 16.492, 16.492, ..., 16.492, 16.492, 16.492], [16.492, 16.492, 16.492, ..., 16.492, 16.492, 16.492], ..., [16.492, 16.492, 16.492, ..., 16.492, 16.492, 16.492], [16.492, 16.492, 16.492, ..., 16.492, 16.492, 16.492], [16.492, 16.492, 16.492, ..., 16.492, 16.492, 16.492]], dtype=float32)
- rangePandasIndex
PandasIndex(Index([ 0.0, 100.0, 200.0, 300.0, 400.0, 500.0, 600.0, 700.0, 800.0, 900.0, ... 109000.0, 109100.0, 109200.0, 109300.0, 109400.0, 109500.0, 109600.0, 109700.0, 109800.0, 109900.0], dtype='float32', name='range', length=1100))
- azimuthPandasIndex
PandasIndex(Index([ 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, ... 350.5, 351.5, 352.5, 353.5, 354.5, 355.5, 356.5, 357.5, 358.5, 359.5], dtype='float32', name='azimuth', length=360))
- volume_timePandasIndex
PandasIndex(DatetimeIndex([ '2019-01-29 13:00:03', '2019-01-29 13:15:03', '2019-01-29 13:30:03', '2019-01-29 13:45:03', '2019-01-29 14:00:03.060000', '2019-01-29 14:15:03', '2019-01-29 14:30:03', '2019-01-29 14:45:03', '2019-01-29 15:00:03', '2019-01-29 15:15:03', '2019-01-29 15:30:03', '2019-01-29 15:45:03.060999', '2019-01-29 16:15:03', '2019-01-29 16:30:03', '2019-01-29 16:45:03', '2019-01-29 17:00:03', '2019-01-29 17:15:03', '2019-01-29 17:30:03', '2019-01-29 17:45:03', '2019-01-29 18:00:03', '2019-01-29 18:15:03', '2019-01-29 18:30:03.071000', '2019-01-29 18:45:03', '2019-01-29 19:00:06', '2019-01-29 19:15:03', '2019-01-29 19:30:03', '2019-01-29 19:45:03.071000'], dtype='datetime64[ns]', name='volume_time', freq=None))
In order to create radial plots we need to add the georeference to our new radar dataset
ds = ds.xradar.georeference()
proj_crs = xd.georeference.get_crs(ds)
cart_crs = ccrs.Projection(proj_crs)
Finally we can create an hvplot
animation as follows
ds.reflectivity.hvplot.quadmesh(x='x',
y='y',
cmap='pyart_ChaseSpectral',
groupby='volume_time',
widget_type="scrubber",
widget_location="bottom",
clim=(-20, 70),
width=600,
height=500,
rasterize=True)
KZAR
# KZAR files
# kzar_files = act.discovery.download_arm_data(username, token, kzar, startdate, enddate)
# ds_kzar = act.io.read_arm_netcdf("corarsclkazr1kolliasM1.c1/corarsclkazr1kolliasM1.c1.20190129.000000.nc")
ds_kzar = xr.open_dataset("corarsclkazr1kolliasM1.c1/corarsclkazr1kolliasM1.c1.20190129.000000.nc")
display(ds_kzar)
<xarray.Dataset> Size: 878MB Dimensions: (time: 21600, layer: 10, height: 596, radar_mode: 4) Coordinates: * time (time) datetime64[ns] 173kB 2019-01... * layer (layer) int32 40B 0 1 2 3 4 5 6 7 8 9 * height (height) float32 2kB 160.0 ... 1.80... * radar_mode (radar_mode) |S2 8B b'hi' ... b'pr' Data variables: (12/33) base_time datetime64[ns] 8B ... time_offset (time) datetime64[ns] 173kB ... reflectivity_best_estimate (time, height) float32 51MB ... qc_reflectivity_best_estimate (time, height) int32 51MB ... reflectivity (time, height) float32 51MB ... qc_reflectivity (time, height) int32 51MB ... ... ... minimum_detectable_reflectivity_flag (time, height) float32 51MB ... reflectivity_saturation_flag (time, height) float32 51MB ... instrument_availability_flag (time) int16 43kB ... lat float32 4B ... lon float32 4B ... alt float32 4B ... Attributes: (12/18) command_line: idl -R -n kazrcfrarscl -n kazrcfrarsclc... Conventions: ARM-1.2 process_version: vap-kazrcfrarscl-1.6-4.el7 dod_version: arsclkazr1kollias-c1-4.0 site_id: cor platform_id: arsclkazr1kollias ... ... radar_modes_in_use: md ge maximum_clutter_height: 4000.0 m radar_operating_frequency_burst: 34.830 GHz radar_operating_frequency_chirp: 34.890 GHz doi: 10.5439/1228768 history: created by user malynn on machine node1...
- time: 21600
- layer: 10
- height: 596
- radar_mode: 4
- time(time)datetime64[ns]2019-01-29 ... 2019-01-29T23:59:56
- long_name :
- Time offset from midnight
- standard_name :
- time
array(['2019-01-29T00:00:00.000000000', '2019-01-29T00:00:04.000000000', '2019-01-29T00:00:08.000000000', ..., '2019-01-29T23:59:48.000000000', '2019-01-29T23:59:52.000000000', '2019-01-29T23:59:56.000000000'], dtype='datetime64[ns]')
- layer(layer)int320 1 2 3 4 5 6 7 8 9
- long_name :
- Cloud layer number
- units :
- unitless
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9], dtype=int32)
- height(height)float32160.0 190.0 ... 1.798e+04 1.801e+04
- long_name :
- Height above ground level
- units :
- m
- standard_name :
- height
array([ 160., 190., 220., ..., 17950., 17980., 18010.], dtype=float32)
- radar_mode(radar_mode)|S2b'hi' b'md' b'ge' b'pr'
- long_name :
- Radar mode names
- units :
- unitless
- comment :
- Only two radar modes are in use simultaneously. See global attribute radar_modes_in_use for list of modes used
array([b'hi', b'md', b'ge', b'pr'], dtype='|S2')
- base_time()datetime64[ns]...
- string :
- 2019-01-29 00:00:00 0:00
- long_name :
- Base time in Epoch
- ancillary_variables :
- time_offset
[1 values with dtype=datetime64[ns]]
- time_offset(time)datetime64[ns]...
- long_name :
- Time offset from base_time
- ancillary_variables :
- base_time
[21600 values with dtype=datetime64[ns]]
- reflectivity_best_estimate(time, height)float32...
- long_name :
- Best-estimate reflectivity
- units :
- dBZ
- ancillary_variables :
- qc_reflectivity_best_estimate
- valid_min :
- -90.0
- valid_max :
- 50.0
- resolution :
- 0.001
- comment :
- Contains data from best radar operating mode (see radar_mode_flag); data points with non-missing values contain hydrometeors or both hydrometeors and clutter (see reflectivity_clutter_flag)
[12873600 values with dtype=float32]
- qc_reflectivity_best_estimate(time, height)int32...
- long_name :
- Quality check results on field: Best-estimate reflectivity
- units :
- unitless
- description :
- This field contains bit packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value is less than the valid_min.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is greater than the valid_max.
- bit_2_assessment :
- Bad
- bit_3_description :
- Data value not available in input file, data value has been set to missing_value.
- bit_3_assessment :
- Bad
[12873600 values with dtype=int32]
- reflectivity(time, height)float32...
- long_name :
- Reflectivity
- units :
- dBZ
- ancillary_variables :
- qc_reflectivity
- valid_min :
- -90.0
- valid_max :
- 50.0
- resolution :
- 0.001
- comment :
- Contains data from best radar operating mode (see radar_mode_flag); Data points with non-missing values had significant power detections from hydrometeors and/or clutter
[12873600 values with dtype=float32]
- qc_reflectivity(time, height)int32...
- long_name :
- Quality check results on field: Reflectivity
- units :
- unitless
- description :
- This field contains bit packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value is less than the valid_min.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is greater than the valid_max.
- bit_2_assessment :
- Bad
- bit_3_description :
- Data value not available in input file, data value has been set to missing_value.
- bit_3_assessment :
- Bad
[12873600 values with dtype=int32]
- mean_doppler_velocity(time, height)float32...
- long_name :
- Mean Doppler velocity
- units :
- m/s
- ancillary_variables :
- qc_mean_doppler_velocity
- valid_min :
- -25.0
- valid_max :
- 25.0
- resolution :
- 0.001
- positive :
- up
- comment :
- Contains data from best radar operating mode (see radar_mode_flag); Data points with non-missing values had significant power detections from hydrometeors and/or clutter
[12873600 values with dtype=float32]
- qc_mean_doppler_velocity(time, height)int32...
- long_name :
- Quality check results on field: Mean Doppler velocity
- units :
- unitless
- description :
- This field contains bit packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value is less than the valid_min.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is greater than the valid_max.
- bit_2_assessment :
- Bad
- bit_3_description :
- Data value not available in input file, data value has been set to missing_value.
- bit_3_assessment :
- Bad
[12873600 values with dtype=int32]
- spectral_width(time, height)float32...
- long_name :
- Spectral width
- units :
- m/s
- ancillary_variables :
- qc_spectral_width
- valid_min :
- 0.0
- valid_max :
- 10.0
- resolution :
- 0.001
- comment :
- Contains data from best radar operating mode (see radar_mode_flag); Data points with non-missing values had significant power detections from hydrometeors and/or clutter
[12873600 values with dtype=float32]
- qc_spectral_width(time, height)int32...
- long_name :
- Quality check results on field: Spectral width
- units :
- unitless
- description :
- This field contains bit packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value is less than the valid_min.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is greater than the valid_max.
- bit_2_assessment :
- Bad
- bit_3_description :
- Data value not available in input file, data value has been set to missing_value.
- bit_3_assessment :
- Bad
[12873600 values with dtype=int32]
- linear_depolarization_ratio(time, height)float32...
- long_name :
- Linear depolarization ratio
- units :
- dBZ
- ancillary_variables :
- qc_linear_depolarization_ratio
- valid_min :
- -50.0
- valid_max :
- 50.0
- comment :
- Contains data from best radar operating mode (see radar_mode_flag); Data points with non-missing values had significant power detections from hydrometeors and/or clutter
[12873600 values with dtype=float32]
- qc_linear_depolarization_ratio(time, height)int32...
- long_name :
- Quality check results on field: Linear depolarization ratio
- units :
- unitless
- description :
- This field contains bit packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Value is less than the valid_min.
- bit_1_assessment :
- Bad
- bit_2_description :
- Value is greater than the valid_max.
- bit_2_assessment :
- Bad
- bit_3_description :
- Data value not available in input file, data value has been set to missing_value.
- bit_3_assessment :
- Bad
[12873600 values with dtype=int32]
- signal_to_noise_ratio(time, height)float32...
- long_name :
- Signal-to-noise ratio
- units :
- dB
- resolution :
- 0.001
- comment :
- Contains data from best radar operating mode (see radar_mode_flag); Data points with non-missing values had significant power detections from hydrometeors and/or clutter
[12873600 values with dtype=float32]
- reflectivity_clutter_flag(time, height)int16...
- long_name :
- Reflectivity clutter flag
- units :
- unitless
- flag_values :
- [ 0 1 2 3 9 10]
- flag_meanings :
- No_significant_detection Hydrometeor-only_detection Both_hydrometeor_and_clutter_detection Clutter-only_detection Bad_data Missing_data
- flag_0_description :
- No significant detection
- flag_1_description :
- Hydrometeor-only detection
- flag_2_description :
- Both hydrometeor and clutter detection
- flag_3_description :
- Clutter-only detection
- flag_9_description :
- Bad data
- flag_10_description :
- Missing data
[12873600 values with dtype=int16]
- mean_doppler_velocity_dealias_flag(time, height)float32...
- long_name :
- Indication of whether or not dealiasing was performed on the mean_doppler_velocity
- units :
- unitless
- flag_values :
- [0 1]
- flag_meanings :
- no_dealias dealias
- flag_0_description :
- No dealiasing performed
- flag_1_description :
- Dealiasing performed
[12873600 values with dtype=float32]
- radar_mode_flag(time, height)float32...
- long_name :
- Radar mode flag
- units :
- unitless
- flag_values :
- [0 1 2 3 4]
- flag_meanings :
- No_significant_detection High_sensitivity_mode-long_pulse Medium_sensitivity_mode-long_pulse General_mode-short_pulse Precipitation_mode-short_pulse-attenuated
- flag_0_description :
- No significant detection
- flag_1_description :
- High sensitivity mode (long pulse)
- flag_2_description :
- Medium sensitivity mode (long pulse)
- flag_3_description :
- General mode (short pulse)
- flag_4_description :
- Precipitation mode (short pulse, attenuated)
[12873600 values with dtype=float32]
- cloud_source_flag(time, height)int16...
- long_name :
- Instrument source flag for cloud (hydrometeor) detections
- units :
- unitless
- flag_values :
- [0 1 2 3 4 5 6]
- flag_meanings :
- No_detection_due_to_missing_radar_and_micropulse_lidar_data clear_according_to_radar_and_lidar cloud_detected_by_radar_and_lidar cloud_detected_by_radar_only cloud_detected_by_lidar_only cloud_detected_by_radar_but_lidar_data_missing cloud_detected_by_lidar_but_radar_data_missing
- flag_0_description :
- No detection due to missing radar and micropulse lidar data
- flag_1_description :
- Clear according to radar and lidar
- flag_2_description :
- Cloud detected by radar and lidar
- flag_3_description :
- Cloud detected by radar only
- flag_4_description :
- Cloud detected by lidar only
- flag_5_description :
- Cloud detected by radar but lidar data missing
- flag_6_description :
- Cloud detected by lidar but radar data missing
[12873600 values with dtype=int16]
- precip_mean(time)float32...
- long_name :
- Precipitation mean from rain gauge
- units :
- mm/hr
- ancillary_variables :
- qc_precip_mean
[21600 values with dtype=float32]
- qc_precip_mean(time)int32...
- long_name :
- Quality check results on field: Precipitation mean from rain gauge
- units :
- unitless
- description :
- This field contains bit packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Not used
- bit_1_assessment :
- Bad
- bit_2_description :
- Not used
- bit_2_assessment :
- Bad
- bit_3_description :
- Data value not available in input file, data value has been set to missing_value.
- bit_3_assessment :
- Bad
[21600 values with dtype=int32]
- mwr_lwp(time)float32...
- long_name :
- Liquid water path best-estimate from microwave radiometer
- units :
- g/m^2
- ancillary_variables :
- qc_mwr_lwp
[21600 values with dtype=float32]
- qc_mwr_lwp(time)int32...
- long_name :
- Quality check results on field: Liquid water path best-estimate from microwave radiometer
- units :
- unitless
- description :
- This field contains bit packed integer values, where each bit represents a QC test on the data. Non-zero bits indicate the QC condition given in the description for those bits; a value of 0 (no bits set) indicates the data has not failed any QC tests.
- flag_method :
- bit
- bit_1_description :
- Not used
- bit_1_assessment :
- Bad
- bit_2_description :
- Not used
- bit_2_assessment :
- Bad
- bit_3_description :
- Data value not available in input file, data value has been set to missing_value.
- bit_3_assessment :
- Bad
[21600 values with dtype=int32]
- radar_first_top(time)float32...
- long_name :
- KAZR top height of lowest significant detection layer, before clutter removal
- units :
- m
- valid_range :
- [ 0. 25000.]
- flag_values :
- -1.0
- flag_meanings :
- clear_sky
[21600 values with dtype=float32]
- cloud_base_best_estimate(time)float32...
- long_name :
- Cloud base best estimate, based on ceilometer and micropulse lidar
- units :
- m
- valid_range :
- [ 0. 25000.]
- flag_values :
- [-2. -1.]
- flag_meanings :
- possible_clear_sky clear_sky
- comment :
- -2. Possible clear sky (No MPL observations available, Ceilometer obscured, but no cloud detected), -1. Clear sky, >= 0. Valid cloud base height
[21600 values with dtype=float32]
- cloud_layer_base_height(time, layer)float32...
- long_name :
- Base height of hydrometeor layers for up to 10 layers, based on combined radar and micropulse lidar observations
- units :
- m
- valid_range :
- [ 0. 25000.]
- flag_values :
- -1.0
- flag_meanings :
- clear_sky
[216000 values with dtype=float32]
- cloud_layer_top_height(time, layer)float32...
- long_name :
- Top height of hydrometeor layers for up to 10 layers, based on combined radar and micropulse lidar observations
- units :
- m
- valid_range :
- [ 0. 25000.]
- flag_values :
- -1.0
- flag_meanings :
- clear_sky
[216000 values with dtype=float32]
- cloud_mask_mplzwang(time, height)float32...
- long_name :
- Cloud mask from 30smpl1zwang
- units :
- unitless
- flag_values :
- [0 1 2]
- flag_meanings :
- clear cloudy mask_not_used_to_determine_cloud_boundaries_below_3km
- flag_0_description :
- clear
- flag_1_description :
- cloudy
- flag_2_description :
- Mask not used to determine cloud boundaries below 3km
- comment :
- Cloud mask indeterminate below 500 m
[12873600 values with dtype=float32]
- minimum_detectable_reflectivity(radar_mode, height)float32...
- long_name :
- Minimum detectable reflectivity level
- units :
- dBZ
- comment :
- Noise values are reduced by signal processing, which is dependent upon the cloud properties. Therefore actual noise levels can fluctuate with time. Reported here are mean values for the time period.
[2384 values with dtype=float32]
- minimum_detectable_reflectivity_flag(time, height)float32...
- long_name :
- Flag identifies points with reflectivity below radar expected sensitivity level
- units :
- unitless
- flag_values :
- [0 1]
- flag_meanings :
- reflectivity_exceeds_minimum_detectable_level reflectivity_below_minimum_sensitivity
- flag_0_description :
- Reflectivity exceeds minimum detectable level
- flag_1_description :
- Reflectivity below minimum sensitivity
[12873600 values with dtype=float32]
- reflectivity_saturation_flag(time, height)float32...
- long_name :
- Flag indicating when reflectivity values are saturated
- units :
- unitless
- flag_values :
- [0 1]
- flag_meanings :
- reflectivity_not_saturated reflectivity_at_or_above_radar_saturation_level
- flag_0_description :
- Reflectivity not saturated
- flag_1_description :
- Reflectivity at or above radar saturation level
[12873600 values with dtype=float32]
- instrument_availability_flag(time)int16...
- long_name :
- Indicates which instruments have data available
- units :
- unitless
- flag_masks :
- [ 1 2 4 8 16]
- flag_meanings :
- KAZR MPL Ceilometer MWR rain_gauge
- bit_1_description :
- KAZR
- bit_2_description :
- MPL
- bit_3_description :
- Ceilometer
- bit_4_description :
- MWR
- bit_5_description :
- rain gauge
[21600 values with dtype=int16]
- lat()float32...
- long_name :
- North latitude
- units :
- degree_N
- valid_min :
- -90.0
- valid_max :
- 90.0
- standard_name :
- latitude
[1 values with dtype=float32]
- lon()float32...
- long_name :
- East longitude
- units :
- degree_E
- valid_min :
- -180.0
- valid_max :
- 180.0
- standard_name :
- longitude
[1 values with dtype=float32]
- alt()float32...
- long_name :
- Altitude above mean sea level
- units :
- m
- standard_name :
- altitude
[1 values with dtype=float32]
- timePandasIndex
PandasIndex(DatetimeIndex(['2019-01-29 00:00:00', '2019-01-29 00:00:04', '2019-01-29 00:00:08', '2019-01-29 00:00:12', '2019-01-29 00:00:16', '2019-01-29 00:00:20', '2019-01-29 00:00:24', '2019-01-29 00:00:28', '2019-01-29 00:00:32', '2019-01-29 00:00:36', ... '2019-01-29 23:59:20', '2019-01-29 23:59:24', '2019-01-29 23:59:28', '2019-01-29 23:59:32', '2019-01-29 23:59:36', '2019-01-29 23:59:40', '2019-01-29 23:59:44', '2019-01-29 23:59:48', '2019-01-29 23:59:52', '2019-01-29 23:59:56'], dtype='datetime64[ns]', name='time', length=21600, freq=None))
- layerPandasIndex
PandasIndex(Index([0, 1, 2, 3, 4, 5, 6, 7, 8, 9], dtype='int32', name='layer'))
- heightPandasIndex
PandasIndex(Index([ 160.0, 190.0, 220.0, 250.0, 280.0, 310.0, 340.0, 370.0, 400.0, 430.0, ... 17740.0, 17770.0, 17800.0, 17830.0, 17860.0, 17890.0, 17920.0, 17950.0, 17980.0, 18010.0], dtype='float32', name='height', length=596))
- radar_modePandasIndex
PandasIndex(Index([b'hi', b'md', b'ge', b'pr'], dtype='object', name='radar_mode'))
- command_line :
- idl -R -n kazrcfrarscl -n kazrcfrarsclc1 -s cor -f M1 -b 20190129 --asynchronous
- Conventions :
- ARM-1.2
- process_version :
- vap-kazrcfrarscl-1.6-4.el7
- dod_version :
- arsclkazr1kollias-c1-4.0
- site_id :
- cor
- platform_id :
- arsclkazr1kollias
- facility_id :
- M1
- data_level :
- c1
- location_description :
- Cloud, Aerosol, and Complex Terrain Interactions (CACTI), Cordoba, Argentina
- datastream :
- corarsclkazr1kolliasM1.c1
- input_datastreams :
- corceilM1.b1 : 1.5 : 20190129.000014 corkazrcfrcorgeM1.c1 : 1.3 : 20190129.000000 corkazrcfrcormdM1.c1 : 1.3 : 20190129.000000 cor30smplcmask1zwangM1.c1 : 1.0 : 20190129.000008 cormwrret1liljclouM1.c2 : 1.77 : 20190129.000001 cormwrlosM1.b1 : 2.2 : 20190129.000001 cormetM1.b1 : 4.45 : 20190129.000000
- radar_polarization_status :
- single polarization
- radar_modes_in_use :
- md ge
- maximum_clutter_height :
- 4000.0 m
- radar_operating_frequency_burst :
- 34.830 GHz
- radar_operating_frequency_chirp :
- 34.890 GHz
- doi :
- 10.5439/1228768
- history :
- created by user malynn on machine node1.adc.arm.gov at 2022-12-07 16:49:33, using vap-kazrcfrarscl-1.6-4.el7
As we are interested in the convective storm that occurred between the 16:00 and the 19:00 we can subset our dataset to only keep storm data
ds_kzar = ds_kzar.sel(time=slice('2019-01-29 16:00', '2019-01-29 19:00'))
We would like see how radar reflectivity looks like in both instrument Therefore, we can use hvplot
to create interactive plots
ref = ds_kzar.reflectivity_best_estimate.hvplot.quadmesh(x="time", y="height",
cmap="ChaseSpectral",
clim=(-20, 40),
rasterize=True,
width=1000,
height=300)
vel = ds_kzar.mean_doppler_velocity.hvplot.quadmesh(x="time", y="height",
cmap="pyart_balance",
clim=(-20, 20),
rasterize=True,
width=1000,
height=300)
(ref + vel).cols(1)