Load ODIM_H5 Volume data from German Weather Service#
In this example, we obtain and read the latest 30 minutes of available volumetric radar data from German Weather Service available at opendata.dwd.de. Finally we do some plotting.
This retrieves 6 timesteps of the 10 sweeps (moments DBZH and VRADH) of the DWD volume scan of a distinct radar. This amounts to 120 data files which are combined into one volumetric Cf/Radial2 like xarray powered structure.
Exports to single file Odim_H5 and Cf/Radial2 format are shown at the end of this tutorial.
Note
The following code is based on xarray, xarray-datatree and xradar. It claims multiple data files and presents them in a DataTree
.
[1]:
import wradlib as wrl
import warnings
warnings.filterwarnings("ignore")
import matplotlib.pyplot as pl
import numpy as np
import xarray as xr
try:
get_ipython().run_line_magic("matplotlib inline")
except:
pl.ion()
[2]:
import urllib3
import os
import io
import glob
import shutil
import datetime
Download radar volumes of latest 30 minutes from server using wetterdienst
#
wetterdienst
is a neat package for easy retrieval of data primarily from DWD. For further information have a look at their documentation.
[3]:
from wetterdienst.provider.dwd.radar import (
DwdRadarDataFormat,
DwdRadarDataSubset,
DwdRadarParameter,
DwdRadarValues,
)
from wetterdienst.provider.dwd.radar.sites import DwdRadarSite
[4]:
elevations = range(10)
end_date = datetime.datetime.utcnow()
start_date = end_date - datetime.timedelta(minutes=30)
results_velocity = []
results_reflectivity = []
for el in elevations:
# Horizontal Doppler Velocity
request_velocity = DwdRadarValues(
parameter=DwdRadarParameter.SWEEP_VOL_VELOCITY_H,
start_date=start_date,
end_date=end_date,
site=DwdRadarSite.ESS,
elevation=el,
fmt=DwdRadarDataFormat.HDF5,
subset=DwdRadarDataSubset.POLARIMETRIC,
)
# Horizontal Reflectivity
request_reflectivity = DwdRadarValues(
parameter=DwdRadarParameter.SWEEP_VOL_REFLECTIVITY_H,
start_date=start_date,
end_date=end_date,
elevation=el,
site=DwdRadarSite.ESS,
fmt=DwdRadarDataFormat.HDF5,
subset=DwdRadarDataSubset.POLARIMETRIC,
)
# Submit requests.
results_velocity.append(request_velocity.query())
results_reflectivity.append(request_reflectivity.query())
[5]:
import wetterdienst
wetterdienst.__version__
[5]:
'0.20.3'
Acquire data as memory buffer#
[6]:
%%time
volume_velocity = []
for item1 in results_velocity:
files = []
for item2 in item1:
files.append(item2.data)
volume_velocity.append(files)
2%|▎ | 6/240 [00:08<05:40, 1.45s/it]
2%|▎ | 6/240 [00:04<02:53, 1.35it/s]
2%|▎ | 6/240 [00:05<03:15, 1.20it/s]
2%|▎ | 6/240 [00:04<03:05, 1.26it/s]
2%|▎ | 6/240 [00:05<03:16, 1.19it/s]
2%|▎ | 6/240 [00:04<03:07, 1.25it/s]
2%|▎ | 6/240 [00:04<03:02, 1.28it/s]
2%|▎ | 6/240 [00:04<02:59, 1.30it/s]
2%|▎ | 6/240 [00:04<02:57, 1.32it/s]
2%|▎ | 6/240 [00:04<02:54, 1.34it/s]
CPU times: user 10.5 s, sys: 217 ms, total: 10.7 s
Wall time: 51.2 s
[7]:
volume_velocity = [v[-6:] for v in volume_velocity]
volume_velocity = np.array(volume_velocity).T.tolist()
[8]:
%%time
volume_reflectivity = []
for item1 in results_reflectivity:
files = []
for item2 in item1:
files.append(item2.data)
volume_reflectivity.append(files)
3%|▎ | 7/240 [00:06<03:33, 1.09it/s]
2%|▎ | 6/240 [00:04<02:46, 1.40it/s]
2%|▎ | 6/240 [00:03<02:35, 1.50it/s]
2%|▎ | 6/240 [00:03<02:35, 1.50it/s]
2%|▎ | 6/240 [00:04<02:48, 1.39it/s]
2%|▎ | 6/240 [00:04<03:13, 1.21it/s]
2%|▎ | 6/240 [00:06<04:00, 1.03s/it]
2%|▎ | 6/240 [00:03<02:25, 1.60it/s]
2%|▎ | 6/240 [00:04<02:36, 1.50it/s]
2%|▎ | 6/240 [00:04<02:54, 1.34it/s]
CPU times: user 10.7 s, sys: 153 ms, total: 10.8 s
Wall time: 46.4 s
[9]:
volume_reflectivity = [v[-6:] for v in volume_reflectivity]
volume_reflectivity = np.array(volume_reflectivity).T.tolist()
Read the data into xarray powered structure#
[10]:
from datatree import DataTree, open_datatree
import xradar
def concat_radar_datatree(objs, dim="volume_time"):
root_ds = [obj["/"].ds for obj in objs]
root = xr.concat(root_ds, dim=dim)
dtree = DataTree(data=root, name="root")
for grp in objs[0].groups[1:]:
ngrps = [obj[grp[1:]].ds for obj in objs]
ngrp = xr.concat(ngrps, dim=dim)
DataTree(ngrp, name=grp[1:], parent=dtree)
return dtree
[11]:
dsl = []
reindex_angle = dict(
tolerance=1.0, start_angle=0, stop_angle=360, angle_res=1.0, direction=1
)
for r, v in zip(volume_reflectivity, volume_velocity):
ds0 = [
xr.open_dataset(r0, engine="odim", group="sweep_0", reindex_angle=reindex_angle)
for r0 in r
]
ds1 = [
xr.open_dataset(v0, engine="odim", group="sweep_0", reindex_angle=reindex_angle)
for v0 in v
]
ds = [xr.merge([r0, v0], compat="override") for r0, v0 in zip(ds0, ds1)]
ds.insert(0, xr.open_dataset(r[0], group="/"))
dsl.append(ds)
# this takes some private functions from xradar, take care here
trees = [
DataTree(data=xradar.io.backends.common._assign_root(ds), name="root") for ds in dsl
]
trees = [
xradar.io.backends.common._attach_sweep_groups(tree, ds[1:])
for tree, ds in zip(trees, dsl)
]
vol = concat_radar_datatree(trees, dim="volume_time")
# align sweep_numbers to cover for single sweep single moment layout of DWD
for i, swp in enumerate(vol.groups[1:]):
vol[swp]["sweep_number"] = i
[12]:
vol
[12]:
<xarray.DatasetView> Dimensions: (volume_time: 6) Dimensions without coordinates: volume_time Data variables: volume_number (volume_time) int64 0 0 0 0 0 0 platform_type (volume_time) <U5 'fixed' 'fixed' ... 'fixed' 'fixed' instrument_type (volume_time) <U5 'radar' 'radar' ... 'radar' 'radar' time_coverage_start (volume_time) <U20 '2023-03-01T21:10:58Z' ... '2023-... time_coverage_end (volume_time) <U20 '2023-03-01T21:15:57Z' ... '2023-... longitude (volume_time) float64 6.967 6.967 6.967 ... 6.967 6.967 altitude (volume_time) float64 185.1 185.1 185.1 ... 185.1 185.1 latitude (volume_time) float64 51.41 51.41 51.41 ... 51.41 51.41 Attributes: Conventions: ODIM_H5/V2_2 version: None title: None institution: None references: None source: None history: None comment: im/exported using xradar instrument_name: None
- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- 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([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float645.482 5.482 5.482 ... 5.482 5.482
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:15:54.503500032 .....
- standard_name :
- time
array([['2023-03-01T21:15:54.503500032', '2023-03-01T21:15:54.565999872', '2023-03-01T21:15:54.627999744', ..., '2023-03-01T21:15:54.316000000', '2023-03-01T21:15:54.377999872', '2023-03-01T21:15:54.440499968'], ['2023-03-01T21:20:54.255000064', '2023-03-01T21:20:54.316999936', '2023-03-01T21:20:54.379000064', ..., '2023-03-01T21:20:54.066999808', '2023-03-01T21:20:54.129000192', '2023-03-01T21:20:54.192000000'], ['2023-03-01T21:25:54.268000000', '2023-03-01T21:25:54.329999872', '2023-03-01T21:25:54.392499968', ..., '2023-03-01T21:25:54.080000000', '2023-03-01T21:25:54.142000128', '2023-03-01T21:25:54.205500160'], ['2023-03-01T21:30:54.320000256', '2023-03-01T21:30:54.381999872', '2023-03-01T21:30:54.444499968', ..., '2023-03-01T21:30:54.132000000', '2023-03-01T21:30:54.194000128', '2023-03-01T21:30:54.257500160'], ['2023-03-01T21:35:54.281499904', '2023-03-01T21:35:54.343999744', '2023-03-01T21:35:54.406000128', ..., '2023-03-01T21:35:54.092999936', '2023-03-01T21:35:54.155500032', '2023-03-01T21:35:54.218500096'], ['2023-03-01T21:40:54.281000192', '2023-03-01T21:40:54.343999744', '2023-03-01T21:40:54.406499840', ..., '2023-03-01T21:40:54.093999872', '2023-03-01T21:40:54.156000256', '2023-03-01T21:40:54.217999872']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int640
array(0)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float645.499 5.499 5.499 5.499 5.499 5.499
array([5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 5.482 5.482 ... 5.482 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:15... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 0 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 5.499 5.499 5.499 5.499 5.499 5.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_0- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- 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([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float644.482 4.482 4.482 ... 4.493 4.493
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[4.48242188, 4.48242188, 4.48242188, ..., 4.48242188, 4.48242188, 4.48242188], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:11:16.856999936 .....
- standard_name :
- time
array([['2023-03-01T21:11:16.856999936', '2023-03-01T21:11:16.920000000', '2023-03-01T21:11:16.982999808', ..., '2023-03-01T21:11:16.668999936', '2023-03-01T21:11:16.731000064', '2023-03-01T21:11:16.794000128'], ['2023-03-01T21:16:17.005499904', '2023-03-01T21:16:17.068499968', '2023-03-01T21:16:17.131000064', ..., '2023-03-01T21:16:16.818000128', '2023-03-01T21:16:16.880000000', '2023-03-01T21:16:16.942500096'], ['2023-03-01T21:21:16.757500160', '2023-03-01T21:21:16.820000000', '2023-03-01T21:21:16.881499904', ..., '2023-03-01T21:21:16.569999872', '2023-03-01T21:21:16.631500032', '2023-03-01T21:21:16.694500096'], ['2023-03-01T21:26:16.770500096', '2023-03-01T21:26:16.833000192', '2023-03-01T21:26:16.896000000', ..., '2023-03-01T21:26:16.582000128', '2023-03-01T21:26:16.644499968', '2023-03-01T21:26:16.707500032'], ['2023-03-01T21:31:16.822000128', '2023-03-01T21:31:16.884999936', '2023-03-01T21:31:16.947000064', ..., '2023-03-01T21:31:16.634000128', '2023-03-01T21:31:16.696499712', '2023-03-01T21:31:16.759500032'], ['2023-03-01T21:36:16.783500032', '2023-03-01T21:36:16.846000128', '2023-03-01T21:36:16.908999936', ..., '2023-03-01T21:36:16.595000064', '2023-03-01T21:36:16.657499904', '2023-03-01T21:36:16.720499968']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int641
array(1)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float644.499 4.499 4.499 4.499 4.499 4.499
array([4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 4.482 4.482 ... 4.493 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:11... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 1 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 4.499 4.499 4.499 4.499 4.499 4.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_1- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- 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([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float643.494 3.494 3.494 ... 3.494 3.494
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:11:39.359500032 .....
- standard_name :
- time
array([['2023-03-01T21:11:39.359500032', '2023-03-01T21:11:39.421999872', '2023-03-01T21:11:39.485000192', ..., '2023-03-01T21:11:39.171000064', '2023-03-01T21:11:39.233499904', '2023-03-01T21:11:39.296000000'], ['2023-03-01T21:16:39.508000000', '2023-03-01T21:16:39.571000064', '2023-03-01T21:16:39.633999872', ..., '2023-03-01T21:16:39.320000000', '2023-03-01T21:16:39.381999872', '2023-03-01T21:16:39.445499904'], ['2023-03-01T21:21:39.259500032', '2023-03-01T21:21:39.322000128', '2023-03-01T21:21:39.383999744', ..., '2023-03-01T21:21:39.071499776', '2023-03-01T21:21:39.133500160', '2023-03-01T21:21:39.196499712'], ['2023-03-01T21:26:39.272499968', '2023-03-01T21:26:39.335000064', '2023-03-01T21:26:39.398000128', ..., '2023-03-01T21:26:39.084999936', '2023-03-01T21:26:39.147000064', '2023-03-01T21:26:39.209000192'], ['2023-03-01T21:31:39.324000000', '2023-03-01T21:31:39.387000064', '2023-03-01T21:31:39.448999936', ..., '2023-03-01T21:31:39.136000000', '2023-03-01T21:31:39.198500096', '2023-03-01T21:31:39.261499904'], ['2023-03-01T21:36:39.285500160', '2023-03-01T21:36:39.348000000', '2023-03-01T21:36:39.411000064', ..., '2023-03-01T21:36:39.097000192', '2023-03-01T21:36:39.159500032', '2023-03-01T21:36:39.222000128']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int642
array(2)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float643.499 3.499 3.499 3.499 3.499 3.499
array([3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 3.494 3.494 ... 3.494 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:11... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 2 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 3.499 3.499 3.499 3.499 3.499 3.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_2- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- 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([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float642.483 2.483 2.483 ... 2.483 2.483
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:12:01.861499904 .....
- standard_name :
- time
array([['2023-03-01T21:12:01.861499904', '2023-03-01T21:12:01.924499968', '2023-03-01T21:12:01.987500032', ..., '2023-03-01T21:12:01.674000128', '2023-03-01T21:12:01.736000000', '2023-03-01T21:12:01.798500096'], ['2023-03-01T21:17:02.011000064', '2023-03-01T21:17:02.072999936', '2023-03-01T21:17:02.135000064', ..., '2023-03-01T21:17:01.823000064', '2023-03-01T21:17:01.884999936', '2023-03-01T21:17:01.948000000'], ['2023-03-01T21:22:01.761499904', '2023-03-01T21:22:01.824999936', '2023-03-01T21:22:01.887000064', ..., '2023-03-01T21:22:01.573999872', '2023-03-01T21:22:01.636000256', '2023-03-01T21:22:01.697999872'], ['2023-03-01T21:27:01.775000064', '2023-03-01T21:27:01.837999872', '2023-03-01T21:27:01.900999936', ..., '2023-03-01T21:27:01.586999808', '2023-03-01T21:27:01.649000192', '2023-03-01T21:27:01.712499968'], ['2023-03-01T21:32:01.826499840', '2023-03-01T21:32:01.889500160', '2023-03-01T21:32:01.952000256', ..., '2023-03-01T21:32:01.639000064', '2023-03-01T21:32:01.701000192', '2023-03-01T21:32:01.763500032'], ['2023-03-01T21:37:01.788000000', '2023-03-01T21:37:01.851000064', '2023-03-01T21:37:01.912499968', ..., '2023-03-01T21:37:01.600000000', '2023-03-01T21:37:01.662000128', '2023-03-01T21:37:01.725500160']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int643
array(3)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float642.499 2.499 2.499 2.499 2.499 2.499
array([2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 2.483 2.483 ... 2.483 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:12... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 3 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 2.499 2.499 2.499 2.499 2.499 2.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_3- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- 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([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float641.483 1.483 1.483 ... 1.483 1.483
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:12:24.363999744 .....
- standard_name :
- time
array([['2023-03-01T21:12:24.363999744', '2023-03-01T21:12:24.427000064', '2023-03-01T21:12:24.490000128', ..., '2023-03-01T21:12:24.176499968', '2023-03-01T21:12:24.237999872', '2023-03-01T21:12:24.301499904'], ['2023-03-01T21:17:24.512499968', '2023-03-01T21:17:24.575500032', '2023-03-01T21:17:24.638000128', ..., '2023-03-01T21:17:24.324999936', '2023-03-01T21:17:24.387000064', '2023-03-01T21:17:24.449999872'], ['2023-03-01T21:22:24.264000000', '2023-03-01T21:22:24.326499840', '2023-03-01T21:22:24.388999936', ..., '2023-03-01T21:22:24.076000000', '2023-03-01T21:22:24.138000128', '2023-03-01T21:22:24.201000192'], ['2023-03-01T21:27:24.277500160', '2023-03-01T21:27:24.340000256', '2023-03-01T21:27:24.401999872', ..., '2023-03-01T21:27:24.089499904', '2023-03-01T21:27:24.152000000', '2023-03-01T21:27:24.213999872'], ['2023-03-01T21:32:24.328999936', '2023-03-01T21:32:24.392000256', '2023-03-01T21:32:24.453999872', ..., '2023-03-01T21:32:24.140999936', '2023-03-01T21:32:24.203500032', '2023-03-01T21:32:24.265999872'], ['2023-03-01T21:37:24.290500096', '2023-03-01T21:37:24.352999936', '2023-03-01T21:37:24.415000064', ..., '2023-03-01T21:37:24.101999872', '2023-03-01T21:37:24.164499968', '2023-03-01T21:37:24.227500032']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int644
array(4)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float641.5 1.5 1.5 1.5 1.5 1.5
array([1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 1.483 1.483 ... 1.483 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:12... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 4 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 1.5 1.5 1.5 1.5 1.5 1.5 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_4- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- 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([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float640.4724 0.4724 ... 0.4834 0.4834
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[0.47241211, 0.47241211, 0.47241211, ..., 0.47241211, 0.47241211, 0.47241211], [0.47241211, 0.47241211, 0.47241211, ..., 0.47241211, 0.47241211, 0.47241211], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.47241211, 0.47241211, 0.47241211, ..., 0.47241211, 0.47241211, 0.47241211], [0.47241211, 0.47241211, 0.47241211, ..., 0.47241211, 0.47241211, 0.47241211], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:12:52.456499968 .....
- standard_name :
- time
array([['2023-03-01T21:12:52.456499968', '2023-03-01T21:12:52.539000064', '2023-03-01T21:12:52.622499840', ..., '2023-03-01T21:12:52.205500160', '2023-03-01T21:12:52.288499712', '2023-03-01T21:12:52.372499968'], ['2023-03-01T21:17:52.488500224', '2023-03-01T21:17:52.572000000', '2023-03-01T21:17:52.654500096', ..., '2023-03-01T21:17:52.237500160', '2023-03-01T21:17:52.321000192', '2023-03-01T21:17:52.404499968'], ['2023-03-01T21:22:52.320000256', '2023-03-01T21:22:52.402999808', '2023-03-01T21:22:52.486500096', ..., '2023-03-01T21:22:52.069999872', '2023-03-01T21:22:52.152000000', '2023-03-01T21:22:52.236000000'], ['2023-03-01T21:27:52.321499904', '2023-03-01T21:27:52.405000192', '2023-03-01T21:27:52.488500224', ..., '2023-03-01T21:27:52.072000000', '2023-03-01T21:27:52.155000320', '2023-03-01T21:27:52.237999872'], ['2023-03-01T21:32:52.359000064', '2023-03-01T21:32:52.441999872', '2023-03-01T21:32:52.525000192', ..., '2023-03-01T21:32:52.108000000', '2023-03-01T21:32:52.191500288', '2023-03-01T21:32:52.275499776'], ['2023-03-01T21:37:52.343500032', '2023-03-01T21:37:52.426000128', '2023-03-01T21:37:52.510000128', ..., '2023-03-01T21:37:52.092999936', '2023-03-01T21:37:52.176000000', '2023-03-01T21:37:52.259500032']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int645
array(5)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float640.4999 0.4999 ... 0.4999 0.4999
array([0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 0.4724 0.4724 ... 0.4834 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:12... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 5 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 0.4999 0.4999 ... 0.4999 0.4999 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_5- azimuth: 360
- range: 496
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.236e+05 1.239e+05
- 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., ..., 123375., 123625., 123875.], dtype=float32)
- elevation(volume_time, azimuth)float647.987 7.987 7.987 ... 7.987 7.987
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:13:15.348499968 .....
- standard_name :
- time
array([['2023-03-01T21:13:15.348499968', '2023-03-01T21:13:15.404000000', '2023-03-01T21:13:15.459499776', ..., '2023-03-01T21:13:15.180499968', '2023-03-01T21:13:15.236999936', '2023-03-01T21:13:15.292499968'], ['2023-03-01T21:18:15.520000000', '2023-03-01T21:18:15.576000000', '2023-03-01T21:18:15.630499840', ..., '2023-03-01T21:18:15.353000192', '2023-03-01T21:18:15.407500032', '2023-03-01T21:18:15.464000000'], ['2023-03-01T21:23:15.236000000', '2023-03-01T21:23:15.292499968', '2023-03-01T21:23:15.347499776', ..., '2023-03-01T21:23:15.069499904', '2023-03-01T21:23:15.124499712', '2023-03-01T21:23:15.180000000'], ['2023-03-01T21:28:15.237999872', '2023-03-01T21:28:15.294000128', '2023-03-01T21:28:15.348499968', ..., '2023-03-01T21:28:15.071000064', '2023-03-01T21:28:15.125999872', '2023-03-01T21:28:15.182499840'], ['2023-03-01T21:33:15.287000064', '2023-03-01T21:33:15.342999808', '2023-03-01T21:33:15.397500160', ..., '2023-03-01T21:33:15.120000000', '2023-03-01T21:33:15.175500032', '2023-03-01T21:33:15.231000064'], ['2023-03-01T21:38:15.271500032', '2023-03-01T21:38:15.327000064', '2023-03-01T21:38:15.382500096', ..., '2023-03-01T21:38:15.104499712', '2023-03-01T21:38:15.159500032', '2023-03-01T21:38:15.216000000']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int646
array(6)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float647.998 7.998 7.998 7.998 7.998 7.998
array([7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 496, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.236e+05 1.239e+05 elevation (volume_time, azimuth) float64 7.987 7.987 ... 7.987 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:13... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 6 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 7.998 7.998 7.998 7.998 7.998 7.998 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_6- azimuth: 360
- range: 240
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.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., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(volume_time, azimuth)float6411.99 11.99 11.99 ... 11.99 11.99
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:13:30.372499968 .....
- standard_name :
- time
array([['2023-03-01T21:13:30.372499968', '2023-03-01T21:13:30.406000128', '2023-03-01T21:13:30.439500032', ..., '2023-03-01T21:13:30.272499968', '2023-03-01T21:13:30.305499904', '2023-03-01T21:13:30.339500032'], ['2023-03-01T21:18:30.656500224', '2023-03-01T21:18:30.689500160', '2023-03-01T21:18:30.723500032', ..., '2023-03-01T21:18:30.556000000', '2023-03-01T21:18:30.589499904', '2023-03-01T21:18:30.622499840'], ['2023-03-01T21:23:30.290499840', '2023-03-01T21:23:30.323500032', '2023-03-01T21:23:30.357500160', ..., '2023-03-01T21:23:30.190000128', '2023-03-01T21:23:30.223500032', '2023-03-01T21:23:30.256999936'], ['2023-03-01T21:28:30.290499840', '2023-03-01T21:28:30.324000000', '2023-03-01T21:28:30.357500160', ..., '2023-03-01T21:28:30.190000128', '2023-03-01T21:28:30.223500032', '2023-03-01T21:28:30.256499968'], ['2023-03-01T21:33:30.330999808', '2023-03-01T21:33:30.364499968', '2023-03-01T21:33:30.398000128', ..., '2023-03-01T21:33:30.231000064', '2023-03-01T21:33:30.264000000', '2023-03-01T21:33:30.297499904'], ['2023-03-01T21:38:30.324999936', '2023-03-01T21:38:30.358500096', '2023-03-01T21:38:30.391500032', ..., '2023-03-01T21:38:30.224499968', '2023-03-01T21:38:30.257999872', '2023-03-01T21:38:30.291500032']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int647
array(7)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float6412.0 12.0 12.0 12.0 12.0 12.0
array([12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (volume_time, azimuth) float64 11.99 11.99 ... 11.99 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:13... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 7 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 12.0 12.0 12.0 12.0 12.0 12.0 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_7- azimuth: 360
- range: 240
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.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., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(volume_time, azimuth)float6416.98 16.98 16.98 ... 16.98 16.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:13:42.374000128 .....
- standard_name :
- time
array([['2023-03-01T21:13:42.374000128', '2023-03-01T21:13:42.407500032', '2023-03-01T21:13:42.440499968', ..., '2023-03-01T21:13:42.273499904', '2023-03-01T21:13:42.306499840', '2023-03-01T21:13:42.340499968'], ['2023-03-01T21:18:42.657499904', '2023-03-01T21:18:42.690500096', '2023-03-01T21:18:42.724499968', ..., '2023-03-01T21:18:42.557499904', '2023-03-01T21:18:42.590499840', '2023-03-01T21:18:42.624000000'], ['2023-03-01T21:23:42.291500032', '2023-03-01T21:23:42.325499904', '2023-03-01T21:23:42.358500096', ..., '2023-03-01T21:23:42.191500032', '2023-03-01T21:23:42.224499968', '2023-03-01T21:23:42.257999872'], ['2023-03-01T21:28:42.291500032', '2023-03-01T21:28:42.324999936', '2023-03-01T21:28:42.358500096', ..., '2023-03-01T21:28:42.191500032', '2023-03-01T21:28:42.224499968', '2023-03-01T21:28:42.258500096'], ['2023-03-01T21:33:42.332499968', '2023-03-01T21:33:42.365999872', '2023-03-01T21:33:42.399499776', ..., '2023-03-01T21:33:42.232000000', '2023-03-01T21:33:42.265500160', '2023-03-01T21:33:42.298500096'], ['2023-03-01T21:38:42.325999872', '2023-03-01T21:38:42.359500032', '2023-03-01T21:38:42.392499968', ..., '2023-03-01T21:38:42.225500160', '2023-03-01T21:38:42.259500032', '2023-03-01T21:38:42.292499968']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int648
array(8)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float6417.0 17.0 17.0 17.0 17.0 17.0
array([17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (volume_time, azimuth) float64 16.98 16.98 ... 16.98 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:13... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 8 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 17.0 17.0 17.0 17.0 17.0 17.0 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_8- azimuth: 360
- range: 240
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.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., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(volume_time, azimuth)float6424.98 24.98 24.98 ... 24.98 24.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:13:54.375000064 .....
- standard_name :
- time
array([['2023-03-01T21:13:54.375000064', '2023-03-01T21:13:54.408499968', '2023-03-01T21:13:54.441499904', ..., '2023-03-01T21:13:54.275000064', '2023-03-01T21:13:54.308499968', '2023-03-01T21:13:54.341500160'], ['2023-03-01T21:18:54.658999808', '2023-03-01T21:18:54.692500224', '2023-03-01T21:18:54.725500160', ..., '2023-03-01T21:18:54.558500096', '2023-03-01T21:18:54.591500032', '2023-03-01T21:18:54.624999936'], ['2023-03-01T21:23:54.292499968', '2023-03-01T21:23:54.326499840', '2023-03-01T21:23:54.359500032', ..., '2023-03-01T21:23:54.192500224', '2023-03-01T21:23:54.225500160', '2023-03-01T21:23:54.259500032'], ['2023-03-01T21:28:54.292999936', '2023-03-01T21:28:54.326499840', '2023-03-01T21:28:54.359500032', ..., '2023-03-01T21:28:54.192500224', '2023-03-01T21:28:54.225500160', '2023-03-01T21:28:54.259500032'], ['2023-03-01T21:33:54.333499904', '2023-03-01T21:33:54.367000064', '2023-03-01T21:33:54.400499968', ..., '2023-03-01T21:33:54.232999936', '2023-03-01T21:33:54.266500096', '2023-03-01T21:33:54.299500032'], ['2023-03-01T21:38:54.327500032', '2023-03-01T21:38:54.360500224', '2023-03-01T21:38:54.394000128', ..., '2023-03-01T21:38:54.227000064', '2023-03-01T21:38:54.260499968', '2023-03-01T21:38:54.293499904']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int649
array(9)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float6425.0 25.0 25.0 25.0 25.0 25.0
array([24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (volume_time, azimuth) float64 24.98 24.98 ... 24.98 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:13... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 9 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 25.0 25.0 25.0 25.0 25.0 25.0 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_9- volume_time: 6
- volume_number(volume_time)int640 0 0 0 0 0
array([0, 0, 0, 0, 0, 0])
- platform_type(volume_time)<U5'fixed' 'fixed' ... 'fixed' 'fixed'
array(['fixed', 'fixed', 'fixed', 'fixed', 'fixed', 'fixed'], dtype='<U5')
- instrument_type(volume_time)<U5'radar' 'radar' ... 'radar' 'radar'
array(['radar', 'radar', 'radar', 'radar', 'radar', 'radar'], dtype='<U5')
- time_coverage_start(volume_time)<U20'2023-03-01T21:10:58Z' ... '2023...
array(['2023-03-01T21:10:58Z', '2023-03-01T21:15:58Z', '2023-03-01T21:20:58Z', '2023-03-01T21:25:58Z', '2023-03-01T21:30:58Z', '2023-03-01T21:35:58Z'], dtype='<U20')
- time_coverage_end(volume_time)<U20'2023-03-01T21:15:57Z' ... '2023...
array(['2023-03-01T21:15:57Z', '2023-03-01T21:20:57Z', '2023-03-01T21:25:57Z', '2023-03-01T21:30:57Z', '2023-03-01T21:35:57Z', '2023-03-01T21:40:57Z'], dtype='<U20')
- longitude(volume_time)float646.967 6.967 6.967 6.967 6.967 6.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array([6.967111, 6.967111, 6.967111, 6.967111, 6.967111, 6.967111])
- altitude(volume_time)float64185.1 185.1 185.1 185.1 185.1 185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array([185.11, 185.11, 185.11, 185.11, 185.11, 185.11])
- latitude(volume_time)float6451.41 51.41 51.41 51.41 51.41 51.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array([51.405649, 51.405649, 51.405649, 51.405649, 51.405649, 51.405649])
- 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
[13]:
vol["sweep_9"]
[13]:
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (volume_time, azimuth) float64 24.98 24.98 ... 24.98 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:13... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 9 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 25.0 25.0 25.0 25.0 25.0 25.0 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
- azimuth: 360
- range: 240
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.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., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(volume_time, azimuth)float6424.98 24.98 24.98 ... 24.98 24.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:13:54.375000064 .....
- standard_name :
- time
array([['2023-03-01T21:13:54.375000064', '2023-03-01T21:13:54.408499968', '2023-03-01T21:13:54.441499904', ..., '2023-03-01T21:13:54.275000064', '2023-03-01T21:13:54.308499968', '2023-03-01T21:13:54.341500160'], ['2023-03-01T21:18:54.658999808', '2023-03-01T21:18:54.692500224', '2023-03-01T21:18:54.725500160', ..., '2023-03-01T21:18:54.558500096', '2023-03-01T21:18:54.591500032', '2023-03-01T21:18:54.624999936'], ['2023-03-01T21:23:54.292499968', '2023-03-01T21:23:54.326499840', '2023-03-01T21:23:54.359500032', ..., '2023-03-01T21:23:54.192500224', '2023-03-01T21:23:54.225500160', '2023-03-01T21:23:54.259500032'], ['2023-03-01T21:28:54.292999936', '2023-03-01T21:28:54.326499840', '2023-03-01T21:28:54.359500032', ..., '2023-03-01T21:28:54.192500224', '2023-03-01T21:28:54.225500160', '2023-03-01T21:28:54.259500032'], ['2023-03-01T21:33:54.333499904', '2023-03-01T21:33:54.367000064', '2023-03-01T21:33:54.400499968', ..., '2023-03-01T21:33:54.232999936', '2023-03-01T21:33:54.266500096', '2023-03-01T21:33:54.299500032'], ['2023-03-01T21:38:54.327500032', '2023-03-01T21:38:54.360500224', '2023-03-01T21:38:54.394000128', ..., '2023-03-01T21:38:54.227000064', '2023-03-01T21:38:54.260499968', '2023-03-01T21:38:54.293499904']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int649
array(9)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float6425.0 25.0 25.0 25.0 25.0 25.0
array([24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
Inspect structure#
Root Group#
[14]:
vol.root
[14]:
<xarray.DatasetView> Dimensions: (volume_time: 6) Dimensions without coordinates: volume_time Data variables: volume_number (volume_time) int64 0 0 0 0 0 0 platform_type (volume_time) <U5 'fixed' 'fixed' ... 'fixed' 'fixed' instrument_type (volume_time) <U5 'radar' 'radar' ... 'radar' 'radar' time_coverage_start (volume_time) <U20 '2023-03-01T21:10:58Z' ... '2023-... time_coverage_end (volume_time) <U20 '2023-03-01T21:15:57Z' ... '2023-... longitude (volume_time) float64 6.967 6.967 6.967 ... 6.967 6.967 altitude (volume_time) float64 185.1 185.1 185.1 ... 185.1 185.1 latitude (volume_time) float64 51.41 51.41 51.41 ... 51.41 51.41 Attributes: Conventions: ODIM_H5/V2_2 version: None title: None institution: None references: None source: None history: None comment: im/exported using xradar instrument_name: None
- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- 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([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float645.482 5.482 5.482 ... 5.482 5.482
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:15:54.503500032 .....
- standard_name :
- time
array([['2023-03-01T21:15:54.503500032', '2023-03-01T21:15:54.565999872', '2023-03-01T21:15:54.627999744', ..., '2023-03-01T21:15:54.316000000', '2023-03-01T21:15:54.377999872', '2023-03-01T21:15:54.440499968'], ['2023-03-01T21:20:54.255000064', '2023-03-01T21:20:54.316999936', '2023-03-01T21:20:54.379000064', ..., '2023-03-01T21:20:54.066999808', '2023-03-01T21:20:54.129000192', '2023-03-01T21:20:54.192000000'], ['2023-03-01T21:25:54.268000000', '2023-03-01T21:25:54.329999872', '2023-03-01T21:25:54.392499968', ..., '2023-03-01T21:25:54.080000000', '2023-03-01T21:25:54.142000128', '2023-03-01T21:25:54.205500160'], ['2023-03-01T21:30:54.320000256', '2023-03-01T21:30:54.381999872', '2023-03-01T21:30:54.444499968', ..., '2023-03-01T21:30:54.132000000', '2023-03-01T21:30:54.194000128', '2023-03-01T21:30:54.257500160'], ['2023-03-01T21:35:54.281499904', '2023-03-01T21:35:54.343999744', '2023-03-01T21:35:54.406000128', ..., '2023-03-01T21:35:54.092999936', '2023-03-01T21:35:54.155500032', '2023-03-01T21:35:54.218500096'], ['2023-03-01T21:40:54.281000192', '2023-03-01T21:40:54.343999744', '2023-03-01T21:40:54.406499840', ..., '2023-03-01T21:40:54.093999872', '2023-03-01T21:40:54.156000256', '2023-03-01T21:40:54.217999872']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int640
array(0)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float645.499 5.499 5.499 5.499 5.499 5.499
array([5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 5.482 5.482 ... 5.482 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:15... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 0 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 5.499 5.499 5.499 5.499 5.499 5.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_0- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- 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([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float644.482 4.482 4.482 ... 4.493 4.493
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[4.48242188, 4.48242188, 4.48242188, ..., 4.48242188, 4.48242188, 4.48242188], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:11:16.856999936 .....
- standard_name :
- time
array([['2023-03-01T21:11:16.856999936', '2023-03-01T21:11:16.920000000', '2023-03-01T21:11:16.982999808', ..., '2023-03-01T21:11:16.668999936', '2023-03-01T21:11:16.731000064', '2023-03-01T21:11:16.794000128'], ['2023-03-01T21:16:17.005499904', '2023-03-01T21:16:17.068499968', '2023-03-01T21:16:17.131000064', ..., '2023-03-01T21:16:16.818000128', '2023-03-01T21:16:16.880000000', '2023-03-01T21:16:16.942500096'], ['2023-03-01T21:21:16.757500160', '2023-03-01T21:21:16.820000000', '2023-03-01T21:21:16.881499904', ..., '2023-03-01T21:21:16.569999872', '2023-03-01T21:21:16.631500032', '2023-03-01T21:21:16.694500096'], ['2023-03-01T21:26:16.770500096', '2023-03-01T21:26:16.833000192', '2023-03-01T21:26:16.896000000', ..., '2023-03-01T21:26:16.582000128', '2023-03-01T21:26:16.644499968', '2023-03-01T21:26:16.707500032'], ['2023-03-01T21:31:16.822000128', '2023-03-01T21:31:16.884999936', '2023-03-01T21:31:16.947000064', ..., '2023-03-01T21:31:16.634000128', '2023-03-01T21:31:16.696499712', '2023-03-01T21:31:16.759500032'], ['2023-03-01T21:36:16.783500032', '2023-03-01T21:36:16.846000128', '2023-03-01T21:36:16.908999936', ..., '2023-03-01T21:36:16.595000064', '2023-03-01T21:36:16.657499904', '2023-03-01T21:36:16.720499968']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int641
array(1)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float644.499 4.499 4.499 4.499 4.499 4.499
array([4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 4.482 4.482 ... 4.493 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:11... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 1 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 4.499 4.499 4.499 4.499 4.499 4.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_1- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- 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([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float643.494 3.494 3.494 ... 3.494 3.494
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:11:39.359500032 .....
- standard_name :
- time
array([['2023-03-01T21:11:39.359500032', '2023-03-01T21:11:39.421999872', '2023-03-01T21:11:39.485000192', ..., '2023-03-01T21:11:39.171000064', '2023-03-01T21:11:39.233499904', '2023-03-01T21:11:39.296000000'], ['2023-03-01T21:16:39.508000000', '2023-03-01T21:16:39.571000064', '2023-03-01T21:16:39.633999872', ..., '2023-03-01T21:16:39.320000000', '2023-03-01T21:16:39.381999872', '2023-03-01T21:16:39.445499904'], ['2023-03-01T21:21:39.259500032', '2023-03-01T21:21:39.322000128', '2023-03-01T21:21:39.383999744', ..., '2023-03-01T21:21:39.071499776', '2023-03-01T21:21:39.133500160', '2023-03-01T21:21:39.196499712'], ['2023-03-01T21:26:39.272499968', '2023-03-01T21:26:39.335000064', '2023-03-01T21:26:39.398000128', ..., '2023-03-01T21:26:39.084999936', '2023-03-01T21:26:39.147000064', '2023-03-01T21:26:39.209000192'], ['2023-03-01T21:31:39.324000000', '2023-03-01T21:31:39.387000064', '2023-03-01T21:31:39.448999936', ..., '2023-03-01T21:31:39.136000000', '2023-03-01T21:31:39.198500096', '2023-03-01T21:31:39.261499904'], ['2023-03-01T21:36:39.285500160', '2023-03-01T21:36:39.348000000', '2023-03-01T21:36:39.411000064', ..., '2023-03-01T21:36:39.097000192', '2023-03-01T21:36:39.159500032', '2023-03-01T21:36:39.222000128']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int642
array(2)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float643.499 3.499 3.499 3.499 3.499 3.499
array([3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 3.494 3.494 ... 3.494 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:11... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 2 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 3.499 3.499 3.499 3.499 3.499 3.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_2- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- 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([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float642.483 2.483 2.483 ... 2.483 2.483
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:12:01.861499904 .....
- standard_name :
- time
array([['2023-03-01T21:12:01.861499904', '2023-03-01T21:12:01.924499968', '2023-03-01T21:12:01.987500032', ..., '2023-03-01T21:12:01.674000128', '2023-03-01T21:12:01.736000000', '2023-03-01T21:12:01.798500096'], ['2023-03-01T21:17:02.011000064', '2023-03-01T21:17:02.072999936', '2023-03-01T21:17:02.135000064', ..., '2023-03-01T21:17:01.823000064', '2023-03-01T21:17:01.884999936', '2023-03-01T21:17:01.948000000'], ['2023-03-01T21:22:01.761499904', '2023-03-01T21:22:01.824999936', '2023-03-01T21:22:01.887000064', ..., '2023-03-01T21:22:01.573999872', '2023-03-01T21:22:01.636000256', '2023-03-01T21:22:01.697999872'], ['2023-03-01T21:27:01.775000064', '2023-03-01T21:27:01.837999872', '2023-03-01T21:27:01.900999936', ..., '2023-03-01T21:27:01.586999808', '2023-03-01T21:27:01.649000192', '2023-03-01T21:27:01.712499968'], ['2023-03-01T21:32:01.826499840', '2023-03-01T21:32:01.889500160', '2023-03-01T21:32:01.952000256', ..., '2023-03-01T21:32:01.639000064', '2023-03-01T21:32:01.701000192', '2023-03-01T21:32:01.763500032'], ['2023-03-01T21:37:01.788000000', '2023-03-01T21:37:01.851000064', '2023-03-01T21:37:01.912499968', ..., '2023-03-01T21:37:01.600000000', '2023-03-01T21:37:01.662000128', '2023-03-01T21:37:01.725500160']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int643
array(3)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float642.499 2.499 2.499 2.499 2.499 2.499
array([2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 2.483 2.483 ... 2.483 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:12... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 3 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 2.499 2.499 2.499 2.499 2.499 2.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_3- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- 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([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float641.483 1.483 1.483 ... 1.483 1.483
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:12:24.363999744 .....
- standard_name :
- time
array([['2023-03-01T21:12:24.363999744', '2023-03-01T21:12:24.427000064', '2023-03-01T21:12:24.490000128', ..., '2023-03-01T21:12:24.176499968', '2023-03-01T21:12:24.237999872', '2023-03-01T21:12:24.301499904'], ['2023-03-01T21:17:24.512499968', '2023-03-01T21:17:24.575500032', '2023-03-01T21:17:24.638000128', ..., '2023-03-01T21:17:24.324999936', '2023-03-01T21:17:24.387000064', '2023-03-01T21:17:24.449999872'], ['2023-03-01T21:22:24.264000000', '2023-03-01T21:22:24.326499840', '2023-03-01T21:22:24.388999936', ..., '2023-03-01T21:22:24.076000000', '2023-03-01T21:22:24.138000128', '2023-03-01T21:22:24.201000192'], ['2023-03-01T21:27:24.277500160', '2023-03-01T21:27:24.340000256', '2023-03-01T21:27:24.401999872', ..., '2023-03-01T21:27:24.089499904', '2023-03-01T21:27:24.152000000', '2023-03-01T21:27:24.213999872'], ['2023-03-01T21:32:24.328999936', '2023-03-01T21:32:24.392000256', '2023-03-01T21:32:24.453999872', ..., '2023-03-01T21:32:24.140999936', '2023-03-01T21:32:24.203500032', '2023-03-01T21:32:24.265999872'], ['2023-03-01T21:37:24.290500096', '2023-03-01T21:37:24.352999936', '2023-03-01T21:37:24.415000064', ..., '2023-03-01T21:37:24.101999872', '2023-03-01T21:37:24.164499968', '2023-03-01T21:37:24.227500032']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int644
array(4)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float641.5 1.5 1.5 1.5 1.5 1.5
array([1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 1.483 1.483 ... 1.483 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:12... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 4 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 1.5 1.5 1.5 1.5 1.5 1.5 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_4- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- 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([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float640.4724 0.4724 ... 0.4834 0.4834
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[0.47241211, 0.47241211, 0.47241211, ..., 0.47241211, 0.47241211, 0.47241211], [0.47241211, 0.47241211, 0.47241211, ..., 0.47241211, 0.47241211, 0.47241211], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.47241211, 0.47241211, 0.47241211, ..., 0.47241211, 0.47241211, 0.47241211], [0.47241211, 0.47241211, 0.47241211, ..., 0.47241211, 0.47241211, 0.47241211], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:12:52.456499968 .....
- standard_name :
- time
array([['2023-03-01T21:12:52.456499968', '2023-03-01T21:12:52.539000064', '2023-03-01T21:12:52.622499840', ..., '2023-03-01T21:12:52.205500160', '2023-03-01T21:12:52.288499712', '2023-03-01T21:12:52.372499968'], ['2023-03-01T21:17:52.488500224', '2023-03-01T21:17:52.572000000', '2023-03-01T21:17:52.654500096', ..., '2023-03-01T21:17:52.237500160', '2023-03-01T21:17:52.321000192', '2023-03-01T21:17:52.404499968'], ['2023-03-01T21:22:52.320000256', '2023-03-01T21:22:52.402999808', '2023-03-01T21:22:52.486500096', ..., '2023-03-01T21:22:52.069999872', '2023-03-01T21:22:52.152000000', '2023-03-01T21:22:52.236000000'], ['2023-03-01T21:27:52.321499904', '2023-03-01T21:27:52.405000192', '2023-03-01T21:27:52.488500224', ..., '2023-03-01T21:27:52.072000000', '2023-03-01T21:27:52.155000320', '2023-03-01T21:27:52.237999872'], ['2023-03-01T21:32:52.359000064', '2023-03-01T21:32:52.441999872', '2023-03-01T21:32:52.525000192', ..., '2023-03-01T21:32:52.108000000', '2023-03-01T21:32:52.191500288', '2023-03-01T21:32:52.275499776'], ['2023-03-01T21:37:52.343500032', '2023-03-01T21:37:52.426000128', '2023-03-01T21:37:52.510000128', ..., '2023-03-01T21:37:52.092999936', '2023-03-01T21:37:52.176000000', '2023-03-01T21:37:52.259500032']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int645
array(5)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float640.4999 0.4999 ... 0.4999 0.4999
array([0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 0.4724 0.4724 ... 0.4834 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:12... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 5 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 0.4999 0.4999 ... 0.4999 0.4999 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_5- azimuth: 360
- range: 496
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.236e+05 1.239e+05
- 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., ..., 123375., 123625., 123875.], dtype=float32)
- elevation(volume_time, azimuth)float647.987 7.987 7.987 ... 7.987 7.987
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:13:15.348499968 .....
- standard_name :
- time
array([['2023-03-01T21:13:15.348499968', '2023-03-01T21:13:15.404000000', '2023-03-01T21:13:15.459499776', ..., '2023-03-01T21:13:15.180499968', '2023-03-01T21:13:15.236999936', '2023-03-01T21:13:15.292499968'], ['2023-03-01T21:18:15.520000000', '2023-03-01T21:18:15.576000000', '2023-03-01T21:18:15.630499840', ..., '2023-03-01T21:18:15.353000192', '2023-03-01T21:18:15.407500032', '2023-03-01T21:18:15.464000000'], ['2023-03-01T21:23:15.236000000', '2023-03-01T21:23:15.292499968', '2023-03-01T21:23:15.347499776', ..., '2023-03-01T21:23:15.069499904', '2023-03-01T21:23:15.124499712', '2023-03-01T21:23:15.180000000'], ['2023-03-01T21:28:15.237999872', '2023-03-01T21:28:15.294000128', '2023-03-01T21:28:15.348499968', ..., '2023-03-01T21:28:15.071000064', '2023-03-01T21:28:15.125999872', '2023-03-01T21:28:15.182499840'], ['2023-03-01T21:33:15.287000064', '2023-03-01T21:33:15.342999808', '2023-03-01T21:33:15.397500160', ..., '2023-03-01T21:33:15.120000000', '2023-03-01T21:33:15.175500032', '2023-03-01T21:33:15.231000064'], ['2023-03-01T21:38:15.271500032', '2023-03-01T21:38:15.327000064', '2023-03-01T21:38:15.382500096', ..., '2023-03-01T21:38:15.104499712', '2023-03-01T21:38:15.159500032', '2023-03-01T21:38:15.216000000']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int646
array(6)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float647.998 7.998 7.998 7.998 7.998 7.998
array([7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 496, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.236e+05 1.239e+05 elevation (volume_time, azimuth) float64 7.987 7.987 ... 7.987 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:13... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 6 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 7.998 7.998 7.998 7.998 7.998 7.998 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_6- azimuth: 360
- range: 240
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.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., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(volume_time, azimuth)float6411.99 11.99 11.99 ... 11.99 11.99
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:13:30.372499968 .....
- standard_name :
- time
array([['2023-03-01T21:13:30.372499968', '2023-03-01T21:13:30.406000128', '2023-03-01T21:13:30.439500032', ..., '2023-03-01T21:13:30.272499968', '2023-03-01T21:13:30.305499904', '2023-03-01T21:13:30.339500032'], ['2023-03-01T21:18:30.656500224', '2023-03-01T21:18:30.689500160', '2023-03-01T21:18:30.723500032', ..., '2023-03-01T21:18:30.556000000', '2023-03-01T21:18:30.589499904', '2023-03-01T21:18:30.622499840'], ['2023-03-01T21:23:30.290499840', '2023-03-01T21:23:30.323500032', '2023-03-01T21:23:30.357500160', ..., '2023-03-01T21:23:30.190000128', '2023-03-01T21:23:30.223500032', '2023-03-01T21:23:30.256999936'], ['2023-03-01T21:28:30.290499840', '2023-03-01T21:28:30.324000000', '2023-03-01T21:28:30.357500160', ..., '2023-03-01T21:28:30.190000128', '2023-03-01T21:28:30.223500032', '2023-03-01T21:28:30.256499968'], ['2023-03-01T21:33:30.330999808', '2023-03-01T21:33:30.364499968', '2023-03-01T21:33:30.398000128', ..., '2023-03-01T21:33:30.231000064', '2023-03-01T21:33:30.264000000', '2023-03-01T21:33:30.297499904'], ['2023-03-01T21:38:30.324999936', '2023-03-01T21:38:30.358500096', '2023-03-01T21:38:30.391500032', ..., '2023-03-01T21:38:30.224499968', '2023-03-01T21:38:30.257999872', '2023-03-01T21:38:30.291500032']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int647
array(7)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float6412.0 12.0 12.0 12.0 12.0 12.0
array([12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (volume_time, azimuth) float64 11.99 11.99 ... 11.99 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:13... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 7 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 12.0 12.0 12.0 12.0 12.0 12.0 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_7- azimuth: 360
- range: 240
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.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., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(volume_time, azimuth)float6416.98 16.98 16.98 ... 16.98 16.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:13:42.374000128 .....
- standard_name :
- time
array([['2023-03-01T21:13:42.374000128', '2023-03-01T21:13:42.407500032', '2023-03-01T21:13:42.440499968', ..., '2023-03-01T21:13:42.273499904', '2023-03-01T21:13:42.306499840', '2023-03-01T21:13:42.340499968'], ['2023-03-01T21:18:42.657499904', '2023-03-01T21:18:42.690500096', '2023-03-01T21:18:42.724499968', ..., '2023-03-01T21:18:42.557499904', '2023-03-01T21:18:42.590499840', '2023-03-01T21:18:42.624000000'], ['2023-03-01T21:23:42.291500032', '2023-03-01T21:23:42.325499904', '2023-03-01T21:23:42.358500096', ..., '2023-03-01T21:23:42.191500032', '2023-03-01T21:23:42.224499968', '2023-03-01T21:23:42.257999872'], ['2023-03-01T21:28:42.291500032', '2023-03-01T21:28:42.324999936', '2023-03-01T21:28:42.358500096', ..., '2023-03-01T21:28:42.191500032', '2023-03-01T21:28:42.224499968', '2023-03-01T21:28:42.258500096'], ['2023-03-01T21:33:42.332499968', '2023-03-01T21:33:42.365999872', '2023-03-01T21:33:42.399499776', ..., '2023-03-01T21:33:42.232000000', '2023-03-01T21:33:42.265500160', '2023-03-01T21:33:42.298500096'], ['2023-03-01T21:38:42.325999872', '2023-03-01T21:38:42.359500032', '2023-03-01T21:38:42.392499968', ..., '2023-03-01T21:38:42.225500160', '2023-03-01T21:38:42.259500032', '2023-03-01T21:38:42.292499968']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int648
array(8)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float6417.0 17.0 17.0 17.0 17.0 17.0
array([17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (volume_time, azimuth) float64 16.98 16.98 ... 16.98 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:13... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 8 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 17.0 17.0 17.0 17.0 17.0 17.0 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_8- azimuth: 360
- range: 240
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.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., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(volume_time, azimuth)float6424.98 24.98 24.98 ... 24.98 24.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:13:54.375000064 .....
- standard_name :
- time
array([['2023-03-01T21:13:54.375000064', '2023-03-01T21:13:54.408499968', '2023-03-01T21:13:54.441499904', ..., '2023-03-01T21:13:54.275000064', '2023-03-01T21:13:54.308499968', '2023-03-01T21:13:54.341500160'], ['2023-03-01T21:18:54.658999808', '2023-03-01T21:18:54.692500224', '2023-03-01T21:18:54.725500160', ..., '2023-03-01T21:18:54.558500096', '2023-03-01T21:18:54.591500032', '2023-03-01T21:18:54.624999936'], ['2023-03-01T21:23:54.292499968', '2023-03-01T21:23:54.326499840', '2023-03-01T21:23:54.359500032', ..., '2023-03-01T21:23:54.192500224', '2023-03-01T21:23:54.225500160', '2023-03-01T21:23:54.259500032'], ['2023-03-01T21:28:54.292999936', '2023-03-01T21:28:54.326499840', '2023-03-01T21:28:54.359500032', ..., '2023-03-01T21:28:54.192500224', '2023-03-01T21:28:54.225500160', '2023-03-01T21:28:54.259500032'], ['2023-03-01T21:33:54.333499904', '2023-03-01T21:33:54.367000064', '2023-03-01T21:33:54.400499968', ..., '2023-03-01T21:33:54.232999936', '2023-03-01T21:33:54.266500096', '2023-03-01T21:33:54.299500032'], ['2023-03-01T21:38:54.327500032', '2023-03-01T21:38:54.360500224', '2023-03-01T21:38:54.394000128', ..., '2023-03-01T21:38:54.227000064', '2023-03-01T21:38:54.260499968', '2023-03-01T21:38:54.293499904']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int649
array(9)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float6425.0 25.0 25.0 25.0 25.0 25.0
array([24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (volume_time, azimuth) float64 24.98 24.98 ... 24.98 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:13... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 9 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 25.0 25.0 25.0 25.0 25.0 25.0 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_9- volume_time: 6
- volume_number(volume_time)int640 0 0 0 0 0
array([0, 0, 0, 0, 0, 0])
- platform_type(volume_time)<U5'fixed' 'fixed' ... 'fixed' 'fixed'
array(['fixed', 'fixed', 'fixed', 'fixed', 'fixed', 'fixed'], dtype='<U5')
- instrument_type(volume_time)<U5'radar' 'radar' ... 'radar' 'radar'
array(['radar', 'radar', 'radar', 'radar', 'radar', 'radar'], dtype='<U5')
- time_coverage_start(volume_time)<U20'2023-03-01T21:10:58Z' ... '2023...
array(['2023-03-01T21:10:58Z', '2023-03-01T21:15:58Z', '2023-03-01T21:20:58Z', '2023-03-01T21:25:58Z', '2023-03-01T21:30:58Z', '2023-03-01T21:35:58Z'], dtype='<U20')
- time_coverage_end(volume_time)<U20'2023-03-01T21:15:57Z' ... '2023...
array(['2023-03-01T21:15:57Z', '2023-03-01T21:20:57Z', '2023-03-01T21:25:57Z', '2023-03-01T21:30:57Z', '2023-03-01T21:35:57Z', '2023-03-01T21:40:57Z'], dtype='<U20')
- longitude(volume_time)float646.967 6.967 6.967 6.967 6.967 6.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array([6.967111, 6.967111, 6.967111, 6.967111, 6.967111, 6.967111])
- altitude(volume_time)float64185.1 185.1 185.1 185.1 185.1 185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array([185.11, 185.11, 185.11, 185.11, 185.11, 185.11])
- latitude(volume_time)float6451.41 51.41 51.41 51.41 51.41 51.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array([51.405649, 51.405649, 51.405649, 51.405649, 51.405649, 51.405649])
- 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
Sweep Groups#
[15]:
vol["sweep_0"]
[15]:
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 5.482 5.482 ... 5.482 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:15... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 0 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 5.499 5.499 5.499 5.499 5.499 5.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- 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([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float645.482 5.482 5.482 ... 5.482 5.482
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:15:54.503500032 .....
- standard_name :
- time
array([['2023-03-01T21:15:54.503500032', '2023-03-01T21:15:54.565999872', '2023-03-01T21:15:54.627999744', ..., '2023-03-01T21:15:54.316000000', '2023-03-01T21:15:54.377999872', '2023-03-01T21:15:54.440499968'], ['2023-03-01T21:20:54.255000064', '2023-03-01T21:20:54.316999936', '2023-03-01T21:20:54.379000064', ..., '2023-03-01T21:20:54.066999808', '2023-03-01T21:20:54.129000192', '2023-03-01T21:20:54.192000000'], ['2023-03-01T21:25:54.268000000', '2023-03-01T21:25:54.329999872', '2023-03-01T21:25:54.392499968', ..., '2023-03-01T21:25:54.080000000', '2023-03-01T21:25:54.142000128', '2023-03-01T21:25:54.205500160'], ['2023-03-01T21:30:54.320000256', '2023-03-01T21:30:54.381999872', '2023-03-01T21:30:54.444499968', ..., '2023-03-01T21:30:54.132000000', '2023-03-01T21:30:54.194000128', '2023-03-01T21:30:54.257500160'], ['2023-03-01T21:35:54.281499904', '2023-03-01T21:35:54.343999744', '2023-03-01T21:35:54.406000128', ..., '2023-03-01T21:35:54.092999936', '2023-03-01T21:35:54.155500032', '2023-03-01T21:35:54.218500096'], ['2023-03-01T21:40:54.281000192', '2023-03-01T21:40:54.343999744', '2023-03-01T21:40:54.406499840', ..., '2023-03-01T21:40:54.093999872', '2023-03-01T21:40:54.156000256', '2023-03-01T21:40:54.217999872']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int640
array(0)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float645.499 5.499 5.499 5.499 5.499 5.499
array([5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
plot sweeps#
DBZH#
[16]:
vol["sweep_0"].isel(volume_time=0)
[16]:
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (azimuth) float64 5.482 5.482 5.482 ... 5.482 5.482 5.482 time (azimuth) datetime64[ns] 2023-03-01T21:15:54.503500032... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Data variables: DBZH (azimuth, range) float32 -64.0 -64.0 ... -64.0 -64.0 sweep_mode <U20 'azimuth_surveillance' sweep_number int64 0 prt_mode <U7 'not_set' follow_mode <U7 'not_set' sweep_fixed_angle float64 5.499 VRADH (azimuth, range) float32 -128.0 -128.0 ... -128.0 -128.0
- azimuth: 360
- range: 720
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- 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([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(azimuth)float645.482 5.482 5.482 ... 5.482 5.482
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.43823242, 5.51513672, 5.51513672, 5.4876709 , 5.46569824, 5.46020508, 5.46569824, 5.48217773, 5.49316406, 5.49316406, 5.4876709 , 5.47668457, 5.47119141, 5.47119141, 5.47668457, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, ... 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773])
- time(azimuth)datetime64[ns]2023-03-01T21:15:54.503500032 .....
- standard_name :
- time
array(['2023-03-01T21:15:54.503500032', '2023-03-01T21:15:54.565999872', '2023-03-01T21:15:54.627999744', '2023-03-01T21:15:54.691500032', '2023-03-01T21:15:54.754000128', '2023-03-01T21:15:54.816999936', '2023-03-01T21:15:54.879000064', '2023-03-01T21:15:54.941499904', '2023-03-01T21:15:55.004000256', '2023-03-01T21:15:55.066499840', '2023-03-01T21:15:55.128499968', '2023-03-01T21:15:55.191000064', '2023-03-01T21:15:55.252999680', '2023-03-01T21:15:55.316000000', '2023-03-01T21:15:55.378500096', '2023-03-01T21:15:55.441999872', '2023-03-01T21:15:55.504000256', '2023-03-01T21:15:55.566999808', '2023-03-01T21:15:55.628499968', '2023-03-01T21:15:55.691000064', '2023-03-01T21:15:55.752999680', '2023-03-01T21:15:55.816499968', '2023-03-01T21:15:55.879000064', '2023-03-01T21:15:55.941999872', '2023-03-01T21:15:56.003500032', '2023-03-01T21:15:56.066499840', '2023-03-01T21:15:56.129499904', '2023-03-01T21:15:56.192000000', '2023-03-01T21:15:56.252999936', '2023-03-01T21:15:56.315500032', '2023-03-01T21:15:56.377999872', '2023-03-01T21:15:56.440999936', '2023-03-01T21:15:56.502999808', '2023-03-01T21:15:56.565999872', '2023-03-01T21:15:56.628000000', '2023-03-01T21:15:56.690000128', '2023-03-01T21:15:56.752999680', '2023-03-01T21:15:56.815000064', '2023-03-01T21:15:56.877500160', '2023-03-01T21:15:56.940499968', ... '2023-03-01T21:15:52.127999744', '2023-03-01T21:15:52.190000128', '2023-03-01T21:15:52.251999744', '2023-03-01T21:15:52.315000064', '2023-03-01T21:15:52.376999936', '2023-03-01T21:15:52.440000000', '2023-03-01T21:15:52.501999872', '2023-03-01T21:15:52.564499968', '2023-03-01T21:15:52.626999808', '2023-03-01T21:15:52.689000192', '2023-03-01T21:15:52.751500032', '2023-03-01T21:15:52.814499840', '2023-03-01T21:15:52.876999936', '2023-03-01T21:15:52.940000000', '2023-03-01T21:15:53.000999936', '2023-03-01T21:15:53.064000256', '2023-03-01T21:15:53.126999808', '2023-03-01T21:15:53.190000128', '2023-03-01T21:15:53.252499968', '2023-03-01T21:15:53.316000000', '2023-03-01T21:15:53.377999872', '2023-03-01T21:15:53.440999936', '2023-03-01T21:15:53.502999808', '2023-03-01T21:15:53.564999936', '2023-03-01T21:15:53.626999808', '2023-03-01T21:15:53.690500096', '2023-03-01T21:15:53.751999744', '2023-03-01T21:15:53.815000064', '2023-03-01T21:15:53.878000128', '2023-03-01T21:15:53.940000000', '2023-03-01T21:15:54.002999808', '2023-03-01T21:15:54.064999936', '2023-03-01T21:15:54.126999808', '2023-03-01T21:15:54.190500096', '2023-03-01T21:15:54.252999680', '2023-03-01T21:15:54.316000000', '2023-03-01T21:15:54.377999872', '2023-03-01T21:15:54.440499968'], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], dtype=float32)
- sweep_mode()<U20'azimuth_surveillance'
array('azimuth_surveillance', dtype='<U20')
- sweep_number()int640
array(0)
- prt_mode()<U7'not_set'
array('not_set', dtype='<U7')
- follow_mode()<U7'not_set'
array('not_set', dtype='<U7')
- sweep_fixed_angle()float645.499
array(5.49865723)
- VRADH(azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], dtype=float32)
[17]:
fig, gs = pl.subplots(
4, 3, figsize=(20, 30), sharex=True, sharey=True, constrained_layout=True
)
for i, grp in enumerate(vol.groups[1:]):
swp = vol[grp].isel(volume_time=0).ds
swp = swp.assign_coords(sweep_mode=swp.sweep_mode)
swp.DBZH.pipe(wrl.georef.georeference_dataset).wrl.vis.plot(ax=gs.flat[i], fig=fig)
ax = pl.gca()
ax.set_title(swp.sweep_fixed_angle.values)
fig.delaxes(gs.flat[-2])
fig.delaxes(gs.flat[-1])

VRADH#
[18]:
fig, gs = pl.subplots(
4, 3, figsize=(20, 30), sharex=True, sharey=True, constrained_layout=True
)
for i, grp in enumerate(vol.groups[1:]):
swp = vol[grp].isel(volume_time=0).ds
swp = swp.assign_coords(sweep_mode=swp.sweep_mode)
swp.VRADH.pipe(wrl.georef.georeference_dataset).wrl.vis.plot(ax=gs.flat[i], fig=fig)
ax = pl.gca()
ax.set_title(swp.sweep_fixed_angle.values)
fig.delaxes(gs.flat[-2])
fig.delaxes(gs.flat[-1])

Plot single sweep using cartopy#
[19]:
vol0 = vol.isel(volume_time=0)
swp = vol0["sweep_9"].ds
# need to assign sweep_mode as coordinate
swp = swp.assign_coords(sweep_mode=swp.sweep_mode)
[20]:
import cartopy
import cartopy.crs as ccrs
import cartopy.feature as cfeature
map_trans = ccrs.AzimuthalEquidistant(
central_latitude=vol0.root.ds.latitude.values,
central_longitude=vol0.root.ds.longitude.values,
)
[21]:
map_proj = ccrs.AzimuthalEquidistant(
central_latitude=vol0.root.ds.latitude.values,
central_longitude=vol0.root.ds.longitude.values,
)
pm = swp.DBZH.pipe(wrl.georef.georeference_dataset).wrl.vis.plot(proj=map_proj)
ax = pl.gca()
ax.gridlines(crs=map_proj)
print(ax)
< GeoAxes: +proj=aeqd +ellps=WGS84 +lon_0=6.967111 +lat_0=51.405649 +x_0=0.0 +y_0=0.0 +no_defs +type=crs >

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

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

Inspect radar moments#
The DataArrays can be accessed by key or by attribute. Each DataArray inherits dimensions and coordinates of it’s parent dataset. There are attributes connected which are defined by Cf/Radial and/or ODIM_H5 standard.
[24]:
vol["sweep_9"].isel(volume_time=0).ds.DBZH
[24]:
<xarray.DataArray 'DBZH' (azimuth: 360, range: 240)> array([[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], dtype=float32) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 4.5 ... 356.5 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (azimuth) float64 24.98 24.98 24.98 24.98 ... 24.98 24.98 24.98 time (azimuth) datetime64[ns] 2023-03-01T21:13:54.375000064 ... 202... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Attributes: _Undetect: 0.0 long_name: Equivalent reflectivity factor H standard_name: radar_equivalent_reflectivity_factor_h units: dBZ
- azimuth: 360
- range: 240
- -64.0 -64.0 -64.0 -64.0 -64.0 -64.0 ... -64.0 -64.0 -64.0 -64.0 -64.0
array([[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.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., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(azimuth)float6424.98 24.98 24.98 ... 24.98 24.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, ... 24.99389648, 24.99389648, 24.99389648, 24.99389648, 24.98840332, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016])
- time(azimuth)datetime64[ns]2023-03-01T21:13:54.375000064 .....
- standard_name :
- time
array(['2023-03-01T21:13:54.375000064', '2023-03-01T21:13:54.408499968', '2023-03-01T21:13:54.441499904', '2023-03-01T21:13:54.475500032', '2023-03-01T21:13:54.508999936', '2023-03-01T21:13:54.542500096', '2023-03-01T21:13:54.575500032', '2023-03-01T21:13:54.608499968', '2023-03-01T21:13:54.641999872', '2023-03-01T21:13:54.675000064', '2023-03-01T21:13:54.708499968', '2023-03-01T21:13:54.741499904', '2023-03-01T21:13:54.775000064', '2023-03-01T21:13:54.808000000', '2023-03-01T21:13:54.841500160', '2023-03-01T21:13:54.875500032', '2023-03-01T21:13:54.908499968', '2023-03-01T21:13:54.941499904', '2023-03-01T21:13:54.975500032', '2023-03-01T21:13:55.008500224', '2023-03-01T21:13:55.041500160', '2023-03-01T21:13:55.075000064', '2023-03-01T21:13:55.108499968', '2023-03-01T21:13:55.141999872', '2023-03-01T21:13:55.175500032', '2023-03-01T21:13:55.208499968', '2023-03-01T21:13:55.242500096', '2023-03-01T21:13:55.275500032', '2023-03-01T21:13:55.308499968', '2023-03-01T21:13:55.341500160', '2023-03-01T21:13:55.375000064', '2023-03-01T21:13:55.408499968', '2023-03-01T21:13:55.441499904', '2023-03-01T21:13:55.474999808', '2023-03-01T21:13:55.508500224', '2023-03-01T21:13:55.541500160', '2023-03-01T21:13:55.575000064', '2023-03-01T21:13:55.608000000', '2023-03-01T21:13:55.641499904', '2023-03-01T21:13:55.674500096', ... '2023-03-01T21:13:53.107500032', '2023-03-01T21:13:53.140999936', '2023-03-01T21:13:53.174500096', '2023-03-01T21:13:53.207500032', '2023-03-01T21:13:53.241499904', '2023-03-01T21:13:53.274499840', '2023-03-01T21:13:53.307499776', '2023-03-01T21:13:53.340499968', '2023-03-01T21:13:53.374000128', '2023-03-01T21:13:53.407500032', '2023-03-01T21:13:53.440499968', '2023-03-01T21:13:53.473999872', '2023-03-01T21:13:53.507500032', '2023-03-01T21:13:53.540999936', '2023-03-01T21:13:53.573999872', '2023-03-01T21:13:53.607500032', '2023-03-01T21:13:53.641499904', '2023-03-01T21:13:53.674500096', '2023-03-01T21:13:53.707500032', '2023-03-01T21:13:53.741499904', '2023-03-01T21:13:53.775000064', '2023-03-01T21:13:53.808000000', '2023-03-01T21:13:53.841500160', '2023-03-01T21:13:53.874500096', '2023-03-01T21:13:53.908000000', '2023-03-01T21:13:53.940999936', '2023-03-01T21:13:53.974499840', '2023-03-01T21:13:54.007500032', '2023-03-01T21:13:54.041500160', '2023-03-01T21:13:54.074500096', '2023-03-01T21:13:54.108000000', '2023-03-01T21:13:54.141499904', '2023-03-01T21:13:54.175000064', '2023-03-01T21:13:54.208499968', '2023-03-01T21:13:54.241499904', '2023-03-01T21:13:54.275000064', '2023-03-01T21:13:54.308499968', '2023-03-01T21:13:54.341500160'], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- azimuthPandasIndex
PandasIndex(Float64Index([ 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, ... 350.5, 351.5, 352.5, 353.5, 354.5, 355.5, 356.5, 357.5, 358.5, 359.5], dtype='float64', name='azimuth', length=360))
- rangePandasIndex
PandasIndex(Float64Index([ 125.0, 375.0, 625.0, 875.0, 1125.0, 1375.0, 1625.0, 1875.0, 2125.0, 2375.0, ... 57625.0, 57875.0, 58125.0, 58375.0, 58625.0, 58875.0, 59125.0, 59375.0, 59625.0, 59875.0], dtype='float64', name='range', length=240))
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
[25]:
vol["sweep_9"].isel(volume_time=0).ds.sweep_mode
[25]:
<xarray.DataArray 'sweep_mode' ()> array('azimuth_surveillance', dtype='<U20') Coordinates: longitude float64 6.967 latitude float64 51.41 altitude float64 185.1
- 'azimuth_surveillance'
array('azimuth_surveillance', dtype='<U20')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
Plot Quasi Vertical Profile#
[26]:
ts = vol["sweep_9"]
ts
[26]:
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (volume_time, azimuth) float64 24.98 24.98 ... 24.98 time (volume_time, azimuth) datetime64[ns] 2023-03-01T21:13... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 9 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 25.0 25.0 25.0 25.0 25.0 25.0 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
- azimuth: 360
- range: 240
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.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., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(volume_time, azimuth)float6424.98 24.98 24.98 ... 24.98 24.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016]])
- time(volume_time, azimuth)datetime64[ns]2023-03-01T21:13:54.375000064 .....
- standard_name :
- time
array([['2023-03-01T21:13:54.375000064', '2023-03-01T21:13:54.408499968', '2023-03-01T21:13:54.441499904', ..., '2023-03-01T21:13:54.275000064', '2023-03-01T21:13:54.308499968', '2023-03-01T21:13:54.341500160'], ['2023-03-01T21:18:54.658999808', '2023-03-01T21:18:54.692500224', '2023-03-01T21:18:54.725500160', ..., '2023-03-01T21:18:54.558500096', '2023-03-01T21:18:54.591500032', '2023-03-01T21:18:54.624999936'], ['2023-03-01T21:23:54.292499968', '2023-03-01T21:23:54.326499840', '2023-03-01T21:23:54.359500032', ..., '2023-03-01T21:23:54.192500224', '2023-03-01T21:23:54.225500160', '2023-03-01T21:23:54.259500032'], ['2023-03-01T21:28:54.292999936', '2023-03-01T21:28:54.326499840', '2023-03-01T21:28:54.359500032', ..., '2023-03-01T21:28:54.192500224', '2023-03-01T21:28:54.225500160', '2023-03-01T21:28:54.259500032'], ['2023-03-01T21:33:54.333499904', '2023-03-01T21:33:54.367000064', '2023-03-01T21:33:54.400499968', ..., '2023-03-01T21:33:54.232999936', '2023-03-01T21:33:54.266500096', '2023-03-01T21:33:54.299500032'], ['2023-03-01T21:38:54.327500032', '2023-03-01T21:38:54.360500224', '2023-03-01T21:38:54.394000128', ..., '2023-03-01T21:38:54.227000064', '2023-03-01T21:38:54.260499968', '2023-03-01T21:38:54.293499904']], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32)
- sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20')
- sweep_number()int649
array(9)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float6425.0 25.0 25.0 25.0 25.0 25.0
array([24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]], dtype=float32)
[27]:
fig = pl.figure(figsize=(10, 4))
ax = fig.add_subplot(111)
ts.ds.DBZH.median("azimuth").plot(x="volume_time", vmin=-10, vmax=30, ax=ax)
ax.set_title(f"{np.datetime_as_string(ts.ds.time[0][0].values, unit='D')}")
ax.set_ylim(0, 20000)
[27]:
(0.0, 20000.0)

Export to OdimH5#
This exports the radar volume at given timestep including all moments into one ODIM_H5 compliant data file.
[28]:
vol0["sweep_9"]["sweep_number"]
[28]:
<xarray.DataArray 'sweep_number' ()> array(9) Coordinates: longitude float64 6.967 latitude float64 51.41 altitude float64 185.1
- 9
array(9)
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
[29]:
xradar.io.to_odim(vol0, "dwd_odim.h5")
Export to Cf/Radial2#
This exports the radar volume at given timestep including all moments into one Cf/Radial2 compliant data file.
[30]:
xradar.io.to_cfradial2(vol0, "dwd_cfradial2.nc")
Import again and check equality#
[31]:
vol1 = xradar.io.open_odim_datatree("dwd_odim.h5")
vol2 = open_datatree("dwd_cfradial2.nc")
[32]:
xr.testing.assert_equal(vol1.root.ds, vol2.root.ds)
for grp in vol1.groups[1:]:
xr.testing.assert_equal(
vol1[grp]
.to_dataset()
.reset_coords(["latitude", "longitude", "altitude"], drop=True),
vol2[grp].to_dataset().swap_dims(time="azimuth").sortby("azimuth"),
)