xarray Rainbow5 backend#
In this example, we read Rainbow5 data files using the xradar rainbow
xarray backend.
[1]:
import glob
import gzip
import io
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 Rainbow5 Volume Data#
[2]:
fpath = "rainbow/2013051000000600dBZ.vol"
f = wrl.util.get_wradlib_data_file(fpath)
vol = xd.io.open_rainbow_datatree(f, reindex_angle=False)
Downloading file 'rainbow/2013051000000600dBZ.vol' from 'https://github.com/wradlib/wradlib-data/raw/pooch/data/rainbow/2013051000000600dBZ.vol' 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 '2013-05-10T00:00:06Z' time_coverage_end <U20 '2013-05-10T00:03:14Z' longitude float64 6.38 altitude float64 116.7 latitude float64 50.86 Attributes: Conventions: None version: None title: None institution: None references: None source: None history: None comment: im/exported using xradar instrument_name: None
- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5492 1.505 2.549 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.549194, 1.505005, 2.548706, ..., 357.516968, 358.505737, 359.505493])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:00:15.530303500 .....
- standard_name :
- time
array(['2013-05-10T00:00:15.530303500', '2013-05-10T00:00:15.560606500', '2013-05-10T00:00:15.590909500', ..., '2013-05-10T00:00:15.439393500', '2013-05-10T00:00:15.469696500', '2013-05-10T00:00:15.500000000'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5492 1.505 2.549 ... 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:00:15.530303500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_0- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5492 1.516 2.505 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.549194, 1.515991, 2.504761, ..., 357.505981, 358.500244, 359.505493])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:00:25.651515500 .....
- standard_name :
- time
array(['2013-05-10T00:00:25.651515500', '2013-05-10T00:00:25.681818500', '2013-05-10T00:00:25.712121500', ..., '2013-05-10T00:00:25.560606500', '2013-05-10T00:00:25.590909500', '2013-05-10T00:00:25.621212500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5492 1.516 2.505 ... 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:00:25.651515500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_1- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5052 1.505 2.505 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.505249, 1.505005, 2.504761, ..., 357.500488, 358.544189, 359.510986])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:00:36.681818500 .....
- standard_name :
- time
array(['2013-05-10T00:00:36.681818500', '2013-05-10T00:00:36.712121500', '2013-05-10T00:00:36.742424500', ..., '2013-05-10T00:00:36.590909500', '2013-05-10T00:00:36.621212500', '2013-05-10T00:00:36.651515500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5052 1.505 2.505 ... 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:00:36.681818500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_2- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5052 1.521 2.505 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.505249, 1.521484, 2.504761, ..., 357.522461, 358.516724, 359.510986])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:00:46.803030500 .....
- standard_name :
- time
array(['2013-05-10T00:00:46.803030500', '2013-05-10T00:00:46.833333500', '2013-05-10T00:00:46.863636500', ..., '2013-05-10T00:00:46.712121500', '2013-05-10T00:00:46.742424500', '2013-05-10T00:00:46.772727500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5052 1.521 2.505 ... 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:00:46.803030500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_3- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5217 1.516 2.51 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.521729, 1.515991, 2.510254, ..., 357.505981, 358.500244, 359.5 ])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:01:08.803030500 .....
- standard_name :
- time
array(['2013-05-10T00:01:08.803030500', '2013-05-10T00:01:08.833333500', '2013-05-10T00:01:08.863636500', ..., '2013-05-10T00:01:08.712121500', '2013-05-10T00:01:08.742424500', '2013-05-10T00:01:08.772727500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5217 1.516 2.51 ... 357.5 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:01:08.803030500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_4- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5052 1.516 2.51 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.505249, 1.515991, 2.510254, ..., 357.511475, 358.51123 , 359.521973])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:01:19.893939500 .....
- standard_name :
- time
array(['2013-05-10T00:01:19.893939500', '2013-05-10T00:01:19.924242500', '2013-05-10T00:01:19.954545500', ..., '2013-05-10T00:01:19.803030500', '2013-05-10T00:01:19.833333500', '2013-05-10T00:01:19.863636500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5052 1.516 2.51 ... 357.5 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:01:19.893939500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_5- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5437 1.505 2.532 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.543701, 1.505005, 2.532227, ..., 357.533447, 358.544189, 359.5 ])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:01:31.015151500 .....
- standard_name :
- time
array(['2013-05-10T00:01:31.015151500', '2013-05-10T00:01:31.045454500', '2013-05-10T00:01:31.075757500', ..., '2013-05-10T00:01:30.924242500', '2013-05-10T00:01:30.954545500', '2013-05-10T00:01:30.984848500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5437 1.505 2.532 ... 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:01:31.015151500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_6- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5052 1.51 2.505 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.505249, 1.510498, 2.504761, ..., 357.511475, 358.544189, 359.510986])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:01:42.106060500 .....
- standard_name :
- time
array(['2013-05-10T00:01:42.106060500', '2013-05-10T00:01:42.136363500', '2013-05-10T00:01:42.166666500', ..., '2013-05-10T00:01:52.924242500', '2013-05-10T00:01:42.045454500', '2013-05-10T00:01:42.075757500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5052 1.51 2.505 ... 357.5 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:01:42.106060500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_7- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5437 1.51 2.538 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.543701, 1.510498, 2.53772 , ..., 357.533447, 358.544189, 359.5 ])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:02:03.136363500 .....
- standard_name :
- time
array(['2013-05-10T00:02:03.136363500', '2013-05-10T00:02:03.166666500', '2013-05-10T00:02:03.196969500', ..., '2013-05-10T00:02:03.045454500', '2013-05-10T00:02:03.075757500', '2013-05-10T00:02:03.106060500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5437 1.51 2.538 ... 357.5 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:02:03.136363500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_8- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5162 1.51 2.505 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.516235, 1.510498, 2.504761, ..., 357.505981, 358.52771 , 359.521973])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:02:14.227272500 .....
- standard_name :
- time
array(['2013-05-10T00:02:14.227272500', '2013-05-10T00:02:14.257575500', '2013-05-10T00:02:14.287878500', ..., '2013-05-10T00:02:14.136363500', '2013-05-10T00:02:14.166666500', '2013-05-10T00:02:14.196969500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5162 1.51 2.505 ... 357.5 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:02:14.227272500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_9- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5107 1.516 2.505 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.510742, 1.515991, 2.504761, ..., 357.511475, 358.51123 , 359.510986])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:02:25.348484500 .....
- standard_name :
- time
array(['2013-05-10T00:02:25.348484500', '2013-05-10T00:02:25.378787500', '2013-05-10T00:02:25.409090500', ..., '2013-05-10T00:02:25.257575500', '2013-05-10T00:02:25.287878500', '2013-05-10T00:02:25.318181500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5107 1.516 2.505 ... 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:02:25.348484500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_10- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5437 1.51 2.538 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.543701, 1.510498, 2.53772 , ..., 357.505981, 358.505737, 359.5 ])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:02:47.348484500 .....
- standard_name :
- time
array(['2013-05-10T00:02:47.348484500', '2013-05-10T00:02:47.378787500', '2013-05-10T00:02:47.409090500', ..., '2013-05-10T00:02:47.257575500', '2013-05-10T00:02:47.287878500', '2013-05-10T00:02:47.318181500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5437 1.51 2.538 ... 357.5 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:02:47.348484500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_11- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5052 1.521 2.51 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.505249, 1.521484, 2.510254, ..., 357.511475, 358.505737, 359.510986])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:02:58.439393500 .....
- standard_name :
- time
array(['2013-05-10T00:02:58.439393500', '2013-05-10T00:02:58.469696500', '2013-05-10T00:02:58.500000000', ..., '2013-05-10T00:02:58.348484500', '2013-05-10T00:02:58.378787500', '2013-05-10T00:02:58.409090500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5052 1.521 2.51 ... 357.5 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:02:58.439393500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_12- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5052 1.521 2.516 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.505249, 1.521484, 2.515747, ..., 357.516968, 358.505737, 359.510986])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:03:08.287878499 .....
- standard_name :
- time
array(['2013-05-10T00:03:08.287878499', '2013-05-10T00:03:08.318181500', '2013-05-10T00:03:08.348484500', ..., '2013-05-10T00:03:08.196969500', '2013-05-10T00:03:08.227272500', '2013-05-10T00:03:08.257575499'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5052 1.521 2.516 ... 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:03:08.287878499... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
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'2013-05-10T00:00:06Z'
array('2013-05-10T00:00:06Z', dtype='<U20')
- time_coverage_end()<U20'2013-05-10T00:03:14Z'
array('2013-05-10T00:03:14Z', dtype='<U20')
- longitude()float646.38
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.379967)
- altitude()float64116.7
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(116.7)
- latitude()float6450.86
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(50.856633)
- Conventions :
- None
- 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 '2013-05-10T00:00:06Z' time_coverage_end <U20 '2013-05-10T00:03:14Z' longitude float64 6.38 altitude float64 116.7 latitude float64 50.86 Attributes: Conventions: None version: None title: None institution: None references: None source: None history: None comment: im/exported using xradar instrument_name: None
- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5492 1.505 2.549 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.549194, 1.505005, 2.548706, ..., 357.516968, 358.505737, 359.505493])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:00:15.530303500 .....
- standard_name :
- time
array(['2013-05-10T00:00:15.530303500', '2013-05-10T00:00:15.560606500', '2013-05-10T00:00:15.590909500', ..., '2013-05-10T00:00:15.439393500', '2013-05-10T00:00:15.469696500', '2013-05-10T00:00:15.500000000'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5492 1.505 2.549 ... 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:00:15.530303500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_0- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5492 1.516 2.505 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.549194, 1.515991, 2.504761, ..., 357.505981, 358.500244, 359.505493])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:00:25.651515500 .....
- standard_name :
- time
array(['2013-05-10T00:00:25.651515500', '2013-05-10T00:00:25.681818500', '2013-05-10T00:00:25.712121500', ..., '2013-05-10T00:00:25.560606500', '2013-05-10T00:00:25.590909500', '2013-05-10T00:00:25.621212500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5492 1.516 2.505 ... 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:00:25.651515500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_1- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5052 1.505 2.505 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.505249, 1.505005, 2.504761, ..., 357.500488, 358.544189, 359.510986])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:00:36.681818500 .....
- standard_name :
- time
array(['2013-05-10T00:00:36.681818500', '2013-05-10T00:00:36.712121500', '2013-05-10T00:00:36.742424500', ..., '2013-05-10T00:00:36.590909500', '2013-05-10T00:00:36.621212500', '2013-05-10T00:00:36.651515500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5052 1.505 2.505 ... 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:00:36.681818500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_2- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5052 1.521 2.505 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.505249, 1.521484, 2.504761, ..., 357.522461, 358.516724, 359.510986])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:00:46.803030500 .....
- standard_name :
- time
array(['2013-05-10T00:00:46.803030500', '2013-05-10T00:00:46.833333500', '2013-05-10T00:00:46.863636500', ..., '2013-05-10T00:00:46.712121500', '2013-05-10T00:00:46.742424500', '2013-05-10T00:00:46.772727500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5052 1.521 2.505 ... 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:00:46.803030500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_3- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5217 1.516 2.51 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.521729, 1.515991, 2.510254, ..., 357.505981, 358.500244, 359.5 ])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:01:08.803030500 .....
- standard_name :
- time
array(['2013-05-10T00:01:08.803030500', '2013-05-10T00:01:08.833333500', '2013-05-10T00:01:08.863636500', ..., '2013-05-10T00:01:08.712121500', '2013-05-10T00:01:08.742424500', '2013-05-10T00:01:08.772727500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5217 1.516 2.51 ... 357.5 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:01:08.803030500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_4- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5052 1.516 2.51 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.505249, 1.515991, 2.510254, ..., 357.511475, 358.51123 , 359.521973])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:01:19.893939500 .....
- standard_name :
- time
array(['2013-05-10T00:01:19.893939500', '2013-05-10T00:01:19.924242500', '2013-05-10T00:01:19.954545500', ..., '2013-05-10T00:01:19.803030500', '2013-05-10T00:01:19.833333500', '2013-05-10T00:01:19.863636500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5052 1.516 2.51 ... 357.5 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:01:19.893939500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_5- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5437 1.505 2.532 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.543701, 1.505005, 2.532227, ..., 357.533447, 358.544189, 359.5 ])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:01:31.015151500 .....
- standard_name :
- time
array(['2013-05-10T00:01:31.015151500', '2013-05-10T00:01:31.045454500', '2013-05-10T00:01:31.075757500', ..., '2013-05-10T00:01:30.924242500', '2013-05-10T00:01:30.954545500', '2013-05-10T00:01:30.984848500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5437 1.505 2.532 ... 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:01:31.015151500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_6- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5052 1.51 2.505 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.505249, 1.510498, 2.504761, ..., 357.511475, 358.544189, 359.510986])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:01:42.106060500 .....
- standard_name :
- time
array(['2013-05-10T00:01:42.106060500', '2013-05-10T00:01:42.136363500', '2013-05-10T00:01:42.166666500', ..., '2013-05-10T00:01:52.924242500', '2013-05-10T00:01:42.045454500', '2013-05-10T00:01:42.075757500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5052 1.51 2.505 ... 357.5 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:01:42.106060500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_7- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5437 1.51 2.538 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.543701, 1.510498, 2.53772 , ..., 357.533447, 358.544189, 359.5 ])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:02:03.136363500 .....
- standard_name :
- time
array(['2013-05-10T00:02:03.136363500', '2013-05-10T00:02:03.166666500', '2013-05-10T00:02:03.196969500', ..., '2013-05-10T00:02:03.045454500', '2013-05-10T00:02:03.075757500', '2013-05-10T00:02:03.106060500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5437 1.51 2.538 ... 357.5 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:02:03.136363500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_8- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5162 1.51 2.505 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.516235, 1.510498, 2.504761, ..., 357.505981, 358.52771 , 359.521973])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:02:14.227272500 .....
- standard_name :
- time
array(['2013-05-10T00:02:14.227272500', '2013-05-10T00:02:14.257575500', '2013-05-10T00:02:14.287878500', ..., '2013-05-10T00:02:14.136363500', '2013-05-10T00:02:14.166666500', '2013-05-10T00:02:14.196969500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5162 1.51 2.505 ... 357.5 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:02:14.227272500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_9- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5107 1.516 2.505 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.510742, 1.515991, 2.504761, ..., 357.511475, 358.51123 , 359.510986])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:02:25.348484500 .....
- standard_name :
- time
array(['2013-05-10T00:02:25.348484500', '2013-05-10T00:02:25.378787500', '2013-05-10T00:02:25.409090500', ..., '2013-05-10T00:02:25.257575500', '2013-05-10T00:02:25.287878500', '2013-05-10T00:02:25.318181500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5107 1.516 2.505 ... 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:02:25.348484500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_10- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5437 1.51 2.538 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.543701, 1.510498, 2.53772 , ..., 357.505981, 358.505737, 359.5 ])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:02:47.348484500 .....
- standard_name :
- time
array(['2013-05-10T00:02:47.348484500', '2013-05-10T00:02:47.378787500', '2013-05-10T00:02:47.409090500', ..., '2013-05-10T00:02:47.257575500', '2013-05-10T00:02:47.287878500', '2013-05-10T00:02:47.318181500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5437 1.51 2.538 ... 357.5 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:02:47.348484500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_11- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5052 1.521 2.51 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.505249, 1.521484, 2.510254, ..., 357.511475, 358.505737, 359.510986])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:02:58.439393500 .....
- standard_name :
- time
array(['2013-05-10T00:02:58.439393500', '2013-05-10T00:02:58.469696500', '2013-05-10T00:02:58.500000000', ..., '2013-05-10T00:02:58.348484500', '2013-05-10T00:02:58.378787500', '2013-05-10T00:02:58.409090500'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5052 1.521 2.51 ... 357.5 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:02:58.439393500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_12- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5052 1.521 2.516 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.505249, 1.521484, 2.515747, ..., 357.516968, 358.505737, 359.510986])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:03:08.287878499 .....
- standard_name :
- time
array(['2013-05-10T00:03:08.287878499', '2013-05-10T00:03:08.318181500', '2013-05-10T00:03:08.348484500', ..., '2013-05-10T00:03:08.196969500', '2013-05-10T00:03:08.227272500', '2013-05-10T00:03:08.257575499'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5052 1.521 2.516 ... 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:03:08.287878499... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
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'2013-05-10T00:00:06Z'
array('2013-05-10T00:00:06Z', dtype='<U20')
- time_coverage_end()<U20'2013-05-10T00:03:14Z'
array('2013-05-10T00:03:14Z', dtype='<U20')
- longitude()float646.38
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.379967)
- altitude()float64116.7
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(116.7)
- latitude()float6450.86
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(50.856633)
- Conventions :
- None
- 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: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5492 1.505 2.549 ... 358.5 359.5 elevation (azimuth) float64 ... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:00:15.530303500... longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5492 1.505 2.549 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.549194, 1.505005, 2.548706, ..., 357.516968, 358.505737, 359.505493])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:00:15.530303500 .....
- standard_name :
- time
array(['2013-05-10T00:00:15.530303500', '2013-05-10T00:00:15.560606500', '2013-05-10T00:00:15.590909500', ..., '2013-05-10T00:00:15.439393500', '2013-05-10T00:00:15.469696500', '2013-05-10T00:00:15.500000000'], dtype='datetime64[ns]')
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
Goereferencing#
[6]:
swp = vol["sweep_0"].ds.copy()
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 0x7f589ed297d0>

[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=6.379967 +lat_0=50.856633 +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 0x7f589ec6cd90>

[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 0x7f589ebefe10>

[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 0x7f589ebedf50>

[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 0x7f589ea14690>

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

Inspect radar moments#
The DataArrays can be accessed by key or by attribute. Each DataArray has dimensions and coordinates of it’s parent dataset.
[16]:
display(swp.DBZH)
<xarray.DataArray 'DBZH' (azimuth: 361, range: 400)> array([[24.5, 21. , 1.5, ..., nan, nan, nan], [25.5, 22.5, 0. , ..., nan, nan, nan], [25.5, 22. , -3. , ..., nan, nan, nan], ..., [24. , 30. , -5.5, ..., nan, nan, nan], [25.5, 29.5, -5.5, ..., nan, nan, nan], [24.5, 23. , 22. , ..., nan, nan, nan]], dtype=float32) Coordinates: (12/14) * azimuth (azimuth) float64 0.5492 1.505 2.549 3.516 ... 357.5 358.5 359.5 elevation (azimuth) float64 0.6 0.6 0.6 0.6 0.6 ... 0.6 0.6 0.6 0.6 0.6 * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 time (azimuth) datetime64[ns] 2013-05-10T00:00:15.530303500 ... 20... sweep_mode <U20 'azimuth_surveillance' longitude float64 6.38 ... ... x (azimuth, range) float64 1.198 3.594 5.99 ... -859.6 -861.8 y (azimuth, range) float64 125.0 375.0 ... 9.96e+04 9.985e+04 z (azimuth, range) float64 118.0 120.6 ... 1.744e+03 1.75e+03 gr (azimuth, range) float64 124.8 374.7 ... 9.96e+04 9.985e+04 rays (azimuth, range) float64 0.5492 0.5492 0.5492 ... 359.5 359.5 bins (azimuth, range) float32 125.0 375.0 ... 9.962e+04 9.988e+04 Attributes: long_name: Equivalent reflectivity factor H units: dBZ standard_name: radar_equivalent_reflectivity_factor_h
- azimuth: 361
- range: 400
- 24.5 21.0 1.5 -28.0 -4.0 -13.0 -7.0 ... nan nan nan nan nan nan nan
array([[24.5, 21. , 1.5, ..., nan, nan, nan], [25.5, 22.5, 0. , ..., nan, nan, nan], [25.5, 22. , -3. , ..., nan, nan, nan], ..., [24. , 30. , -5.5, ..., nan, nan, nan], [25.5, 29.5, -5.5, ..., nan, nan, nan], [24.5, 23. , 22. , ..., nan, nan, nan]], dtype=float32)
- azimuth(azimuth)float640.5492 1.505 2.549 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.549194, 1.505005, 2.548706, ..., 357.516968, 358.505737, 359.505493])
- elevation(azimuth)float640.6 0.6 0.6 0.6 ... 0.6 0.6 0.6 0.6
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([0.6, 0.6, 0.6, ..., 0.6, 0.6, 0.6])
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- time(azimuth)datetime64[ns]2013-05-10T00:00:15.530303500 .....
- standard_name :
- time
array(['2013-05-10T00:00:15.530303500', '2013-05-10T00:00:15.560606500', '2013-05-10T00:00:15.590909500', ..., '2013-05-10T00:00:15.439393500', '2013-05-10T00:00:15.469696500', '2013-05-10T00:00:15.500000000'], dtype='datetime64[ns]')
- sweep_mode()<U20'azimuth_surveillance'
array('azimuth_surveillance', dtype='<U20')
- longitude()float646.38
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.379967)
- latitude()float6450.86
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(50.856633)
- altitude()float64116.7
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(116.7)
- x(azimuth, range)float641.198 3.594 5.99 ... -859.6 -861.8
array([[ 1.19805548e+00, 3.59416533e+00, 5.99027370e+00, ..., 9.52293996e+02, 9.54689187e+02, 9.57084374e+02], [ 3.28280810e+00, 9.84842127e+00, 1.64140304e+01, ..., 2.60939372e+03, 2.61595682e+03, 2.62251990e+03], [ 5.55819839e+00, 1.66745900e+01, 2.77909748e+01, ..., 4.41802491e+03, 4.42913704e+03, 4.44024915e+03], ..., [-5.41506827e+00, -1.62451998e+01, -2.70753247e+01, ..., -4.30425560e+03, -4.31508157e+03, -4.32590754e+03], [-3.25938192e+00, -9.77814275e+00, -1.62968996e+01, ..., -2.59077304e+03, -2.59728930e+03, -2.60380555e+03], [-1.07875902e+00, -3.23627605e+00, -5.39379175e+00, ..., -8.57469251e+02, -8.59625940e+02, -8.61782626e+02]])
- y(azimuth, range)float64125.0 375.0 ... 9.96e+04 9.985e+04
array([[ 124.98566684, 374.95688498, 624.92794923, ..., 99346.90191399, 99596.77719202, 99846.65222685], [ 124.948291 , 374.84475749, 624.74107013, ..., 99317.19311462, 99566.99366968, 99816.79398164], [ 124.86776479, 374.60317893, 624.33843933, ..., 99253.18553895, 99502.82510348, 99752.46442505], ..., [ 124.8740537 , 374.62204567, 624.36988388, ..., 99258.18438545, 99507.83652298, 99757.48841753], [ 124.94890429, 374.84659735, 624.74413656, ..., 99317.68059526, 99567.48237643, 99817.28391448], [ 124.98675343, 374.96014473, 624.93338214, ..., 99347.7656027 , 99597.64305305, 99847.52026022]])
- z(azimuth, range)float64118.0 120.6 ... 1.744e+03 1.75e+03
array([[ 117.9758027 , 120.59374803, 123.2116924 , ..., 1738.80857207, 1744.39058778, 1749.97268065], [ 117.9758027 , 120.59374803, 123.2116924 , ..., 1738.80857207, 1744.39058778, 1749.97268065], [ 117.9758027 , 120.59374803, 123.2116924 , ..., 1738.80857207, 1744.39058778, 1749.97268065], ..., [ 117.9758027 , 120.59374803, 123.2116924 , ..., 1738.80857207, 1744.39058778, 1749.97268065], [ 117.9758027 , 120.59374803, 123.2116924 , ..., 1738.80857207, 1744.39058778, 1749.97268065], [ 117.9758027 , 120.59374803, 123.2116924 , ..., 1738.80857207, 1744.39058778, 1749.97268065]])
- gr(azimuth, range)float64124.8 374.7 ... 9.96e+04 9.985e+04
array([[ 124.75128688, 374.73382343, 624.7163384 , ..., 99351.2255673 , 99601.11232465, 99850.99883882], [ 124.74716416, 374.72970603, 624.71222207, ..., 99351.22145255, 99601.10820991, 99850.99472407], [ 124.74274009, 374.72528778, 624.70780497, ..., 99351.21703719, 99601.10379455, 99850.99030871], ..., [ 124.76480286, 374.74732257, 624.72983418, ..., 99351.23905807, 99601.12581542, 99851.01232958], [ 124.76032383, 374.74284901, 624.72536171, ..., 99351.23458723, 99601.12134458, 99851.00785875], [ 124.75586505, 374.73839579, 624.7209096 , ..., 99351.23013677, 99601.11689412, 99851.00340828]])
- rays(azimuth, range)float640.5492 0.5492 ... 359.5 359.5
array([[ 0.54919434, 0.54919434, 0.54919434, ..., 0.54919434, 0.54919434, 0.54919434], [ 1.50500488, 1.50500488, 1.50500488, ..., 1.50500488, 1.50500488, 1.50500488], [ 2.54870605, 2.54870605, 2.54870605, ..., 2.54870605, 2.54870605, 2.54870605], ..., [357.51696777, 357.51696777, 357.51696777, ..., 357.51696777, 357.51696777, 357.51696777], [358.5057373 , 358.5057373 , 358.5057373 , ..., 358.5057373 , 358.5057373 , 358.5057373 ], [359.50549316, 359.50549316, 359.50549316, ..., 359.50549316, 359.50549316, 359.50549316]])
- bins(azimuth, range)float32125.0 375.0 ... 9.962e+04 9.988e+04
array([[ 125., 375., 625., ..., 99375., 99625., 99875.], [ 125., 375., 625., ..., 99375., 99625., 99875.], [ 125., 375., 625., ..., 99375., 99625., 99875.], ..., [ 125., 375., 625., ..., 99375., 99625., 99875.], [ 125., 375., 625., ..., 99375., 99625., 99875.], [ 125., 375., 625., ..., 99375., 99625., 99875.]], dtype=float32)
- azimuthPandasIndex
PandasIndex(Float64Index([ 0.5491943359375, 1.5050048828125, 2.5487060546875, 3.5155029296875, 4.509765625, 5.509521484375, 6.5037841796875, 7.5035400390625, 8.552734375, 9.5140380859375, ... 350.524169921875, 351.512939453125, 352.5126953125, 353.5179443359375, 354.51220703125, 355.5064697265625, 356.500732421875, 357.5169677734375, 358.5057373046875, 359.5054931640625], dtype='float64', name='azimuth', length=361))
- rangePandasIndex
PandasIndex(Float64Index([ 125.0, 375.0, 625.0, 875.0, 1125.0, 1375.0, 1625.0, 1875.0, 2125.0, 2375.0, ... 97625.0, 97875.0, 98125.0, 98375.0, 98625.0, 98875.0, 99125.0, 99375.0, 99625.0, 99875.0], dtype='float64', name='range', length=400))
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- 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 0x7f58a6f02c50>

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

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

Export to ODIM and CfRadial2#
[20]:
xd.io.to_odim(vol, "rainbow_as_odim.h5")
xd.io.to_cfradial2(vol, "rainbow_as_cfradial2.nc")
Import again#
[21]:
vola = xd.io.open_odim_datatree("rainbow_as_odim.h5", reindex_angle=False)
display(vola)
<xarray.DatasetView> Dimensions: () Data variables: volume_number int64 0 platform_type <U5 'fixed' instrument_type <U5 'radar' time_coverage_start <U20 '2013-05-10T00:00:06Z' time_coverage_end <U20 '2013-05-10T00:03:14Z' longitude float64 6.38 altitude float64 116.7 latitude float64 50.86 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: 361
- range: 400
- azimuth(azimuth)float640.5492 1.505 2.549 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.549194, 1.505005, 2.548706, ..., 357.516968, 358.505737, 359.505493])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-05-10T00:00:15.530303488 .....
- standard_name :
- time
array(['2013-05-10T00:00:15.530303488', '2013-05-10T00:00:15.560606464', '2013-05-10T00:00:15.590909440', ..., '2013-05-10T00:00:15.439393536', '2013-05-10T00:00:15.469696512', '2013-05-10T00:00:15.500000000'], dtype='datetime64[ns]')
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- _Undetect :
- 255.0
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5492 1.505 2.549 ... 358.5 359.5 elevation (azimuth) float64 ... time (azimuth) datetime64[ns] 2013-05-10T00:00:15.530303488... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_0- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5492 1.516 2.505 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.549194, 1.515991, 2.504761, ..., 357.505981, 358.500244, 359.505493])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-05-10T00:00:25.651515392 .....
- standard_name :
- time
array(['2013-05-10T00:00:25.651515392', '2013-05-10T00:00:25.681818624', '2013-05-10T00:00:25.712121600', ..., '2013-05-10T00:00:25.560606464', '2013-05-10T00:00:25.590909440', '2013-05-10T00:00:25.621212416'], dtype='datetime64[ns]')
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- _Undetect :
- 255.0
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5492 1.516 2.505 ... 358.5 359.5 elevation (azimuth) float64 ... time (azimuth) datetime64[ns] 2013-05-10T00:00:25.651515392... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_1- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5052 1.505 2.505 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.505249, 1.505005, 2.504761, ..., 357.500488, 358.544189, 359.510986])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-05-10T00:00:36.681818624 .....
- standard_name :
- time
array(['2013-05-10T00:00:36.681818624', '2013-05-10T00:00:36.712121600', '2013-05-10T00:00:36.742424576', ..., '2013-05-10T00:00:36.590909440', '2013-05-10T00:00:36.621212416', '2013-05-10T00:00:36.651515392'], dtype='datetime64[ns]')
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- _Undetect :
- 255.0
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5052 1.505 2.505 ... 358.5 359.5 elevation (azimuth) float64 ... time (azimuth) datetime64[ns] 2013-05-10T00:00:36.681818624... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_2- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5052 1.521 2.505 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.505249, 1.521484, 2.504761, ..., 357.522461, 358.516724, 359.510986])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-05-10T00:00:46.803030528 .....
- standard_name :
- time
array(['2013-05-10T00:00:46.803030528', '2013-05-10T00:00:46.833333504', '2013-05-10T00:00:46.863636480', ..., '2013-05-10T00:00:46.712121600', '2013-05-10T00:00:46.742424576', '2013-05-10T00:00:46.772727552'], dtype='datetime64[ns]')
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- _Undetect :
- 255.0
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5052 1.521 2.505 ... 358.5 359.5 elevation (azimuth) float64 ... time (azimuth) datetime64[ns] 2013-05-10T00:00:46.803030528... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_3- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5217 1.516 2.51 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.521729, 1.515991, 2.510254, ..., 357.505981, 358.500244, 359.5 ])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-05-10T00:01:08.803030528 .....
- standard_name :
- time
array(['2013-05-10T00:01:08.803030528', '2013-05-10T00:01:08.833333504', '2013-05-10T00:01:08.863636480', ..., '2013-05-10T00:01:08.712121600', '2013-05-10T00:01:08.742424576', '2013-05-10T00:01:08.772727552'], dtype='datetime64[ns]')
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- _Undetect :
- 255.0
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5217 1.516 2.51 ... 357.5 358.5 359.5 elevation (azimuth) float64 ... time (azimuth) datetime64[ns] 2013-05-10T00:01:08.803030528... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_4- azimuth: 361
- range: 400
- azimuth(azimuth)float640.5052 1.516 2.51 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.505249, 1.515991, 2.510254, ..., 357.511475, 358.51123 , 359.521973])
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[361 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-05-10T00:01:19.893939456 .....
- standard_name :
- time
array(['2013-05-10T00:01:19.893939456', '2013-05-10T00:01:19.924242432', '2013-05-10T00:01:19.954545408', ..., '2013-05-10T00:01:19.803030528', '2013-05-10T00:01:19.833333504', '2013-05-10T00:01:19.863636480'], dtype='datetime64[ns]')
- range(range)float32125.0 375.0 ... 9.962e+04 9.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 99375., 99625., 99875.], dtype=float32)
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- DBZH(azimuth, range)float32...
- _Undetect :
- 255.0
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
[144400 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()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 361, range: 400) Coordinates: * azimuth (azimuth) float64 0.5052 1.516 2.51 ... 357.5 358.5 359.5 elevation (azimuth) float64 ... time (azimuth) datetime64[ns] 2013-05-10T00:01:19.893939456... * range (range) float32 125.0 375.0 625.0 ... 9.962e+04 9.988e+04 longitude float64 ... latitude float64 ... altitude float64 ... Data variables: DBZH (azimuth, range) float32 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...
sweep_5