xarray ODIM backend#
In this example, we read ODIM_H5 (HDF5) data files using the xradar odim
backend.
[1]:
import glob
import os
import wradlib as wrl
import warnings
warnings.filterwarnings("ignore")
import matplotlib.pyplot as pl
import numpy as np
import xradar as xd
import datatree as xt
import xarray as xr
try:
get_ipython().run_line_magic("matplotlib inline")
except:
pl.ion()
Load ODIM_H5 Volume Data#
[2]:
fpath = "hdf5/knmi_polar_volume.h5"
f = wrl.util.get_wradlib_data_file(fpath)
vol = xd.io.open_odim_datatree(f)
Downloading file 'hdf5/knmi_polar_volume.h5' from 'https://github.com/wradlib/wradlib-data/raw/pooch/data/hdf5/knmi_polar_volume.h5' to '/home/runner/work/wradlib/wradlib/wradlib-data'.
Inspect RadarVolume#
[3]:
display(vol)
<xarray.DatasetView> Dimensions: () Data variables: volume_number int64 0 platform_type <U5 'fixed' instrument_type <U5 'radar' time_coverage_start <U20 '2011-06-10T11:40:02Z' time_coverage_end <U20 '2011-06-10T11:43:54Z' longitude float32 4.79 altitude float32 50.0 latitude float32 52.95 Attributes: Conventions: ODIM_H5/V2_0 version: None title: None institution: None references: None source: None history: None comment: im/exported using xradar instrument_name: None
- azimuth: 360
- range: 320
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:40:17.361118208 .....
- standard_name :
- time
array(['2011-06-10T11:40:17.361118208', '2011-06-10T11:40:17.416673792', '2011-06-10T11:40:17.472229376', ..., '2011-06-10T11:40:17.194451456', '2011-06-10T11:40:17.250007040', '2011-06-10T11:40:17.305562624'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 3.195e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 317500., 318500., 319500.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[115200 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 320) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:40:17.361118208... * range (range) float32 500.0 1.5e+03 ... 3.185e+05 3.195e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_0- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:40:36.805558272 .....
- standard_name :
- time
array(['2011-06-10T11:40:36.805558272', '2011-06-10T11:40:36.861113856', '2011-06-10T11:40:36.916669440', ..., '2011-06-10T11:40:36.638891520', '2011-06-10T11:40:36.694447104', '2011-06-10T11:40:36.750002688'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 2.395e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 237500., 238500., 239500.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:40:36.805558272... * range (range) float32 500.0 1.5e+03 ... 2.385e+05 2.395e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_1- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:40:56.305557504 .....
- standard_name :
- time
array(['2011-06-10T11:40:56.305557504', '2011-06-10T11:40:56.361113088', '2011-06-10T11:40:56.416668672', ..., '2011-06-10T11:40:56.138890752', '2011-06-10T11:40:56.194446336', '2011-06-10T11:40:56.250001920'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 2.395e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 237500., 238500., 239500.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:40:56.305557504... * range (range) float32 500.0 1.5e+03 ... 2.385e+05 2.395e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_2- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:41:15.805556736 .....
- standard_name :
- time
array(['2011-06-10T11:41:15.805556736', '2011-06-10T11:41:15.861112320', '2011-06-10T11:41:15.916667904', ..., '2011-06-10T11:41:15.638889984', '2011-06-10T11:41:15.694445568', '2011-06-10T11:41:15.750001152'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 2.395e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 237500., 238500., 239500.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:41:15.805556736... * range (range) float32 500.0 1.5e+03 ... 2.385e+05 2.395e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_3- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:41:36.305555968 .....
- standard_name :
- time
array(['2011-06-10T11:41:36.305555968', '2011-06-10T11:41:36.361111552', '2011-06-10T11:41:36.416667136', ..., '2011-06-10T11:41:36.138889216', '2011-06-10T11:41:36.194444800', '2011-06-10T11:41:36.250000384'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 2.395e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 237500., 238500., 239500.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:41:36.305555968... * range (range) float32 500.0 1.5e+03 ... 2.385e+05 2.395e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_4- azimuth: 360
- range: 340
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:42:10.479194112 .....
- standard_name :
- time
array(['2011-06-10T11:42:10.479194112', '2011-06-10T11:42:10.520860928', '2011-06-10T11:42:10.562527744', ..., '2011-06-10T11:42:10.354193920', '2011-06-10T11:42:10.395860736', '2011-06-10T11:42:10.437527296'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.692e+05 1.698e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 168750., 169250., 169750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[122400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 340) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:42:10.479194112... * range (range) float32 250.0 750.0 ... 1.692e+05 1.698e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_5- azimuth: 360
- range: 340
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:42:24.770857472 .....
- standard_name :
- time
array(['2011-06-10T11:42:24.770857472', '2011-06-10T11:42:24.812524288', '2011-06-10T11:42:24.854191104', ..., '2011-06-10T11:42:24.645857280', '2011-06-10T11:42:24.687524096', '2011-06-10T11:42:24.729190912'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.692e+05 1.698e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 168750., 169250., 169750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[122400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 340) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:42:24.770857472... * range (range) float32 250.0 750.0 ... 1.692e+05 1.698e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_6- azimuth: 360
- range: 300
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:42:37.716658432 .....
- standard_name :
- time
array(['2011-06-10T11:42:37.716658432', '2011-06-10T11:42:37.749991680', '2011-06-10T11:42:37.783324928', ..., '2011-06-10T11:42:37.616658432', '2011-06-10T11:42:37.649991680', '2011-06-10T11:42:37.683324928'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.492e+05 1.498e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 148750., 149250., 149750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[108000 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 300) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:42:37.716658432... * range (range) float32 250.0 750.0 ... 1.492e+05 1.498e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_7- azimuth: 360
- range: 300
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:42:49.016659968 .....
- standard_name :
- time
array(['2011-06-10T11:42:49.016659968', '2011-06-10T11:42:49.049993216', '2011-06-10T11:42:49.083326464', ..., '2011-06-10T11:42:48.916659968', '2011-06-10T11:42:48.949993472', '2011-06-10T11:42:48.983326720'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.492e+05 1.498e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 148750., 149250., 149750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[108000 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 300) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:42:49.016659968... * range (range) float32 250.0 750.0 ... 1.492e+05 1.498e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_8- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:42:59.791652096 .....
- standard_name :
- time
array(['2011-06-10T11:42:59.791652096', '2011-06-10T11:42:59.819429888', '2011-06-10T11:42:59.847207424', ..., '2011-06-10T11:42:59.708319232', '2011-06-10T11:42:59.736096768', '2011-06-10T11:42:59.763874560'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.192e+05 1.198e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 118750., 119250., 119750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:42:59.791652096... * range (range) float32 250.0 750.0 ... 1.192e+05 1.198e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_9- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:43:09.541660672 .....
- standard_name :
- time
array(['2011-06-10T11:43:09.541660672', '2011-06-10T11:43:09.569438464', '2011-06-10T11:43:09.597216256', ..., '2011-06-10T11:43:09.458327808', '2011-06-10T11:43:09.486105344', '2011-06-10T11:43:09.513883136'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.192e+05 1.198e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 118750., 119250., 119750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:43:09.541660672... * range (range) float32 250.0 750.0 ... 1.192e+05 1.198e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_10- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:43:29.874966272 .....
- standard_name :
- time
array(['2011-06-10T11:43:29.874966272', '2011-06-10T11:43:29.902743808', '2011-06-10T11:43:29.930521600', ..., '2011-06-10T11:43:29.791633152', '2011-06-10T11:43:29.819410688', '2011-06-10T11:43:29.847188480'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.192e+05 1.198e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 118750., 119250., 119750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:43:29.874966272... * range (range) float32 250.0 750.0 ... 1.192e+05 1.198e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_11- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:43:39.236087296 .....
- standard_name :
- time
array(['2011-06-10T11:43:39.236087296', '2011-06-10T11:43:39.263865088', '2011-06-10T11:43:39.291642624', ..., '2011-06-10T11:43:39.152754432', '2011-06-10T11:43:39.180531968', '2011-06-10T11:43:39.208309760'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.192e+05 1.198e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 118750., 119250., 119750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:43:39.236087296... * range (range) float32 250.0 750.0 ... 1.192e+05 1.198e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_12- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:43:48.763874560 .....
- standard_name :
- time
array(['2011-06-10T11:43:48.763874560', '2011-06-10T11:43:48.791652096', '2011-06-10T11:43:48.819429888', ..., '2011-06-10T11:43:48.680541440', '2011-06-10T11:43:48.708319232', '2011-06-10T11:43:48.736096768'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.192e+05 1.198e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 118750., 119250., 119750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:43:48.763874560... * range (range) float32 250.0 750.0 ... 1.192e+05 1.198e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_13- volume_number()int640
array(0)
- platform_type()<U5'fixed'
array('fixed', dtype='<U5')
- instrument_type()<U5'radar'
array('radar', dtype='<U5')
- time_coverage_start()<U20'2011-06-10T11:40:02Z'
array('2011-06-10T11:40:02Z', dtype='<U20')
- time_coverage_end()<U20'2011-06-10T11:43:54Z'
array('2011-06-10T11:43:54Z', dtype='<U20')
- longitude()float324.79
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(4.78997, dtype=float32)
- altitude()float3250.0
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(50., dtype=float32)
- latitude()float3252.95
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(52.95334, dtype=float32)
- Conventions :
- ODIM_H5/V2_0
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- None
- history :
- None
- comment :
- im/exported using xradar
- instrument_name :
- None
Inspect root group#
The sweep
dimension contains the number of scans in this radar volume. Further the dataset consists of variables (location coordinates, time_coverage) and attributes (Conventions, metadata).
[4]:
vol.root
[4]:
<xarray.DatasetView> Dimensions: () Data variables: volume_number int64 0 platform_type <U5 'fixed' instrument_type <U5 'radar' time_coverage_start <U20 '2011-06-10T11:40:02Z' time_coverage_end <U20 '2011-06-10T11:43:54Z' longitude float32 4.79 altitude float32 50.0 latitude float32 52.95 Attributes: Conventions: ODIM_H5/V2_0 version: None title: None institution: None references: None source: None history: None comment: im/exported using xradar instrument_name: None
- azimuth: 360
- range: 320
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:40:17.361118208 .....
- standard_name :
- time
array(['2011-06-10T11:40:17.361118208', '2011-06-10T11:40:17.416673792', '2011-06-10T11:40:17.472229376', ..., '2011-06-10T11:40:17.194451456', '2011-06-10T11:40:17.250007040', '2011-06-10T11:40:17.305562624'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 3.195e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 317500., 318500., 319500.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[115200 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 320) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:40:17.361118208... * range (range) float32 500.0 1.5e+03 ... 3.185e+05 3.195e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_0- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:40:36.805558272 .....
- standard_name :
- time
array(['2011-06-10T11:40:36.805558272', '2011-06-10T11:40:36.861113856', '2011-06-10T11:40:36.916669440', ..., '2011-06-10T11:40:36.638891520', '2011-06-10T11:40:36.694447104', '2011-06-10T11:40:36.750002688'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 2.395e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 237500., 238500., 239500.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:40:36.805558272... * range (range) float32 500.0 1.5e+03 ... 2.385e+05 2.395e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_1- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:40:56.305557504 .....
- standard_name :
- time
array(['2011-06-10T11:40:56.305557504', '2011-06-10T11:40:56.361113088', '2011-06-10T11:40:56.416668672', ..., '2011-06-10T11:40:56.138890752', '2011-06-10T11:40:56.194446336', '2011-06-10T11:40:56.250001920'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 2.395e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 237500., 238500., 239500.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:40:56.305557504... * range (range) float32 500.0 1.5e+03 ... 2.385e+05 2.395e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_2- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:41:15.805556736 .....
- standard_name :
- time
array(['2011-06-10T11:41:15.805556736', '2011-06-10T11:41:15.861112320', '2011-06-10T11:41:15.916667904', ..., '2011-06-10T11:41:15.638889984', '2011-06-10T11:41:15.694445568', '2011-06-10T11:41:15.750001152'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 2.395e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 237500., 238500., 239500.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:41:15.805556736... * range (range) float32 500.0 1.5e+03 ... 2.385e+05 2.395e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_3- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:41:36.305555968 .....
- standard_name :
- time
array(['2011-06-10T11:41:36.305555968', '2011-06-10T11:41:36.361111552', '2011-06-10T11:41:36.416667136', ..., '2011-06-10T11:41:36.138889216', '2011-06-10T11:41:36.194444800', '2011-06-10T11:41:36.250000384'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 2.395e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 237500., 238500., 239500.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:41:36.305555968... * range (range) float32 500.0 1.5e+03 ... 2.385e+05 2.395e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_4- azimuth: 360
- range: 340
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:42:10.479194112 .....
- standard_name :
- time
array(['2011-06-10T11:42:10.479194112', '2011-06-10T11:42:10.520860928', '2011-06-10T11:42:10.562527744', ..., '2011-06-10T11:42:10.354193920', '2011-06-10T11:42:10.395860736', '2011-06-10T11:42:10.437527296'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.692e+05 1.698e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 168750., 169250., 169750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[122400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 340) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:42:10.479194112... * range (range) float32 250.0 750.0 ... 1.692e+05 1.698e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_5- azimuth: 360
- range: 340
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:42:24.770857472 .....
- standard_name :
- time
array(['2011-06-10T11:42:24.770857472', '2011-06-10T11:42:24.812524288', '2011-06-10T11:42:24.854191104', ..., '2011-06-10T11:42:24.645857280', '2011-06-10T11:42:24.687524096', '2011-06-10T11:42:24.729190912'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.692e+05 1.698e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 168750., 169250., 169750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[122400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 340) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:42:24.770857472... * range (range) float32 250.0 750.0 ... 1.692e+05 1.698e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_6- azimuth: 360
- range: 300
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:42:37.716658432 .....
- standard_name :
- time
array(['2011-06-10T11:42:37.716658432', '2011-06-10T11:42:37.749991680', '2011-06-10T11:42:37.783324928', ..., '2011-06-10T11:42:37.616658432', '2011-06-10T11:42:37.649991680', '2011-06-10T11:42:37.683324928'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.492e+05 1.498e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 148750., 149250., 149750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[108000 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 300) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:42:37.716658432... * range (range) float32 250.0 750.0 ... 1.492e+05 1.498e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_7- azimuth: 360
- range: 300
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:42:49.016659968 .....
- standard_name :
- time
array(['2011-06-10T11:42:49.016659968', '2011-06-10T11:42:49.049993216', '2011-06-10T11:42:49.083326464', ..., '2011-06-10T11:42:48.916659968', '2011-06-10T11:42:48.949993472', '2011-06-10T11:42:48.983326720'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.492e+05 1.498e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 148750., 149250., 149750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[108000 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 300) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:42:49.016659968... * range (range) float32 250.0 750.0 ... 1.492e+05 1.498e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_8- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:42:59.791652096 .....
- standard_name :
- time
array(['2011-06-10T11:42:59.791652096', '2011-06-10T11:42:59.819429888', '2011-06-10T11:42:59.847207424', ..., '2011-06-10T11:42:59.708319232', '2011-06-10T11:42:59.736096768', '2011-06-10T11:42:59.763874560'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.192e+05 1.198e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 118750., 119250., 119750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:42:59.791652096... * range (range) float32 250.0 750.0 ... 1.192e+05 1.198e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_9- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:43:09.541660672 .....
- standard_name :
- time
array(['2011-06-10T11:43:09.541660672', '2011-06-10T11:43:09.569438464', '2011-06-10T11:43:09.597216256', ..., '2011-06-10T11:43:09.458327808', '2011-06-10T11:43:09.486105344', '2011-06-10T11:43:09.513883136'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.192e+05 1.198e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 118750., 119250., 119750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:43:09.541660672... * range (range) float32 250.0 750.0 ... 1.192e+05 1.198e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_10- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:43:29.874966272 .....
- standard_name :
- time
array(['2011-06-10T11:43:29.874966272', '2011-06-10T11:43:29.902743808', '2011-06-10T11:43:29.930521600', ..., '2011-06-10T11:43:29.791633152', '2011-06-10T11:43:29.819410688', '2011-06-10T11:43:29.847188480'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.192e+05 1.198e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 118750., 119250., 119750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:43:29.874966272... * range (range) float32 250.0 750.0 ... 1.192e+05 1.198e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_11- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:43:39.236087296 .....
- standard_name :
- time
array(['2011-06-10T11:43:39.236087296', '2011-06-10T11:43:39.263865088', '2011-06-10T11:43:39.291642624', ..., '2011-06-10T11:43:39.152754432', '2011-06-10T11:43:39.180531968', '2011-06-10T11:43:39.208309760'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.192e+05 1.198e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 118750., 119250., 119750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:43:39.236087296... * range (range) float32 250.0 750.0 ... 1.192e+05 1.198e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_12- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:43:48.763874560 .....
- standard_name :
- time
array(['2011-06-10T11:43:48.763874560', '2011-06-10T11:43:48.791652096', '2011-06-10T11:43:48.819429888', ..., '2011-06-10T11:43:48.680541440', '2011-06-10T11:43:48.708319232', '2011-06-10T11:43:48.736096768'], dtype='datetime64[ns]')
- range(range)float32250.0 750.0 ... 1.192e+05 1.198e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 500.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 250.0
array([ 250., 750., 1250., ..., 118750., 119250., 119750.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:43:48.763874560... * range (range) float32 250.0 750.0 ... 1.192e+05 1.198e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_13- volume_number()int640
array(0)
- platform_type()<U5'fixed'
array('fixed', dtype='<U5')
- instrument_type()<U5'radar'
array('radar', dtype='<U5')
- time_coverage_start()<U20'2011-06-10T11:40:02Z'
array('2011-06-10T11:40:02Z', dtype='<U20')
- time_coverage_end()<U20'2011-06-10T11:43:54Z'
array('2011-06-10T11:43:54Z', dtype='<U20')
- longitude()float324.79
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(4.78997, dtype=float32)
- altitude()float3250.0
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(50., dtype=float32)
- latitude()float3252.95
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(52.95334, dtype=float32)
- Conventions :
- ODIM_H5/V2_0
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- None
- history :
- None
- comment :
- im/exported using xradar
- instrument_name :
- None
Inspect sweep group(s)#
The sweep-groups can be accessed via their respective keys. The dimensions consist of range
and time
with added coordinates azimuth
, elevation
, range
and time
. There will be variables like radar moments (DBZH etc.) and sweep-dependend metadata (like fixed_angle
, sweep_mode
etc.).
[5]:
display(vol["sweep_0"])
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 320) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:40:17.361118208... * range (range) float32 500.0 1.5e+03 ... 3.185e+05 3.195e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
- azimuth: 360
- range: 320
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:40:17.361118208 .....
- standard_name :
- time
array(['2011-06-10T11:40:17.361118208', '2011-06-10T11:40:17.416673792', '2011-06-10T11:40:17.472229376', ..., '2011-06-10T11:40:17.194451456', '2011-06-10T11:40:17.250007040', '2011-06-10T11:40:17.305562624'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 3.195e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 317500., 318500., 319500.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[115200 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
Goereferencing#
[6]:
swp = vol["sweep_0"].ds
swp = swp.assign_coords(sweep_mode=swp.sweep_mode)
swp = swp.pipe(wrl.georef.georeference_dataset)
Plotting#
[7]:
swp.DBZH.plot.pcolormesh(x="x", y="y")
pl.gca().set_aspect("equal")

[8]:
fig = pl.figure(figsize=(10, 10))
swp.DBZH.wrl.vis.plot(proj="cg", fig=fig)
[8]:
<matplotlib.collections.QuadMesh at 0x7f0b7008c8d0>

[9]:
import cartopy
import cartopy.crs as ccrs
import cartopy.feature as cfeature
map_trans = ccrs.AzimuthalEquidistant(
central_latitude=swp.latitude.values, central_longitude=swp.longitude.values
)
[10]:
map_proj = ccrs.AzimuthalEquidistant(
central_latitude=swp.latitude.values, central_longitude=swp.longitude.values
)
pm = swp.DBZH.wrl.vis.plot(proj=map_proj)
ax = pl.gca()
ax.gridlines(crs=map_proj)
print(ax)
< GeoAxes: +proj=aeqd +ellps=WGS84 +lon_0=4.7899699211120605 +lat_0=52.953338623046875 +x_0=0.0 +y_0=0.0 +no_defs +type=crs >

[11]:
map_proj = ccrs.Mercator(central_longitude=swp.longitude.values)
fig = pl.figure(figsize=(10, 8))
ax = fig.add_subplot(111, projection=map_proj)
pm = swp.DBZH.wrl.vis.plot(ax=ax)
ax.gridlines(draw_labels=True)
[11]:
<cartopy.mpl.gridliner.Gridliner at 0x7f0b726b79d0>

[12]:
import cartopy.feature as cfeature
def plot_borders(ax):
borders = cfeature.NaturalEarthFeature(
category="physical", name="coastline", scale="10m", facecolor="none"
)
ax.add_feature(borders, edgecolor="black", lw=2, zorder=4)
map_proj = ccrs.Mercator(central_longitude=swp.longitude.values)
fig = pl.figure(figsize=(10, 8))
ax = fig.add_subplot(111, projection=map_proj)
DBZH = swp.DBZH
pm = DBZH.where(DBZH > 0).wrl.vis.plot(ax=ax)
plot_borders(ax)
ax.gridlines(draw_labels=True)
[12]:
<cartopy.mpl.gridliner.Gridliner at 0x7f0b62e27cd0>

[13]:
import matplotlib.path as mpath
theta = np.linspace(0, 2 * np.pi, 100)
center, radius = [0.5, 0.5], 0.5
verts = np.vstack([np.sin(theta), np.cos(theta)]).T
circle = mpath.Path(verts * radius + center)
map_proj = ccrs.AzimuthalEquidistant(
central_latitude=swp.latitude.values,
central_longitude=swp.longitude.values,
)
fig = pl.figure(figsize=(10, 8))
ax = fig.add_subplot(111, projection=map_proj)
ax.set_boundary(circle, transform=ax.transAxes)
pm = swp.DBZH.wrl.vis.plot(proj=map_proj, ax=ax)
ax = pl.gca()
ax.gridlines(crs=map_proj)
[13]:
<cartopy.mpl.gridliner.Gridliner at 0x7f0b727934d0>

[14]:
fig = pl.figure(figsize=(10, 8))
proj = ccrs.AzimuthalEquidistant(
central_latitude=swp.latitude.values, central_longitude=swp.longitude.values
)
ax = fig.add_subplot(111, projection=proj)
pm = swp.DBZH.wrl.vis.plot(ax=ax)
ax.gridlines()
[14]:
<cartopy.mpl.gridliner.Gridliner at 0x7f0b72df5510>

[15]:
swp.DBZH.wrl.vis.plot()
[15]:
<matplotlib.collections.QuadMesh at 0x7f0b702e9210>

Inspect radar moments#
The DataArrays can be accessed by key or by attribute. Each DataArray has dimensions and coordinates of it’s parent dataset. There are attributes connected which are defined by ODIM_H5 standard.
[16]:
display(swp.DBZH)
<xarray.DataArray 'DBZH' (azimuth: 360, range: 320)> array([[ 22. , 17. , -8. , ..., -31.5, -31.5, -31.5], [ 24. , 24.5, -9. , ..., -31.5, -31.5, -31.5], [ 35.5, 42. , 12. , ..., -31.5, -31.5, -31.5], ..., [ 23. , 14. , -13. , ..., -31.5, -31.5, -31.5], [ 23. , 14. , -9. , ..., -31.5, -31.5, -31.5], [ 22. , 18.5, -11.5, ..., -31.5, -31.5, -31.5]], dtype=float32) Coordinates: (12/14) * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 356.5 357.5 358.5 359.5 elevation (azimuth) float32 0.3 0.3 0.3 0.3 0.3 ... 0.3 0.3 0.3 0.3 0.3 time (azimuth) datetime64[ns] 2011-06-10T11:40:17.361118208 ... 20... * range (range) float32 500.0 1.5e+03 2.5e+03 ... 3.185e+05 3.195e+05 sweep_mode <U20 'azimuth_surveillance' longitude float32 4.79 ... ... x (azimuth, range) float32 4.363 13.09 ... -2.777e+03 -2.786e+03 y (azimuth, range) float32 500.0 1.5e+03 ... 3.183e+05 3.193e+05 z (azimuth, range) float32 53.0 58.0 64.0 ... 7.691e+03 7.734e+03 gr (azimuth, range) float32 500.0 1.5e+03 ... 3.183e+05 3.193e+05 rays (azimuth, range) float32 0.5 0.5 0.5 0.5 ... 359.5 359.5 359.5 bins (azimuth, range) float32 500.0 1.5e+03 ... 3.185e+05 3.195e+05 Attributes: _Undetect: 0.0 units: dBZ long_name: Equivalent reflectivity factor H standard_name: radar_equivalent_reflectivity_factor_h
- azimuth: 360
- range: 320
- 22.0 17.0 -8.0 23.0 -7.5 44.0 ... -31.5 -31.5 -31.5 -31.5 -31.5 -31.5
array([[ 22. , 17. , -8. , ..., -31.5, -31.5, -31.5], [ 24. , 24.5, -9. , ..., -31.5, -31.5, -31.5], [ 35.5, 42. , 12. , ..., -31.5, -31.5, -31.5], ..., [ 23. , 14. , -13. , ..., -31.5, -31.5, -31.5], [ 23. , 14. , -9. , ..., -31.5, -31.5, -31.5], [ 22. , 18.5, -11.5, ..., -31.5, -31.5, -31.5]], dtype=float32)
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float320.3 0.3 0.3 0.3 ... 0.3 0.3 0.3 0.3
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([0.3, 0.3, 0.3, ..., 0.3, 0.3, 0.3], dtype=float32)
- time(azimuth)datetime64[ns]2011-06-10T11:40:17.361118208 .....
- standard_name :
- time
array(['2011-06-10T11:40:17.361118208', '2011-06-10T11:40:17.416673792', '2011-06-10T11:40:17.472229376', ..., '2011-06-10T11:40:17.194451456', '2011-06-10T11:40:17.250007040', '2011-06-10T11:40:17.305562624'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 3.195e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 317500., 318500., 319500.], dtype=float32)
- sweep_mode()<U20'azimuth_surveillance'
array('azimuth_surveillance', dtype='<U20')
- longitude()float324.79
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(4.78997, dtype=float32)
- latitude()float3252.95
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(52.95334, dtype=float32)
- altitude()float3250.0
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(50., dtype=float32)
- x(azimuth, range)float324.363 13.09 ... -2.786e+03
array([[ 4.36319351e+00, 1.30895739e+01, 2.18159409e+01, ..., 2.76879565e+03, 2.77750610e+03, 2.78621680e+03], [ 1.30882359e+01, 3.92646866e+01, 6.54411011e+01, ..., 8.30553320e+03, 8.33166211e+03, 8.35779199e+03], [ 2.18092918e+01, 6.54278412e+01, 1.09046326e+02, ..., 1.38397412e+04, 1.38832803e+04, 1.39268203e+04], ..., [-2.18093681e+01, -6.54280701e+01, -1.09046707e+02, ..., -1.38397900e+04, -1.38833291e+04, -1.39268691e+04], [-1.30881338e+01, -3.92643776e+01, -6.54405899e+01, ..., -8.30546875e+03, -8.33159668e+03, -8.35772656e+03], [-4.36314964e+00, -1.30894423e+01, -2.18157215e+01, ..., -2.76876782e+03, -2.77747827e+03, -2.78618896e+03]], dtype=float32)
- y(azimuth, range)float32500.0 1.5e+03 ... 3.193e+05
array([[ 499.97098, 1499.9121 , 2499.8518 , ..., 317271.6 , 318269.72 , 319267.88 ], [ 499.8187 , 1499.4552 , 2499.0903 , ..., 317174.97 , 318172.78 , 319170.62 ], [ 499.51416, 1498.5416 , 2497.5676 , ..., 316981.72 , 317978.9 , 318976.16 ], ..., [ 499.51416, 1498.5416 , 2497.5676 , ..., 316981.72 , 317978.9 , 318976.16 ], [ 499.8187 , 1499.4552 , 2499.0903 , ..., 317174.97 , 318172.78 , 319170.62 ], [ 499.97098, 1499.9121 , 2499.8518 , ..., 317271.6 , 318269.72 , 319267.88 ]], dtype=float32)
- z(azimuth, range)float3253.0 58.0 ... 7.691e+03 7.734e+03
array([[ 53., 58., 64., ..., 7648., 7691., 7734.], [ 53., 58., 64., ..., 7648., 7691., 7734.], [ 53., 58., 64., ..., 7648., 7691., 7734.], ..., [ 53., 58., 64., ..., 7648., 7691., 7734.], [ 53., 58., 64., ..., 7648., 7691., 7734.], [ 53., 58., 64., ..., 7648., 7691., 7734.]], dtype=float32)
- gr(azimuth, range)float32500.0 1.5e+03 ... 3.193e+05
array([[ 499.99002, 1499.9691 , 2499.947 , ..., 317283.7 , 318281.84 , 319280.03 ], [ 499.99002, 1499.9692 , 2499.947 , ..., 317283.72 , 318281.84 , 319280.03 ], [ 499.99002, 1499.9692 , 2499.947 , ..., 317283.72 , 318281.84 , 319280.03 ], ..., [ 499.99005, 1499.9692 , 2499.947 , ..., 317283.72 , 318281.84 , 319280.03 ], [ 499.99002, 1499.9692 , 2499.947 , ..., 317283.72 , 318281.84 , 319280.03 ], [ 499.99002, 1499.9691 , 2499.947 , ..., 317283.7 , 318281.84 , 319280.03 ]], dtype=float32)
- rays(azimuth, range)float320.5 0.5 0.5 ... 359.5 359.5 359.5
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5], [ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5], [ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5], ..., [357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5], [358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5], [359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], dtype=float32)
- bins(azimuth, range)float32500.0 1.5e+03 ... 3.195e+05
array([[ 500., 1500., 2500., ..., 317500., 318500., 319500.], [ 500., 1500., 2500., ..., 317500., 318500., 319500.], [ 500., 1500., 2500., ..., 317500., 318500., 319500.], ..., [ 500., 1500., 2500., ..., 317500., 318500., 319500.], [ 500., 1500., 2500., ..., 317500., 318500., 319500.], [ 500., 1500., 2500., ..., 317500., 318500., 319500.]], dtype=float32)
- azimuthPandasIndex
PandasIndex(Float64Index([ 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='float64', name='azimuth', length=360))
- rangePandasIndex
PandasIndex(Float64Index([ 500.0, 1500.0, 2500.0, 3500.0, 4500.0, 5500.0, 6500.0, 7500.0, 8500.0, 9500.0, ... 310500.0, 311500.0, 312500.0, 313500.0, 314500.0, 315500.0, 316500.0, 317500.0, 318500.0, 319500.0], dtype='float64', name='range', length=320))
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
Create simple plot#
Using xarray features a simple plot can be created like this. Note the sortby('time')
method, which sorts the radials by time.
[17]:
swp.DBZH.sortby("time").plot(x="range", y="time", add_labels=False)
[17]:
<matplotlib.collections.QuadMesh at 0x7f0b702cbe50>

[18]:
fig = pl.figure(figsize=(5, 5))
pm = swp.DBZH.wrl.vis.plot(proj={"latmin": 33e3}, fig=fig)

Mask some values#
[19]:
swp["DBZH"] = swp["DBZH"].where(swp["DBZH"] >= 0)
swp["DBZH"].plot()
[19]:
<matplotlib.collections.QuadMesh at 0x7f0b62d27f10>

Export to ODIM and CfRadial2#
[20]:
xd.io.to_odim(vol.copy(), "knmi_odim.h5")
[21]:
vol["sweep_0"].to_dataset().swap_dims(azimuth="time")
[21]:
<xarray.Dataset> Dimensions: (time: 360, range: 320) Coordinates: azimuth (time) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (time) float32 ... * time (time) datetime64[ns] 2011-06-10T11:40:17.361118208 ..... * range (range) float32 500.0 1.5e+03 ... 3.185e+05 3.195e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (time, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
- time: 360
- range: 320
- azimuth(time)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(time)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(time)datetime64[ns]2011-06-10T11:40:17.361118208 .....
- standard_name :
- time
array(['2011-06-10T11:40:17.361118208', '2011-06-10T11:40:17.416673792', '2011-06-10T11:40:17.472229376', ..., '2011-06-10T11:40:17.194451456', '2011-06-10T11:40:17.250007040', '2011-06-10T11:40:17.305562624'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 3.195e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 317500., 318500., 319500.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(time, range)float32...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[115200 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
- timePandasIndex
PandasIndex(DatetimeIndex(['2011-06-10 11:40:17.361118208', '2011-06-10 11:40:17.416673792', '2011-06-10 11:40:17.472229376', '2011-06-10 11:40:17.527784960', '2011-06-10 11:40:17.583340544', '2011-06-10 11:40:17.638896128', '2011-06-10 11:40:17.694451712', '2011-06-10 11:40:17.750007296', '2011-06-10 11:40:17.805562880', '2011-06-10 11:40:17.861118464', ... '2011-06-10 11:40:16.805562624', '2011-06-10 11:40:16.861117952', '2011-06-10 11:40:16.916673536', '2011-06-10 11:40:16.972229120', '2011-06-10 11:40:17.027784704', '2011-06-10 11:40:17.083340288', '2011-06-10 11:40:17.138895872', '2011-06-10 11:40:17.194451456', '2011-06-10 11:40:17.250007040', '2011-06-10 11:40:17.305562624'], dtype='datetime64[ns]', name='time', length=360, freq=None))
- rangePandasIndex
PandasIndex(Float64Index([ 500.0, 1500.0, 2500.0, 3500.0, 4500.0, 5500.0, 6500.0, 7500.0, 8500.0, 9500.0, ... 310500.0, 311500.0, 312500.0, 313500.0, 314500.0, 315500.0, 316500.0, 317500.0, 318500.0, 319500.0], dtype='float64', name='range', length=320))
[22]:
xd.io.to_cfradial2(vol.copy(), "knmi_odim_as_cfradial2.nc")
Import again#
[23]:
vola = xd.io.open_odim_datatree("knmi_odim.h5")
display(vola)
<xarray.DatasetView> Dimensions: () Data variables: volume_number int64 0 platform_type <U5 'fixed' instrument_type <U5 'radar' time_coverage_start <U20 '2011-06-10T11:40:02Z' time_coverage_end <U20 '2011-06-10T11:43:54Z' longitude float32 4.79 altitude float32 50.0 latitude float32 52.95 Attributes: Conventions: ODIM_H5/V2_2 version: None title: None institution: None references: None source: None history: None comment: im/exported using xradar instrument_name: None
- azimuth: 360
- range: 320
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:40:17.361118208 .....
- standard_name :
- time
array(['2011-06-10T11:40:17.361118208', '2011-06-10T11:40:17.416673792', '2011-06-10T11:40:17.472229376', ..., '2011-06-10T11:40:17.194451456', '2011-06-10T11:40:17.250007040', '2011-06-10T11:40:17.305562624'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 3.195e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 317500., 318500., 319500.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 255.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[115200 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 320) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:40:17.361118208... * range (range) float32 500.0 1.5e+03 ... 3.185e+05 3.195e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_0- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:40:36.805558272 .....
- standard_name :
- time
array(['2011-06-10T11:40:36.805558272', '2011-06-10T11:40:36.861113856', '2011-06-10T11:40:36.916669440', ..., '2011-06-10T11:40:36.638891520', '2011-06-10T11:40:36.694447104', '2011-06-10T11:40:36.750002688'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 2.395e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 237500., 238500., 239500.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 255.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:40:36.805558272... * range (range) float32 500.0 1.5e+03 ... 2.385e+05 2.395e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_1- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:40:56.305557504 .....
- standard_name :
- time
array(['2011-06-10T11:40:56.305557504', '2011-06-10T11:40:56.361113088', '2011-06-10T11:40:56.416668672', ..., '2011-06-10T11:40:56.138890752', '2011-06-10T11:40:56.194446336', '2011-06-10T11:40:56.250001920'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 2.395e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 237500., 238500., 239500.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 255.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:40:56.305557504... * range (range) float32 500.0 1.5e+03 ... 2.385e+05 2.395e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_2- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:41:15.805556736 .....
- standard_name :
- time
array(['2011-06-10T11:41:15.805556736', '2011-06-10T11:41:15.861112320', '2011-06-10T11:41:15.916667904', ..., '2011-06-10T11:41:15.638889984', '2011-06-10T11:41:15.694445568', '2011-06-10T11:41:15.750001152'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 2.395e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 237500., 238500., 239500.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 255.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:41:15.805556736... * range (range) float32 500.0 1.5e+03 ... 2.385e+05 2.395e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_3- azimuth: 360
- range: 240
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2011-06-10T11:41:36.305555968 .....
- standard_name :
- time
array(['2011-06-10T11:41:36.305555968', '2011-06-10T11:41:36.361111552', '2011-06-10T11:41:36.416667136', ..., '2011-06-10T11:41:36.138889216', '2011-06-10T11:41:36.194444800', '2011-06-10T11:41:36.250000384'], dtype='datetime64[ns]')
- range(range)float32500.0 1.5e+03 ... 2.395e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 1000.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 500.0
array([ 500., 1500., 2500., ..., 237500., 238500., 239500.], dtype=float32)
- longitude()float32...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float32]
- latitude()float32...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float32]
- altitude()float32...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float32]
- DBZH(azimuth, range)float32...
- _Undetect :
- 255.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float32]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float32...
[1 values with dtype=float32]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2011-06-10T11:41:36.305555968... * range (range) float32 500.0 1.5e+03 ... 2.385e+05 2.395e+05 longitude float32 ... latitude float32 ... altitude float32 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float32 ...
sweep_4