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 plt
import numpy as np
import xarray as xr
try:
get_ipython().run_line_magic("matplotlib inline")
except:
plt.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.49.0'
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)
3%|▎ | 7/240 [00:03<01:45, 2.20it/s]
3%|▎ | 7/240 [00:01<00:49, 4.67it/s]
3%|▎ | 7/240 [00:01<00:50, 4.58it/s]
3%|▎ | 7/240 [00:01<00:49, 4.71it/s]
2%|▎ | 6/240 [00:01<00:53, 4.40it/s]
2%|▎ | 6/240 [00:01<00:51, 4.57it/s]
2%|▎ | 6/240 [00:01<00:47, 4.88it/s]
2%|▎ | 6/240 [00:01<00:47, 4.91it/s]
2%|▎ | 6/240 [00:01<00:47, 4.91it/s]
2%|▎ | 6/240 [00:01<00:50, 4.68it/s]
CPU times: user 3.91 s, sys: 110 ms, total: 4.02 s
Wall time: 15.4 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:01<00:50, 4.62it/s]
3%|▎ | 7/240 [00:01<00:47, 4.95it/s]
3%|▎ | 7/240 [00:01<00:47, 4.89it/s]
3%|▎ | 7/240 [00:01<00:49, 4.75it/s]
3%|▎ | 7/240 [00:01<00:52, 4.46it/s]
2%|▎ | 6/240 [00:02<01:33, 2.50it/s]
2%|▎ | 6/240 [00:01<00:50, 4.61it/s]
2%|▎ | 6/240 [00:01<00:50, 4.65it/s]
2%|▎ | 6/240 [00:01<00:50, 4.61it/s]
2%|▎ | 6/240 [00:01<00:50, 4.63it/s]
CPU times: user 3.93 s, sys: 49.7 ms, total: 3.98 s
Wall time: 15.1 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-10-02T10:07:30Z' ... '2023-... time_coverage_end (volume_time) <U20 '2023-10-02T10:12:29Z' ... '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
- range: 720
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- elevation(volume_time, azimuth)float645.493 5.493 5.493 ... 5.493 5.493
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406]])
- time(volume_time, azimuth)datetime64[ns]2023-10-02T10:10:54.014500096 .....
- standard_name :
- time
array([['2023-10-02T10:10:54.014500096', '2023-10-02T10:10:54.078000128', '2023-10-02T10:10:54.139999744', ..., '2023-10-02T10:10:53.826000128', '2023-10-02T10:10:53.888999936', '2023-10-02T10:10:53.951000320'], ['2023-10-02T10:15:53.994500096', '2023-10-02T10:15:54.056999936', '2023-10-02T10:15:54.119500288', ..., '2023-10-02T10:15:53.805999872', '2023-10-02T10:15:53.868499968', '2023-10-02T10:15:53.931000064'], ['2023-10-02T10:20:53.997000192', '2023-10-02T10:20:54.060000000', '2023-10-02T10:20:54.123000064', ..., '2023-10-02T10:20:53.808000000', '2023-10-02T10:20:53.870500096', '2023-10-02T10:20:53.933000192'], ['2023-10-02T10:25:53.999500032', '2023-10-02T10:25:54.061999872', '2023-10-02T10:25:54.124999936', ..., '2023-10-02T10:25:53.810500096', '2023-10-02T10:25:53.873499904', '2023-10-02T10:25:53.936499968'], ['2023-10-02T10:30:54.052000000', '2023-10-02T10:30:54.115000064', '2023-10-02T10:30:54.177999872', ..., '2023-10-02T10:30:53.862999808', '2023-10-02T10:30:53.925499904', '2023-10-02T10:30:53.988000000'], ['2023-10-02T10:35:53.997000192', '2023-10-02T10:35:54.060000000', '2023-10-02T10:35:54.123000064', ..., '2023-10-02T10:35:53.808000000', '2023-10-02T10:35:53.870500096', '2023-10-02T10:35:53.933000192']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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 , 3.3067932, ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , 1.150444 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ... [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ..., [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 5.493 5.493 ... 5.493 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:10... 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) float64 -128.0 ... -128.0
sweep_0- range: 720
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- elevation(volume_time, azimuth)float644.493 4.493 4.493 ... 4.493 4.493
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[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.48242188, 4.48242188, 4.48242188, ..., 4.48242188, 4.48242188, 4.48242188], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ]])
- time(volume_time, azimuth)datetime64[ns]2023-10-02T10:11:16.516499968 .....
- standard_name :
- time
array([['2023-10-02T10:11:16.516499968', '2023-10-02T10:11:16.580000000', '2023-10-02T10:11:16.642000128', ..., '2023-10-02T10:11:16.328000000', '2023-10-02T10:11:16.389999872', '2023-10-02T10:11:16.453500160'], ['2023-10-02T10:16:16.496999936', '2023-10-02T10:16:16.560000000', '2023-10-02T10:16:16.622499840', ..., '2023-10-02T10:16:16.308000000', '2023-10-02T10:16:16.370500096', '2023-10-02T10:16:16.433500160'], ['2023-10-02T10:21:16.499499776', '2023-10-02T10:21:16.563000064', '2023-10-02T10:21:16.624999936', ..., '2023-10-02T10:21:16.310999808', '2023-10-02T10:21:16.373000192', '2023-10-02T10:21:16.435999744'], ['2023-10-02T10:26:16.501500160', '2023-10-02T10:26:16.564499968', '2023-10-02T10:26:16.626999808', ..., '2023-10-02T10:26:16.312999936', '2023-10-02T10:26:16.375500032', '2023-10-02T10:26:16.438499840'], ['2023-10-02T10:31:16.554500096', '2023-10-02T10:31:16.618000128', '2023-10-02T10:31:16.679999744', ..., '2023-10-02T10:31:16.365999872', '2023-10-02T10:31:16.428000000', '2023-10-02T10:31:16.491499776'], ['2023-10-02T10:36:16.498499840', '2023-10-02T10:36:16.562000128', '2023-10-02T10:36:16.624000000', ..., '2023-10-02T10:36:16.310999808', '2023-10-02T10:36:16.373499904', '2023-10-02T10:36:16.435999744']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 4.493 4.493 ... 4.493 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10: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) float64 -128.0 ... -128.0
sweep_1- range: 720
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- elevation(volume_time, azimuth)float643.505 3.505 3.505 ... 3.505 3.505
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867]])
- time(volume_time, azimuth)datetime64[ns]2023-10-02T10:11:39.019000064 .....
- standard_name :
- time
array([['2023-10-02T10:11:39.019000064', '2023-10-02T10:11:39.082000128', '2023-10-02T10:11:39.144000000', ..., '2023-10-02T10:11:38.830999808', '2023-10-02T10:11:38.893000192', '2023-10-02T10:11:38.955500032'], ['2023-10-02T10:16:38.999499776', '2023-10-02T10:16:39.063000064', '2023-10-02T10:16:39.124999936', ..., '2023-10-02T10:16:38.810999808', '2023-10-02T10:16:38.873000192', '2023-10-02T10:16:38.935999744'], ['2023-10-02T10:21:39.001500160', '2023-10-02T10:21:39.064999936', '2023-10-02T10:21:39.126999808', ..., '2023-10-02T10:21:38.812999936', '2023-10-02T10:21:38.875000064', '2023-10-02T10:21:38.938000128'], ['2023-10-02T10:26:39.003500032', '2023-10-02T10:26:39.065999872', '2023-10-02T10:26:39.128499968', ..., '2023-10-02T10:26:38.815000064', '2023-10-02T10:26:38.877500160', '2023-10-02T10:26:38.940000000'], ['2023-10-02T10:31:39.056000000', '2023-10-02T10:31:39.119500288', '2023-10-02T10:31:39.182000128', ..., '2023-10-02T10:31:38.868000000', '2023-10-02T10:31:38.930500096', '2023-10-02T10:31:38.993499904'], ['2023-10-02T10:36:39.001500160', '2023-10-02T10:36:39.064000256', '2023-10-02T10:36:39.126500096', ..., '2023-10-02T10:36:38.813000192', '2023-10-02T10:36:38.876000000', '2023-10-02T10:36:38.938000128']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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 , -5.4094276, 1.674881 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ... [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ..., [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 3.505 3.505 ... 3.505 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10: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) float64 -128.0 ... -128.0
sweep_2- range: 720
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- 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-10-02T10:12:01.520999936 .....
- standard_name :
- time
array([['2023-10-02T10:12:01.520999936', '2023-10-02T10:12:01.584499712', '2023-10-02T10:12:01.647000064', ..., '2023-10-02T10:12:01.332000000', '2023-10-02T10:12:01.394500096', '2023-10-02T10:12:01.457499904'], ['2023-10-02T10:17:01.501500160', '2023-10-02T10:17:01.564999936', '2023-10-02T10:17:01.626999808', ..., '2023-10-02T10:17:01.312999936', '2023-10-02T10:17:01.375000064', '2023-10-02T10:17:01.437499904'], ['2023-10-02T10:22:01.504000000', '2023-10-02T10:22:01.566999808', '2023-10-02T10:22:01.629000192', ..., '2023-10-02T10:22:01.315000064', '2023-10-02T10:22:01.376999936', '2023-10-02T10:22:01.440499968'], ['2023-10-02T10:27:01.506500096', '2023-10-02T10:27:01.569999872', '2023-10-02T10:27:01.632000000', ..., '2023-10-02T10:27:01.318000128', '2023-10-02T10:27:01.380000000', '2023-10-02T10:27:01.442999808'], ['2023-10-02T10:32:01.559500288', '2023-10-02T10:32:01.622499840', '2023-10-02T10:32:01.683500032', ..., '2023-10-02T10:32:01.371000064', '2023-10-02T10:32:01.433000192', '2023-10-02T10:32:01.495500032'], ['2023-10-02T10:37:01.504000000', '2023-10-02T10:37:01.566999808', '2023-10-02T10:37:01.629499904', ..., '2023-10-02T10:37:01.315000064', '2023-10-02T10:37:01.376999936', '2023-10-02T10:37:01.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(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 2.483 2.483 ... 2.483 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10: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) float64 -128.0 ... -128.0
sweep_3- range: 720
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- elevation(volume_time, azimuth)float641.494 1.494 1.494 ... 1.483 1.483
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[1.49414062, 1.49414062, 1.49414062, ..., 1.49414062, 1.49414062, 1.49414062], [1.49414062, 1.49414062, 1.49414062, ..., 1.49414062, 1.49414062, 1.49414062], [1.4831543 , 1.4831543 , 1.4831543 , ..., 1.4831543 , 1.4831543 , 1.4831543 ], [1.49414062, 1.49414062, 1.49414062, ..., 1.49414062, 1.49414062, 1.49414062], [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-10-02T10:12:24.024000256 .....
- standard_name :
- time
array([['2023-10-02T10:12:24.024000256', '2023-10-02T10:12:24.086999808', '2023-10-02T10:12:24.149000192', ..., '2023-10-02T10:12:23.835000064', '2023-10-02T10:12:23.896999936', '2023-10-02T10:12:23.960499968'], ['2023-10-02T10:17:24.004000256', '2023-10-02T10:17:24.066999808', '2023-10-02T10:17:24.130000128', ..., '2023-10-02T10:17:23.815500032', '2023-10-02T10:17:23.878000128', '2023-10-02T10:17:23.940000000'], ['2023-10-02T10:22:24.006000128', '2023-10-02T10:22:24.068999936', '2023-10-02T10:22:24.132000000', ..., '2023-10-02T10:22:23.816999936', '2023-10-02T10:22:23.879500032', '2023-10-02T10:22:23.941999872'], ['2023-10-02T10:27:24.008999936', '2023-10-02T10:27:24.072000000', '2023-10-02T10:27:24.133999872', ..., '2023-10-02T10:27:23.820000000', '2023-10-02T10:27:23.881999872', '2023-10-02T10:27:23.945499904'], ['2023-10-02T10:32:24.060999936', '2023-10-02T10:32:24.124499968', '2023-10-02T10:32:24.187000064', ..., '2023-10-02T10:32:23.872000000', '2023-10-02T10:32:23.934500096', '2023-10-02T10:32:23.997000192'], ['2023-10-02T10:37:24.006000128', '2023-10-02T10:37:24.068999936', '2023-10-02T10:37:24.132000000', ..., '2023-10-02T10:37:23.816999936', '2023-10-02T10:37:23.879500032', '2023-10-02T10:37:23.941999872']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
array([[[-64.00293 , -64.00293 , -64.00293 , ..., 3.7462616, 7.839226 , 6.854805 ], [-64.00293 , -64.00293 , -64.00293 , ..., 8.981857 , 6.8577347, 7.3059998], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ..., [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., 7.2972107, -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ... [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ..., [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128. , -128. , -128. , ..., 4.89077425, -128. , 6.44160283], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., 4.83608509, 4.12121952, 4.69154942], [-128. , -128. , -128. , ..., 4.390759 , 4.77748955, 5.00405896]], [[-128. , -128. , -128. , ..., 5.24625385, 5.55876339, 5.26969207], [-128. , -128. , -128. , ..., 6.55879391, 7.18771935, 5.91033662], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ... [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 1.494 1.494 ... 1.483 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10: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) float64 -128.0 ... -128.0
sweep_4- range: 720
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- elevation(volume_time, azimuth)float640.4834 0.4834 ... 0.4834 0.4834
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844]])
- time(volume_time, azimuth)datetime64[ns]2023-10-02T10:07:52.011000064 .....
- standard_name :
- time
array([['2023-10-02T10:07:52.011000064', '2023-10-02T10:07:52.093999872', '2023-10-02T10:07:52.177999872', ..., '2023-10-02T10:07:51.759500032', '2023-10-02T10:07:51.842500096', '2023-10-02T10:07:51.926499840'], ['2023-10-02T10:12:52.001999872', '2023-10-02T10:12:52.084999936', '2023-10-02T10:12:52.169000192', ..., '2023-10-02T10:12:51.750499840', '2023-10-02T10:12:51.833499904', '2023-10-02T10:12:51.917499904'], ['2023-10-02T10:17:51.974499840', '2023-10-02T10:17:52.058000128', '2023-10-02T10:17:52.141499904', ..., '2023-10-02T10:17:51.723000064', '2023-10-02T10:17:51.805499904', '2023-10-02T10:17:51.889500160'], ['2023-10-02T10:22:51.992000000', '2023-10-02T10:22:52.076000256', '2023-10-02T10:22:52.159500032', ..., '2023-10-02T10:22:51.740499968', '2023-10-02T10:22:51.824000000', '2023-10-02T10:22:51.907500032'], ['2023-10-02T10:27:51.994500096', '2023-10-02T10:27:52.078500096', '2023-10-02T10:27:52.162000128', ..., '2023-10-02T10:27:51.743000064', '2023-10-02T10:27:51.826499840', '2023-10-02T10:27:51.909999872'], ['2023-10-02T10:32:52.016499968', '2023-10-02T10:32:52.100500224', '2023-10-02T10:32:52.184000000', ..., '2023-10-02T10:32:51.765500160', '2023-10-02T10:32:51.848999936', '2023-10-02T10:32:51.932499968']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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 , ..., 6.1428604, -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ... [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ..., [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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. , 2.19928587, 2.67586291], [-128. , -128. , -128. , ..., 3.82433546, 4.94155705, 4.41419721]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ... [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 0.4834 0.4834 ... 0.4834 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:07... 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) float64 -128.0 ... -128.0
sweep_5- range: 496
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- elevation(volume_time, azimuth)float647.976 7.976 7.976 ... 7.987 7.987
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[7.97607422, 7.97607422, 7.97607422, ..., 7.97607422, 7.97607422, 7.97607422], [7.97607422, 7.97607422, 7.97607422, ..., 7.97607422, 7.97607422, 7.97607422], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.97607422, 7.97607422, 7.97607422, ..., 7.97607422, 7.97607422, 7.97607422], [7.97607422, 7.97607422, 7.97607422, ..., 7.97607422, 7.97607422, 7.97607422], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055]])
- time(volume_time, azimuth)datetime64[ns]2023-10-02T10:08:15.033500160 .....
- standard_name :
- time
array([['2023-10-02T10:08:15.033500160', '2023-10-02T10:08:15.089499904', '2023-10-02T10:08:15.144999936', ..., '2023-10-02T10:08:14.865499904', '2023-10-02T10:08:14.921999872', '2023-10-02T10:08:14.977499904'], ['2023-10-02T10:13:15.029499904', '2023-10-02T10:13:15.085499904', '2023-10-02T10:13:15.140999936', ..., '2023-10-02T10:13:14.861499904', '2023-10-02T10:13:14.917499904', '2023-10-02T10:13:14.972499968'], ['2023-10-02T10:18:15.012499712', '2023-10-02T10:18:15.067999744', '2023-10-02T10:18:15.123499776', ..., '2023-10-02T10:18:14.843999744', '2023-10-02T10:18:14.899499776', '2023-10-02T10:18:14.955500032'], ['2023-10-02T10:23:15.024499968', '2023-10-02T10:23:15.080500224', '2023-10-02T10:23:15.137000192', ..., '2023-10-02T10:23:14.857500160', '2023-10-02T10:23:14.913000192', '2023-10-02T10:23:14.968500224'], ['2023-10-02T10:28:15.026500096', '2023-10-02T10:28:15.082500096', '2023-10-02T10:28:15.138000128', ..., '2023-10-02T10:28:14.859500032', '2023-10-02T10:28:14.915000064', '2023-10-02T10:28:14.970500096'], ['2023-10-02T10:33:15.058000128', '2023-10-02T10:33:15.114500096', '2023-10-02T10:33:15.170000128', ..., '2023-10-02T10:33:14.891000064', '2023-10-02T10:33:14.946000128', '2023-10-02T10:33:15.001500160']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Dimensions: (range: 496, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.236e+05 1.239e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 7.976 7.976 ... 7.987 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:08... 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) float64 -128.0 ... -128.0
sweep_6- range: 240
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- 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-10-02T10:08:30.171000064 .....
- standard_name :
- time
array([['2023-10-02T10:08:30.171000064', '2023-10-02T10:08:30.204499968', '2023-10-02T10:08:30.238500096', ..., '2023-10-02T10:08:30.070499840', '2023-10-02T10:08:30.103499776', '2023-10-02T10:08:30.137500160'], ['2023-10-02T10:13:30.161999872', '2023-10-02T10:13:30.196000000', '2023-10-02T10:13:30.229500160', ..., '2023-10-02T10:13:30.062000128', '2023-10-02T10:13:30.095000064', '2023-10-02T10:13:30.128499968'], ['2023-10-02T10:18:30.152999936', '2023-10-02T10:18:30.186500096', '2023-10-02T10:18:30.220499968', ..., '2023-10-02T10:18:30.052499968', '2023-10-02T10:18:30.085499904', '2023-10-02T10:18:30.119500032'], ['2023-10-02T10:23:30.160999936', '2023-10-02T10:23:30.194500096', '2023-10-02T10:23:30.228499968', ..., '2023-10-02T10:23:30.060999936', '2023-10-02T10:23:30.094500096', '2023-10-02T10:23:30.127500032'], ['2023-10-02T10:28:30.162499840', '2023-10-02T10:28:30.196000000', '2023-10-02T10:28:30.229500160', ..., '2023-10-02T10:28:30.062000128', '2023-10-02T10:28:30.095500032', '2023-10-02T10:28:30.128499968'], ['2023-10-02T10:33:30.183000064', '2023-10-02T10:33:30.216499968', '2023-10-02T10:33:30.250499840', ..., '2023-10-02T10:33:30.082500096', '2023-10-02T10:33:30.115500032', '2023-10-02T10:33:30.149499904']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Dimensions: (range: 240, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 11.99 11.99 ... 11.99 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:08... 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) float64 -128.0 ... -128.0
sweep_7- range: 240
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- elevation(volume_time, azimuth)float6416.97 16.97 16.97 ... 16.97 16.97
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695]])
- time(volume_time, azimuth)datetime64[ns]2023-10-02T10:08:42.172000 ... 2...
- standard_name :
- time
array([['2023-10-02T10:08:42.172000000', '2023-10-02T10:08:42.205499904', '2023-10-02T10:08:42.239500032', ..., '2023-10-02T10:08:42.072000000', '2023-10-02T10:08:42.105499904', '2023-10-02T10:08:42.138500096'], ['2023-10-02T10:13:42.163500032', '2023-10-02T10:13:42.197499904', '2023-10-02T10:13:42.230500096', ..., '2023-10-02T10:13:42.063500032', '2023-10-02T10:13:42.096499968', '2023-10-02T10:13:42.129499904'], ['2023-10-02T10:18:42.154000128', '2023-10-02T10:18:42.187500032', '2023-10-02T10:18:42.221499904', ..., '2023-10-02T10:18:42.053499904', '2023-10-02T10:18:42.086499840', '2023-10-02T10:18:42.120499968'], ['2023-10-02T10:23:42.162499840', '2023-10-02T10:23:42.196499968', '2023-10-02T10:23:42.229500160', ..., '2023-10-02T10:23:42.062000128', '2023-10-02T10:23:42.095500032', '2023-10-02T10:23:42.128499968'], ['2023-10-02T10:28:42.164000000', '2023-10-02T10:28:42.197499904', '2023-10-02T10:28:42.231000064', ..., '2023-10-02T10:28:42.063000064', '2023-10-02T10:28:42.096499968', '2023-10-02T10:28:42.129499904'], ['2023-10-02T10:33:42.184000000', '2023-10-02T10:33:42.217999872', '2023-10-02T10:33:42.251499776', ..., '2023-10-02T10:33:42.083500032', '2023-10-02T10:33:42.117000192', '2023-10-02T10:33:42.150500096']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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. , 3.74620808, ..., -128. , -128. , -128. ], ... [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]]])
<xarray.DatasetView> Dimensions: (range: 240, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 16.97 16.97 ... 16.97 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:08... 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) float64 -128.0 ... -128.0
sweep_8- range: 240
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- 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.99389648, 24.99389648, 24.99389648, ..., 24.99389648, 24.99389648, 24.99389648], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [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-10-02T10:08:54.173500160 .....
- standard_name :
- time
array([['2023-10-02T10:08:54.173500160', '2023-10-02T10:08:54.207500032', '2023-10-02T10:08:54.240499968', ..., '2023-10-02T10:08:54.072999936', '2023-10-02T10:08:54.106499840', '2023-10-02T10:08:54.139499776'], ['2023-10-02T10:13:54.164499968', '2023-10-02T10:13:54.198499840', '2023-10-02T10:13:54.231500032', ..., '2023-10-02T10:13:54.064499968', '2023-10-02T10:13:54.097500160', '2023-10-02T10:13:54.130500096'], ['2023-10-02T10:18:54.155000064', '2023-10-02T10:18:54.188499968', '2023-10-02T10:18:54.222500096', ..., '2023-10-02T10:18:54.054500096', '2023-10-02T10:18:54.088499968', '2023-10-02T10:18:54.121499904'], ['2023-10-02T10:23:54.163500032', '2023-10-02T10:23:54.197499904', '2023-10-02T10:23:54.230500096', ..., '2023-10-02T10:23:54.063500032', '2023-10-02T10:23:54.096499968', '2023-10-02T10:23:54.130000128'], ['2023-10-02T10:28:54.164999936', '2023-10-02T10:28:54.198499840', '2023-10-02T10:28:54.232000000', ..., '2023-10-02T10:28:54.064499968', '2023-10-02T10:28:54.097500160', '2023-10-02T10:28:54.131000064'], ['2023-10-02T10:33:54.185999872', '2023-10-02T10:33:54.218999808', '2023-10-02T10:33:54.252499968', ..., '2023-10-02T10:33:54.084999936', '2023-10-02T10:33:54.118500096', '2023-10-02T10:33:54.151500032']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Dimensions: (range: 240, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 24.98 24.98 ... 24.98 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:08... 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) float64 -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-10-02T10:07:30Z' ... '2023...
array(['2023-10-02T10:07:30Z', '2023-10-02T10:12:30Z', '2023-10-02T10:17:30Z', '2023-10-02T10:22:30Z', '2023-10-02T10:27:30Z', '2023-10-02T10:32:30Z'], dtype='<U20')
- time_coverage_end(volume_time)<U20'2023-10-02T10:12:29Z' ... '2023...
array(['2023-10-02T10:12:29Z', '2023-10-02T10:17:29Z', '2023-10-02T10:22:29Z', '2023-10-02T10:27:29Z', '2023-10-02T10:32:29Z', '2023-10-02T10:37:29Z'], 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: (range: 240, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 24.98 24.98 ... 24.98 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:08... 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) float64 -128.0 ... -128.0
- range: 240
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- 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.99389648, 24.99389648, 24.99389648, ..., 24.99389648, 24.99389648, 24.99389648], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [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-10-02T10:08:54.173500160 .....
- standard_name :
- time
array([['2023-10-02T10:08:54.173500160', '2023-10-02T10:08:54.207500032', '2023-10-02T10:08:54.240499968', ..., '2023-10-02T10:08:54.072999936', '2023-10-02T10:08:54.106499840', '2023-10-02T10:08:54.139499776'], ['2023-10-02T10:13:54.164499968', '2023-10-02T10:13:54.198499840', '2023-10-02T10:13:54.231500032', ..., '2023-10-02T10:13:54.064499968', '2023-10-02T10:13:54.097500160', '2023-10-02T10:13:54.130500096'], ['2023-10-02T10:18:54.155000064', '2023-10-02T10:18:54.188499968', '2023-10-02T10:18:54.222500096', ..., '2023-10-02T10:18:54.054500096', '2023-10-02T10:18:54.088499968', '2023-10-02T10:18:54.121499904'], ['2023-10-02T10:23:54.163500032', '2023-10-02T10:23:54.197499904', '2023-10-02T10:23:54.230500096', ..., '2023-10-02T10:23:54.063500032', '2023-10-02T10:23:54.096499968', '2023-10-02T10:23:54.130000128'], ['2023-10-02T10:28:54.164999936', '2023-10-02T10:28:54.198499840', '2023-10-02T10:28:54.232000000', ..., '2023-10-02T10:28:54.064499968', '2023-10-02T10:28:54.097500160', '2023-10-02T10:28:54.131000064'], ['2023-10-02T10:33:54.185999872', '2023-10-02T10:33:54.218999808', '2023-10-02T10:33:54.252499968', ..., '2023-10-02T10:33:54.084999936', '2023-10-02T10:33:54.118500096', '2023-10-02T10:33:54.151500032']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
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-10-02T10:07:30Z' ... '2023-... time_coverage_end (volume_time) <U20 '2023-10-02T10:12:29Z' ... '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
- range: 720
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- elevation(volume_time, azimuth)float645.493 5.493 5.493 ... 5.493 5.493
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406]])
- time(volume_time, azimuth)datetime64[ns]2023-10-02T10:10:54.014500096 .....
- standard_name :
- time
array([['2023-10-02T10:10:54.014500096', '2023-10-02T10:10:54.078000128', '2023-10-02T10:10:54.139999744', ..., '2023-10-02T10:10:53.826000128', '2023-10-02T10:10:53.888999936', '2023-10-02T10:10:53.951000320'], ['2023-10-02T10:15:53.994500096', '2023-10-02T10:15:54.056999936', '2023-10-02T10:15:54.119500288', ..., '2023-10-02T10:15:53.805999872', '2023-10-02T10:15:53.868499968', '2023-10-02T10:15:53.931000064'], ['2023-10-02T10:20:53.997000192', '2023-10-02T10:20:54.060000000', '2023-10-02T10:20:54.123000064', ..., '2023-10-02T10:20:53.808000000', '2023-10-02T10:20:53.870500096', '2023-10-02T10:20:53.933000192'], ['2023-10-02T10:25:53.999500032', '2023-10-02T10:25:54.061999872', '2023-10-02T10:25:54.124999936', ..., '2023-10-02T10:25:53.810500096', '2023-10-02T10:25:53.873499904', '2023-10-02T10:25:53.936499968'], ['2023-10-02T10:30:54.052000000', '2023-10-02T10:30:54.115000064', '2023-10-02T10:30:54.177999872', ..., '2023-10-02T10:30:53.862999808', '2023-10-02T10:30:53.925499904', '2023-10-02T10:30:53.988000000'], ['2023-10-02T10:35:53.997000192', '2023-10-02T10:35:54.060000000', '2023-10-02T10:35:54.123000064', ..., '2023-10-02T10:35:53.808000000', '2023-10-02T10:35:53.870500096', '2023-10-02T10:35:53.933000192']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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 , 3.3067932, ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , 1.150444 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ... [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ..., [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 5.493 5.493 ... 5.493 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:10... 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) float64 -128.0 ... -128.0
sweep_0- range: 720
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- elevation(volume_time, azimuth)float644.493 4.493 4.493 ... 4.493 4.493
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[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.48242188, 4.48242188, 4.48242188, ..., 4.48242188, 4.48242188, 4.48242188], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ]])
- time(volume_time, azimuth)datetime64[ns]2023-10-02T10:11:16.516499968 .....
- standard_name :
- time
array([['2023-10-02T10:11:16.516499968', '2023-10-02T10:11:16.580000000', '2023-10-02T10:11:16.642000128', ..., '2023-10-02T10:11:16.328000000', '2023-10-02T10:11:16.389999872', '2023-10-02T10:11:16.453500160'], ['2023-10-02T10:16:16.496999936', '2023-10-02T10:16:16.560000000', '2023-10-02T10:16:16.622499840', ..., '2023-10-02T10:16:16.308000000', '2023-10-02T10:16:16.370500096', '2023-10-02T10:16:16.433500160'], ['2023-10-02T10:21:16.499499776', '2023-10-02T10:21:16.563000064', '2023-10-02T10:21:16.624999936', ..., '2023-10-02T10:21:16.310999808', '2023-10-02T10:21:16.373000192', '2023-10-02T10:21:16.435999744'], ['2023-10-02T10:26:16.501500160', '2023-10-02T10:26:16.564499968', '2023-10-02T10:26:16.626999808', ..., '2023-10-02T10:26:16.312999936', '2023-10-02T10:26:16.375500032', '2023-10-02T10:26:16.438499840'], ['2023-10-02T10:31:16.554500096', '2023-10-02T10:31:16.618000128', '2023-10-02T10:31:16.679999744', ..., '2023-10-02T10:31:16.365999872', '2023-10-02T10:31:16.428000000', '2023-10-02T10:31:16.491499776'], ['2023-10-02T10:36:16.498499840', '2023-10-02T10:36:16.562000128', '2023-10-02T10:36:16.624000000', ..., '2023-10-02T10:36:16.310999808', '2023-10-02T10:36:16.373499904', '2023-10-02T10:36:16.435999744']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 4.493 4.493 ... 4.493 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10: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) float64 -128.0 ... -128.0
sweep_1- range: 720
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- elevation(volume_time, azimuth)float643.505 3.505 3.505 ... 3.505 3.505
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867]])
- time(volume_time, azimuth)datetime64[ns]2023-10-02T10:11:39.019000064 .....
- standard_name :
- time
array([['2023-10-02T10:11:39.019000064', '2023-10-02T10:11:39.082000128', '2023-10-02T10:11:39.144000000', ..., '2023-10-02T10:11:38.830999808', '2023-10-02T10:11:38.893000192', '2023-10-02T10:11:38.955500032'], ['2023-10-02T10:16:38.999499776', '2023-10-02T10:16:39.063000064', '2023-10-02T10:16:39.124999936', ..., '2023-10-02T10:16:38.810999808', '2023-10-02T10:16:38.873000192', '2023-10-02T10:16:38.935999744'], ['2023-10-02T10:21:39.001500160', '2023-10-02T10:21:39.064999936', '2023-10-02T10:21:39.126999808', ..., '2023-10-02T10:21:38.812999936', '2023-10-02T10:21:38.875000064', '2023-10-02T10:21:38.938000128'], ['2023-10-02T10:26:39.003500032', '2023-10-02T10:26:39.065999872', '2023-10-02T10:26:39.128499968', ..., '2023-10-02T10:26:38.815000064', '2023-10-02T10:26:38.877500160', '2023-10-02T10:26:38.940000000'], ['2023-10-02T10:31:39.056000000', '2023-10-02T10:31:39.119500288', '2023-10-02T10:31:39.182000128', ..., '2023-10-02T10:31:38.868000000', '2023-10-02T10:31:38.930500096', '2023-10-02T10:31:38.993499904'], ['2023-10-02T10:36:39.001500160', '2023-10-02T10:36:39.064000256', '2023-10-02T10:36:39.126500096', ..., '2023-10-02T10:36:38.813000192', '2023-10-02T10:36:38.876000000', '2023-10-02T10:36:38.938000128']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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 , -5.4094276, 1.674881 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ... [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ..., [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 3.505 3.505 ... 3.505 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10: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) float64 -128.0 ... -128.0
sweep_2- range: 720
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- 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-10-02T10:12:01.520999936 .....
- standard_name :
- time
array([['2023-10-02T10:12:01.520999936', '2023-10-02T10:12:01.584499712', '2023-10-02T10:12:01.647000064', ..., '2023-10-02T10:12:01.332000000', '2023-10-02T10:12:01.394500096', '2023-10-02T10:12:01.457499904'], ['2023-10-02T10:17:01.501500160', '2023-10-02T10:17:01.564999936', '2023-10-02T10:17:01.626999808', ..., '2023-10-02T10:17:01.312999936', '2023-10-02T10:17:01.375000064', '2023-10-02T10:17:01.437499904'], ['2023-10-02T10:22:01.504000000', '2023-10-02T10:22:01.566999808', '2023-10-02T10:22:01.629000192', ..., '2023-10-02T10:22:01.315000064', '2023-10-02T10:22:01.376999936', '2023-10-02T10:22:01.440499968'], ['2023-10-02T10:27:01.506500096', '2023-10-02T10:27:01.569999872', '2023-10-02T10:27:01.632000000', ..., '2023-10-02T10:27:01.318000128', '2023-10-02T10:27:01.380000000', '2023-10-02T10:27:01.442999808'], ['2023-10-02T10:32:01.559500288', '2023-10-02T10:32:01.622499840', '2023-10-02T10:32:01.683500032', ..., '2023-10-02T10:32:01.371000064', '2023-10-02T10:32:01.433000192', '2023-10-02T10:32:01.495500032'], ['2023-10-02T10:37:01.504000000', '2023-10-02T10:37:01.566999808', '2023-10-02T10:37:01.629499904', ..., '2023-10-02T10:37:01.315000064', '2023-10-02T10:37:01.376999936', '2023-10-02T10:37:01.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(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 2.483 2.483 ... 2.483 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10: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) float64 -128.0 ... -128.0
sweep_3- range: 720
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- elevation(volume_time, azimuth)float641.494 1.494 1.494 ... 1.483 1.483
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[1.49414062, 1.49414062, 1.49414062, ..., 1.49414062, 1.49414062, 1.49414062], [1.49414062, 1.49414062, 1.49414062, ..., 1.49414062, 1.49414062, 1.49414062], [1.4831543 , 1.4831543 , 1.4831543 , ..., 1.4831543 , 1.4831543 , 1.4831543 ], [1.49414062, 1.49414062, 1.49414062, ..., 1.49414062, 1.49414062, 1.49414062], [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-10-02T10:12:24.024000256 .....
- standard_name :
- time
array([['2023-10-02T10:12:24.024000256', '2023-10-02T10:12:24.086999808', '2023-10-02T10:12:24.149000192', ..., '2023-10-02T10:12:23.835000064', '2023-10-02T10:12:23.896999936', '2023-10-02T10:12:23.960499968'], ['2023-10-02T10:17:24.004000256', '2023-10-02T10:17:24.066999808', '2023-10-02T10:17:24.130000128', ..., '2023-10-02T10:17:23.815500032', '2023-10-02T10:17:23.878000128', '2023-10-02T10:17:23.940000000'], ['2023-10-02T10:22:24.006000128', '2023-10-02T10:22:24.068999936', '2023-10-02T10:22:24.132000000', ..., '2023-10-02T10:22:23.816999936', '2023-10-02T10:22:23.879500032', '2023-10-02T10:22:23.941999872'], ['2023-10-02T10:27:24.008999936', '2023-10-02T10:27:24.072000000', '2023-10-02T10:27:24.133999872', ..., '2023-10-02T10:27:23.820000000', '2023-10-02T10:27:23.881999872', '2023-10-02T10:27:23.945499904'], ['2023-10-02T10:32:24.060999936', '2023-10-02T10:32:24.124499968', '2023-10-02T10:32:24.187000064', ..., '2023-10-02T10:32:23.872000000', '2023-10-02T10:32:23.934500096', '2023-10-02T10:32:23.997000192'], ['2023-10-02T10:37:24.006000128', '2023-10-02T10:37:24.068999936', '2023-10-02T10:37:24.132000000', ..., '2023-10-02T10:37:23.816999936', '2023-10-02T10:37:23.879500032', '2023-10-02T10:37:23.941999872']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
array([[[-64.00293 , -64.00293 , -64.00293 , ..., 3.7462616, 7.839226 , 6.854805 ], [-64.00293 , -64.00293 , -64.00293 , ..., 8.981857 , 6.8577347, 7.3059998], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ..., [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., 7.2972107, -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ... [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ..., [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128. , -128. , -128. , ..., 4.89077425, -128. , 6.44160283], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., 4.83608509, 4.12121952, 4.69154942], [-128. , -128. , -128. , ..., 4.390759 , 4.77748955, 5.00405896]], [[-128. , -128. , -128. , ..., 5.24625385, 5.55876339, 5.26969207], [-128. , -128. , -128. , ..., 6.55879391, 7.18771935, 5.91033662], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ... [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 1.494 1.494 ... 1.483 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10: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) float64 -128.0 ... -128.0
sweep_4- range: 720
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- elevation(volume_time, azimuth)float640.4834 0.4834 ... 0.4834 0.4834
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844]])
- time(volume_time, azimuth)datetime64[ns]2023-10-02T10:07:52.011000064 .....
- standard_name :
- time
array([['2023-10-02T10:07:52.011000064', '2023-10-02T10:07:52.093999872', '2023-10-02T10:07:52.177999872', ..., '2023-10-02T10:07:51.759500032', '2023-10-02T10:07:51.842500096', '2023-10-02T10:07:51.926499840'], ['2023-10-02T10:12:52.001999872', '2023-10-02T10:12:52.084999936', '2023-10-02T10:12:52.169000192', ..., '2023-10-02T10:12:51.750499840', '2023-10-02T10:12:51.833499904', '2023-10-02T10:12:51.917499904'], ['2023-10-02T10:17:51.974499840', '2023-10-02T10:17:52.058000128', '2023-10-02T10:17:52.141499904', ..., '2023-10-02T10:17:51.723000064', '2023-10-02T10:17:51.805499904', '2023-10-02T10:17:51.889500160'], ['2023-10-02T10:22:51.992000000', '2023-10-02T10:22:52.076000256', '2023-10-02T10:22:52.159500032', ..., '2023-10-02T10:22:51.740499968', '2023-10-02T10:22:51.824000000', '2023-10-02T10:22:51.907500032'], ['2023-10-02T10:27:51.994500096', '2023-10-02T10:27:52.078500096', '2023-10-02T10:27:52.162000128', ..., '2023-10-02T10:27:51.743000064', '2023-10-02T10:27:51.826499840', '2023-10-02T10:27:51.909999872'], ['2023-10-02T10:32:52.016499968', '2023-10-02T10:32:52.100500224', '2023-10-02T10:32:52.184000000', ..., '2023-10-02T10:32:51.765500160', '2023-10-02T10:32:51.848999936', '2023-10-02T10:32:51.932499968']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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 , ..., 6.1428604, -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ... [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ..., [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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. , 2.19928587, 2.67586291], [-128. , -128. , -128. , ..., 3.82433546, 4.94155705, 4.41419721]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ... [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 0.4834 0.4834 ... 0.4834 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:07... 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) float64 -128.0 ... -128.0
sweep_5- range: 496
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- elevation(volume_time, azimuth)float647.976 7.976 7.976 ... 7.987 7.987
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[7.97607422, 7.97607422, 7.97607422, ..., 7.97607422, 7.97607422, 7.97607422], [7.97607422, 7.97607422, 7.97607422, ..., 7.97607422, 7.97607422, 7.97607422], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.97607422, 7.97607422, 7.97607422, ..., 7.97607422, 7.97607422, 7.97607422], [7.97607422, 7.97607422, 7.97607422, ..., 7.97607422, 7.97607422, 7.97607422], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055]])
- time(volume_time, azimuth)datetime64[ns]2023-10-02T10:08:15.033500160 .....
- standard_name :
- time
array([['2023-10-02T10:08:15.033500160', '2023-10-02T10:08:15.089499904', '2023-10-02T10:08:15.144999936', ..., '2023-10-02T10:08:14.865499904', '2023-10-02T10:08:14.921999872', '2023-10-02T10:08:14.977499904'], ['2023-10-02T10:13:15.029499904', '2023-10-02T10:13:15.085499904', '2023-10-02T10:13:15.140999936', ..., '2023-10-02T10:13:14.861499904', '2023-10-02T10:13:14.917499904', '2023-10-02T10:13:14.972499968'], ['2023-10-02T10:18:15.012499712', '2023-10-02T10:18:15.067999744', '2023-10-02T10:18:15.123499776', ..., '2023-10-02T10:18:14.843999744', '2023-10-02T10:18:14.899499776', '2023-10-02T10:18:14.955500032'], ['2023-10-02T10:23:15.024499968', '2023-10-02T10:23:15.080500224', '2023-10-02T10:23:15.137000192', ..., '2023-10-02T10:23:14.857500160', '2023-10-02T10:23:14.913000192', '2023-10-02T10:23:14.968500224'], ['2023-10-02T10:28:15.026500096', '2023-10-02T10:28:15.082500096', '2023-10-02T10:28:15.138000128', ..., '2023-10-02T10:28:14.859500032', '2023-10-02T10:28:14.915000064', '2023-10-02T10:28:14.970500096'], ['2023-10-02T10:33:15.058000128', '2023-10-02T10:33:15.114500096', '2023-10-02T10:33:15.170000128', ..., '2023-10-02T10:33:14.891000064', '2023-10-02T10:33:14.946000128', '2023-10-02T10:33:15.001500160']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Dimensions: (range: 496, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.236e+05 1.239e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 7.976 7.976 ... 7.987 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:08... 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) float64 -128.0 ... -128.0
sweep_6- range: 240
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- 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-10-02T10:08:30.171000064 .....
- standard_name :
- time
array([['2023-10-02T10:08:30.171000064', '2023-10-02T10:08:30.204499968', '2023-10-02T10:08:30.238500096', ..., '2023-10-02T10:08:30.070499840', '2023-10-02T10:08:30.103499776', '2023-10-02T10:08:30.137500160'], ['2023-10-02T10:13:30.161999872', '2023-10-02T10:13:30.196000000', '2023-10-02T10:13:30.229500160', ..., '2023-10-02T10:13:30.062000128', '2023-10-02T10:13:30.095000064', '2023-10-02T10:13:30.128499968'], ['2023-10-02T10:18:30.152999936', '2023-10-02T10:18:30.186500096', '2023-10-02T10:18:30.220499968', ..., '2023-10-02T10:18:30.052499968', '2023-10-02T10:18:30.085499904', '2023-10-02T10:18:30.119500032'], ['2023-10-02T10:23:30.160999936', '2023-10-02T10:23:30.194500096', '2023-10-02T10:23:30.228499968', ..., '2023-10-02T10:23:30.060999936', '2023-10-02T10:23:30.094500096', '2023-10-02T10:23:30.127500032'], ['2023-10-02T10:28:30.162499840', '2023-10-02T10:28:30.196000000', '2023-10-02T10:28:30.229500160', ..., '2023-10-02T10:28:30.062000128', '2023-10-02T10:28:30.095500032', '2023-10-02T10:28:30.128499968'], ['2023-10-02T10:33:30.183000064', '2023-10-02T10:33:30.216499968', '2023-10-02T10:33:30.250499840', ..., '2023-10-02T10:33:30.082500096', '2023-10-02T10:33:30.115500032', '2023-10-02T10:33:30.149499904']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Dimensions: (range: 240, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 11.99 11.99 ... 11.99 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:08... 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) float64 -128.0 ... -128.0
sweep_7- range: 240
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- elevation(volume_time, azimuth)float6416.97 16.97 16.97 ... 16.97 16.97
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695]])
- time(volume_time, azimuth)datetime64[ns]2023-10-02T10:08:42.172000 ... 2...
- standard_name :
- time
array([['2023-10-02T10:08:42.172000000', '2023-10-02T10:08:42.205499904', '2023-10-02T10:08:42.239500032', ..., '2023-10-02T10:08:42.072000000', '2023-10-02T10:08:42.105499904', '2023-10-02T10:08:42.138500096'], ['2023-10-02T10:13:42.163500032', '2023-10-02T10:13:42.197499904', '2023-10-02T10:13:42.230500096', ..., '2023-10-02T10:13:42.063500032', '2023-10-02T10:13:42.096499968', '2023-10-02T10:13:42.129499904'], ['2023-10-02T10:18:42.154000128', '2023-10-02T10:18:42.187500032', '2023-10-02T10:18:42.221499904', ..., '2023-10-02T10:18:42.053499904', '2023-10-02T10:18:42.086499840', '2023-10-02T10:18:42.120499968'], ['2023-10-02T10:23:42.162499840', '2023-10-02T10:23:42.196499968', '2023-10-02T10:23:42.229500160', ..., '2023-10-02T10:23:42.062000128', '2023-10-02T10:23:42.095500032', '2023-10-02T10:23:42.128499968'], ['2023-10-02T10:28:42.164000000', '2023-10-02T10:28:42.197499904', '2023-10-02T10:28:42.231000064', ..., '2023-10-02T10:28:42.063000064', '2023-10-02T10:28:42.096499968', '2023-10-02T10:28:42.129499904'], ['2023-10-02T10:33:42.184000000', '2023-10-02T10:33:42.217999872', '2023-10-02T10:33:42.251499776', ..., '2023-10-02T10:33:42.083500032', '2023-10-02T10:33:42.117000192', '2023-10-02T10:33:42.150500096']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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. , 3.74620808, ..., -128. , -128. , -128. ], ... [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]]])
<xarray.DatasetView> Dimensions: (range: 240, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 16.97 16.97 ... 16.97 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:08... 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) float64 -128.0 ... -128.0
sweep_8- range: 240
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- 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.99389648, 24.99389648, 24.99389648, ..., 24.99389648, 24.99389648, 24.99389648], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [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-10-02T10:08:54.173500160 .....
- standard_name :
- time
array([['2023-10-02T10:08:54.173500160', '2023-10-02T10:08:54.207500032', '2023-10-02T10:08:54.240499968', ..., '2023-10-02T10:08:54.072999936', '2023-10-02T10:08:54.106499840', '2023-10-02T10:08:54.139499776'], ['2023-10-02T10:13:54.164499968', '2023-10-02T10:13:54.198499840', '2023-10-02T10:13:54.231500032', ..., '2023-10-02T10:13:54.064499968', '2023-10-02T10:13:54.097500160', '2023-10-02T10:13:54.130500096'], ['2023-10-02T10:18:54.155000064', '2023-10-02T10:18:54.188499968', '2023-10-02T10:18:54.222500096', ..., '2023-10-02T10:18:54.054500096', '2023-10-02T10:18:54.088499968', '2023-10-02T10:18:54.121499904'], ['2023-10-02T10:23:54.163500032', '2023-10-02T10:23:54.197499904', '2023-10-02T10:23:54.230500096', ..., '2023-10-02T10:23:54.063500032', '2023-10-02T10:23:54.096499968', '2023-10-02T10:23:54.130000128'], ['2023-10-02T10:28:54.164999936', '2023-10-02T10:28:54.198499840', '2023-10-02T10:28:54.232000000', ..., '2023-10-02T10:28:54.064499968', '2023-10-02T10:28:54.097500160', '2023-10-02T10:28:54.131000064'], ['2023-10-02T10:33:54.185999872', '2023-10-02T10:33:54.218999808', '2023-10-02T10:33:54.252499968', ..., '2023-10-02T10:33:54.084999936', '2023-10-02T10:33:54.118500096', '2023-10-02T10:33:54.151500032']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Dimensions: (range: 240, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 24.98 24.98 ... 24.98 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:08... 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) float64 -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-10-02T10:07:30Z' ... '2023...
array(['2023-10-02T10:07:30Z', '2023-10-02T10:12:30Z', '2023-10-02T10:17:30Z', '2023-10-02T10:22:30Z', '2023-10-02T10:27:30Z', '2023-10-02T10:32:30Z'], dtype='<U20')
- time_coverage_end(volume_time)<U20'2023-10-02T10:12:29Z' ... '2023...
array(['2023-10-02T10:12:29Z', '2023-10-02T10:17:29Z', '2023-10-02T10:22:29Z', '2023-10-02T10:27:29Z', '2023-10-02T10:32:29Z', '2023-10-02T10:37:29Z'], 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: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 5.493 5.493 ... 5.493 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:10... 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) float64 -128.0 ... -128.0
- range: 720
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- elevation(volume_time, azimuth)float645.493 5.493 5.493 ... 5.493 5.493
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406]])
- time(volume_time, azimuth)datetime64[ns]2023-10-02T10:10:54.014500096 .....
- standard_name :
- time
array([['2023-10-02T10:10:54.014500096', '2023-10-02T10:10:54.078000128', '2023-10-02T10:10:54.139999744', ..., '2023-10-02T10:10:53.826000128', '2023-10-02T10:10:53.888999936', '2023-10-02T10:10:53.951000320'], ['2023-10-02T10:15:53.994500096', '2023-10-02T10:15:54.056999936', '2023-10-02T10:15:54.119500288', ..., '2023-10-02T10:15:53.805999872', '2023-10-02T10:15:53.868499968', '2023-10-02T10:15:53.931000064'], ['2023-10-02T10:20:53.997000192', '2023-10-02T10:20:54.060000000', '2023-10-02T10:20:54.123000064', ..., '2023-10-02T10:20:53.808000000', '2023-10-02T10:20:53.870500096', '2023-10-02T10:20:53.933000192'], ['2023-10-02T10:25:53.999500032', '2023-10-02T10:25:54.061999872', '2023-10-02T10:25:54.124999936', ..., '2023-10-02T10:25:53.810500096', '2023-10-02T10:25:53.873499904', '2023-10-02T10:25:53.936499968'], ['2023-10-02T10:30:54.052000000', '2023-10-02T10:30:54.115000064', '2023-10-02T10:30:54.177999872', ..., '2023-10-02T10:30:53.862999808', '2023-10-02T10:30:53.925499904', '2023-10-02T10:30:53.988000000'], ['2023-10-02T10:35:53.997000192', '2023-10-02T10:35:54.060000000', '2023-10-02T10:35:54.123000064', ..., '2023-10-02T10:35:53.808000000', '2023-10-02T10:35:53.870500096', '2023-10-02T10:35:53.933000192']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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 , 3.3067932, ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , 1.150444 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ... [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ..., [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
plot sweeps#
DBZH#
[16]:
vol["sweep_0"].isel(volume_time=0)
[16]:
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (azimuth) float64 5.493 5.493 5.493 ... 5.493 5.493 5.493 time (azimuth) datetime64[ns] 2023-10-02T10:10:54.014500096... 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) float64 -128.0 -128.0 ... -128.0 -128.0
- range: 720
- azimuth: 360
- 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)
- 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])
- elevation(azimuth)float645.493 5.493 5.493 ... 5.493 5.493
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.43273926, 5.52062988, 5.52612305, 5.49865723, 5.47119141, 5.46020508, 5.46569824, 5.47668457, 5.4876709 , 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, ... 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406])
- time(azimuth)datetime64[ns]2023-10-02T10:10:54.014500096 .....
- standard_name :
- time
array(['2023-10-02T10:10:54.014500096', '2023-10-02T10:10:54.078000128', '2023-10-02T10:10:54.139999744', '2023-10-02T10:10:54.202499840', '2023-10-02T10:10:54.265500160', '2023-10-02T10:10:54.328000000', '2023-10-02T10:10:54.391000064', '2023-10-02T10:10:54.453000192', '2023-10-02T10:10:54.514999808', '2023-10-02T10:10:54.577499904', '2023-10-02T10:10:54.639999744', '2023-10-02T10:10:54.702000128', '2023-10-02T10:10:54.764000000', '2023-10-02T10:10:54.826499840', '2023-10-02T10:10:54.889500160', '2023-10-02T10:10:54.952499968', '2023-10-02T10:10:55.014999808', '2023-10-02T10:10:55.077000192', '2023-10-02T10:10:55.139999744', '2023-10-02T10:10:55.202000128', '2023-10-02T10:10:55.264999936', '2023-10-02T10:10:55.327000064', '2023-10-02T10:10:55.389500160', '2023-10-02T10:10:55.452499968', '2023-10-02T10:10:55.514999808', '2023-10-02T10:10:55.577000192', '2023-10-02T10:10:55.639000064', '2023-10-02T10:10:55.701499904', '2023-10-02T10:10:55.764000000', '2023-10-02T10:10:55.826000128', '2023-10-02T10:10:55.889500160', '2023-10-02T10:10:55.952000256', '2023-10-02T10:10:56.013999872', '2023-10-02T10:10:56.076499968', '2023-10-02T10:10:56.139000064', '2023-10-02T10:10:56.201000192', '2023-10-02T10:10:56.264000000', '2023-10-02T10:10:56.326000128', '2023-10-02T10:10:56.388999936', '2023-10-02T10:10:56.451500032', ... '2023-10-02T10:10:51.639000064', '2023-10-02T10:10:51.701000192', '2023-10-02T10:10:51.763000064', '2023-10-02T10:10:51.824999936', '2023-10-02T10:10:51.888000000', '2023-10-02T10:10:51.949999872', '2023-10-02T10:10:52.012999936', '2023-10-02T10:10:52.075000064', '2023-10-02T10:10:52.137500160', '2023-10-02T10:10:52.199999744', '2023-10-02T10:10:52.263000064', '2023-10-02T10:10:52.324999936', '2023-10-02T10:10:52.387500032', '2023-10-02T10:10:52.449999872', '2023-10-02T10:10:52.512000000', '2023-10-02T10:10:52.574500096', '2023-10-02T10:10:52.637500160', '2023-10-02T10:10:52.699999744', '2023-10-02T10:10:52.763500032', '2023-10-02T10:10:52.824999936', '2023-10-02T10:10:52.887500032', '2023-10-02T10:10:52.949999872', '2023-10-02T10:10:53.012999936', '2023-10-02T10:10:53.074999808', '2023-10-02T10:10:53.138000128', '2023-10-02T10:10:53.201000192', '2023-10-02T10:10:53.263000064', '2023-10-02T10:10:53.324999936', '2023-10-02T10:10:53.388000000', '2023-10-02T10:10:53.449999872', '2023-10-02T10:10:53.512999936', '2023-10-02T10:10:53.576000256', '2023-10-02T10:10:53.638500096', '2023-10-02T10:10:53.701499904', '2023-10-02T10:10:53.764000000', '2023-10-02T10:10:53.826000128', '2023-10-02T10:10:53.888999936', '2023-10-02T10:10:53.951000320'], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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 , 3.3067932, ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , 1.150444 , ..., -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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]])
[17]:
fig, gs = plt.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.wrl.georef.georeference().wrl.vis.plot(ax=gs.flat[i], fig=fig)
ax = plt.gca()
ax.set_title(swp.sweep_fixed_angle.values)
fig.delaxes(gs.flat[-2])
fig.delaxes(gs.flat[-1])

VRADH#
[18]:
fig, gs = plt.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.wrl.georef.georeference().wrl.vis.plot(ax=gs.flat[i], fig=fig)
ax = plt.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.wrl.georef.georeference().wrl.vis.plot(crs=map_proj)
ax = plt.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 = plt.figure(figsize=(10, 8))
ax = fig.add_subplot(111, projection=map_proj)
pm = swp.DBZH.wrl.georef.georeference().wrl.vis.plot(ax=ax)
ax.gridlines(draw_labels=True)
[22]:
<cartopy.mpl.gridliner.Gridliner at 0x7f30b50a8710>

[23]:
fig = plt.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.wrl.georef.georeference().wrl.vis.plot(ax=ax)
ax.gridlines()
[23]:
<cartopy.mpl.gridliner.Gridliner at 0x7f30b4fad4d0>

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: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 4.5 ... 356.5 357.5 358.5 359.5 elevation (azimuth) float64 24.98 24.98 24.98 24.98 ... 24.98 24.98 24.98 time (azimuth) datetime64[ns] 2023-10-02T10:08:54.173500160 ... 202... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Attributes: _Undetect: 0.0 standard_name: radar_equivalent_reflectivity_factor_h long_name: 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)
- 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)
- 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])
- 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.97192383, 24.97192383, 24.97192383, 24.97741699, 24.98840332, 24.99389648, 24.99389648, 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])
- time(azimuth)datetime64[ns]2023-10-02T10:08:54.173500160 .....
- standard_name :
- time
array(['2023-10-02T10:08:54.173500160', '2023-10-02T10:08:54.207500032', '2023-10-02T10:08:54.240499968', '2023-10-02T10:08:54.273499904', '2023-10-02T10:08:54.307499776', '2023-10-02T10:08:54.340499968', '2023-10-02T10:08:54.374000128', '2023-10-02T10:08:54.407000064', '2023-10-02T10:08:54.440499968', '2023-10-02T10:08:54.473499904', '2023-10-02T10:08:54.507000064', '2023-10-02T10:08:54.540000000', '2023-10-02T10:08:54.573499904', '2023-10-02T10:08:54.606499840', '2023-10-02T10:08:54.639999744', '2023-10-02T10:08:54.673500160', '2023-10-02T10:08:54.707000064', '2023-10-02T10:08:54.740499968', '2023-10-02T10:08:54.773499904', '2023-10-02T10:08:54.806999808', '2023-10-02T10:08:54.840499968', '2023-10-02T10:08:54.873500160', '2023-10-02T10:08:54.906500096', '2023-10-02T10:08:54.940000000', '2023-10-02T10:08:54.973499904', '2023-10-02T10:08:55.007000064', '2023-10-02T10:08:55.040499968', '2023-10-02T10:08:55.073499904', '2023-10-02T10:08:55.106499840', '2023-10-02T10:08:55.139999744', '2023-10-02T10:08:55.173500160', '2023-10-02T10:08:55.206500096', '2023-10-02T10:08:55.239500032', '2023-10-02T10:08:55.273499904', '2023-10-02T10:08:55.306499840', '2023-10-02T10:08:55.340000000', '2023-10-02T10:08:55.373000192', '2023-10-02T10:08:55.406500096', '2023-10-02T10:08:55.439500032', '2023-10-02T10:08:55.472499968', ... '2023-10-02T10:08:52.905499904', '2023-10-02T10:08:52.939000064', '2023-10-02T10:08:52.972499968', '2023-10-02T10:08:53.006500096', '2023-10-02T10:08:53.039500032', '2023-10-02T10:08:53.072499968', '2023-10-02T10:08:53.105999872', '2023-10-02T10:08:53.139000064', '2023-10-02T10:08:53.172499968', '2023-10-02T10:08:53.205499904', '2023-10-02T10:08:53.239500032', '2023-10-02T10:08:53.272499968', '2023-10-02T10:08:53.305999872', '2023-10-02T10:08:53.339500032', '2023-10-02T10:08:53.372499968', '2023-10-02T10:08:53.406000128', '2023-10-02T10:08:53.439500032', '2023-10-02T10:08:53.472499968', '2023-10-02T10:08:53.506000128', '2023-10-02T10:08:53.539500032', '2023-10-02T10:08:53.572999936', '2023-10-02T10:08:53.606499840', '2023-10-02T10:08:53.639499776', '2023-10-02T10:08:53.672499968', '2023-10-02T10:08:53.705999872', '2023-10-02T10:08:53.739500032', '2023-10-02T10:08:53.772499968', '2023-10-02T10:08:53.805999872', '2023-10-02T10:08:53.839500032', '2023-10-02T10:08:53.873000192', '2023-10-02T10:08:53.906500096', '2023-10-02T10:08:53.939500032', '2023-10-02T10:08:53.972999936', '2023-10-02T10:08:54.006500096', '2023-10-02T10:08:54.039500032', '2023-10-02T10:08:54.072999936', '2023-10-02T10:08:54.106499840', '2023-10-02T10:08:54.139499776'], 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)
- rangePandasIndex
PandasIndex(Index([ 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='float32', name='range', length=240))
- azimuthPandasIndex
PandasIndex(Index([ 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, ... 350.5, 351.5, 352.5, 353.5, 354.5, 355.5, 356.5, 357.5, 358.5, 359.5], dtype='float64', name='azimuth', length=360))
- _Undetect :
- 0.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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: (range: 240, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 24.98 24.98 ... 24.98 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:08... 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) float64 -128.0 ... -128.0
- range: 240
- azimuth: 360
- volume_time: 6
- 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)
- 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])
- 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.99389648, 24.99389648, 24.99389648, ..., 24.99389648, 24.99389648, 24.99389648], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [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-10-02T10:08:54.173500160 .....
- standard_name :
- time
array([['2023-10-02T10:08:54.173500160', '2023-10-02T10:08:54.207500032', '2023-10-02T10:08:54.240499968', ..., '2023-10-02T10:08:54.072999936', '2023-10-02T10:08:54.106499840', '2023-10-02T10:08:54.139499776'], ['2023-10-02T10:13:54.164499968', '2023-10-02T10:13:54.198499840', '2023-10-02T10:13:54.231500032', ..., '2023-10-02T10:13:54.064499968', '2023-10-02T10:13:54.097500160', '2023-10-02T10:13:54.130500096'], ['2023-10-02T10:18:54.155000064', '2023-10-02T10:18:54.188499968', '2023-10-02T10:18:54.222500096', ..., '2023-10-02T10:18:54.054500096', '2023-10-02T10:18:54.088499968', '2023-10-02T10:18:54.121499904'], ['2023-10-02T10:23:54.163500032', '2023-10-02T10:23:54.197499904', '2023-10-02T10:23:54.230500096', ..., '2023-10-02T10:23:54.063500032', '2023-10-02T10:23:54.096499968', '2023-10-02T10:23:54.130000128'], ['2023-10-02T10:28:54.164999936', '2023-10-02T10:28:54.198499840', '2023-10-02T10:28:54.232000000', ..., '2023-10-02T10:28:54.064499968', '2023-10-02T10:28:54.097500160', '2023-10-02T10:28:54.131000064'], ['2023-10-02T10:33:54.185999872', '2023-10-02T10:33:54.218999808', '2023-10-02T10:33:54.252499968', ..., '2023-10-02T10:33:54.084999936', '2023-10-02T10:33:54.118500096', '2023-10-02T10:33:54.151500032']], 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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')