Load ODIM_H5 Volume data from German Weather Service#
In this example, we obtain and read the latest 30 minutes of available volumetric radar data from German Weather Service available at opendata.dwd.de. Finally we do some plotting.
This retrieves 6 timesteps of the 10 sweeps (moments DBZH and VRADH) of the DWD volume scan of a distinct radar. This amounts to 120 data files which are combined into one volumetric Cf/Radial2 like xarray powered structure.
Exports to single file Odim_H5 and Cf/Radial2 format are shown at the end of this tutorial.
Note
The following code is based on xarray, xarray-datatree and xradar. It claims multiple data files and presents them in a DataTree
.
[1]:
import wradlib as wrl
import warnings
warnings.filterwarnings("ignore")
import matplotlib.pyplot as pl
import numpy as np
import xarray as xr
try:
get_ipython().run_line_magic("matplotlib inline")
except:
pl.ion()
from wradlib.io import open_odim_mfdataset
/home/runner/micromamba-root/envs/wradlib-tests/lib/python3.11/site-packages/tqdm/auto.py:22: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
from .autonotebook import tqdm as notebook_tqdm
[2]:
import urllib3
import os
import io
import glob
import shutil
import datetime
Download radar volumes of latest 30 minutes from server using wetterdienst
#
wetterdienst
is a neat package for easy retrieval of data primarily from DWD. For further information have a look at their documentation.
[3]:
from wetterdienst.provider.dwd.radar import (
DwdRadarDataFormat,
DwdRadarDataSubset,
DwdRadarParameter,
DwdRadarValues,
)
from wetterdienst.provider.dwd.radar.sites import DwdRadarSite
[4]:
elevations = range(10)
end_date = datetime.datetime.utcnow()
start_date = end_date - datetime.timedelta(minutes=30)
results_velocity = []
results_reflectivity = []
for el in elevations:
# Horizontal Doppler Velocity
request_velocity = DwdRadarValues(
parameter=DwdRadarParameter.SWEEP_VOL_VELOCITY_H,
start_date=start_date,
end_date=end_date,
site=DwdRadarSite.ESS,
elevation=el,
fmt=DwdRadarDataFormat.HDF5,
subset=DwdRadarDataSubset.POLARIMETRIC,
)
# Horizontal Reflectivity
request_reflectivity = DwdRadarValues(
parameter=DwdRadarParameter.SWEEP_VOL_REFLECTIVITY_H,
start_date=start_date,
end_date=end_date,
elevation=el,
site=DwdRadarSite.ESS,
fmt=DwdRadarDataFormat.HDF5,
subset=DwdRadarDataSubset.POLARIMETRIC,
)
# Submit requests.
results_velocity.append(request_velocity.query())
results_reflectivity.append(request_reflectivity.query())
[5]:
import wetterdienst
wetterdienst.__version__
[5]:
'0.20.3'
Acquire data as memory buffer#
[6]:
%%time
volume_velocity = []
for item1 in results_velocity:
files = []
for item2 in item1:
files.append(item2.data)
volume_velocity.append(files)
3%|▎ | 7/240 [00:05<03:02, 1.27it/s]
3%|▎ | 7/240 [00:03<02:03, 1.89it/s]
3%|▎ | 7/240 [00:03<02:08, 1.81it/s]
3%|▎ | 7/240 [00:03<02:01, 1.92it/s]
3%|▎ | 7/240 [00:03<01:47, 2.17it/s]
3%|▎ | 7/240 [00:03<01:55, 2.01it/s]
3%|▎ | 7/240 [00:02<01:34, 2.46it/s]
3%|▎ | 7/240 [00:03<01:40, 2.31it/s]
3%|▎ | 7/240 [00:02<01:26, 2.70it/s]
3%|▎ | 7/240 [00:03<01:49, 2.12it/s]
CPU times: user 8.24 s, sys: 124 ms, total: 8.37 s
Wall time: 35.2 s
[7]:
volume_velocity = [v[-6:] for v in volume_velocity]
volume_velocity = np.array(volume_velocity).T.tolist()
[8]:
%%time
volume_reflectivity = []
for item1 in results_reflectivity:
files = []
for item2 in item1:
files.append(item2.data)
volume_reflectivity.append(files)
3%|▎ | 7/240 [00:02<01:33, 2.49it/s]
3%|▎ | 7/240 [00:03<01:44, 2.22it/s]
3%|▎ | 7/240 [00:04<02:16, 1.71it/s]
3%|▎ | 7/240 [00:03<02:00, 1.94it/s]
3%|▎ | 7/240 [00:04<02:26, 1.59it/s]
3%|▎ | 7/240 [00:03<01:48, 2.15it/s]
3%|▎ | 7/240 [00:03<02:03, 1.89it/s]
3%|▎ | 7/240 [00:03<01:49, 2.12it/s]
3%|▎ | 7/240 [00:03<01:40, 2.32it/s]
3%|▎ | 7/240 [00:03<02:04, 1.87it/s]
CPU times: user 8.31 s, sys: 87.6 ms, total: 8.39 s
Wall time: 35.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]:
vol = wrl.io.RadarVolume()
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-02-25T21:05:35Z' ... '2023-... time_coverage_end (volume_time) <U20 '2023-02-25T21:09:02Z' ... '2023-... longitude (volume_time) float64 6.967 6.967 6.967 ... 6.967 6.967 altitude (volume_time) float64 185.1 185.1 185.1 ... 185.1 185.1 latitude (volume_time) float64 51.41 51.41 51.41 ... 51.41 51.41 Attributes: Conventions: ODIM_H5/V2_2 version: None title: None institution: None references: None source: None history: None comment: im/exported using xradar instrument_name: None
- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float645.482 5.482 5.482 ... 5.482 5.482
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:05:54.787500032 .....
- standard_name :
- time
array([['2023-02-25T21:05:54.787500032', '2023-02-25T21:05:54.850500096', '2023-02-25T21:05:54.913000192', ..., '2023-02-25T21:05:54.600000000', '2023-02-25T21:05:54.661499904', '2023-02-25T21:05:54.724500224'], ['2023-02-25T21:10:54.798500096', '2023-02-25T21:10:54.860999936', '2023-02-25T21:10:54.922999808', ..., '2023-02-25T21:10:54.610000128', '2023-02-25T21:10:54.672500224', '2023-02-25T21:10:54.735000064'], ['2023-02-25T21:15:54.802500096', '2023-02-25T21:15:54.864999936', '2023-02-25T21:15:54.928000000', ..., '2023-02-25T21:15:54.615000064', '2023-02-25T21:15:54.676999936', '2023-02-25T21:15:54.738999808'], ['2023-02-25T21:20:54.792499968', '2023-02-25T21:20:54.855000064', '2023-02-25T21:20:54.917999872', ..., '2023-02-25T21:20:54.604000000', '2023-02-25T21:20:54.666500096', '2023-02-25T21:20:54.729499904'], ['2023-02-25T21:25:54.791500032', '2023-02-25T21:25:54.854000128', '2023-02-25T21:25:54.916999936', ..., '2023-02-25T21:25:54.603499776', '2023-02-25T21:25:54.665999872', '2023-02-25T21:25:54.728000256'], ['2023-02-25T21:30:54.790999808', '2023-02-25T21:30:54.853499904', '2023-02-25T21:30:54.916000000', ..., '2023-02-25T21:30:54.603000064', '2023-02-25T21:30:54.665999872', '2023-02-25T21:30:54.728000256']], 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()int640
array(0)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float645.499 5.499 5.499 5.499 5.499 5.499
array([5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- 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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 5.482 5.482 ... 5.482 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21:05... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 0 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 5.499 5.499 5.499 5.499 5.499 5.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_0- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float644.493 4.493 4.493 ... 4.482 4.482
- 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.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ], [4.48242188, 4.48242188, 4.48242188, ..., 4.48242188, 4.48242188, 4.48242188]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:06:17.289999872 .....
- standard_name :
- time
array([['2023-02-25T21:06:17.289999872', '2023-02-25T21:06:17.353000192', '2023-02-25T21:06:17.416000000', ..., '2023-02-25T21:06:17.101999872', '2023-02-25T21:06:17.164000000', '2023-02-25T21:06:17.227500032'], ['2023-02-25T21:11:17.300499968', '2023-02-25T21:11:17.364000000', '2023-02-25T21:11:17.426000128', ..., '2023-02-25T21:11:17.112999936', '2023-02-25T21:11:17.175000064', '2023-02-25T21:11:17.236999936'], ['2023-02-25T21:16:17.304500224', '2023-02-25T21:16:17.367000064', '2023-02-25T21:16:17.428999936', ..., '2023-02-25T21:16:17.117000192', '2023-02-25T21:16:17.178999808', '2023-02-25T21:16:17.241499904'], ['2023-02-25T21:21:17.294499840', '2023-02-25T21:21:17.357500160', '2023-02-25T21:21:17.420499968', ..., '2023-02-25T21:21:17.106999808', '2023-02-25T21:21:17.169000192', '2023-02-25T21:21:17.232000000'], ['2023-02-25T21:26:17.293499904', '2023-02-25T21:26:17.356500224', '2023-02-25T21:26:17.419000064', ..., '2023-02-25T21:26:17.105999872', '2023-02-25T21:26:17.167500032', '2023-02-25T21:26:17.230500096'], ['2023-02-25T21:31:17.293499904', '2023-02-25T21:31:17.356000000', '2023-02-25T21:31:17.417999872', ..., '2023-02-25T21:31:17.105499904', '2023-02-25T21:31:17.168000000', '2023-02-25T21:31:17.230000128']], 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)float32-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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 4.493 4.493 ... 4.482 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21:06... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 1 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 4.499 4.499 4.499 4.499 4.499 4.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_1- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float643.494 3.494 3.494 ... 3.494 3.494
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:06:39.791999744 .....
- standard_name :
- time
array([['2023-02-25T21:06:39.791999744', '2023-02-25T21:06:39.855500032', '2023-02-25T21:06:39.917999872', ..., '2023-02-25T21:06:39.604000000', '2023-02-25T21:06:39.666500096', '2023-02-25T21:06:39.729499904'], ['2023-02-25T21:11:39.802500096', '2023-02-25T21:11:39.864999936', '2023-02-25T21:11:39.927000064', ..., '2023-02-25T21:11:39.615000064', '2023-02-25T21:11:39.676999936', '2023-02-25T21:11:39.740000000'], ['2023-02-25T21:16:39.807000064', '2023-02-25T21:16:39.868999936', '2023-02-25T21:16:39.931500032', ..., '2023-02-25T21:16:39.619000064', '2023-02-25T21:16:39.680999936', '2023-02-25T21:16:39.744500224'], ['2023-02-25T21:21:39.796999936', '2023-02-25T21:21:39.860000256', '2023-02-25T21:21:39.922500096', ..., '2023-02-25T21:21:39.608999936', '2023-02-25T21:21:39.671500032', '2023-02-25T21:21:39.733999872'], ['2023-02-25T21:26:39.796000000', '2023-02-25T21:26:39.858000128', '2023-02-25T21:26:39.920499968', ..., '2023-02-25T21:26:39.608000000', '2023-02-25T21:26:39.670000128', '2023-02-25T21:26:39.733499904'], ['2023-02-25T21:31:39.795500032', '2023-02-25T21:31:39.857999872', '2023-02-25T21:31:39.920999936', ..., '2023-02-25T21:31:39.606999808', '2023-02-25T21:31:39.669499904', '2023-02-25T21:31:39.732000000']], 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()int642
array(2)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float643.499 3.499 3.499 3.499 3.499 3.499
array([3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- 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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 3.494 3.494 ... 3.494 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21:06... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 2 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 3.499 3.499 3.499 3.499 3.499 3.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_2- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float642.483 2.483 2.483 ... 2.483 2.483
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:07:02.294499840 .....
- standard_name :
- time
array([['2023-02-25T21:07:02.294499840', '2023-02-25T21:07:02.356999936', '2023-02-25T21:07:02.420499968', ..., '2023-02-25T21:07:02.105999872', '2023-02-25T21:07:02.168499968', '2023-02-25T21:07:02.231000064'], ['2023-02-25T21:12:02.305499904', '2023-02-25T21:12:02.368000000', '2023-02-25T21:12:02.430500096', ..., '2023-02-25T21:12:02.117000192', '2023-02-25T21:12:02.178999808', '2023-02-25T21:12:02.242000128'], ['2023-02-25T21:17:02.308999936', '2023-02-25T21:17:02.372000256', '2023-02-25T21:17:02.434000128', ..., '2023-02-25T21:17:02.120999936', '2023-02-25T21:17:02.183500032', '2023-02-25T21:17:02.245999872'], ['2023-02-25T21:22:02.299500032', '2023-02-25T21:22:02.361999872', '2023-02-25T21:22:02.424999936', ..., '2023-02-25T21:22:02.111000064', '2023-02-25T21:22:02.173500160', '2023-02-25T21:22:02.236499968'], ['2023-02-25T21:27:02.297999872', '2023-02-25T21:27:02.360999936', '2023-02-25T21:27:02.423500032', ..., '2023-02-25T21:27:02.110000128', '2023-02-25T21:27:02.172500224', '2023-02-25T21:27:02.235000064'], ['2023-02-25T21:32:02.297500160', '2023-02-25T21:32:02.360000256', '2023-02-25T21:32:02.423500032', ..., '2023-02-25T21:32:02.108999936', '2023-02-25T21:32:02.171500032', '2023-02-25T21:32:02.234499840']], 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)float32-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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 2.483 2.483 ... 2.483 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21: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 3 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 2.499 2.499 2.499 2.499 2.499 2.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_3- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float641.483 1.483 1.483 ... 1.483 1.483
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:07:24.796999936 .....
- standard_name :
- time
array([['2023-02-25T21:07:24.796999936', '2023-02-25T21:07:24.859000064', '2023-02-25T21:07:24.921499904', ..., '2023-02-25T21:07:24.608999936', '2023-02-25T21:07:24.671000064', '2023-02-25T21:07:24.734499840'], ['2023-02-25T21:12:24.807499776', '2023-02-25T21:12:24.869999872', '2023-02-25T21:12:24.932000000', ..., '2023-02-25T21:12:24.619000064', '2023-02-25T21:12:24.681499904', '2023-02-25T21:12:24.744000000'], ['2023-02-25T21:17:24.811500032', '2023-02-25T21:17:24.874000128', '2023-02-25T21:17:24.935999744', ..., '2023-02-25T21:17:24.624000000', '2023-02-25T21:17:24.685999872', '2023-02-25T21:17:24.749000192'], ['2023-02-25T21:22:24.802000128', '2023-02-25T21:22:24.864499968', '2023-02-25T21:22:24.927000064', ..., '2023-02-25T21:22:24.614000128', '2023-02-25T21:22:24.676000000', '2023-02-25T21:22:24.738999808'], ['2023-02-25T21:27:24.800499968', '2023-02-25T21:27:24.862999808', '2023-02-25T21:27:24.926000128', ..., '2023-02-25T21:27:24.612000000', '2023-02-25T21:27:24.674500096', '2023-02-25T21:27:24.736999936'], ['2023-02-25T21:32:24.800000256', '2023-02-25T21:32:24.862999808', '2023-02-25T21:32:24.925000192', ..., '2023-02-25T21:32:24.612000000', '2023-02-25T21:32:24.673999872', '2023-02-25T21:32:24.737499904']], 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()int644
array(4)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float641.5 1.5 1.5 1.5 1.5 1.5
array([1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- 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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 1.483 1.483 ... 1.483 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21: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 4 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 1.5 1.5 1.5 1.5 1.5 1.5 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_4- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float640.4834 0.4834 ... 0.4724 0.4724
- 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.47241211, 0.47241211, 0.47241211, ..., 0.47241211, 0.47241211, 0.47241211], [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.47241211, 0.47241211, 0.47241211, ..., 0.47241211, 0.47241211, 0.47241211]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:07:52.864499968 .....
- standard_name :
- time
array([['2023-02-25T21:07:52.864499968', '2023-02-25T21:07:52.948500224', '2023-02-25T21:07:53.031000064', ..., '2023-02-25T21:07:52.613999872', '2023-02-25T21:07:52.696999936', '2023-02-25T21:07:52.780499968'], ['2023-02-25T21:12:52.881499904', '2023-02-25T21:12:52.965000192', '2023-02-25T21:12:53.047999744', ..., '2023-02-25T21:12:52.630499840', '2023-02-25T21:12:52.714499840', '2023-02-25T21:12:52.797999872'], ['2023-02-25T21:17:52.902500096', '2023-02-25T21:17:52.985000192', '2023-02-25T21:17:53.068999936', ..., '2023-02-25T21:17:52.652000000', '2023-02-25T21:17:52.735000064', '2023-02-25T21:17:52.818500096'], ['2023-02-25T21:22:52.869500160', '2023-02-25T21:22:52.953000192', '2023-02-25T21:22:53.036000000', ..., '2023-02-25T21:22:52.618500096', '2023-02-25T21:22:52.702000128', '2023-02-25T21:22:52.785999872'], ['2023-02-25T21:27:52.875000064', '2023-02-25T21:27:52.958499840', '2023-02-25T21:27:53.041999872', ..., '2023-02-25T21:27:52.624000000', '2023-02-25T21:27:52.708000256', '2023-02-25T21:27:52.791500032'], ['2023-02-25T21:32:52.836000000', '2023-02-25T21:32:52.919000064', '2023-02-25T21:32:53.002999808', ..., '2023-02-25T21:32:52.584999936', '2023-02-25T21:32:52.669000192', '2023-02-25T21:32:52.751999744']], 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()int645
array(5)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float640.4999 0.4999 ... 0.4999 0.4999
array([0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- 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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 0.4834 0.4834 ... 0.4724 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21: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) float32 -128.0 ... -128.0
sweep_5- azimuth: 360
- range: 496
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.236e+05 1.239e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 123375., 123625., 123875.], dtype=float32)
- elevation(volume_time, azimuth)float647.987 7.987 7.987 ... 7.987 7.987
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:08:15.788999936 .....
- standard_name :
- time
array([['2023-02-25T21:08:15.788999936', '2023-02-25T21:08:15.844999936', '2023-02-25T21:08:15.900499712', ..., '2023-02-25T21:08:15.622499840', '2023-02-25T21:08:15.677499904', '2023-02-25T21:08:15.732999936'], ['2023-02-25T21:13:15.781499904', '2023-02-25T21:13:15.836500224', '2023-02-25T21:13:15.893000192', ..., '2023-02-25T21:13:15.614500096', '2023-02-25T21:13:15.670000128', '2023-02-25T21:13:15.725500160'], ['2023-02-25T21:18:15.796499968', '2023-02-25T21:18:15.851500032', '2023-02-25T21:18:15.907500032', ..., '2023-02-25T21:18:15.628499968', '2023-02-25T21:18:15.684499968', '2023-02-25T21:18:15.739500032'], ['2023-02-25T21:23:15.786500096', '2023-02-25T21:23:15.842000128', '2023-02-25T21:23:15.897500160', ..., '2023-02-25T21:23:15.619500288', '2023-02-25T21:23:15.674500096', '2023-02-25T21:23:15.731000064'], ['2023-02-25T21:28:15.775000064', '2023-02-25T21:28:15.830500096', '2023-02-25T21:28:15.886000128', ..., '2023-02-25T21:28:15.607999744', '2023-02-25T21:28:15.664000000', '2023-02-25T21:28:15.719500032'], ['2023-02-25T21:33:15.748000256', '2023-02-25T21:33:15.804500224', '2023-02-25T21:33:15.859500032', ..., '2023-02-25T21:33:15.580999936', '2023-02-25T21:33:15.636499968', '2023-02-25T21:33:15.692500224']], 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)float32-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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 496, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.236e+05 1.239e+05 elevation (volume_time, azimuth) float64 7.987 7.987 ... 7.987 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21: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) float32 -128.0 ... -128.0
sweep_6- azimuth: 360
- range: 240
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(volume_time, azimuth)float6411.99 11.99 11.99 ... 11.99 11.99
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:08:30.840000256 .....
- standard_name :
- time
array([['2023-02-25T21:08:30.840000256', '2023-02-25T21:08:30.873500160', '2023-02-25T21:08:30.906500096', ..., '2023-02-25T21:08:30.739500032', '2023-02-25T21:08:30.772499968', '2023-02-25T21:08:30.805999872'], ['2023-02-25T21:13:30.812499968', '2023-02-25T21:13:30.845999872', '2023-02-25T21:13:30.879500032', ..., '2023-02-25T21:13:30.712499968', '2023-02-25T21:13:30.745500160', '2023-02-25T21:13:30.779500032'], ['2023-02-25T21:18:30.821500160', '2023-02-25T21:18:30.855500032', '2023-02-25T21:18:30.888499968', ..., '2023-02-25T21:18:30.721499904', '2023-02-25T21:18:30.755000064', '2023-02-25T21:18:30.788499968'], ['2023-02-25T21:23:30.830999808', '2023-02-25T21:23:30.864499968', '2023-02-25T21:23:30.898000128', ..., '2023-02-25T21:23:30.731000064', '2023-02-25T21:23:30.764499968', '2023-02-25T21:23:30.797499904'], ['2023-02-25T21:28:30.806499840', '2023-02-25T21:28:30.839500032', '2023-02-25T21:28:30.873000192', ..., '2023-02-25T21:28:30.705999872', '2023-02-25T21:28:30.739500032', '2023-02-25T21:28:30.772499968'], ['2023-02-25T21:33:30.788000000', '2023-02-25T21:33:30.821500160', '2023-02-25T21:33:30.855500032', ..., '2023-02-25T21:33:30.688000000', '2023-02-25T21:33:30.721499904', '2023-02-25T21:33:30.754499840']], 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)float32-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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (volume_time, azimuth) float64 11.99 11.99 ... 11.99 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21: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) float32 -128.0 ... -128.0
sweep_7- azimuth: 360
- range: 240
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(volume_time, azimuth)float6416.98 16.98 16.98 ... 16.98 16.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:08:42.841000192 .....
- standard_name :
- time
array([['2023-02-25T21:08:42.841000192', '2023-02-25T21:08:42.874500096', '2023-02-25T21:08:42.907500032', ..., '2023-02-25T21:08:42.740499968', '2023-02-25T21:08:42.774499840', '2023-02-25T21:08:42.807499776'], ['2023-02-25T21:13:42.814000128', '2023-02-25T21:13:42.847500032', '2023-02-25T21:13:42.880499968', ..., '2023-02-25T21:13:42.713499904', '2023-02-25T21:13:42.746500096', '2023-02-25T21:13:42.780499968'], ['2023-02-25T21:18:42.822500096', '2023-02-25T21:18:42.856499968', '2023-02-25T21:18:42.889499904', ..., '2023-02-25T21:18:42.723000064', '2023-02-25T21:18:42.756000000', '2023-02-25T21:18:42.789499904'], ['2023-02-25T21:23:42.832000000', '2023-02-25T21:23:42.865499904', '2023-02-25T21:23:42.898999808', ..., '2023-02-25T21:23:42.732000000', '2023-02-25T21:23:42.765500160', '2023-02-25T21:23:42.798500096'], ['2023-02-25T21:28:42.807499776', '2023-02-25T21:28:42.840499968', '2023-02-25T21:28:42.874000128', ..., '2023-02-25T21:28:42.707000064', '2023-02-25T21:28:42.740499968', '2023-02-25T21:28:42.773499904'], ['2023-02-25T21:33:42.789499904', '2023-02-25T21:33:42.823000064', '2023-02-25T21:33:42.856499968', ..., '2023-02-25T21:33:42.689500160', '2023-02-25T21:33:42.722500096', '2023-02-25T21:33:42.755500032']], 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)float32-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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (volume_time, azimuth) float64 16.98 16.98 ... 16.98 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21: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) float32 -128.0 ... -128.0
sweep_8- azimuth: 360
- range: 240
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(volume_time, azimuth)float6424.98 24.98 24.98 ... 24.98 24.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.97192383, 24.97192383, 24.97192383, ..., 24.97192383, 24.97192383, 24.97192383], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [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-02-25T21:08:54.842000128 .....
- standard_name :
- time
array([['2023-02-25T21:08:54.842000128', '2023-02-25T21:08:54.875500032', '2023-02-25T21:08:54.908999936', ..., '2023-02-25T21:08:54.742000128', '2023-02-25T21:08:54.775500032', '2023-02-25T21:08:54.808499968'], ['2023-02-25T21:13:54.815000064', '2023-02-25T21:13:54.848499968', '2023-02-25T21:13:54.881499904', ..., '2023-02-25T21:13:54.714999808', '2023-02-25T21:13:54.748500224', '2023-02-25T21:13:54.781500160'], ['2023-02-25T21:18:54.823500032', '2023-02-25T21:18:54.857500160', '2023-02-25T21:18:54.890500096', ..., '2023-02-25T21:18:54.724000000', '2023-02-25T21:18:54.756999936', '2023-02-25T21:18:54.790499840'], ['2023-02-25T21:23:54.833499904', '2023-02-25T21:23:54.866499840', '2023-02-25T21:23:54.900499968', ..., '2023-02-25T21:23:54.733499904', '2023-02-25T21:23:54.766500096', '2023-02-25T21:23:54.800000000'], ['2023-02-25T21:28:54.808499968', '2023-02-25T21:28:54.842000128', '2023-02-25T21:28:54.875500032', ..., '2023-02-25T21:28:54.708000000', '2023-02-25T21:28:54.741499904', '2023-02-25T21:28:54.774499840'], ['2023-02-25T21:33:54.790999808', '2023-02-25T21:33:54.824499968', '2023-02-25T21:33:54.857500160', ..., '2023-02-25T21:33:54.690500096', '2023-02-25T21:33:54.723500032', '2023-02-25T21:33:54.757499904']], 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)float32-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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (volume_time, azimuth) float64 24.98 24.98 ... 24.98 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21: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) float32 -128.0 ... -128.0
sweep_9- volume_time: 6
- volume_number(volume_time)int640 0 0 0 0 0
array([0, 0, 0, 0, 0, 0])
- platform_type(volume_time)<U5'fixed' 'fixed' ... 'fixed' 'fixed'
array(['fixed', 'fixed', 'fixed', 'fixed', 'fixed', 'fixed'], dtype='<U5')
- instrument_type(volume_time)<U5'radar' 'radar' ... 'radar' 'radar'
array(['radar', 'radar', 'radar', 'radar', 'radar', 'radar'], dtype='<U5')
- time_coverage_start(volume_time)<U20'2023-02-25T21:05:35Z' ... '2023...
array(['2023-02-25T21:05:35Z', '2023-02-25T21:10:35Z', '2023-02-25T21:15:35Z', '2023-02-25T21:20:35Z', '2023-02-25T21:25:35Z', '2023-02-25T21:30:35Z'], dtype='<U20')
- time_coverage_end(volume_time)<U20'2023-02-25T21:09:02Z' ... '2023...
array(['2023-02-25T21:09:02Z', '2023-02-25T21:14:02Z', '2023-02-25T21:19:02Z', '2023-02-25T21:24:02Z', '2023-02-25T21:29:02Z', '2023-02-25T21:34:02Z'], dtype='<U20')
- longitude(volume_time)float646.967 6.967 6.967 6.967 6.967 6.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array([6.967111, 6.967111, 6.967111, 6.967111, 6.967111, 6.967111])
- altitude(volume_time)float64185.1 185.1 185.1 185.1 185.1 185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array([185.11, 185.11, 185.11, 185.11, 185.11, 185.11])
- latitude(volume_time)float6451.41 51.41 51.41 51.41 51.41 51.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array([51.405649, 51.405649, 51.405649, 51.405649, 51.405649, 51.405649])
- Conventions :
- ODIM_H5/V2_2
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- None
- history :
- None
- comment :
- im/exported using xradar
- instrument_name :
- None
[13]:
vol["sweep_9"]
[13]:
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (volume_time, azimuth) float64 24.98 24.98 ... 24.98 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21: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) float32 -128.0 ... -128.0
- azimuth: 360
- range: 240
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(volume_time, azimuth)float6424.98 24.98 24.98 ... 24.98 24.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.97192383, 24.97192383, 24.97192383, ..., 24.97192383, 24.97192383, 24.97192383], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [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-02-25T21:08:54.842000128 .....
- standard_name :
- time
array([['2023-02-25T21:08:54.842000128', '2023-02-25T21:08:54.875500032', '2023-02-25T21:08:54.908999936', ..., '2023-02-25T21:08:54.742000128', '2023-02-25T21:08:54.775500032', '2023-02-25T21:08:54.808499968'], ['2023-02-25T21:13:54.815000064', '2023-02-25T21:13:54.848499968', '2023-02-25T21:13:54.881499904', ..., '2023-02-25T21:13:54.714999808', '2023-02-25T21:13:54.748500224', '2023-02-25T21:13:54.781500160'], ['2023-02-25T21:18:54.823500032', '2023-02-25T21:18:54.857500160', '2023-02-25T21:18:54.890500096', ..., '2023-02-25T21:18:54.724000000', '2023-02-25T21:18:54.756999936', '2023-02-25T21:18:54.790499840'], ['2023-02-25T21:23:54.833499904', '2023-02-25T21:23:54.866499840', '2023-02-25T21:23:54.900499968', ..., '2023-02-25T21:23:54.733499904', '2023-02-25T21:23:54.766500096', '2023-02-25T21:23:54.800000000'], ['2023-02-25T21:28:54.808499968', '2023-02-25T21:28:54.842000128', '2023-02-25T21:28:54.875500032', ..., '2023-02-25T21:28:54.708000000', '2023-02-25T21:28:54.741499904', '2023-02-25T21:28:54.774499840'], ['2023-02-25T21:33:54.790999808', '2023-02-25T21:33:54.824499968', '2023-02-25T21:33:54.857500160', ..., '2023-02-25T21:33:54.690500096', '2023-02-25T21:33:54.723500032', '2023-02-25T21:33:54.757499904']], 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)float32-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.]]], dtype=float32)
Inspect structure#
Root Group#
[14]:
vol.root
[14]:
<xarray.DatasetView> Dimensions: (volume_time: 6) Dimensions without coordinates: volume_time Data variables: volume_number (volume_time) int64 0 0 0 0 0 0 platform_type (volume_time) <U5 'fixed' 'fixed' ... 'fixed' 'fixed' instrument_type (volume_time) <U5 'radar' 'radar' ... 'radar' 'radar' time_coverage_start (volume_time) <U20 '2023-02-25T21:05:35Z' ... '2023-... time_coverage_end (volume_time) <U20 '2023-02-25T21:09:02Z' ... '2023-... longitude (volume_time) float64 6.967 6.967 6.967 ... 6.967 6.967 altitude (volume_time) float64 185.1 185.1 185.1 ... 185.1 185.1 latitude (volume_time) float64 51.41 51.41 51.41 ... 51.41 51.41 Attributes: Conventions: ODIM_H5/V2_2 version: None title: None institution: None references: None source: None history: None comment: im/exported using xradar instrument_name: None
- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float645.482 5.482 5.482 ... 5.482 5.482
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:05:54.787500032 .....
- standard_name :
- time
array([['2023-02-25T21:05:54.787500032', '2023-02-25T21:05:54.850500096', '2023-02-25T21:05:54.913000192', ..., '2023-02-25T21:05:54.600000000', '2023-02-25T21:05:54.661499904', '2023-02-25T21:05:54.724500224'], ['2023-02-25T21:10:54.798500096', '2023-02-25T21:10:54.860999936', '2023-02-25T21:10:54.922999808', ..., '2023-02-25T21:10:54.610000128', '2023-02-25T21:10:54.672500224', '2023-02-25T21:10:54.735000064'], ['2023-02-25T21:15:54.802500096', '2023-02-25T21:15:54.864999936', '2023-02-25T21:15:54.928000000', ..., '2023-02-25T21:15:54.615000064', '2023-02-25T21:15:54.676999936', '2023-02-25T21:15:54.738999808'], ['2023-02-25T21:20:54.792499968', '2023-02-25T21:20:54.855000064', '2023-02-25T21:20:54.917999872', ..., '2023-02-25T21:20:54.604000000', '2023-02-25T21:20:54.666500096', '2023-02-25T21:20:54.729499904'], ['2023-02-25T21:25:54.791500032', '2023-02-25T21:25:54.854000128', '2023-02-25T21:25:54.916999936', ..., '2023-02-25T21:25:54.603499776', '2023-02-25T21:25:54.665999872', '2023-02-25T21:25:54.728000256'], ['2023-02-25T21:30:54.790999808', '2023-02-25T21:30:54.853499904', '2023-02-25T21:30:54.916000000', ..., '2023-02-25T21:30:54.603000064', '2023-02-25T21:30:54.665999872', '2023-02-25T21:30:54.728000256']], 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()int640
array(0)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float645.499 5.499 5.499 5.499 5.499 5.499
array([5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- 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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 5.482 5.482 ... 5.482 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21:05... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 0 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 5.499 5.499 5.499 5.499 5.499 5.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_0- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float644.493 4.493 4.493 ... 4.482 4.482
- 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.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ], [4.48242188, 4.48242188, 4.48242188, ..., 4.48242188, 4.48242188, 4.48242188]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:06:17.289999872 .....
- standard_name :
- time
array([['2023-02-25T21:06:17.289999872', '2023-02-25T21:06:17.353000192', '2023-02-25T21:06:17.416000000', ..., '2023-02-25T21:06:17.101999872', '2023-02-25T21:06:17.164000000', '2023-02-25T21:06:17.227500032'], ['2023-02-25T21:11:17.300499968', '2023-02-25T21:11:17.364000000', '2023-02-25T21:11:17.426000128', ..., '2023-02-25T21:11:17.112999936', '2023-02-25T21:11:17.175000064', '2023-02-25T21:11:17.236999936'], ['2023-02-25T21:16:17.304500224', '2023-02-25T21:16:17.367000064', '2023-02-25T21:16:17.428999936', ..., '2023-02-25T21:16:17.117000192', '2023-02-25T21:16:17.178999808', '2023-02-25T21:16:17.241499904'], ['2023-02-25T21:21:17.294499840', '2023-02-25T21:21:17.357500160', '2023-02-25T21:21:17.420499968', ..., '2023-02-25T21:21:17.106999808', '2023-02-25T21:21:17.169000192', '2023-02-25T21:21:17.232000000'], ['2023-02-25T21:26:17.293499904', '2023-02-25T21:26:17.356500224', '2023-02-25T21:26:17.419000064', ..., '2023-02-25T21:26:17.105999872', '2023-02-25T21:26:17.167500032', '2023-02-25T21:26:17.230500096'], ['2023-02-25T21:31:17.293499904', '2023-02-25T21:31:17.356000000', '2023-02-25T21:31:17.417999872', ..., '2023-02-25T21:31:17.105499904', '2023-02-25T21:31:17.168000000', '2023-02-25T21:31:17.230000128']], 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)float32-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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 4.493 4.493 ... 4.482 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21:06... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 1 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 4.499 4.499 4.499 4.499 4.499 4.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_1- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float643.494 3.494 3.494 ... 3.494 3.494
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234], [3.49365234, 3.49365234, 3.49365234, ..., 3.49365234, 3.49365234, 3.49365234]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:06:39.791999744 .....
- standard_name :
- time
array([['2023-02-25T21:06:39.791999744', '2023-02-25T21:06:39.855500032', '2023-02-25T21:06:39.917999872', ..., '2023-02-25T21:06:39.604000000', '2023-02-25T21:06:39.666500096', '2023-02-25T21:06:39.729499904'], ['2023-02-25T21:11:39.802500096', '2023-02-25T21:11:39.864999936', '2023-02-25T21:11:39.927000064', ..., '2023-02-25T21:11:39.615000064', '2023-02-25T21:11:39.676999936', '2023-02-25T21:11:39.740000000'], ['2023-02-25T21:16:39.807000064', '2023-02-25T21:16:39.868999936', '2023-02-25T21:16:39.931500032', ..., '2023-02-25T21:16:39.619000064', '2023-02-25T21:16:39.680999936', '2023-02-25T21:16:39.744500224'], ['2023-02-25T21:21:39.796999936', '2023-02-25T21:21:39.860000256', '2023-02-25T21:21:39.922500096', ..., '2023-02-25T21:21:39.608999936', '2023-02-25T21:21:39.671500032', '2023-02-25T21:21:39.733999872'], ['2023-02-25T21:26:39.796000000', '2023-02-25T21:26:39.858000128', '2023-02-25T21:26:39.920499968', ..., '2023-02-25T21:26:39.608000000', '2023-02-25T21:26:39.670000128', '2023-02-25T21:26:39.733499904'], ['2023-02-25T21:31:39.795500032', '2023-02-25T21:31:39.857999872', '2023-02-25T21:31:39.920999936', ..., '2023-02-25T21:31:39.606999808', '2023-02-25T21:31:39.669499904', '2023-02-25T21:31:39.732000000']], 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()int642
array(2)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float643.499 3.499 3.499 3.499 3.499 3.499
array([3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- 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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 3.494 3.494 ... 3.494 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21:06... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 2 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 3.499 3.499 3.499 3.499 3.499 3.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_2- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float642.483 2.483 2.483 ... 2.483 2.483
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:07:02.294499840 .....
- standard_name :
- time
array([['2023-02-25T21:07:02.294499840', '2023-02-25T21:07:02.356999936', '2023-02-25T21:07:02.420499968', ..., '2023-02-25T21:07:02.105999872', '2023-02-25T21:07:02.168499968', '2023-02-25T21:07:02.231000064'], ['2023-02-25T21:12:02.305499904', '2023-02-25T21:12:02.368000000', '2023-02-25T21:12:02.430500096', ..., '2023-02-25T21:12:02.117000192', '2023-02-25T21:12:02.178999808', '2023-02-25T21:12:02.242000128'], ['2023-02-25T21:17:02.308999936', '2023-02-25T21:17:02.372000256', '2023-02-25T21:17:02.434000128', ..., '2023-02-25T21:17:02.120999936', '2023-02-25T21:17:02.183500032', '2023-02-25T21:17:02.245999872'], ['2023-02-25T21:22:02.299500032', '2023-02-25T21:22:02.361999872', '2023-02-25T21:22:02.424999936', ..., '2023-02-25T21:22:02.111000064', '2023-02-25T21:22:02.173500160', '2023-02-25T21:22:02.236499968'], ['2023-02-25T21:27:02.297999872', '2023-02-25T21:27:02.360999936', '2023-02-25T21:27:02.423500032', ..., '2023-02-25T21:27:02.110000128', '2023-02-25T21:27:02.172500224', '2023-02-25T21:27:02.235000064'], ['2023-02-25T21:32:02.297500160', '2023-02-25T21:32:02.360000256', '2023-02-25T21:32:02.423500032', ..., '2023-02-25T21:32:02.108999936', '2023-02-25T21:32:02.171500032', '2023-02-25T21:32:02.234499840']], 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)float32-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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 2.483 2.483 ... 2.483 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21: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 3 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 2.499 2.499 2.499 2.499 2.499 2.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_3- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float641.483 1.483 1.483 ... 1.483 1.483
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543], [1.4831543, 1.4831543, 1.4831543, ..., 1.4831543, 1.4831543, 1.4831543]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:07:24.796999936 .....
- standard_name :
- time
array([['2023-02-25T21:07:24.796999936', '2023-02-25T21:07:24.859000064', '2023-02-25T21:07:24.921499904', ..., '2023-02-25T21:07:24.608999936', '2023-02-25T21:07:24.671000064', '2023-02-25T21:07:24.734499840'], ['2023-02-25T21:12:24.807499776', '2023-02-25T21:12:24.869999872', '2023-02-25T21:12:24.932000000', ..., '2023-02-25T21:12:24.619000064', '2023-02-25T21:12:24.681499904', '2023-02-25T21:12:24.744000000'], ['2023-02-25T21:17:24.811500032', '2023-02-25T21:17:24.874000128', '2023-02-25T21:17:24.935999744', ..., '2023-02-25T21:17:24.624000000', '2023-02-25T21:17:24.685999872', '2023-02-25T21:17:24.749000192'], ['2023-02-25T21:22:24.802000128', '2023-02-25T21:22:24.864499968', '2023-02-25T21:22:24.927000064', ..., '2023-02-25T21:22:24.614000128', '2023-02-25T21:22:24.676000000', '2023-02-25T21:22:24.738999808'], ['2023-02-25T21:27:24.800499968', '2023-02-25T21:27:24.862999808', '2023-02-25T21:27:24.926000128', ..., '2023-02-25T21:27:24.612000000', '2023-02-25T21:27:24.674500096', '2023-02-25T21:27:24.736999936'], ['2023-02-25T21:32:24.800000256', '2023-02-25T21:32:24.862999808', '2023-02-25T21:32:24.925000192', ..., '2023-02-25T21:32:24.612000000', '2023-02-25T21:32:24.673999872', '2023-02-25T21:32:24.737499904']], 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()int644
array(4)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float641.5 1.5 1.5 1.5 1.5 1.5
array([1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- 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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 1.483 1.483 ... 1.483 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21: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 4 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 1.5 1.5 1.5 1.5 1.5 1.5 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
sweep_4- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float640.4834 0.4834 ... 0.4724 0.4724
- 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.47241211, 0.47241211, 0.47241211, ..., 0.47241211, 0.47241211, 0.47241211], [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.47241211, 0.47241211, 0.47241211, ..., 0.47241211, 0.47241211, 0.47241211]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:07:52.864499968 .....
- standard_name :
- time
array([['2023-02-25T21:07:52.864499968', '2023-02-25T21:07:52.948500224', '2023-02-25T21:07:53.031000064', ..., '2023-02-25T21:07:52.613999872', '2023-02-25T21:07:52.696999936', '2023-02-25T21:07:52.780499968'], ['2023-02-25T21:12:52.881499904', '2023-02-25T21:12:52.965000192', '2023-02-25T21:12:53.047999744', ..., '2023-02-25T21:12:52.630499840', '2023-02-25T21:12:52.714499840', '2023-02-25T21:12:52.797999872'], ['2023-02-25T21:17:52.902500096', '2023-02-25T21:17:52.985000192', '2023-02-25T21:17:53.068999936', ..., '2023-02-25T21:17:52.652000000', '2023-02-25T21:17:52.735000064', '2023-02-25T21:17:52.818500096'], ['2023-02-25T21:22:52.869500160', '2023-02-25T21:22:52.953000192', '2023-02-25T21:22:53.036000000', ..., '2023-02-25T21:22:52.618500096', '2023-02-25T21:22:52.702000128', '2023-02-25T21:22:52.785999872'], ['2023-02-25T21:27:52.875000064', '2023-02-25T21:27:52.958499840', '2023-02-25T21:27:53.041999872', ..., '2023-02-25T21:27:52.624000000', '2023-02-25T21:27:52.708000256', '2023-02-25T21:27:52.791500032'], ['2023-02-25T21:32:52.836000000', '2023-02-25T21:32:52.919000064', '2023-02-25T21:32:53.002999808', ..., '2023-02-25T21:32:52.584999936', '2023-02-25T21:32:52.669000192', '2023-02-25T21:32:52.751999744']], 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()int645
array(5)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float640.4999 0.4999 ... 0.4999 0.4999
array([0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- 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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 0.4834 0.4834 ... 0.4724 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21: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) float32 -128.0 ... -128.0
sweep_5- azimuth: 360
- range: 496
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.236e+05 1.239e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 123375., 123625., 123875.], dtype=float32)
- elevation(volume_time, azimuth)float647.987 7.987 7.987 ... 7.987 7.987
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:08:15.788999936 .....
- standard_name :
- time
array([['2023-02-25T21:08:15.788999936', '2023-02-25T21:08:15.844999936', '2023-02-25T21:08:15.900499712', ..., '2023-02-25T21:08:15.622499840', '2023-02-25T21:08:15.677499904', '2023-02-25T21:08:15.732999936'], ['2023-02-25T21:13:15.781499904', '2023-02-25T21:13:15.836500224', '2023-02-25T21:13:15.893000192', ..., '2023-02-25T21:13:15.614500096', '2023-02-25T21:13:15.670000128', '2023-02-25T21:13:15.725500160'], ['2023-02-25T21:18:15.796499968', '2023-02-25T21:18:15.851500032', '2023-02-25T21:18:15.907500032', ..., '2023-02-25T21:18:15.628499968', '2023-02-25T21:18:15.684499968', '2023-02-25T21:18:15.739500032'], ['2023-02-25T21:23:15.786500096', '2023-02-25T21:23:15.842000128', '2023-02-25T21:23:15.897500160', ..., '2023-02-25T21:23:15.619500288', '2023-02-25T21:23:15.674500096', '2023-02-25T21:23:15.731000064'], ['2023-02-25T21:28:15.775000064', '2023-02-25T21:28:15.830500096', '2023-02-25T21:28:15.886000128', ..., '2023-02-25T21:28:15.607999744', '2023-02-25T21:28:15.664000000', '2023-02-25T21:28:15.719500032'], ['2023-02-25T21:33:15.748000256', '2023-02-25T21:33:15.804500224', '2023-02-25T21:33:15.859500032', ..., '2023-02-25T21:33:15.580999936', '2023-02-25T21:33:15.636499968', '2023-02-25T21:33:15.692500224']], 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)float32-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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 496, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.236e+05 1.239e+05 elevation (volume_time, azimuth) float64 7.987 7.987 ... 7.987 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21: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) float32 -128.0 ... -128.0
sweep_6- azimuth: 360
- range: 240
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(volume_time, azimuth)float6411.99 11.99 11.99 ... 11.99 11.99
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:08:30.840000256 .....
- standard_name :
- time
array([['2023-02-25T21:08:30.840000256', '2023-02-25T21:08:30.873500160', '2023-02-25T21:08:30.906500096', ..., '2023-02-25T21:08:30.739500032', '2023-02-25T21:08:30.772499968', '2023-02-25T21:08:30.805999872'], ['2023-02-25T21:13:30.812499968', '2023-02-25T21:13:30.845999872', '2023-02-25T21:13:30.879500032', ..., '2023-02-25T21:13:30.712499968', '2023-02-25T21:13:30.745500160', '2023-02-25T21:13:30.779500032'], ['2023-02-25T21:18:30.821500160', '2023-02-25T21:18:30.855500032', '2023-02-25T21:18:30.888499968', ..., '2023-02-25T21:18:30.721499904', '2023-02-25T21:18:30.755000064', '2023-02-25T21:18:30.788499968'], ['2023-02-25T21:23:30.830999808', '2023-02-25T21:23:30.864499968', '2023-02-25T21:23:30.898000128', ..., '2023-02-25T21:23:30.731000064', '2023-02-25T21:23:30.764499968', '2023-02-25T21:23:30.797499904'], ['2023-02-25T21:28:30.806499840', '2023-02-25T21:28:30.839500032', '2023-02-25T21:28:30.873000192', ..., '2023-02-25T21:28:30.705999872', '2023-02-25T21:28:30.739500032', '2023-02-25T21:28:30.772499968'], ['2023-02-25T21:33:30.788000000', '2023-02-25T21:33:30.821500160', '2023-02-25T21:33:30.855500032', ..., '2023-02-25T21:33:30.688000000', '2023-02-25T21:33:30.721499904', '2023-02-25T21:33:30.754499840']], 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)float32-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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (volume_time, azimuth) float64 11.99 11.99 ... 11.99 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21: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) float32 -128.0 ... -128.0
sweep_7- azimuth: 360
- range: 240
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(volume_time, azimuth)float6416.98 16.98 16.98 ... 16.98 16.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328], [16.98486328, 16.98486328, 16.98486328, ..., 16.98486328, 16.98486328, 16.98486328]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:08:42.841000192 .....
- standard_name :
- time
array([['2023-02-25T21:08:42.841000192', '2023-02-25T21:08:42.874500096', '2023-02-25T21:08:42.907500032', ..., '2023-02-25T21:08:42.740499968', '2023-02-25T21:08:42.774499840', '2023-02-25T21:08:42.807499776'], ['2023-02-25T21:13:42.814000128', '2023-02-25T21:13:42.847500032', '2023-02-25T21:13:42.880499968', ..., '2023-02-25T21:13:42.713499904', '2023-02-25T21:13:42.746500096', '2023-02-25T21:13:42.780499968'], ['2023-02-25T21:18:42.822500096', '2023-02-25T21:18:42.856499968', '2023-02-25T21:18:42.889499904', ..., '2023-02-25T21:18:42.723000064', '2023-02-25T21:18:42.756000000', '2023-02-25T21:18:42.789499904'], ['2023-02-25T21:23:42.832000000', '2023-02-25T21:23:42.865499904', '2023-02-25T21:23:42.898999808', ..., '2023-02-25T21:23:42.732000000', '2023-02-25T21:23:42.765500160', '2023-02-25T21:23:42.798500096'], ['2023-02-25T21:28:42.807499776', '2023-02-25T21:28:42.840499968', '2023-02-25T21:28:42.874000128', ..., '2023-02-25T21:28:42.707000064', '2023-02-25T21:28:42.740499968', '2023-02-25T21:28:42.773499904'], ['2023-02-25T21:33:42.789499904', '2023-02-25T21:33:42.823000064', '2023-02-25T21:33:42.856499968', ..., '2023-02-25T21:33:42.689500160', '2023-02-25T21:33:42.722500096', '2023-02-25T21:33:42.755500032']], 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)float32-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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (volume_time, azimuth) float64 16.98 16.98 ... 16.98 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21: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) float32 -128.0 ... -128.0
sweep_8- azimuth: 360
- range: 240
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(volume_time, azimuth)float6424.98 24.98 24.98 ... 24.98 24.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.97192383, 24.97192383, 24.97192383, ..., 24.97192383, 24.97192383, 24.97192383], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [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-02-25T21:08:54.842000128 .....
- standard_name :
- time
array([['2023-02-25T21:08:54.842000128', '2023-02-25T21:08:54.875500032', '2023-02-25T21:08:54.908999936', ..., '2023-02-25T21:08:54.742000128', '2023-02-25T21:08:54.775500032', '2023-02-25T21:08:54.808499968'], ['2023-02-25T21:13:54.815000064', '2023-02-25T21:13:54.848499968', '2023-02-25T21:13:54.881499904', ..., '2023-02-25T21:13:54.714999808', '2023-02-25T21:13:54.748500224', '2023-02-25T21:13:54.781500160'], ['2023-02-25T21:18:54.823500032', '2023-02-25T21:18:54.857500160', '2023-02-25T21:18:54.890500096', ..., '2023-02-25T21:18:54.724000000', '2023-02-25T21:18:54.756999936', '2023-02-25T21:18:54.790499840'], ['2023-02-25T21:23:54.833499904', '2023-02-25T21:23:54.866499840', '2023-02-25T21:23:54.900499968', ..., '2023-02-25T21:23:54.733499904', '2023-02-25T21:23:54.766500096', '2023-02-25T21:23:54.800000000'], ['2023-02-25T21:28:54.808499968', '2023-02-25T21:28:54.842000128', '2023-02-25T21:28:54.875500032', ..., '2023-02-25T21:28:54.708000000', '2023-02-25T21:28:54.741499904', '2023-02-25T21:28:54.774499840'], ['2023-02-25T21:33:54.790999808', '2023-02-25T21:33:54.824499968', '2023-02-25T21:33:54.857500160', ..., '2023-02-25T21:33:54.690500096', '2023-02-25T21:33:54.723500032', '2023-02-25T21:33:54.757499904']], 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)float32-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.]]], dtype=float32)
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (volume_time, azimuth) float64 24.98 24.98 ... 24.98 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21: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) float32 -128.0 ... -128.0
sweep_9- volume_time: 6
- volume_number(volume_time)int640 0 0 0 0 0
array([0, 0, 0, 0, 0, 0])
- platform_type(volume_time)<U5'fixed' 'fixed' ... 'fixed' 'fixed'
array(['fixed', 'fixed', 'fixed', 'fixed', 'fixed', 'fixed'], dtype='<U5')
- instrument_type(volume_time)<U5'radar' 'radar' ... 'radar' 'radar'
array(['radar', 'radar', 'radar', 'radar', 'radar', 'radar'], dtype='<U5')
- time_coverage_start(volume_time)<U20'2023-02-25T21:05:35Z' ... '2023...
array(['2023-02-25T21:05:35Z', '2023-02-25T21:10:35Z', '2023-02-25T21:15:35Z', '2023-02-25T21:20:35Z', '2023-02-25T21:25:35Z', '2023-02-25T21:30:35Z'], dtype='<U20')
- time_coverage_end(volume_time)<U20'2023-02-25T21:09:02Z' ... '2023...
array(['2023-02-25T21:09:02Z', '2023-02-25T21:14:02Z', '2023-02-25T21:19:02Z', '2023-02-25T21:24:02Z', '2023-02-25T21:29:02Z', '2023-02-25T21:34:02Z'], dtype='<U20')
- longitude(volume_time)float646.967 6.967 6.967 6.967 6.967 6.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array([6.967111, 6.967111, 6.967111, 6.967111, 6.967111, 6.967111])
- altitude(volume_time)float64185.1 185.1 185.1 185.1 185.1 185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array([185.11, 185.11, 185.11, 185.11, 185.11, 185.11])
- latitude(volume_time)float6451.41 51.41 51.41 51.41 51.41 51.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array([51.405649, 51.405649, 51.405649, 51.405649, 51.405649, 51.405649])
- Conventions :
- ODIM_H5/V2_2
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- None
- history :
- None
- comment :
- im/exported using xradar
- instrument_name :
- None
Sweep Groups#
[15]:
vol["sweep_0"]
[15]:
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (volume_time, azimuth) float64 5.482 5.482 ... 5.482 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21:05... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 0 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 5.499 5.499 5.499 5.499 5.499 5.499 VRADH (volume_time, azimuth, range) float32 -128.0 ... -128.0
- azimuth: 360
- range: 720
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(volume_time, azimuth)float645.482 5.482 5.482 ... 5.482 5.482
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773]])
- time(volume_time, azimuth)datetime64[ns]2023-02-25T21:05:54.787500032 .....
- standard_name :
- time
array([['2023-02-25T21:05:54.787500032', '2023-02-25T21:05:54.850500096', '2023-02-25T21:05:54.913000192', ..., '2023-02-25T21:05:54.600000000', '2023-02-25T21:05:54.661499904', '2023-02-25T21:05:54.724500224'], ['2023-02-25T21:10:54.798500096', '2023-02-25T21:10:54.860999936', '2023-02-25T21:10:54.922999808', ..., '2023-02-25T21:10:54.610000128', '2023-02-25T21:10:54.672500224', '2023-02-25T21:10:54.735000064'], ['2023-02-25T21:15:54.802500096', '2023-02-25T21:15:54.864999936', '2023-02-25T21:15:54.928000000', ..., '2023-02-25T21:15:54.615000064', '2023-02-25T21:15:54.676999936', '2023-02-25T21:15:54.738999808'], ['2023-02-25T21:20:54.792499968', '2023-02-25T21:20:54.855000064', '2023-02-25T21:20:54.917999872', ..., '2023-02-25T21:20:54.604000000', '2023-02-25T21:20:54.666500096', '2023-02-25T21:20:54.729499904'], ['2023-02-25T21:25:54.791500032', '2023-02-25T21:25:54.854000128', '2023-02-25T21:25:54.916999936', ..., '2023-02-25T21:25:54.603499776', '2023-02-25T21:25:54.665999872', '2023-02-25T21:25:54.728000256'], ['2023-02-25T21:30:54.790999808', '2023-02-25T21:30:54.853499904', '2023-02-25T21:30:54.916000000', ..., '2023-02-25T21:30:54.603000064', '2023-02-25T21:30:54.665999872', '2023-02-25T21:30:54.728000256']], 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()int640
array(0)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7')
- sweep_fixed_angle(volume_time)float645.499 5.499 5.499 5.499 5.499 5.499
array([5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723])
- VRADH(volume_time, azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- 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.]]], dtype=float32)
plot sweeps#
DBZH#
[16]:
vol["sweep_0"].isel(volume_time=0)
[16]:
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 elevation (azimuth) float64 5.482 5.482 5.482 ... 5.482 5.482 5.482 time (azimuth) datetime64[ns] 2023-02-25T21:05:54.787500032... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Data variables: DBZH (azimuth, range) float32 -64.0 -64.0 ... -64.0 -64.0 sweep_mode <U20 'azimuth_surveillance' sweep_number int64 0 prt_mode <U7 'not_set' follow_mode <U7 'not_set' sweep_fixed_angle float64 5.499 VRADH (azimuth, range) float32 -128.0 -128.0 ... -128.0 -128.0
- azimuth: 360
- range: 720
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32)
- elevation(azimuth)float645.482 5.482 5.482 ... 5.482 5.482
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.37780762, 5.4876709 , 5.52612305, 5.50964355, 5.47668457, 5.46020508, 5.46020508, 5.47119141, 5.4876709 , 5.49316406, 5.49316406, 5.48217773, 5.47668457, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, ... 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773, 5.48217773])
- time(azimuth)datetime64[ns]2023-02-25T21:05:54.787500032 .....
- standard_name :
- time
array(['2023-02-25T21:05:54.787500032', '2023-02-25T21:05:54.850500096', '2023-02-25T21:05:54.913000192', '2023-02-25T21:05:54.974999808', '2023-02-25T21:05:55.038000128', '2023-02-25T21:05:55.100999936', '2023-02-25T21:05:55.163000064', '2023-02-25T21:05:55.225500160', '2023-02-25T21:05:55.288000000', '2023-02-25T21:05:55.349999872', '2023-02-25T21:05:55.412000000', '2023-02-25T21:05:55.474500096', '2023-02-25T21:05:55.536999936', '2023-02-25T21:05:55.599000064', '2023-02-25T21:05:55.663000064', '2023-02-25T21:05:55.725999872', '2023-02-25T21:05:55.788999936', '2023-02-25T21:05:55.849999872', '2023-02-25T21:05:55.912499968', '2023-02-25T21:05:55.974999808', '2023-02-25T21:05:56.038000128', '2023-02-25T21:05:56.100999936', '2023-02-25T21:05:56.163000064', '2023-02-25T21:05:56.225500160', '2023-02-25T21:05:56.288499712', '2023-02-25T21:05:56.350999808', '2023-02-25T21:05:56.414000128', '2023-02-25T21:05:56.475999744', '2023-02-25T21:05:56.538000128', '2023-02-25T21:05:56.600500224', '2023-02-25T21:05:56.663499776', '2023-02-25T21:05:56.724999936', '2023-02-25T21:05:56.787500032', '2023-02-25T21:05:56.850500096', '2023-02-25T21:05:56.913000192', '2023-02-25T21:05:56.974999808', '2023-02-25T21:05:57.038000128', '2023-02-25T21:05:57.099500288', '2023-02-25T21:05:57.162499840', '2023-02-25T21:05:57.225500160', ... '2023-02-25T21:05:52.412000000', '2023-02-25T21:05:52.473999872', '2023-02-25T21:05:52.536999936', '2023-02-25T21:05:52.599000064', '2023-02-25T21:05:52.660999936', '2023-02-25T21:05:52.723000064', '2023-02-25T21:05:52.786500096', '2023-02-25T21:05:52.848000000', '2023-02-25T21:05:52.910500096', '2023-02-25T21:05:52.972999936', '2023-02-25T21:05:53.036499968', '2023-02-25T21:05:53.098000128', '2023-02-25T21:05:53.160499968', '2023-02-25T21:05:53.223000064', '2023-02-25T21:05:53.286000128', '2023-02-25T21:05:53.348000000', '2023-02-25T21:05:53.411500032', '2023-02-25T21:05:53.473999872', '2023-02-25T21:05:53.537000192', '2023-02-25T21:05:53.600000000', '2023-02-25T21:05:53.661499904', '2023-02-25T21:05:53.724500224', '2023-02-25T21:05:53.787000064', '2023-02-25T21:05:53.848999936', '2023-02-25T21:05:53.912000000', '2023-02-25T21:05:53.973999872', '2023-02-25T21:05:54.036499968', '2023-02-25T21:05:54.099500288', '2023-02-25T21:05:54.161999872', '2023-02-25T21:05:54.224000000', '2023-02-25T21:05:54.287500032', '2023-02-25T21:05:54.349999872', '2023-02-25T21:05:54.412000000', '2023-02-25T21:05:54.474500096', '2023-02-25T21:05:54.537499904', '2023-02-25T21:05:54.600000000', '2023-02-25T21:05:54.661499904', '2023-02-25T21:05:54.724500224'], 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, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], dtype=float32)
- sweep_mode()<U20'azimuth_surveillance'
array('azimuth_surveillance', dtype='<U20')
- sweep_number()int640
array(0)
- prt_mode()<U7'not_set'
array('not_set', dtype='<U7')
- follow_mode()<U7'not_set'
array('not_set', dtype='<U7')
- sweep_fixed_angle()float645.499
array(5.49865723)
- VRADH(azimuth, range)float32-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- 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.]], dtype=float32)
[17]:
fig, gs = pl.subplots(
4, 3, figsize=(20, 30), sharex=True, sharey=True, constrained_layout=True
)
for i, grp in enumerate(vol.groups[1:]):
swp = vol[grp].isel(volume_time=0).ds
swp = swp.assign_coords(sweep_mode=swp.sweep_mode)
swp.DBZH.pipe(wrl.georef.georeference_dataset).wradlib.plot(ax=gs.flat[i], fig=fig)
ax = pl.gca()
ax.set_title(swp.sweep_fixed_angle.values)
fig.delaxes(gs.flat[-2])
fig.delaxes(gs.flat[-1])

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

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

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

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

Inspect radar moments#
The DataArrays can be accessed by key or by attribute. Each DataArray inherits dimensions and coordinates of it’s parent dataset. There are attributes connected which are defined by Cf/Radial and/or ODIM_H5 standard.
[24]:
vol["sweep_9"].isel(volume_time=0).ds.DBZH
[24]:
<xarray.DataArray 'DBZH' (azimuth: 360, range: 240)> array([[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], dtype=float32) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 4.5 ... 356.5 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (azimuth) float64 24.98 24.98 24.98 24.98 ... 24.98 24.98 24.98 time (azimuth) datetime64[ns] 2023-02-25T21:08:54.842000128 ... 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)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(azimuth)float6424.98 24.98 24.98 ... 24.98 24.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, ... 24.99389648, 24.99389648, 24.99389648, 24.98840332, 24.98291016, 24.98291016, 24.97741699, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97741699, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 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-02-25T21:08:54.842000128 .....
- standard_name :
- time
array(['2023-02-25T21:08:54.842000128', '2023-02-25T21:08:54.875500032', '2023-02-25T21:08:54.908999936', '2023-02-25T21:08:54.942500096', '2023-02-25T21:08:54.975500032', '2023-02-25T21:08:55.009499904', '2023-02-25T21:08:55.042500096', '2023-02-25T21:08:55.075500032', '2023-02-25T21:08:55.108999936', '2023-02-25T21:08:55.142499840', '2023-02-25T21:08:55.175500032', '2023-02-25T21:08:55.208499968', '2023-02-25T21:08:55.241499904', '2023-02-25T21:08:55.275500032', '2023-02-25T21:08:55.308499968', '2023-02-25T21:08:55.342500096', '2023-02-25T21:08:55.375500032', '2023-02-25T21:08:55.408999936', '2023-02-25T21:08:55.442500096', '2023-02-25T21:08:55.475500032', '2023-02-25T21:08:55.508500224', '2023-02-25T21:08:55.542500096', '2023-02-25T21:08:55.575500032', '2023-02-25T21:08:55.608999936', '2023-02-25T21:08:55.642499840', '2023-02-25T21:08:55.676000000', '2023-02-25T21:08:55.709500160', '2023-02-25T21:08:55.742500096', '2023-02-25T21:08:55.775500032', '2023-02-25T21:08:55.808499968', '2023-02-25T21:08:55.842000128', '2023-02-25T21:08:55.875500032', '2023-02-25T21:08:55.908499968', '2023-02-25T21:08:55.942500096', '2023-02-25T21:08:55.975500032', '2023-02-25T21:08:56.008500224', '2023-02-25T21:08:56.042000128', '2023-02-25T21:08:56.075500032', '2023-02-25T21:08:56.108499968', '2023-02-25T21:08:56.141999872', ... '2023-02-25T21:08:53.575000064', '2023-02-25T21:08:53.607500032', '2023-02-25T21:08:53.641499904', '2023-02-25T21:08:53.675000064', '2023-02-25T21:08:53.708000000', '2023-02-25T21:08:53.741499904', '2023-02-25T21:08:53.775000064', '2023-02-25T21:08:53.807499776', '2023-02-25T21:08:53.841000192', '2023-02-25T21:08:53.874500096', '2023-02-25T21:08:53.907500032', '2023-02-25T21:08:53.941499904', '2023-02-25T21:08:53.974499840', '2023-02-25T21:08:54.008500224', '2023-02-25T21:08:54.041500160', '2023-02-25T21:08:54.074500096', '2023-02-25T21:08:54.108499968', '2023-02-25T21:08:54.141499904', '2023-02-25T21:08:54.174500096', '2023-02-25T21:08:54.208499968', '2023-02-25T21:08:54.242000128', '2023-02-25T21:08:54.275000064', '2023-02-25T21:08:54.308499968', '2023-02-25T21:08:54.341500160', '2023-02-25T21:08:54.375000064', '2023-02-25T21:08:54.408499968', '2023-02-25T21:08:54.441499904', '2023-02-25T21:08:54.474999808', '2023-02-25T21:08:54.508500224', '2023-02-25T21:08:54.542000128', '2023-02-25T21:08:54.575500032', '2023-02-25T21:08:54.608499968', '2023-02-25T21:08:54.641999872', '2023-02-25T21:08:54.675500032', '2023-02-25T21:08:54.708499968', '2023-02-25T21:08:54.742000128', '2023-02-25T21:08:54.775500032', '2023-02-25T21:08:54.808499968'], dtype='datetime64[ns]')
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- azimuthPandasIndex
PandasIndex(Float64Index([ 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, ... 350.5, 351.5, 352.5, 353.5, 354.5, 355.5, 356.5, 357.5, 358.5, 359.5], dtype='float64', name='azimuth', length=360))
- rangePandasIndex
PandasIndex(Float64Index([ 125.0, 375.0, 625.0, 875.0, 1125.0, 1375.0, 1625.0, 1875.0, 2125.0, 2375.0, ... 57625.0, 57875.0, 58125.0, 58375.0, 58625.0, 58875.0, 59125.0, 59375.0, 59625.0, 59875.0], dtype='float64', name='range', length=240))
- _Undetect :
- 0.0
- 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: (azimuth: 360, range: 240, volume_time: 6) Coordinates: * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 elevation (volume_time, azimuth) float64 24.98 24.98 ... 24.98 time (volume_time, azimuth) datetime64[ns] 2023-02-25T21: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) float32 -128.0 ... -128.0
- azimuth: 360
- range: 240
- volume_time: 6
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- elevation(volume_time, azimuth)float6424.98 24.98 24.98 ... 24.98 24.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.97192383, 24.97192383, 24.97192383, ..., 24.97192383, 24.97192383, 24.97192383], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [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-02-25T21:08:54.842000128 .....
- standard_name :
- time
array([['2023-02-25T21:08:54.842000128', '2023-02-25T21:08:54.875500032', '2023-02-25T21:08:54.908999936', ..., '2023-02-25T21:08:54.742000128', '2023-02-25T21:08:54.775500032', '2023-02-25T21:08:54.808499968'], ['2023-02-25T21:13:54.815000064', '2023-02-25T21:13:54.848499968', '2023-02-25T21:13:54.881499904', ..., '2023-02-25T21:13:54.714999808', '2023-02-25T21:13:54.748500224', '2023-02-25T21:13:54.781500160'], ['2023-02-25T21:18:54.823500032', '2023-02-25T21:18:54.857500160', '2023-02-25T21:18:54.890500096', ..., '2023-02-25T21:18:54.724000000', '2023-02-25T21:18:54.756999936', '2023-02-25T21:18:54.790499840'], ['2023-02-25T21:23:54.833499904', '2023-02-25T21:23:54.866499840', '2023-02-25T21:23:54.900499968', ..., '2023-02-25T21:23:54.733499904', '2023-02-25T21:23:54.766500096', '2023-02-25T21:23:54.800000000'], ['2023-02-25T21:28:54.808499968', '2023-02-25T21:28:54.842000128', '2023-02-25T21:28:54.875500032', ..., '2023-02-25T21:28:54.708000000', '2023-02-25T21:28:54.741499904', '2023-02-25T21:28:54.774499840'], ['2023-02-25T21:33:54.790999808', '2023-02-25T21:33:54.824499968', '2023-02-25T21:33:54.857500160', ..., '2023-02-25T21:33:54.690500096', '2023-02-25T21:33:54.723500032', '2023-02-25T21:33:54.757499904']], 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)float32-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.]]], dtype=float32)
[27]:
fig = pl.figure(figsize=(10, 4))
ax = fig.add_subplot(111)
ts.ds.DBZH.median("azimuth").plot(x="volume_time", vmin=-10, vmax=30, ax=ax)
ax.set_title(f"{np.datetime_as_string(ts.ds.time[0][0].values, unit='D')}")
ax.set_ylim(0, 20000)
[27]:
(0.0, 20000.0)

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