Load ODIM_H5 Volume data from German Weather Service#
In this example, we obtain and read the latest 30 minutes of available volumetric radar data from German Weather Service available at opendata.dwd.de. Finally we do some plotting.
This retrieves 6 timesteps of the 10 sweeps (moments DBZH and VRADH) of the DWD volume scan of a distinct radar. This amounts to 120 data files which are combined into one volumetric Cf/Radial2 like xarray powered structure.
Exports to single file Odim_H5 and Cf/Radial2 format are shown at the end of this tutorial.
Note
The following code is based on xarray, xarray-datatree and xradar. It claims multiple data files and presents them in a DataTree.
[1]:
import wradlib as wrl
import warnings
warnings.filterwarnings("ignore")
import matplotlib.pyplot as plt
import numpy as np
import xarray as xr
try:
get_ipython().run_line_magic("matplotlib inline")
except:
plt.ion()
[2]:
import urllib3
import os
import io
import glob
import shutil
import datetime
Download radar volumes of latest 30 minutes from server using wetterdienst#
wetterdienst is a neat package for easy retrieval of data primarily from DWD. For further information have a look at their documentation.
[3]:
from wetterdienst.provider.dwd.radar import (
DwdRadarDataFormat,
DwdRadarDataSubset,
DwdRadarParameter,
DwdRadarValues,
)
from wetterdienst.provider.dwd.radar.sites import DwdRadarSite
[4]:
elevations = range(10)
end_date = datetime.datetime.utcnow()
start_date = end_date - datetime.timedelta(minutes=30)
results_velocity = []
results_reflectivity = []
for el in elevations:
# Horizontal Doppler Velocity
request_velocity = DwdRadarValues(
parameter=DwdRadarParameter.SWEEP_VOL_VELOCITY_H,
start_date=start_date,
end_date=end_date,
site=DwdRadarSite.ESS,
elevation=el,
fmt=DwdRadarDataFormat.HDF5,
subset=DwdRadarDataSubset.POLARIMETRIC,
)
# Horizontal Reflectivity
request_reflectivity = DwdRadarValues(
parameter=DwdRadarParameter.SWEEP_VOL_REFLECTIVITY_H,
start_date=start_date,
end_date=end_date,
elevation=el,
site=DwdRadarSite.ESS,
fmt=DwdRadarDataFormat.HDF5,
subset=DwdRadarDataSubset.POLARIMETRIC,
)
# Submit requests.
results_velocity.append(request_velocity.query())
results_reflectivity.append(request_reflectivity.query())
[5]:
import wetterdienst
wetterdienst.__version__
[5]:
'0.49.0'
Acquire data as memory buffer#
[6]:
%%time
volume_velocity = []
for item1 in results_velocity:
files = []
for item2 in item1:
files.append(item2.data)
volume_velocity.append(files)
3%|▎ | 7/240 [00:04<02:16, 1.70it/s]
3%|▎ | 7/240 [00:02<01:11, 3.28it/s]
3%|▎ | 7/240 [00:02<01:12, 3.22it/s]
3%|▎ | 7/240 [00:02<01:12, 3.21it/s]
3%|▎ | 7/240 [00:02<01:10, 3.32it/s]
2%|▎ | 6/240 [00:01<01:10, 3.31it/s]
2%|▎ | 6/240 [00:01<01:07, 3.49it/s]
2%|▎ | 6/240 [00:01<01:07, 3.47it/s]
2%|▎ | 6/240 [00:02<01:25, 2.74it/s]
2%|▎ | 6/240 [00:01<01:06, 3.53it/s]
CPU times: user 3.62 s, sys: 62.3 ms, total: 3.69 s
Wall time: 21.9 s
[7]:
volume_velocity = [v[-6:] for v in volume_velocity]
volume_velocity = np.array(volume_velocity).T.tolist()
[8]:
%%time
volume_reflectivity = []
for item1 in results_reflectivity:
files = []
for item2 in item1:
files.append(item2.data)
volume_reflectivity.append(files)
3%|▎ | 7/240 [00:01<01:06, 3.52it/s]
3%|▎ | 7/240 [00:01<01:05, 3.53it/s]
3%|▎ | 7/240 [00:02<01:07, 3.48it/s]
3%|▎ | 7/240 [00:02<01:14, 3.11it/s]
3%|▎ | 7/240 [00:02<01:10, 3.30it/s]
2%|▎ | 6/240 [00:02<01:42, 2.28it/s]
2%|▎ | 6/240 [00:01<01:10, 3.34it/s]
2%|▎ | 6/240 [00:01<01:09, 3.35it/s]
2%|▎ | 6/240 [00:01<01:10, 3.33it/s]
2%|▎ | 6/240 [00:01<01:09, 3.38it/s]
CPU times: user 3.57 s, sys: 59.4 ms, total: 3.63 s
Wall time: 20.2 s
[9]:
volume_reflectivity = [v[-6:] for v in volume_reflectivity]
volume_reflectivity = np.array(volume_reflectivity).T.tolist()
Read the data into xarray powered structure#
[10]:
from datatree import DataTree, open_datatree
import xradar
def concat_radar_datatree(objs, dim="volume_time"):
root_ds = [obj["/"].ds for obj in objs]
root = xr.concat(root_ds, dim=dim)
dtree = DataTree(data=root, name="root")
for grp in objs[0].groups[1:]:
ngrps = [obj[grp[1:]].ds for obj in objs]
ngrp = xr.concat(ngrps, dim=dim)
DataTree(ngrp, name=grp[1:], parent=dtree)
return dtree
[11]:
dsl = []
reindex_angle = dict(
tolerance=1.0, start_angle=0, stop_angle=360, angle_res=1.0, direction=1
)
for r, v in zip(volume_reflectivity, volume_velocity):
ds0 = [
xr.open_dataset(r0, engine="odim", group="sweep_0", reindex_angle=reindex_angle)
for r0 in r
]
ds1 = [
xr.open_dataset(v0, engine="odim", group="sweep_0", reindex_angle=reindex_angle)
for v0 in v
]
ds = [xr.merge([r0, v0], compat="override") for r0, v0 in zip(ds0, ds1)]
ds.insert(0, xr.open_dataset(r[0], group="/"))
dsl.append(ds)
# this takes some private functions from xradar, take care here
trees = [
DataTree(data=xradar.io.backends.common._assign_root(ds), name="root") for ds in dsl
]
trees = [
xradar.io.backends.common._attach_sweep_groups(tree, ds[1:])
for tree, ds in zip(trees, dsl)
]
vol = concat_radar_datatree(trees, dim="volume_time")
# align sweep_numbers to cover for single sweep single moment layout of DWD
for i, swp in enumerate(vol.groups[1:]):
vol[swp]["sweep_number"] = i
[12]:
vol
[12]:
<xarray.DatasetView>
Dimensions: (volume_time: 6)
Dimensions without coordinates: volume_time
Data variables:
volume_number (volume_time) int64 0 0 0 0 0 0
platform_type (volume_time) <U5 'fixed' 'fixed' ... 'fixed' 'fixed'
instrument_type (volume_time) <U5 'radar' 'radar' ... 'radar' 'radar'
time_coverage_start (volume_time) <U20 '2023-10-02T10:32:30Z' ... '2023-...
time_coverage_end (volume_time) <U20 '2023-10-02T10:37:29Z' ... '2023-...
longitude (volume_time) float64 6.967 6.967 6.967 ... 6.967 6.967
altitude (volume_time) float64 185.1 185.1 185.1 ... 185.1 185.1
latitude (volume_time) float64 51.41 51.41 51.41 ... 51.41 51.41
Attributes:
Conventions: ODIM_H5/V2_2
version: None
title: None
institution: None
references: None
source: None
history: None
comment: im/exported using xradar
instrument_name: None- range: 720
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float645.493 5.493 5.493 ... 5.493 5.493
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:35:53.997000192 .....
- standard_name :
- time
array([['2023-10-02T10:35:53.997000192', '2023-10-02T10:35:54.060000000', '2023-10-02T10:35:54.123000064', ..., '2023-10-02T10:35:53.808000000', '2023-10-02T10:35:53.870500096', '2023-10-02T10:35:53.933000192'], ['2023-10-02T10:40:54.001500160', '2023-10-02T10:40:54.064999936', '2023-10-02T10:40:54.126999808', ..., '2023-10-02T10:40:53.812999936', '2023-10-02T10:40:53.875000064', '2023-10-02T10:40:53.938000128'], ['2023-10-02T10:45:54.009499904', '2023-10-02T10:45:54.072999936', '2023-10-02T10:45:54.136000000', ..., '2023-10-02T10:45:53.821000192', '2023-10-02T10:45:53.883500032', '2023-10-02T10:45:53.946000128'], ['2023-10-02T10:50:54.545000192', '2023-10-02T10:50:54.608499968', '2023-10-02T10:50:54.671000064', ..., '2023-10-02T10:50:54.356000000', '2023-10-02T10:50:54.418499840', '2023-10-02T10:50:54.480999936'], ['2023-10-02T10:55:53.998000128', '2023-10-02T10:55:54.061500160', '2023-10-02T10:55:54.124000000', ..., '2023-10-02T10:55:53.808999936', '2023-10-02T10:55:53.871500032', '2023-10-02T10:55:53.934500096'], ['2023-10-02T11:00:54.008000000', '2023-10-02T11:00:54.071000064', '2023-10-02T11:00:54.134000128', ..., '2023-10-02T11:00:53.819500032', '2023-10-02T11:00:53.881999872', '2023-10-02T11:00:53.944000000']], 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 5.493 5.493 ... 5.493 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:35... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 0 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 5.499 5.499 5.499 5.499 5.499 5.499 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_0- range: 720
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float644.493 4.493 4.493 ... 4.493 4.493
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ], [4.48242188, 4.48242188, 4.48242188, ..., 4.48242188, 4.48242188, 4.48242188], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ], [4.48242188, 4.48242188, 4.48242188, ..., 4.48242188, 4.48242188, 4.48242188], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:36:16.498499840 .....
- standard_name :
- time
array([['2023-10-02T10:36:16.498499840', '2023-10-02T10:36:16.562000128', '2023-10-02T10:36:16.624000000', ..., '2023-10-02T10:36:16.310999808', '2023-10-02T10:36:16.373499904', '2023-10-02T10:36:16.435999744'], ['2023-10-02T10:41:16.503500032', '2023-10-02T10:41:16.566499840', '2023-10-02T10:41:16.629000192', ..., '2023-10-02T10:41:16.316000000', '2023-10-02T10:41:16.377500160', '2023-10-02T10:41:16.440499968'], ['2023-10-02T10:46:16.511499776', '2023-10-02T10:46:16.575000064', '2023-10-02T10:46:16.637000192', ..., '2023-10-02T10:46:16.324000000', '2023-10-02T10:46:16.386000128', '2023-10-02T10:46:16.448999936'], ['2023-10-02T10:51:17.046999808', '2023-10-02T10:51:17.110499840', '2023-10-02T10:51:17.172999936', ..., '2023-10-02T10:51:16.859000064', '2023-10-02T10:51:16.920999936', '2023-10-02T10:51:16.984499968'], ['2023-10-02T10:56:16.500999936', '2023-10-02T10:56:16.564000256', '2023-10-02T10:56:16.626500096', ..., '2023-10-02T10:56:16.312000000', '2023-10-02T10:56:16.374000128', '2023-10-02T10:56:16.437499904'], ['2023-10-02T11:01:16.510499840', '2023-10-02T11:01:16.573999872', '2023-10-02T11:01:16.635500032', ..., '2023-10-02T11:01:16.321000192', '2023-10-02T11:01:16.383500032', '2023-10-02T11:01:16.446499840']], dtype='datetime64[ns]') - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32) - sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20') - sweep_number()int641
array(1)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - sweep_fixed_angle(volume_time)float644.499 4.499 4.499 4.499 4.499 4.499
array([4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 4.493 4.493 ... 4.493 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:36... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 1 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 4.499 4.499 4.499 4.499 4.499 4.499 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_1- range: 720
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float643.505 3.505 3.505 ... 3.505 3.505
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:36:39.001500160 .....
- standard_name :
- time
array([['2023-10-02T10:36:39.001500160', '2023-10-02T10:36:39.064000256', '2023-10-02T10:36:39.126500096', ..., '2023-10-02T10:36:38.813000192', '2023-10-02T10:36:38.876000000', '2023-10-02T10:36:38.938000128'], ['2023-10-02T10:41:39.006000128', '2023-10-02T10:41:39.068999936', '2023-10-02T10:41:39.132000000', ..., '2023-10-02T10:41:38.818000128', '2023-10-02T10:41:38.880000000', '2023-10-02T10:41:38.942999808'], ['2023-10-02T10:46:39.014500096', '2023-10-02T10:46:39.077000192', '2023-10-02T10:46:39.139500032', ..., '2023-10-02T10:46:38.826000128', '2023-10-02T10:46:38.888999936', '2023-10-02T10:46:38.951000320'], ['2023-10-02T10:51:39.549499904', '2023-10-02T10:51:39.612499968', '2023-10-02T10:51:39.675000064', ..., '2023-10-02T10:51:39.360999936', '2023-10-02T10:51:39.423500032', '2023-10-02T10:51:39.486500096'], ['2023-10-02T10:56:39.002999808', '2023-10-02T10:56:39.065999872', '2023-10-02T10:56:39.128999936', ..., '2023-10-02T10:56:38.814499840', '2023-10-02T10:56:38.876999936', '2023-10-02T10:56:38.939000064'], ['2023-10-02T11:01:39.012000000', '2023-10-02T11:01:39.075500032', '2023-10-02T11:01:39.138000128', ..., '2023-10-02T11:01:38.823000064', '2023-10-02T11:01:38.885499904', '2023-10-02T11:01:38.948500224']], 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 3.505 3.505 ... 3.505 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:36... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 2 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 3.499 3.499 3.499 3.499 3.499 3.499 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_2- range: 720
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float642.483 2.483 2.483 ... 2.483 2.483
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:37:01.504000 ... 2...
- standard_name :
- time
array([['2023-10-02T10:37:01.504000000', '2023-10-02T10:37:01.566999808', '2023-10-02T10:37:01.629499904', ..., '2023-10-02T10:37:01.315000064', '2023-10-02T10:37:01.376999936', '2023-10-02T10:37:01.440499968'], ['2023-10-02T10:42:01.508500224', '2023-10-02T10:42:01.572000000', '2023-10-02T10:42:01.633999872', ..., '2023-10-02T10:42:01.320000000', '2023-10-02T10:42:01.381999872', '2023-10-02T10:42:01.445000192'], ['2023-10-02T10:47:01.516499968', '2023-10-02T10:47:01.580000000', '2023-10-02T10:47:01.642000128', ..., '2023-10-02T10:47:01.328000000', '2023-10-02T10:47:01.389999872', '2023-10-02T10:47:01.453500160'], ['2023-10-02T10:52:02.052000000', '2023-10-02T10:52:02.115500032', '2023-10-02T10:52:02.177999872', ..., '2023-10-02T10:52:01.862999808', '2023-10-02T10:52:01.925499904', '2023-10-02T10:52:01.988500224'], ['2023-10-02T10:57:01.505499904', '2023-10-02T10:57:01.568999936', '2023-10-02T10:57:01.631000064', ..., '2023-10-02T10:57:01.316999936', '2023-10-02T10:57:01.378500096', '2023-10-02T10:57:01.441499904'], ['2023-10-02T11:02:01.514999808', '2023-10-02T11:02:01.578000128', '2023-10-02T11:02:01.640499968', ..., '2023-10-02T11:02:01.325999872', '2023-10-02T11:02:01.388000000', '2023-10-02T11:02:01.451500032']], 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 , -4.1261673 , -4.0704994 , ..., -64.00293 , -64.00293 , -64.00293 ], [ -2.043064 , -0.56936264, -2.5528526 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -2.1397476 , -10.984879 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ..., [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ]]], dtype=float32) - sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20') - sweep_number()int643
array(3)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - sweep_fixed_angle(volume_time)float642.499 2.499 2.499 2.499 2.499 2.499
array([2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 2.483 2.483 ... 2.483 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:37... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 3 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 2.499 2.499 2.499 2.499 2.499 2.499 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_3- range: 720
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float641.483 1.483 1.483 ... 1.494 1.494
- 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.49414062, 1.49414062, 1.49414062, ..., 1.49414062, 1.49414062, 1.49414062], [1.4831543 , 1.4831543 , 1.4831543 , ..., 1.4831543 , 1.4831543 , 1.4831543 ], [1.4831543 , 1.4831543 , 1.4831543 , ..., 1.4831543 , 1.4831543 , 1.4831543 ], [1.49414062, 1.49414062, 1.49414062, ..., 1.49414062, 1.49414062, 1.49414062]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:37:24.006000128 .....
- standard_name :
- time
array([['2023-10-02T10:37:24.006000128', '2023-10-02T10:37:24.068999936', '2023-10-02T10:37:24.132000000', ..., '2023-10-02T10:37:23.816999936', '2023-10-02T10:37:23.879500032', '2023-10-02T10:37:23.941999872'], ['2023-10-02T10:42:24.011000064', '2023-10-02T10:42:24.072999936', '2023-10-02T10:42:24.135500032', ..., '2023-10-02T10:42:23.822500096', '2023-10-02T10:42:23.884999936', '2023-10-02T10:42:23.947000064'], ['2023-10-02T10:47:24.018499840', '2023-10-02T10:47:24.082000128', '2023-10-02T10:47:24.144000000', ..., '2023-10-02T10:47:23.831000064', '2023-10-02T10:47:23.893000192', '2023-10-02T10:47:23.954999808'], ['2023-10-02T10:52:24.554500096', '2023-10-02T10:52:24.618000128', '2023-10-02T10:52:24.680000000', ..., '2023-10-02T10:52:24.366000128', '2023-10-02T10:52:24.428999936', '2023-10-02T10:52:24.491000064'], ['2023-10-02T10:57:24.007000064', '2023-10-02T10:57:24.070499840', '2023-10-02T10:57:24.132999936', ..., '2023-10-02T10:57:23.818000128', '2023-10-02T10:57:23.880499712', '2023-10-02T10:57:23.943500032'], ['2023-10-02T11:02:24.016499968', '2023-10-02T11:02:24.079500032', '2023-10-02T11:02:24.142000128', ..., '2023-10-02T11:02:23.828999936', '2023-10-02T11:02:23.890500096', '2023-10-02T11:02:23.953500160']], 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 ... 9.19 8.519
- _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 , ..., 7.0716095, 5.955353 , 5.9465637], [-64.00293 , -64.00293 , -64.00293 , ..., 9.271912 , 9.189873 , 8.518944 ]]], dtype=float32) - sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20') - sweep_number()int644
array(4)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - sweep_fixed_angle(volume_time)float641.5 1.5 1.5 1.5 1.5 1.5
array([1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -13.34 -12.86
- _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. , ..., 4.29700613, 4.91811884, -128. ], [-128. , -128. , -128. , ..., 6.12128056, -13.34025086, -12.86367382]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 1.483 1.483 ... 1.494 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:37... 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 ... 8.519 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 4 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 1.5 1.5 1.5 1.5 1.5 1.5 VRADH (volume_time, azimuth, range) float64 -128.0 ... -12.86sweep_4- range: 720
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float640.4834 0.4834 ... 0.4834 0.4834
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:32:52.016499968 .....
- standard_name :
- time
array([['2023-10-02T10:32:52.016499968', '2023-10-02T10:32:52.100500224', '2023-10-02T10:32:52.184000000', ..., '2023-10-02T10:32:51.765500160', '2023-10-02T10:32:51.848999936', '2023-10-02T10:32:51.932499968'], ['2023-10-02T10:37:52.007500032', '2023-10-02T10:37:52.092000000', '2023-10-02T10:37:52.174500096', ..., '2023-10-02T10:37:51.756000000', '2023-10-02T10:37:51.839000064', '2023-10-02T10:37:51.922999808'], ['2023-10-02T10:42:51.965499904', '2023-10-02T10:42:52.049999872', '2023-10-02T10:42:52.132999936', ..., '2023-10-02T10:42:51.715000064', '2023-10-02T10:42:51.797500160', '2023-10-02T10:42:51.881499904'], ['2023-10-02T10:47:51.996499968', '2023-10-02T10:47:52.080000000', '2023-10-02T10:47:52.163499776', ..., '2023-10-02T10:47:51.745500160', '2023-10-02T10:47:51.828499968', '2023-10-02T10:47:51.912000000'], ['2023-10-02T10:52:52.525500160', '2023-10-02T10:52:52.610000128', '2023-10-02T10:52:52.692500224', ..., '2023-10-02T10:52:52.273999872', '2023-10-02T10:52:52.357500160', '2023-10-02T10:52:52.441500160'], ['2023-10-02T10:57:52.011499776', '2023-10-02T10:57:52.095500032', '2023-10-02T10:57:52.179500032', ..., '2023-10-02T10:57:51.760499968', '2023-10-02T10:57:51.844499968', '2023-10-02T10:57:51.928500224']], 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 0.4834 0.4834 ... 0.4834 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:32... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 5 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 0.4999 0.4999 ... 0.4999 0.4999 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_5- range: 496
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 1.236e+05 1.239e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 123375., 123625., 123875.], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float647.987 7.987 7.987 ... 7.976 7.976
- 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.97607422, 7.97607422, 7.97607422, ..., 7.97607422, 7.97607422, 7.97607422], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.97607422, 7.97607422, 7.97607422, ..., 7.97607422, 7.97607422, 7.97607422], [7.97607422, 7.97607422, 7.97607422, ..., 7.97607422, 7.97607422, 7.97607422], [7.97607422, 7.97607422, 7.97607422, ..., 7.97607422, 7.97607422, 7.97607422]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:33:15.058000128 .....
- standard_name :
- time
array([['2023-10-02T10:33:15.058000128', '2023-10-02T10:33:15.114500096', '2023-10-02T10:33:15.170000128', ..., '2023-10-02T10:33:14.891000064', '2023-10-02T10:33:14.946000128', '2023-10-02T10:33:15.001500160'], ['2023-10-02T10:38:15.034500096', '2023-10-02T10:38:15.090000128', '2023-10-02T10:38:15.145500160', ..., '2023-10-02T10:38:14.866499840', '2023-10-02T10:38:14.922500096', '2023-10-02T10:38:14.977499904'], ['2023-10-02T10:43:15.024000256', '2023-10-02T10:43:15.080000000', '2023-10-02T10:43:15.135500032', ..., '2023-10-02T10:43:14.856499968', '2023-10-02T10:43:14.911500032', '2023-10-02T10:43:14.967500032'], ['2023-10-02T10:48:15.024499968', '2023-10-02T10:48:15.080000000', '2023-10-02T10:48:15.135500032', ..., '2023-10-02T10:48:14.856000000', '2023-10-02T10:48:14.911500032', '2023-10-02T10:48:14.967500032'], ['2023-10-02T10:53:15.561500160', '2023-10-02T10:53:15.617499904', '2023-10-02T10:53:15.674000128', ..., '2023-10-02T10:53:15.394500096', '2023-10-02T10:53:15.450000128', '2023-10-02T10:53:15.505499904'], ['2023-10-02T10:58:15.035500032', '2023-10-02T10:58:15.090499840', '2023-10-02T10:58:15.146999808', ..., '2023-10-02T10:58:14.867499776', '2023-10-02T10:58:14.922999808', '2023-10-02T10:58:14.978499840']], dtype='datetime64[ns]') - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
array([[[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ..., [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ... [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ..., [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ]]], dtype=float32) - sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20') - sweep_number()int646
array(6)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - sweep_fixed_angle(volume_time)float647.998 7.998 7.998 7.998 7.998 7.998
array([7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ... [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]]])
<xarray.DatasetView> Dimensions: (range: 496, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.236e+05 1.239e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 7.987 7.987 ... 7.976 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:33... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 6 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 7.998 7.998 7.998 7.998 7.998 7.998 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_6- range: 240
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float6411.99 11.99 11.99 ... 11.99 11.99
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:33:30.183000064 .....
- standard_name :
- time
array([['2023-10-02T10:33:30.183000064', '2023-10-02T10:33:30.216499968', '2023-10-02T10:33:30.250499840', ..., '2023-10-02T10:33:30.082500096', '2023-10-02T10:33:30.115500032', '2023-10-02T10:33:30.149499904'], ['2023-10-02T10:38:30.165999872', '2023-10-02T10:38:30.199500032', '2023-10-02T10:38:30.232499968', ..., '2023-10-02T10:38:30.065499904', '2023-10-02T10:38:30.098500096', '2023-10-02T10:38:30.132499968'], ['2023-10-02T10:43:30.180499968', '2023-10-02T10:43:30.213999872', '2023-10-02T10:43:30.247500032', ..., '2023-10-02T10:43:30.080000000', '2023-10-02T10:43:30.112999936', '2023-10-02T10:43:30.146500096'], ['2023-10-02T10:48:30.157000192', '2023-10-02T10:48:30.190500096', '2023-10-02T10:48:30.224000000', ..., '2023-10-02T10:48:30.056499968', '2023-10-02T10:48:30.089499904', '2023-10-02T10:48:30.123000064'], ['2023-10-02T10:53:30.701499904', '2023-10-02T10:53:30.735500032', '2023-10-02T10:53:30.768499968', ..., '2023-10-02T10:53:30.601500160', '2023-10-02T10:53:30.634500096', '2023-10-02T10:53:30.668000000'], ['2023-10-02T10:58:30.164000000', '2023-10-02T10:58:30.197499904', '2023-10-02T10:58:30.231000064', ..., '2023-10-02T10:58:30.063500032', '2023-10-02T10:58:30.096499968', '2023-10-02T10:58:30.130500096']], dtype='datetime64[ns]') - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32) - sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20') - sweep_number()int647
array(7)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - sweep_fixed_angle(volume_time)float6412.0 12.0 12.0 12.0 12.0 12.0
array([12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ... [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]]])
<xarray.DatasetView> Dimensions: (range: 240, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 11.99 11.99 ... 11.99 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:33... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 7 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 12.0 12.0 12.0 12.0 12.0 12.0 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_7- range: 240
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float6416.97 16.97 16.97 ... 16.97 16.97
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:33:42.184000 ... 2...
- standard_name :
- time
array([['2023-10-02T10:33:42.184000000', '2023-10-02T10:33:42.217999872', '2023-10-02T10:33:42.251499776', ..., '2023-10-02T10:33:42.083500032', '2023-10-02T10:33:42.117000192', '2023-10-02T10:33:42.150500096'], ['2023-10-02T10:38:42.167000064', '2023-10-02T10:38:42.200499968', '2023-10-02T10:38:42.233999872', ..., '2023-10-02T10:38:42.066499840', '2023-10-02T10:38:42.099500032', '2023-10-02T10:38:42.133500160'], ['2023-10-02T10:43:42.181499904', '2023-10-02T10:43:42.214999808', '2023-10-02T10:43:42.248500224', ..., '2023-10-02T10:43:42.080999936', '2023-10-02T10:43:42.114500096', '2023-10-02T10:43:42.147500032'], ['2023-10-02T10:48:42.157999872', '2023-10-02T10:48:42.191500032', '2023-10-02T10:48:42.224999936', ..., '2023-10-02T10:48:42.057499904', '2023-10-02T10:48:42.091000064', '2023-10-02T10:48:42.124499968'], ['2023-10-02T10:53:42.703000064', '2023-10-02T10:53:42.736499968', '2023-10-02T10:53:42.769999872', ..., '2023-10-02T10:53:42.602499840', '2023-10-02T10:53:42.635500032', '2023-10-02T10:53:42.669000192'], ['2023-10-02T10:58:42.164999936', '2023-10-02T10:58:42.198499840', '2023-10-02T10:58:42.232499968', ..., '2023-10-02T10:58:42.064499968', '2023-10-02T10:58:42.097500160', '2023-10-02T10:58:42.131500032']], dtype='datetime64[ns]') - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32) - sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20') - sweep_number()int648
array(8)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - sweep_fixed_angle(volume_time)float6417.0 17.0 17.0 17.0 17.0 17.0
array([17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , 3.90636921, ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ... [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , 1.85552538, ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]]])
<xarray.DatasetView> Dimensions: (range: 240, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 16.97 16.97 ... 16.97 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:33... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 8 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 17.0 17.0 17.0 17.0 17.0 17.0 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_8- range: 240
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float6424.98 24.98 24.98 ... 24.98 24.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.99389648, 24.99389648, 24.99389648, ..., 24.99389648, 24.99389648, 24.99389648], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.99389648, 24.99389648, 24.99389648, ..., 24.99389648, 24.99389648, 24.99389648], [24.99389648, 24.99389648, 24.99389648, ..., 24.99389648, 24.99389648, 24.99389648], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:33:54.185999872 .....
- standard_name :
- time
array([['2023-10-02T10:33:54.185999872', '2023-10-02T10:33:54.218999808', '2023-10-02T10:33:54.252499968', ..., '2023-10-02T10:33:54.084999936', '2023-10-02T10:33:54.118500096', '2023-10-02T10:33:54.151500032'], ['2023-10-02T10:38:54.168000000', '2023-10-02T10:38:54.201499904', '2023-10-02T10:38:54.235500032', ..., '2023-10-02T10:38:54.067500032', '2023-10-02T10:38:54.101000192', '2023-10-02T10:38:54.134500096'], ['2023-10-02T10:43:54.182499840', '2023-10-02T10:43:54.216000000', '2023-10-02T10:43:54.249500160', ..., '2023-10-02T10:43:54.082000128', '2023-10-02T10:43:54.115500032', '2023-10-02T10:43:54.148499968'], ['2023-10-02T10:48:54.159500032', '2023-10-02T10:48:54.193000192', '2023-10-02T10:48:54.226500096', ..., '2023-10-02T10:48:54.059000064', '2023-10-02T10:48:54.092000000', '2023-10-02T10:48:54.125499904'], ['2023-10-02T10:53:54.704000000', '2023-10-02T10:53:54.737499904', '2023-10-02T10:53:54.771500032', ..., '2023-10-02T10:53:54.603499776', '2023-10-02T10:53:54.637000192', '2023-10-02T10:53:54.670500096'], ['2023-10-02T10:58:54.165999872', '2023-10-02T10:58:54.200000000', '2023-10-02T10:58:54.233499904', ..., '2023-10-02T10:58:54.065499904', '2023-10-02T10:58:54.099500032', '2023-10-02T10:58:54.132499968']], dtype='datetime64[ns]') - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32) - sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20') - sweep_number()int649
array(9)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - sweep_fixed_angle(volume_time)float6425.0 25.0 25.0 25.0 25.0 25.0
array([24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]])
<xarray.DatasetView> Dimensions: (range: 240, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 24.98 24.98 ... 24.98 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:33... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 9 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 25.0 25.0 25.0 25.0 25.0 25.0 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_9- volume_time: 6
- volume_number(volume_time)int640 0 0 0 0 0
array([0, 0, 0, 0, 0, 0])
- platform_type(volume_time)<U5'fixed' 'fixed' ... 'fixed' 'fixed'
array(['fixed', 'fixed', 'fixed', 'fixed', 'fixed', 'fixed'], dtype='<U5')
- instrument_type(volume_time)<U5'radar' 'radar' ... 'radar' 'radar'
array(['radar', 'radar', 'radar', 'radar', 'radar', 'radar'], dtype='<U5')
- time_coverage_start(volume_time)<U20'2023-10-02T10:32:30Z' ... '2023...
array(['2023-10-02T10:32:30Z', '2023-10-02T10:37:30Z', '2023-10-02T10:42:30Z', '2023-10-02T10:47:30Z', '2023-10-02T10:52:31Z', '2023-10-02T10:57:30Z'], dtype='<U20') - time_coverage_end(volume_time)<U20'2023-10-02T10:37:29Z' ... '2023...
array(['2023-10-02T10:37:29Z', '2023-10-02T10:42:29Z', '2023-10-02T10:47:29Z', '2023-10-02T10:52:30Z', '2023-10-02T10:57:29Z', '2023-10-02T11:02:29Z'], dtype='<U20') - longitude(volume_time)float646.967 6.967 6.967 6.967 6.967 6.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array([6.967111, 6.967111, 6.967111, 6.967111, 6.967111, 6.967111])
- altitude(volume_time)float64185.1 185.1 185.1 185.1 185.1 185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array([185.11, 185.11, 185.11, 185.11, 185.11, 185.11])
- latitude(volume_time)float6451.41 51.41 51.41 51.41 51.41 51.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array([51.405649, 51.405649, 51.405649, 51.405649, 51.405649, 51.405649])
- Conventions :
- ODIM_H5/V2_2
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- None
- history :
- None
- comment :
- im/exported using xradar
- instrument_name :
- None
[13]:
vol["sweep_9"]
[13]:
<xarray.DatasetView>
Dimensions: (range: 240, azimuth: 360, volume_time: 6)
Coordinates:
* range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04
* azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5
elevation (volume_time, azimuth) float64 24.98 24.98 ... 24.98
time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:33...
longitude float64 6.967
latitude float64 51.41
altitude float64 185.1
Dimensions without coordinates: volume_time
Data variables:
DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0
sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth...
sweep_number int64 9
prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set'
follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set'
sweep_fixed_angle (volume_time) float64 25.0 25.0 25.0 25.0 25.0 25.0
VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0- range: 240
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float6424.98 24.98 24.98 ... 24.98 24.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.99389648, 24.99389648, 24.99389648, ..., 24.99389648, 24.99389648, 24.99389648], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.99389648, 24.99389648, 24.99389648, ..., 24.99389648, 24.99389648, 24.99389648], [24.99389648, 24.99389648, 24.99389648, ..., 24.99389648, 24.99389648, 24.99389648], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:33:54.185999872 .....
- standard_name :
- time
array([['2023-10-02T10:33:54.185999872', '2023-10-02T10:33:54.218999808', '2023-10-02T10:33:54.252499968', ..., '2023-10-02T10:33:54.084999936', '2023-10-02T10:33:54.118500096', '2023-10-02T10:33:54.151500032'], ['2023-10-02T10:38:54.168000000', '2023-10-02T10:38:54.201499904', '2023-10-02T10:38:54.235500032', ..., '2023-10-02T10:38:54.067500032', '2023-10-02T10:38:54.101000192', '2023-10-02T10:38:54.134500096'], ['2023-10-02T10:43:54.182499840', '2023-10-02T10:43:54.216000000', '2023-10-02T10:43:54.249500160', ..., '2023-10-02T10:43:54.082000128', '2023-10-02T10:43:54.115500032', '2023-10-02T10:43:54.148499968'], ['2023-10-02T10:48:54.159500032', '2023-10-02T10:48:54.193000192', '2023-10-02T10:48:54.226500096', ..., '2023-10-02T10:48:54.059000064', '2023-10-02T10:48:54.092000000', '2023-10-02T10:48:54.125499904'], ['2023-10-02T10:53:54.704000000', '2023-10-02T10:53:54.737499904', '2023-10-02T10:53:54.771500032', ..., '2023-10-02T10:53:54.603499776', '2023-10-02T10:53:54.637000192', '2023-10-02T10:53:54.670500096'], ['2023-10-02T10:58:54.165999872', '2023-10-02T10:58:54.200000000', '2023-10-02T10:58:54.233499904', ..., '2023-10-02T10:58:54.065499904', '2023-10-02T10:58:54.099500032', '2023-10-02T10:58:54.132499968']], dtype='datetime64[ns]') - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32) - sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20') - sweep_number()int649
array(9)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - sweep_fixed_angle(volume_time)float6425.0 25.0 25.0 25.0 25.0 25.0
array([24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]])
Inspect structure#
Root Group#
[14]:
vol.root
[14]:
<xarray.DatasetView>
Dimensions: (volume_time: 6)
Dimensions without coordinates: volume_time
Data variables:
volume_number (volume_time) int64 0 0 0 0 0 0
platform_type (volume_time) <U5 'fixed' 'fixed' ... 'fixed' 'fixed'
instrument_type (volume_time) <U5 'radar' 'radar' ... 'radar' 'radar'
time_coverage_start (volume_time) <U20 '2023-10-02T10:32:30Z' ... '2023-...
time_coverage_end (volume_time) <U20 '2023-10-02T10:37:29Z' ... '2023-...
longitude (volume_time) float64 6.967 6.967 6.967 ... 6.967 6.967
altitude (volume_time) float64 185.1 185.1 185.1 ... 185.1 185.1
latitude (volume_time) float64 51.41 51.41 51.41 ... 51.41 51.41
Attributes:
Conventions: ODIM_H5/V2_2
version: None
title: None
institution: None
references: None
source: None
history: None
comment: im/exported using xradar
instrument_name: None- range: 720
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float645.493 5.493 5.493 ... 5.493 5.493
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:35:53.997000192 .....
- standard_name :
- time
array([['2023-10-02T10:35:53.997000192', '2023-10-02T10:35:54.060000000', '2023-10-02T10:35:54.123000064', ..., '2023-10-02T10:35:53.808000000', '2023-10-02T10:35:53.870500096', '2023-10-02T10:35:53.933000192'], ['2023-10-02T10:40:54.001500160', '2023-10-02T10:40:54.064999936', '2023-10-02T10:40:54.126999808', ..., '2023-10-02T10:40:53.812999936', '2023-10-02T10:40:53.875000064', '2023-10-02T10:40:53.938000128'], ['2023-10-02T10:45:54.009499904', '2023-10-02T10:45:54.072999936', '2023-10-02T10:45:54.136000000', ..., '2023-10-02T10:45:53.821000192', '2023-10-02T10:45:53.883500032', '2023-10-02T10:45:53.946000128'], ['2023-10-02T10:50:54.545000192', '2023-10-02T10:50:54.608499968', '2023-10-02T10:50:54.671000064', ..., '2023-10-02T10:50:54.356000000', '2023-10-02T10:50:54.418499840', '2023-10-02T10:50:54.480999936'], ['2023-10-02T10:55:53.998000128', '2023-10-02T10:55:54.061500160', '2023-10-02T10:55:54.124000000', ..., '2023-10-02T10:55:53.808999936', '2023-10-02T10:55:53.871500032', '2023-10-02T10:55:53.934500096'], ['2023-10-02T11:00:54.008000000', '2023-10-02T11:00:54.071000064', '2023-10-02T11:00:54.134000128', ..., '2023-10-02T11:00:53.819500032', '2023-10-02T11:00:53.881999872', '2023-10-02T11:00:53.944000000']], 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 5.493 5.493 ... 5.493 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:35... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 0 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 5.499 5.499 5.499 5.499 5.499 5.499 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_0- range: 720
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float644.493 4.493 4.493 ... 4.493 4.493
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ], [4.48242188, 4.48242188, 4.48242188, ..., 4.48242188, 4.48242188, 4.48242188], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ], [4.48242188, 4.48242188, 4.48242188, ..., 4.48242188, 4.48242188, 4.48242188], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ], [4.4934082 , 4.4934082 , 4.4934082 , ..., 4.4934082 , 4.4934082 , 4.4934082 ]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:36:16.498499840 .....
- standard_name :
- time
array([['2023-10-02T10:36:16.498499840', '2023-10-02T10:36:16.562000128', '2023-10-02T10:36:16.624000000', ..., '2023-10-02T10:36:16.310999808', '2023-10-02T10:36:16.373499904', '2023-10-02T10:36:16.435999744'], ['2023-10-02T10:41:16.503500032', '2023-10-02T10:41:16.566499840', '2023-10-02T10:41:16.629000192', ..., '2023-10-02T10:41:16.316000000', '2023-10-02T10:41:16.377500160', '2023-10-02T10:41:16.440499968'], ['2023-10-02T10:46:16.511499776', '2023-10-02T10:46:16.575000064', '2023-10-02T10:46:16.637000192', ..., '2023-10-02T10:46:16.324000000', '2023-10-02T10:46:16.386000128', '2023-10-02T10:46:16.448999936'], ['2023-10-02T10:51:17.046999808', '2023-10-02T10:51:17.110499840', '2023-10-02T10:51:17.172999936', ..., '2023-10-02T10:51:16.859000064', '2023-10-02T10:51:16.920999936', '2023-10-02T10:51:16.984499968'], ['2023-10-02T10:56:16.500999936', '2023-10-02T10:56:16.564000256', '2023-10-02T10:56:16.626500096', ..., '2023-10-02T10:56:16.312000000', '2023-10-02T10:56:16.374000128', '2023-10-02T10:56:16.437499904'], ['2023-10-02T11:01:16.510499840', '2023-10-02T11:01:16.573999872', '2023-10-02T11:01:16.635500032', ..., '2023-10-02T11:01:16.321000192', '2023-10-02T11:01:16.383500032', '2023-10-02T11:01:16.446499840']], dtype='datetime64[ns]') - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32) - sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20') - sweep_number()int641
array(1)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - sweep_fixed_angle(volume_time)float644.499 4.499 4.499 4.499 4.499 4.499
array([4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 4.493 4.493 ... 4.493 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:36... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 1 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 4.499 4.499 4.499 4.499 4.499 4.499 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_1- range: 720
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float643.505 3.505 3.505 ... 3.505 3.505
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867], [3.50463867, 3.50463867, 3.50463867, ..., 3.50463867, 3.50463867, 3.50463867]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:36:39.001500160 .....
- standard_name :
- time
array([['2023-10-02T10:36:39.001500160', '2023-10-02T10:36:39.064000256', '2023-10-02T10:36:39.126500096', ..., '2023-10-02T10:36:38.813000192', '2023-10-02T10:36:38.876000000', '2023-10-02T10:36:38.938000128'], ['2023-10-02T10:41:39.006000128', '2023-10-02T10:41:39.068999936', '2023-10-02T10:41:39.132000000', ..., '2023-10-02T10:41:38.818000128', '2023-10-02T10:41:38.880000000', '2023-10-02T10:41:38.942999808'], ['2023-10-02T10:46:39.014500096', '2023-10-02T10:46:39.077000192', '2023-10-02T10:46:39.139500032', ..., '2023-10-02T10:46:38.826000128', '2023-10-02T10:46:38.888999936', '2023-10-02T10:46:38.951000320'], ['2023-10-02T10:51:39.549499904', '2023-10-02T10:51:39.612499968', '2023-10-02T10:51:39.675000064', ..., '2023-10-02T10:51:39.360999936', '2023-10-02T10:51:39.423500032', '2023-10-02T10:51:39.486500096'], ['2023-10-02T10:56:39.002999808', '2023-10-02T10:56:39.065999872', '2023-10-02T10:56:39.128999936', ..., '2023-10-02T10:56:38.814499840', '2023-10-02T10:56:38.876999936', '2023-10-02T10:56:38.939000064'], ['2023-10-02T11:01:39.012000000', '2023-10-02T11:01:39.075500032', '2023-10-02T11:01:39.138000128', ..., '2023-10-02T11:01:38.823000064', '2023-10-02T11:01:38.885499904', '2023-10-02T11:01:38.948500224']], 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 3.505 3.505 ... 3.505 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:36... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 2 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 3.499 3.499 3.499 3.499 3.499 3.499 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_2- range: 720
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float642.483 2.483 2.483 ... 2.483 2.483
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016], [2.48291016, 2.48291016, 2.48291016, ..., 2.48291016, 2.48291016, 2.48291016]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:37:01.504000 ... 2...
- standard_name :
- time
array([['2023-10-02T10:37:01.504000000', '2023-10-02T10:37:01.566999808', '2023-10-02T10:37:01.629499904', ..., '2023-10-02T10:37:01.315000064', '2023-10-02T10:37:01.376999936', '2023-10-02T10:37:01.440499968'], ['2023-10-02T10:42:01.508500224', '2023-10-02T10:42:01.572000000', '2023-10-02T10:42:01.633999872', ..., '2023-10-02T10:42:01.320000000', '2023-10-02T10:42:01.381999872', '2023-10-02T10:42:01.445000192'], ['2023-10-02T10:47:01.516499968', '2023-10-02T10:47:01.580000000', '2023-10-02T10:47:01.642000128', ..., '2023-10-02T10:47:01.328000000', '2023-10-02T10:47:01.389999872', '2023-10-02T10:47:01.453500160'], ['2023-10-02T10:52:02.052000000', '2023-10-02T10:52:02.115500032', '2023-10-02T10:52:02.177999872', ..., '2023-10-02T10:52:01.862999808', '2023-10-02T10:52:01.925499904', '2023-10-02T10:52:01.988500224'], ['2023-10-02T10:57:01.505499904', '2023-10-02T10:57:01.568999936', '2023-10-02T10:57:01.631000064', ..., '2023-10-02T10:57:01.316999936', '2023-10-02T10:57:01.378500096', '2023-10-02T10:57:01.441499904'], ['2023-10-02T11:02:01.514999808', '2023-10-02T11:02:01.578000128', '2023-10-02T11:02:01.640499968', ..., '2023-10-02T11:02:01.325999872', '2023-10-02T11:02:01.388000000', '2023-10-02T11:02:01.451500032']], 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 , -4.1261673 , -4.0704994 , ..., -64.00293 , -64.00293 , -64.00293 ], [ -2.043064 , -0.56936264, -2.5528526 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -2.1397476 , -10.984879 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ..., [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ]]], dtype=float32) - sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20') - sweep_number()int643
array(3)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - sweep_fixed_angle(volume_time)float642.499 2.499 2.499 2.499 2.499 2.499
array([2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 2.483 2.483 ... 2.483 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:37... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 3 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 2.499 2.499 2.499 2.499 2.499 2.499 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_3- range: 720
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float641.483 1.483 1.483 ... 1.494 1.494
- 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.49414062, 1.49414062, 1.49414062, ..., 1.49414062, 1.49414062, 1.49414062], [1.4831543 , 1.4831543 , 1.4831543 , ..., 1.4831543 , 1.4831543 , 1.4831543 ], [1.4831543 , 1.4831543 , 1.4831543 , ..., 1.4831543 , 1.4831543 , 1.4831543 ], [1.49414062, 1.49414062, 1.49414062, ..., 1.49414062, 1.49414062, 1.49414062]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:37:24.006000128 .....
- standard_name :
- time
array([['2023-10-02T10:37:24.006000128', '2023-10-02T10:37:24.068999936', '2023-10-02T10:37:24.132000000', ..., '2023-10-02T10:37:23.816999936', '2023-10-02T10:37:23.879500032', '2023-10-02T10:37:23.941999872'], ['2023-10-02T10:42:24.011000064', '2023-10-02T10:42:24.072999936', '2023-10-02T10:42:24.135500032', ..., '2023-10-02T10:42:23.822500096', '2023-10-02T10:42:23.884999936', '2023-10-02T10:42:23.947000064'], ['2023-10-02T10:47:24.018499840', '2023-10-02T10:47:24.082000128', '2023-10-02T10:47:24.144000000', ..., '2023-10-02T10:47:23.831000064', '2023-10-02T10:47:23.893000192', '2023-10-02T10:47:23.954999808'], ['2023-10-02T10:52:24.554500096', '2023-10-02T10:52:24.618000128', '2023-10-02T10:52:24.680000000', ..., '2023-10-02T10:52:24.366000128', '2023-10-02T10:52:24.428999936', '2023-10-02T10:52:24.491000064'], ['2023-10-02T10:57:24.007000064', '2023-10-02T10:57:24.070499840', '2023-10-02T10:57:24.132999936', ..., '2023-10-02T10:57:23.818000128', '2023-10-02T10:57:23.880499712', '2023-10-02T10:57:23.943500032'], ['2023-10-02T11:02:24.016499968', '2023-10-02T11:02:24.079500032', '2023-10-02T11:02:24.142000128', ..., '2023-10-02T11:02:23.828999936', '2023-10-02T11:02:23.890500096', '2023-10-02T11:02:23.953500160']], 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 ... 9.19 8.519
- _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 , ..., 7.0716095, 5.955353 , 5.9465637], [-64.00293 , -64.00293 , -64.00293 , ..., 9.271912 , 9.189873 , 8.518944 ]]], dtype=float32) - sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20') - sweep_number()int644
array(4)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - sweep_fixed_angle(volume_time)float641.5 1.5 1.5 1.5 1.5 1.5
array([1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -13.34 -12.86
- _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. , ..., 4.29700613, 4.91811884, -128. ], [-128. , -128. , -128. , ..., 6.12128056, -13.34025086, -12.86367382]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 1.483 1.483 ... 1.494 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:37... 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 ... 8.519 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 4 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 1.5 1.5 1.5 1.5 1.5 1.5 VRADH (volume_time, azimuth, range) float64 -128.0 ... -12.86sweep_4- range: 720
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float640.4834 0.4834 ... 0.4834 0.4834
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844], [0.48339844, 0.48339844, 0.48339844, ..., 0.48339844, 0.48339844, 0.48339844]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:32:52.016499968 .....
- standard_name :
- time
array([['2023-10-02T10:32:52.016499968', '2023-10-02T10:32:52.100500224', '2023-10-02T10:32:52.184000000', ..., '2023-10-02T10:32:51.765500160', '2023-10-02T10:32:51.848999936', '2023-10-02T10:32:51.932499968'], ['2023-10-02T10:37:52.007500032', '2023-10-02T10:37:52.092000000', '2023-10-02T10:37:52.174500096', ..., '2023-10-02T10:37:51.756000000', '2023-10-02T10:37:51.839000064', '2023-10-02T10:37:51.922999808'], ['2023-10-02T10:42:51.965499904', '2023-10-02T10:42:52.049999872', '2023-10-02T10:42:52.132999936', ..., '2023-10-02T10:42:51.715000064', '2023-10-02T10:42:51.797500160', '2023-10-02T10:42:51.881499904'], ['2023-10-02T10:47:51.996499968', '2023-10-02T10:47:52.080000000', '2023-10-02T10:47:52.163499776', ..., '2023-10-02T10:47:51.745500160', '2023-10-02T10:47:51.828499968', '2023-10-02T10:47:51.912000000'], ['2023-10-02T10:52:52.525500160', '2023-10-02T10:52:52.610000128', '2023-10-02T10:52:52.692500224', ..., '2023-10-02T10:52:52.273999872', '2023-10-02T10:52:52.357500160', '2023-10-02T10:52:52.441500160'], ['2023-10-02T10:57:52.011499776', '2023-10-02T10:57:52.095500032', '2023-10-02T10:57:52.179500032', ..., '2023-10-02T10:57:51.760499968', '2023-10-02T10:57:51.844499968', '2023-10-02T10:57:51.928500224']], 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]])
<xarray.DatasetView> Dimensions: (range: 720, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 0.4834 0.4834 ... 0.4834 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:32... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 5 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 0.4999 0.4999 ... 0.4999 0.4999 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_5- range: 496
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 1.236e+05 1.239e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 123375., 123625., 123875.], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float647.987 7.987 7.987 ... 7.976 7.976
- 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.97607422, 7.97607422, 7.97607422, ..., 7.97607422, 7.97607422, 7.97607422], [7.98706055, 7.98706055, 7.98706055, ..., 7.98706055, 7.98706055, 7.98706055], [7.97607422, 7.97607422, 7.97607422, ..., 7.97607422, 7.97607422, 7.97607422], [7.97607422, 7.97607422, 7.97607422, ..., 7.97607422, 7.97607422, 7.97607422], [7.97607422, 7.97607422, 7.97607422, ..., 7.97607422, 7.97607422, 7.97607422]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:33:15.058000128 .....
- standard_name :
- time
array([['2023-10-02T10:33:15.058000128', '2023-10-02T10:33:15.114500096', '2023-10-02T10:33:15.170000128', ..., '2023-10-02T10:33:14.891000064', '2023-10-02T10:33:14.946000128', '2023-10-02T10:33:15.001500160'], ['2023-10-02T10:38:15.034500096', '2023-10-02T10:38:15.090000128', '2023-10-02T10:38:15.145500160', ..., '2023-10-02T10:38:14.866499840', '2023-10-02T10:38:14.922500096', '2023-10-02T10:38:14.977499904'], ['2023-10-02T10:43:15.024000256', '2023-10-02T10:43:15.080000000', '2023-10-02T10:43:15.135500032', ..., '2023-10-02T10:43:14.856499968', '2023-10-02T10:43:14.911500032', '2023-10-02T10:43:14.967500032'], ['2023-10-02T10:48:15.024499968', '2023-10-02T10:48:15.080000000', '2023-10-02T10:48:15.135500032', ..., '2023-10-02T10:48:14.856000000', '2023-10-02T10:48:14.911500032', '2023-10-02T10:48:14.967500032'], ['2023-10-02T10:53:15.561500160', '2023-10-02T10:53:15.617499904', '2023-10-02T10:53:15.674000128', ..., '2023-10-02T10:53:15.394500096', '2023-10-02T10:53:15.450000128', '2023-10-02T10:53:15.505499904'], ['2023-10-02T10:58:15.035500032', '2023-10-02T10:58:15.090499840', '2023-10-02T10:58:15.146999808', ..., '2023-10-02T10:58:14.867499776', '2023-10-02T10:58:14.922999808', '2023-10-02T10:58:14.978499840']], dtype='datetime64[ns]') - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
array([[[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ..., [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ... [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ]], [[-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], ..., [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ], [-64.00293 , -64.00293 , -64.00293 , ..., -64.00293 , -64.00293 , -64.00293 ]]], dtype=float32) - sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20') - sweep_number()int646
array(6)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - sweep_fixed_angle(volume_time)float647.998 7.998 7.998 7.998 7.998 7.998
array([7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ... [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]]])
<xarray.DatasetView> Dimensions: (range: 496, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.236e+05 1.239e+05 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 7.987 7.987 ... 7.976 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:33... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 6 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 7.998 7.998 7.998 7.998 7.998 7.998 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_6- range: 240
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float6411.99 11.99 11.99 ... 11.99 11.99
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398], [11.98608398, 11.98608398, 11.98608398, ..., 11.98608398, 11.98608398, 11.98608398]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:33:30.183000064 .....
- standard_name :
- time
array([['2023-10-02T10:33:30.183000064', '2023-10-02T10:33:30.216499968', '2023-10-02T10:33:30.250499840', ..., '2023-10-02T10:33:30.082500096', '2023-10-02T10:33:30.115500032', '2023-10-02T10:33:30.149499904'], ['2023-10-02T10:38:30.165999872', '2023-10-02T10:38:30.199500032', '2023-10-02T10:38:30.232499968', ..., '2023-10-02T10:38:30.065499904', '2023-10-02T10:38:30.098500096', '2023-10-02T10:38:30.132499968'], ['2023-10-02T10:43:30.180499968', '2023-10-02T10:43:30.213999872', '2023-10-02T10:43:30.247500032', ..., '2023-10-02T10:43:30.080000000', '2023-10-02T10:43:30.112999936', '2023-10-02T10:43:30.146500096'], ['2023-10-02T10:48:30.157000192', '2023-10-02T10:48:30.190500096', '2023-10-02T10:48:30.224000000', ..., '2023-10-02T10:48:30.056499968', '2023-10-02T10:48:30.089499904', '2023-10-02T10:48:30.123000064'], ['2023-10-02T10:53:30.701499904', '2023-10-02T10:53:30.735500032', '2023-10-02T10:53:30.768499968', ..., '2023-10-02T10:53:30.601500160', '2023-10-02T10:53:30.634500096', '2023-10-02T10:53:30.668000000'], ['2023-10-02T10:58:30.164000000', '2023-10-02T10:58:30.197499904', '2023-10-02T10:58:30.231000064', ..., '2023-10-02T10:58:30.063500032', '2023-10-02T10:58:30.096499968', '2023-10-02T10:58:30.130500096']], dtype='datetime64[ns]') - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32) - sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20') - sweep_number()int647
array(7)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - sweep_fixed_angle(volume_time)float6412.0 12.0 12.0 12.0 12.0 12.0
array([12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ... [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]]])
<xarray.DatasetView> Dimensions: (range: 240, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 11.99 11.99 ... 11.99 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:33... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 7 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 12.0 12.0 12.0 12.0 12.0 12.0 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_7- range: 240
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float6416.97 16.97 16.97 ... 16.97 16.97
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695], [16.97387695, 16.97387695, 16.97387695, ..., 16.97387695, 16.97387695, 16.97387695]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:33:42.184000 ... 2...
- standard_name :
- time
array([['2023-10-02T10:33:42.184000000', '2023-10-02T10:33:42.217999872', '2023-10-02T10:33:42.251499776', ..., '2023-10-02T10:33:42.083500032', '2023-10-02T10:33:42.117000192', '2023-10-02T10:33:42.150500096'], ['2023-10-02T10:38:42.167000064', '2023-10-02T10:38:42.200499968', '2023-10-02T10:38:42.233999872', ..., '2023-10-02T10:38:42.066499840', '2023-10-02T10:38:42.099500032', '2023-10-02T10:38:42.133500160'], ['2023-10-02T10:43:42.181499904', '2023-10-02T10:43:42.214999808', '2023-10-02T10:43:42.248500224', ..., '2023-10-02T10:43:42.080999936', '2023-10-02T10:43:42.114500096', '2023-10-02T10:43:42.147500032'], ['2023-10-02T10:48:42.157999872', '2023-10-02T10:48:42.191500032', '2023-10-02T10:48:42.224999936', ..., '2023-10-02T10:48:42.057499904', '2023-10-02T10:48:42.091000064', '2023-10-02T10:48:42.124499968'], ['2023-10-02T10:53:42.703000064', '2023-10-02T10:53:42.736499968', '2023-10-02T10:53:42.769999872', ..., '2023-10-02T10:53:42.602499840', '2023-10-02T10:53:42.635500032', '2023-10-02T10:53:42.669000192'], ['2023-10-02T10:58:42.164999936', '2023-10-02T10:58:42.198499840', '2023-10-02T10:58:42.232499968', ..., '2023-10-02T10:58:42.064499968', '2023-10-02T10:58:42.097500160', '2023-10-02T10:58:42.131500032']], dtype='datetime64[ns]') - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32) - sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20') - sweep_number()int648
array(8)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - sweep_fixed_angle(volume_time)float6417.0 17.0 17.0 17.0 17.0 17.0
array([17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , 3.90636921, ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], ... [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]], [[-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , 1.85552538, ..., -128. , -128. , -128. ], ..., [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ], [-128. , -128. , -128. , ..., -128. , -128. , -128. ]]])
<xarray.DatasetView> Dimensions: (range: 240, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 16.97 16.97 ... 16.97 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:33... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 8 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 17.0 17.0 17.0 17.0 17.0 17.0 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_8- range: 240
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float6424.98 24.98 24.98 ... 24.98 24.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.99389648, 24.99389648, 24.99389648, ..., 24.99389648, 24.99389648, 24.99389648], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.99389648, 24.99389648, 24.99389648, ..., 24.99389648, 24.99389648, 24.99389648], [24.99389648, 24.99389648, 24.99389648, ..., 24.99389648, 24.99389648, 24.99389648], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:33:54.185999872 .....
- standard_name :
- time
array([['2023-10-02T10:33:54.185999872', '2023-10-02T10:33:54.218999808', '2023-10-02T10:33:54.252499968', ..., '2023-10-02T10:33:54.084999936', '2023-10-02T10:33:54.118500096', '2023-10-02T10:33:54.151500032'], ['2023-10-02T10:38:54.168000000', '2023-10-02T10:38:54.201499904', '2023-10-02T10:38:54.235500032', ..., '2023-10-02T10:38:54.067500032', '2023-10-02T10:38:54.101000192', '2023-10-02T10:38:54.134500096'], ['2023-10-02T10:43:54.182499840', '2023-10-02T10:43:54.216000000', '2023-10-02T10:43:54.249500160', ..., '2023-10-02T10:43:54.082000128', '2023-10-02T10:43:54.115500032', '2023-10-02T10:43:54.148499968'], ['2023-10-02T10:48:54.159500032', '2023-10-02T10:48:54.193000192', '2023-10-02T10:48:54.226500096', ..., '2023-10-02T10:48:54.059000064', '2023-10-02T10:48:54.092000000', '2023-10-02T10:48:54.125499904'], ['2023-10-02T10:53:54.704000000', '2023-10-02T10:53:54.737499904', '2023-10-02T10:53:54.771500032', ..., '2023-10-02T10:53:54.603499776', '2023-10-02T10:53:54.637000192', '2023-10-02T10:53:54.670500096'], ['2023-10-02T10:58:54.165999872', '2023-10-02T10:58:54.200000000', '2023-10-02T10:58:54.233499904', ..., '2023-10-02T10:58:54.065499904', '2023-10-02T10:58:54.099500032', '2023-10-02T10:58:54.132499968']], dtype='datetime64[ns]') - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32) - sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20') - sweep_number()int649
array(9)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - sweep_fixed_angle(volume_time)float6425.0 25.0 25.0 25.0 25.0 25.0
array([24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]])
<xarray.DatasetView> Dimensions: (range: 240, azimuth: 360, volume_time: 6) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 24.98 24.98 ... 24.98 time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:33... longitude float64 6.967 latitude float64 51.41 altitude float64 185.1 Dimensions without coordinates: volume_time Data variables: DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0 sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth... sweep_number int64 9 prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set' sweep_fixed_angle (volume_time) float64 25.0 25.0 25.0 25.0 25.0 25.0 VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0sweep_9- volume_time: 6
- volume_number(volume_time)int640 0 0 0 0 0
array([0, 0, 0, 0, 0, 0])
- platform_type(volume_time)<U5'fixed' 'fixed' ... 'fixed' 'fixed'
array(['fixed', 'fixed', 'fixed', 'fixed', 'fixed', 'fixed'], dtype='<U5')
- instrument_type(volume_time)<U5'radar' 'radar' ... 'radar' 'radar'
array(['radar', 'radar', 'radar', 'radar', 'radar', 'radar'], dtype='<U5')
- time_coverage_start(volume_time)<U20'2023-10-02T10:32:30Z' ... '2023...
array(['2023-10-02T10:32:30Z', '2023-10-02T10:37:30Z', '2023-10-02T10:42:30Z', '2023-10-02T10:47:30Z', '2023-10-02T10:52:31Z', '2023-10-02T10:57:30Z'], dtype='<U20') - time_coverage_end(volume_time)<U20'2023-10-02T10:37:29Z' ... '2023...
array(['2023-10-02T10:37:29Z', '2023-10-02T10:42:29Z', '2023-10-02T10:47:29Z', '2023-10-02T10:52:30Z', '2023-10-02T10:57:29Z', '2023-10-02T11:02:29Z'], dtype='<U20') - longitude(volume_time)float646.967 6.967 6.967 6.967 6.967 6.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array([6.967111, 6.967111, 6.967111, 6.967111, 6.967111, 6.967111])
- altitude(volume_time)float64185.1 185.1 185.1 185.1 185.1 185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array([185.11, 185.11, 185.11, 185.11, 185.11, 185.11])
- latitude(volume_time)float6451.41 51.41 51.41 51.41 51.41 51.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array([51.405649, 51.405649, 51.405649, 51.405649, 51.405649, 51.405649])
- Conventions :
- ODIM_H5/V2_2
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- None
- history :
- None
- comment :
- im/exported using xradar
- instrument_name :
- None
Sweep Groups#
[15]:
vol["sweep_0"]
[15]:
<xarray.DatasetView>
Dimensions: (range: 720, azimuth: 360, volume_time: 6)
Coordinates:
* range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05
* azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5
elevation (volume_time, azimuth) float64 5.493 5.493 ... 5.493
time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:35...
longitude float64 6.967
latitude float64 51.41
altitude float64 185.1
Dimensions without coordinates: volume_time
Data variables:
DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0
sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth...
sweep_number int64 0
prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set'
follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set'
sweep_fixed_angle (volume_time) float64 5.499 5.499 5.499 5.499 5.499 5.499
VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0- range: 720
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float645.493 5.493 5.493 ... 5.493 5.493
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406], [5.49316406, 5.49316406, 5.49316406, ..., 5.49316406, 5.49316406, 5.49316406]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:35:53.997000192 .....
- standard_name :
- time
array([['2023-10-02T10:35:53.997000192', '2023-10-02T10:35:54.060000000', '2023-10-02T10:35:54.123000064', ..., '2023-10-02T10:35:53.808000000', '2023-10-02T10:35:53.870500096', '2023-10-02T10:35:53.933000192'], ['2023-10-02T10:40:54.001500160', '2023-10-02T10:40:54.064999936', '2023-10-02T10:40:54.126999808', ..., '2023-10-02T10:40:53.812999936', '2023-10-02T10:40:53.875000064', '2023-10-02T10:40:53.938000128'], ['2023-10-02T10:45:54.009499904', '2023-10-02T10:45:54.072999936', '2023-10-02T10:45:54.136000000', ..., '2023-10-02T10:45:53.821000192', '2023-10-02T10:45:53.883500032', '2023-10-02T10:45:53.946000128'], ['2023-10-02T10:50:54.545000192', '2023-10-02T10:50:54.608499968', '2023-10-02T10:50:54.671000064', ..., '2023-10-02T10:50:54.356000000', '2023-10-02T10:50:54.418499840', '2023-10-02T10:50:54.480999936'], ['2023-10-02T10:55:53.998000128', '2023-10-02T10:55:54.061500160', '2023-10-02T10:55:54.124000000', ..., '2023-10-02T10:55:53.808999936', '2023-10-02T10:55:53.871500032', '2023-10-02T10:55:53.934500096'], ['2023-10-02T11:00:54.008000000', '2023-10-02T11:00:54.071000064', '2023-10-02T11:00:54.134000128', ..., '2023-10-02T11:00:53.819500032', '2023-10-02T11:00:53.881999872', '2023-10-02T11:00:53.944000000']], 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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]])
plot sweeps#
DBZH#
[16]:
vol["sweep_0"].isel(volume_time=0)
[16]:
<xarray.DatasetView>
Dimensions: (range: 720, azimuth: 360)
Coordinates:
* range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05
* azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5
elevation (azimuth) float64 5.493 5.493 5.493 ... 5.493 5.493 5.493
time (azimuth) datetime64[ns] 2023-10-02T10:35:53.997000192...
longitude float64 6.967
latitude float64 51.41
altitude float64 185.1
Data variables:
DBZH (azimuth, range) float32 -64.0 -64.0 ... -64.0 -64.0
sweep_mode <U20 'azimuth_surveillance'
sweep_number int64 0
prt_mode <U7 'not_set'
follow_mode <U7 'not_set'
sweep_fixed_angle float64 5.499
VRADH (azimuth, range) float64 -128.0 -128.0 ... -128.0 -128.0- range: 720
- azimuth: 360
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)float645.493 5.493 5.493 ... 5.493 5.493
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.39428711, 5.49865723, 5.52612305, 5.50415039, 5.47119141, 5.46020508, 5.46020508, 5.47119141, 5.4876709 , 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, ... 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406, 5.49316406]) - time(azimuth)datetime64[ns]2023-10-02T10:35:53.997000192 .....
- standard_name :
- time
array(['2023-10-02T10:35:53.997000192', '2023-10-02T10:35:54.060000000', '2023-10-02T10:35:54.123000064', '2023-10-02T10:35:54.184999936', '2023-10-02T10:35:54.248000256', '2023-10-02T10:35:54.310500096', '2023-10-02T10:35:54.373000192', '2023-10-02T10:35:54.435000064', '2023-10-02T10:35:54.498000128', '2023-10-02T10:35:54.560000000', '2023-10-02T10:35:54.621999872', '2023-10-02T10:35:54.684499968', '2023-10-02T10:35:54.747000064', '2023-10-02T10:35:54.808999936', '2023-10-02T10:35:54.872000256', '2023-10-02T10:35:54.935000064', '2023-10-02T10:35:54.996999936', '2023-10-02T10:35:55.059500032', '2023-10-02T10:35:55.122499840', '2023-10-02T10:35:55.184000000', '2023-10-02T10:35:55.247500032', '2023-10-02T10:35:55.309999872', '2023-10-02T10:35:55.372000256', '2023-10-02T10:35:55.435000064', '2023-10-02T10:35:55.496999936', '2023-10-02T10:35:55.559500032', '2023-10-02T10:35:55.621999872', '2023-10-02T10:35:55.684000000', '2023-10-02T10:35:55.746000128', '2023-10-02T10:35:55.808499968', '2023-10-02T10:35:55.871500032', '2023-10-02T10:35:55.934500096', '2023-10-02T10:35:55.996999936', '2023-10-02T10:35:56.059000064', '2023-10-02T10:35:56.120999936', '2023-10-02T10:35:56.183500032', '2023-10-02T10:35:56.246000128', '2023-10-02T10:35:56.308000000', '2023-10-02T10:35:56.371500032', '2023-10-02T10:35:56.434000128', ... '2023-10-02T10:35:51.620999936', '2023-10-02T10:35:51.683000064', '2023-10-02T10:35:51.746000128', '2023-10-02T10:35:51.807499776', '2023-10-02T10:35:51.869999872', '2023-10-02T10:35:51.932000256', '2023-10-02T10:35:51.994999808', '2023-10-02T10:35:52.057000192', '2023-10-02T10:35:52.120000000', '2023-10-02T10:35:52.182499840', '2023-10-02T10:35:52.244999936', '2023-10-02T10:35:52.307000064', '2023-10-02T10:35:52.370500096', '2023-10-02T10:35:52.432000000', '2023-10-02T10:35:52.494500096', '2023-10-02T10:35:52.557000192', '2023-10-02T10:35:52.620499968', '2023-10-02T10:35:52.683000064', '2023-10-02T10:35:52.746500096', '2023-10-02T10:35:52.808000000', '2023-10-02T10:35:52.870500096', '2023-10-02T10:35:52.933000192', '2023-10-02T10:35:52.996000000', '2023-10-02T10:35:53.057499904', '2023-10-02T10:35:53.120499968', '2023-10-02T10:35:53.183500032', '2023-10-02T10:35:53.246000128', '2023-10-02T10:35:53.308000000', '2023-10-02T10:35:53.371000064', '2023-10-02T10:35:53.433000192', '2023-10-02T10:35:53.495500032', '2023-10-02T10:35:53.558500096', '2023-10-02T10:35:53.620999936', '2023-10-02T10:35:53.683000064', '2023-10-02T10:35:53.746500096', '2023-10-02T10:35:53.808000000', '2023-10-02T10:35:53.870500096', '2023-10-02T10:35:53.933000192'], dtype='datetime64[ns]') - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(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)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]])
[17]:
fig, gs = plt.subplots(
4, 3, figsize=(20, 30), sharex=True, sharey=True, constrained_layout=True
)
for i, grp in enumerate(vol.groups[1:]):
swp = vol[grp].isel(volume_time=0).ds
swp = swp.assign_coords(sweep_mode=swp.sweep_mode)
swp.DBZH.wrl.georef.georeference().wrl.vis.plot(ax=gs.flat[i], fig=fig)
ax = plt.gca()
ax.set_title(swp.sweep_fixed_angle.values)
fig.delaxes(gs.flat[-2])
fig.delaxes(gs.flat[-1])
VRADH#
[18]:
fig, gs = plt.subplots(
4, 3, figsize=(20, 30), sharex=True, sharey=True, constrained_layout=True
)
for i, grp in enumerate(vol.groups[1:]):
swp = vol[grp].isel(volume_time=0).ds
swp = swp.assign_coords(sweep_mode=swp.sweep_mode)
swp.VRADH.wrl.georef.georeference().wrl.vis.plot(ax=gs.flat[i], fig=fig)
ax = plt.gca()
ax.set_title(swp.sweep_fixed_angle.values)
fig.delaxes(gs.flat[-2])
fig.delaxes(gs.flat[-1])
Plot single sweep using cartopy#
[19]:
vol0 = vol.isel(volume_time=0)
swp = vol0["sweep_9"].ds
# need to assign sweep_mode as coordinate
swp = swp.assign_coords(sweep_mode=swp.sweep_mode)
[20]:
import cartopy
import cartopy.crs as ccrs
import cartopy.feature as cfeature
map_trans = ccrs.AzimuthalEquidistant(
central_latitude=vol0.root.ds.latitude.values,
central_longitude=vol0.root.ds.longitude.values,
)
[21]:
map_proj = ccrs.AzimuthalEquidistant(
central_latitude=vol0.root.ds.latitude.values,
central_longitude=vol0.root.ds.longitude.values,
)
pm = swp.DBZH.wrl.georef.georeference().wrl.vis.plot(crs=map_proj)
ax = plt.gca()
ax.gridlines(crs=map_proj)
print(ax)
< GeoAxes: +proj=aeqd +ellps=WGS84 +lon_0=6.967111 +lat_0=51.405649 +x_0=0.0 +y_0=0.0 +no_defs +type=crs >
[22]:
map_proj = ccrs.Mercator(central_longitude=vol0.root.ds.longitude.values)
fig = plt.figure(figsize=(10, 8))
ax = fig.add_subplot(111, projection=map_proj)
pm = swp.DBZH.wrl.georef.georeference().wrl.vis.plot(ax=ax)
ax.gridlines(draw_labels=True)
[22]:
<cartopy.mpl.gridliner.Gridliner at 0x7f6dbe62bd90>
[23]:
fig = plt.figure(figsize=(10, 8))
proj = ccrs.AzimuthalEquidistant(
central_latitude=vol0.root.ds.latitude.values,
central_longitude=vol0.root.ds.longitude.values,
)
ax = fig.add_subplot(111, projection=proj)
pm = swp.DBZH.wrl.georef.georeference().wrl.vis.plot(ax=ax)
ax.gridlines()
[23]:
<cartopy.mpl.gridliner.Gridliner at 0x7f6dbe6e88d0>
Inspect radar moments#
The DataArrays can be accessed by key or by attribute. Each DataArray inherits dimensions and coordinates of it’s parent dataset. There are attributes connected which are defined by Cf/Radial and/or ODIM_H5 standard.
[24]:
vol["sweep_9"].isel(volume_time=0).ds.DBZH
[24]:
<xarray.DataArray 'DBZH' (azimuth: 360, range: 240)>
array([[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293,
-64.00293],
[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293,
-64.00293],
[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293,
-64.00293],
...,
[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293,
-64.00293],
[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293,
-64.00293],
[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293,
-64.00293]], dtype=float32)
Coordinates:
* range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04
* azimuth (azimuth) float64 0.5 1.5 2.5 3.5 4.5 ... 356.5 357.5 358.5 359.5
elevation (azimuth) float64 24.98 24.98 24.98 24.98 ... 24.98 24.98 24.98
time (azimuth) datetime64[ns] 2023-10-02T10:33:54.185999872 ... 202...
longitude float64 6.967
latitude float64 51.41
altitude float64 185.1
Attributes:
_Undetect: 0.0
standard_name: radar_equivalent_reflectivity_factor_h
long_name: Equivalent reflectivity factor H
units: dBZ- azimuth: 360
- range: 240
- -64.0 -64.0 -64.0 -64.0 -64.0 -64.0 ... -64.0 -64.0 -64.0 -64.0 -64.0
array([[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], dtype=float32) - range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)float6424.98 24.98 24.98 ... 24.98 24.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, ... 24.9609375 , 24.9609375 , 24.9609375 , 24.96643066, 24.97741699, 24.98840332, 24.99389648, 24.99389648, 24.99389648, 24.99389648, 24.99389648, 24.99389648, 24.98840332, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016, 24.98291016]) - time(azimuth)datetime64[ns]2023-10-02T10:33:54.185999872 .....
- standard_name :
- time
array(['2023-10-02T10:33:54.185999872', '2023-10-02T10:33:54.218999808', '2023-10-02T10:33:54.252499968', '2023-10-02T10:33:54.286000128', '2023-10-02T10:33:54.319500032', '2023-10-02T10:33:54.352499968', '2023-10-02T10:33:54.385999872', '2023-10-02T10:33:54.419500032', '2023-10-02T10:33:54.452500224', '2023-10-02T10:33:54.486000128', '2023-10-02T10:33:54.519000064', '2023-10-02T10:33:54.552499968', '2023-10-02T10:33:54.585499904', '2023-10-02T10:33:54.618500096', '2023-10-02T10:33:54.652499968', '2023-10-02T10:33:54.685499904', '2023-10-02T10:33:54.719500032', '2023-10-02T10:33:54.752499968', '2023-10-02T10:33:54.785500160', '2023-10-02T10:33:54.819000064', '2023-10-02T10:33:54.852499968', '2023-10-02T10:33:54.885499904', '2023-10-02T10:33:54.919000064', '2023-10-02T10:33:54.952500224', '2023-10-02T10:33:54.985500160', '2023-10-02T10:33:55.019500032', '2023-10-02T10:33:55.052499968', '2023-10-02T10:33:55.085499904', '2023-10-02T10:33:55.119000064', '2023-10-02T10:33:55.152000000', '2023-10-02T10:33:55.185499904', '2023-10-02T10:33:55.218499840', '2023-10-02T10:33:55.251999744', '2023-10-02T10:33:55.285500160', '2023-10-02T10:33:55.318500096', '2023-10-02T10:33:55.351500032', '2023-10-02T10:33:55.385499904', '2023-10-02T10:33:55.418499840', '2023-10-02T10:33:55.451500032', '2023-10-02T10:33:55.485000192', ... '2023-10-02T10:33:52.917499904', '2023-10-02T10:33:52.951500032', '2023-10-02T10:33:52.984499968', '2023-10-02T10:33:53.018500096', '2023-10-02T10:33:53.051500032', '2023-10-02T10:33:53.084499968', '2023-10-02T10:33:53.118000128', '2023-10-02T10:33:53.151500032', '2023-10-02T10:33:53.184499968', '2023-10-02T10:33:53.217499904', '2023-10-02T10:33:53.250999808', '2023-10-02T10:33:53.284500224', '2023-10-02T10:33:53.317500160', '2023-10-02T10:33:53.351500032', '2023-10-02T10:33:53.384499968', '2023-10-02T10:33:53.417499904', '2023-10-02T10:33:53.451000064', '2023-10-02T10:33:53.484499968', '2023-10-02T10:33:53.517499904', '2023-10-02T10:33:53.551500032', '2023-10-02T10:33:53.584999936', '2023-10-02T10:33:53.618000128', '2023-10-02T10:33:53.651500032', '2023-10-02T10:33:53.684499968', '2023-10-02T10:33:53.717999872', '2023-10-02T10:33:53.751499776', '2023-10-02T10:33:53.784500224', '2023-10-02T10:33:53.818000128', '2023-10-02T10:33:53.851500032', '2023-10-02T10:33:53.884499968', '2023-10-02T10:33:53.917999872', '2023-10-02T10:33:53.951500032', '2023-10-02T10:33:53.985000192', '2023-10-02T10:33:54.018500096', '2023-10-02T10:33:54.051500032', '2023-10-02T10:33:54.084999936', '2023-10-02T10:33:54.118500096', '2023-10-02T10:33:54.151500032'], dtype='datetime64[ns]') - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- rangePandasIndex
PandasIndex(Index([ 125.0, 375.0, 625.0, 875.0, 1125.0, 1375.0, 1625.0, 1875.0, 2125.0, 2375.0, ... 57625.0, 57875.0, 58125.0, 58375.0, 58625.0, 58875.0, 59125.0, 59375.0, 59625.0, 59875.0], dtype='float32', name='range', length=240)) - azimuthPandasIndex
PandasIndex(Index([ 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, ... 350.5, 351.5, 352.5, 353.5, 354.5, 355.5, 356.5, 357.5, 358.5, 359.5], dtype='float64', name='azimuth', length=360))
- _Undetect :
- 0.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[25]:
vol["sweep_9"].isel(volume_time=0).ds.sweep_mode
[25]:
<xarray.DataArray 'sweep_mode' ()>
array('azimuth_surveillance', dtype='<U20')
Coordinates:
longitude float64 6.967
latitude float64 51.41
altitude float64 185.1- 'azimuth_surveillance'
array('azimuth_surveillance', dtype='<U20') - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
Plot Quasi Vertical Profile#
[26]:
ts = vol["sweep_9"]
ts
[26]:
<xarray.DatasetView>
Dimensions: (range: 240, azimuth: 360, volume_time: 6)
Coordinates:
* range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04
* azimuth (azimuth) float64 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5
elevation (volume_time, azimuth) float64 24.98 24.98 ... 24.98
time (volume_time, azimuth) datetime64[ns] 2023-10-02T10:33...
longitude float64 6.967
latitude float64 51.41
altitude float64 185.1
Dimensions without coordinates: volume_time
Data variables:
DBZH (volume_time, azimuth, range) float32 -64.0 ... -64.0
sweep_mode (volume_time) <U20 'azimuth_surveillance' ... 'azimuth...
sweep_number int64 9
prt_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set'
follow_mode (volume_time) <U7 'not_set' 'not_set' ... 'not_set'
sweep_fixed_angle (volume_time) float64 25.0 25.0 25.0 25.0 25.0 25.0
VRADH (volume_time, azimuth, range) float64 -128.0 ... -128.0- range: 240
- azimuth: 360
- volume_time: 6
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float6424.98 24.98 24.98 ... 24.98 24.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.99389648, 24.99389648, 24.99389648, ..., 24.99389648, 24.99389648, 24.99389648], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016], [24.99389648, 24.99389648, 24.99389648, ..., 24.99389648, 24.99389648, 24.99389648], [24.99389648, 24.99389648, 24.99389648, ..., 24.99389648, 24.99389648, 24.99389648], [24.98291016, 24.98291016, 24.98291016, ..., 24.98291016, 24.98291016, 24.98291016]]) - time(volume_time, azimuth)datetime64[ns]2023-10-02T10:33:54.185999872 .....
- standard_name :
- time
array([['2023-10-02T10:33:54.185999872', '2023-10-02T10:33:54.218999808', '2023-10-02T10:33:54.252499968', ..., '2023-10-02T10:33:54.084999936', '2023-10-02T10:33:54.118500096', '2023-10-02T10:33:54.151500032'], ['2023-10-02T10:38:54.168000000', '2023-10-02T10:38:54.201499904', '2023-10-02T10:38:54.235500032', ..., '2023-10-02T10:38:54.067500032', '2023-10-02T10:38:54.101000192', '2023-10-02T10:38:54.134500096'], ['2023-10-02T10:43:54.182499840', '2023-10-02T10:43:54.216000000', '2023-10-02T10:43:54.249500160', ..., '2023-10-02T10:43:54.082000128', '2023-10-02T10:43:54.115500032', '2023-10-02T10:43:54.148499968'], ['2023-10-02T10:48:54.159500032', '2023-10-02T10:48:54.193000192', '2023-10-02T10:48:54.226500096', ..., '2023-10-02T10:48:54.059000064', '2023-10-02T10:48:54.092000000', '2023-10-02T10:48:54.125499904'], ['2023-10-02T10:53:54.704000000', '2023-10-02T10:53:54.737499904', '2023-10-02T10:53:54.771500032', ..., '2023-10-02T10:53:54.603499776', '2023-10-02T10:53:54.637000192', '2023-10-02T10:53:54.670500096'], ['2023-10-02T10:58:54.165999872', '2023-10-02T10:58:54.200000000', '2023-10-02T10:58:54.233499904', ..., '2023-10-02T10:58:54.065499904', '2023-10-02T10:58:54.099500032', '2023-10-02T10:58:54.132499968']], dtype='datetime64[ns]') - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- DBZH(volume_time, azimuth, range)float32-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
array([[[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ... [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]], [[-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], ..., [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293], [-64.00293, -64.00293, -64.00293, ..., -64.00293, -64.00293, -64.00293]]], dtype=float32) - sweep_mode(volume_time)<U20'azimuth_surveillance' ... 'azim...
array(['azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance', 'azimuth_surveillance'], dtype='<U20') - sweep_number()int649
array(9)
- prt_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - follow_mode(volume_time)<U7'not_set' 'not_set' ... 'not_set'
array(['not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set'], dtype='<U7') - sweep_fixed_angle(volume_time)float6425.0 25.0 25.0 25.0 25.0 25.0
array([24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
array([[[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., ... ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]], [[-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], ..., [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.], [-128., -128., -128., ..., -128., -128., -128.]]])
[27]:
fig = plt.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]:
xradar.io.to_odim(vol0, "dwd_odim.h5", source="RAD:DWD")
Export to Cf/Radial2#
This exports the radar volume at given timestep including all moments into one Cf/Radial2 compliant data file.
[29]:
xradar.io.to_cfradial2(vol0, "dwd_cfradial2.nc")
Import again#
[30]:
vol1 = xradar.io.open_odim_datatree("dwd_odim.h5")
display(vol1)
<xarray.DatasetView>
Dimensions: ()
Data variables:
volume_number int64 0
platform_type <U5 'fixed'
instrument_type <U5 'radar'
time_coverage_start <U20 '2023-10-02T10:32:31Z'
time_coverage_end <U20 '2023-10-02T10:37:29Z'
longitude float64 6.967
altitude float64 185.1
latitude float64 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
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2023-10-02T10:35:53.669475072 .....
- standard_name :
- time
array(['2023-10-02T10:35:53.669475072', '2023-10-02T10:35:53.730586368', '2023-10-02T10:35:53.791697408', ..., '2023-10-02T10:35:53.486141440', '2023-10-02T10:35:53.547252736', '2023-10-02T10:35:53.608363776'], dtype='datetime64[ns]') - 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) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float32...
- _Undetect :
- 65535.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[259200 values with dtype=float32]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.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
[259200 values with dtype=float64]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720) Coordinates: elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2023-10-02T10:35:53.669475072... * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 longitude float64 ... latitude float64 ... altitude float64 ... * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 Data variables: DBZH (azimuth, range) float32 ... VRADH (azimuth, range) float64 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...sweep_0- azimuth: 360
- range: 720
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2023-10-02T10:36:16.119474176 .....
- standard_name :
- time
array(['2023-10-02T10:36:16.119474176', '2023-10-02T10:36:16.180585472', '2023-10-02T10:36:16.241696512', ..., '2023-10-02T10:36:15.936140544', '2023-10-02T10:36:15.997251840', '2023-10-02T10:36:16.058362880'], dtype='datetime64[ns]') - 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) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float32...
- _Undetect :
- 65535.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[259200 values with dtype=float32]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.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
[259200 values with dtype=float64]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720) Coordinates: elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2023-10-02T10:36:16.119474176... * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 longitude float64 ... latitude float64 ... altitude float64 ... * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 Data variables: DBZH (azimuth, range) float32 ... VRADH (azimuth, range) float64 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...sweep_1- azimuth: 360
- range: 720
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2023-10-02T10:36:39.368026624 .....
- standard_name :
- time
array(['2023-10-02T10:36:39.368026624', '2023-10-02T10:36:39.431915520', '2023-10-02T10:36:39.495804416', ..., '2023-10-02T10:36:39.176360448', '2023-10-02T10:36:39.240249088', '2023-10-02T10:36:39.304137984'], dtype='datetime64[ns]') - 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) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float32...
- _Undetect :
- 65535.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[259200 values with dtype=float32]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.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
[259200 values with dtype=float64]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720) Coordinates: elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2023-10-02T10:36:39.368026624... * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 longitude float64 ... latitude float64 ... altitude float64 ... * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 Data variables: DBZH (azimuth, range) float32 ... VRADH (azimuth, range) float64 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...sweep_2- azimuth: 360
- range: 720
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2023-10-02T10:37:01.793027584 .....
- standard_name :
- time
array(['2023-10-02T10:37:01.793027584', '2023-10-02T10:37:01.856916480', '2023-10-02T10:37:01.920805120', ..., '2023-10-02T10:37:01.601361152', '2023-10-02T10:37:01.665250048', '2023-10-02T10:37:01.729138944'], dtype='datetime64[ns]') - 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) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float32...
- _Undetect :
- 65535.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[259200 values with dtype=float32]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.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
[259200 values with dtype=float64]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720) Coordinates: elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2023-10-02T10:37:01.793027584... * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 longitude float64 ... latitude float64 ... altitude float64 ... * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 Data variables: DBZH (azimuth, range) float32 ... VRADH (azimuth, range) float64 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...sweep_3- azimuth: 360
- range: 720
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2023-10-02T10:37:24.218028544 .....
- standard_name :
- time
array(['2023-10-02T10:37:24.218028544', '2023-10-02T10:37:24.281917440', '2023-10-02T10:37:24.345806080', ..., '2023-10-02T10:37:24.026362112', '2023-10-02T10:37:24.090251008', '2023-10-02T10:37:24.154139648'], dtype='datetime64[ns]') - 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) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float32...
- _Undetect :
- 65535.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[259200 values with dtype=float32]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.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
[259200 values with dtype=float64]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720) Coordinates: elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2023-10-02T10:37:24.218028544... * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 longitude float64 ... latitude float64 ... altitude float64 ... * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 Data variables: DBZH (azimuth, range) float32 ... VRADH (azimuth, range) float64 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...sweep_4- azimuth: 360
- range: 720
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2023-10-02T10:32:52.374979840 .....
- standard_name :
- time
array(['2023-10-02T10:32:52.374979840', '2023-10-02T10:32:52.458312960', '2023-10-02T10:32:52.541646336', ..., '2023-10-02T10:32:52.124979968', '2023-10-02T10:32:52.208313344', '2023-10-02T10:32:52.291646464'], dtype='datetime64[ns]') - 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) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float32...
- _Undetect :
- 65535.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[259200 values with dtype=float32]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.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
[259200 values with dtype=float64]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 720) Coordinates: elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2023-10-02T10:32:52.374979840... * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 longitude float64 ... latitude float64 ... altitude float64 ... * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 Data variables: DBZH (azimuth, range) float32 ... VRADH (azimuth, range) float64 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...sweep_5- azimuth: 360
- range: 496
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2023-10-02T10:33:14.805561600 .....
- standard_name :
- time
array(['2023-10-02T10:33:14.805561600', '2023-10-02T10:33:14.861117184', '2023-10-02T10:33:14.916672768', ..., '2023-10-02T10:33:14.638894848', '2023-10-02T10:33:14.694450432', '2023-10-02T10:33:14.750006016'], dtype='datetime64[ns]') - 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) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float32...
- _Undetect :
- 65535.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[178560 values with dtype=float32]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.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
[178560 values with dtype=float64]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 496) Coordinates: elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2023-10-02T10:33:14.805561600... * range (range) float32 125.0 375.0 625.0 ... 1.236e+05 1.239e+05 longitude float64 ... latitude float64 ... altitude float64 ... * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 Data variables: DBZH (azimuth, range) float32 ... VRADH (azimuth, range) float64 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...sweep_6- azimuth: 360
- range: 240
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2023-10-02T10:33:30.516660480 .....
- standard_name :
- time
array(['2023-10-02T10:33:30.516660480', '2023-10-02T10:33:30.549993728', '2023-10-02T10:33:30.583326976', ..., '2023-10-02T10:33:30.416660480', '2023-10-02T10:33:30.449993728', '2023-10-02T10:33:30.483327232'], dtype='datetime64[ns]') - 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)
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float32...
- _Undetect :
- 65535.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[86400 values with dtype=float32]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.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
[86400 values with dtype=float64]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2023-10-02T10:33:30.516660480... * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 longitude float64 ... latitude float64 ... altitude float64 ... * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 Data variables: DBZH (azimuth, range) float32 ... VRADH (azimuth, range) float64 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...sweep_7- azimuth: 360
- range: 240
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2023-10-02T10:33:42.283328256 .....
- standard_name :
- time
array(['2023-10-02T10:33:42.283328256', '2023-10-02T10:33:42.316661504', '2023-10-02T10:33:42.349995008', ..., '2023-10-02T10:33:42.183328512', '2023-10-02T10:33:42.216661760', '2023-10-02T10:33:42.249995008'], dtype='datetime64[ns]') - 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)
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float32...
- _Undetect :
- 65535.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[86400 values with dtype=float32]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.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
[86400 values with dtype=float64]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2023-10-02T10:33:42.283328256... * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 longitude float64 ... latitude float64 ... altitude float64 ... * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 Data variables: DBZH (azimuth, range) float32 ... VRADH (azimuth, range) float64 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...sweep_8- azimuth: 360
- range: 240
- elevation(azimuth)float32...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float32]
- time(azimuth)datetime64[ns]2023-10-02T10:33:53.716663040 .....
- standard_name :
- time
array(['2023-10-02T10:33:53.716663040', '2023-10-02T10:33:53.749996544', '2023-10-02T10:33:53.783329792', ..., '2023-10-02T10:33:53.616663296', '2023-10-02T10:33:53.649996544', '2023-10-02T10:33:53.683329792'], dtype='datetime64[ns]') - 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)
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float32...
- _Undetect :
- 65535.0
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[86400 values with dtype=float32]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.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
[86400 values with dtype=float64]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
<xarray.DatasetView> Dimensions: (azimuth: 360, range: 240) Coordinates: elevation (azimuth) float32 ... time (azimuth) datetime64[ns] 2023-10-02T10:33:53.716663040... * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 longitude float64 ... latitude float64 ... altitude float64 ... * azimuth (azimuth) float32 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5 Data variables: DBZH (azimuth, range) float32 ... VRADH (azimuth, range) float64 ... sweep_mode <U20 ... sweep_number int64 ... prt_mode <U7 ... follow_mode <U7 ... sweep_fixed_angle float64 ...sweep_9- volume_number()int640
array(0)
- platform_type()<U5'fixed'
array('fixed', dtype='<U5') - instrument_type()<U5'radar'
array('radar', dtype='<U5') - time_coverage_start()<U20'2023-10-02T10:32:31Z'
array('2023-10-02T10:32:31Z', dtype='<U20') - time_coverage_end()<U20'2023-10-02T10:37:29Z'
array('2023-10-02T10:37:29Z', dtype='<U20') - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(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
[31]:
vol2 = open_datatree("dwd_cfradial2.nc")
display(vol2)
<xarray.DatasetView>
Dimensions: ()
Data variables:
volume_number int64 ...
platform_type object ...
instrument_type object ...
time_coverage_start object ...
time_coverage_end object ...
longitude float64 ...
altitude float64 ...
latitude float64 ...
Attributes:
Conventions: Cf/Radial
version: 2.0
title: None
institution: None
references: None
source: None
history: None: xradar v0.4.0 CfRadial2 export
comment: im/exported using xradar
instrument_name: None- range: 720
- time: 360
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2023-10-02T10:35:34.933000192 .....
- standard_name :
- time
array(['2023-10-02T10:35:34.933000192', '2023-10-02T10:35:34.996000000', '2023-10-02T10:35:35.058000128', ..., '2023-10-02T10:35:57.248000256', '2023-10-02T10:35:57.309999872', '2023-10-02T10:35:57.373000192'], dtype='datetime64[ns]')
- DBZH(time, range)float32...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[259200 values with dtype=float32]
- sweep_mode()object...
[1 values with dtype=object]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()object...
[1 values with dtype=object]
- follow_mode()object...
[1 values with dtype=object]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
- VRADH(time, range)float64...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[259200 values with dtype=float64]
<xarray.DatasetView> Dimensions: (range: 720, time: 360) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 azimuth (time) float64 ... elevation (time) float64 ... * time (time) datetime64[ns] 2023-10-02T10:35:34.933000192 ..... Data variables: DBZH (time, range) float32 ... sweep_mode object ... sweep_number int64 ... prt_mode object ... follow_mode object ... sweep_fixed_angle float64 ... VRADH (time, range) float64 ...sweep_0- range: 720
- time: 360
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2023-10-02T10:35:57.998000128 .....
- standard_name :
- time
array(['2023-10-02T10:35:57.998000128', '2023-10-02T10:35:58.060999936', '2023-10-02T10:35:58.122499840', ..., '2023-10-02T10:36:20.312999936', '2023-10-02T10:36:20.375000064', '2023-10-02T10:36:20.437499904'], dtype='datetime64[ns]')
- DBZH(time, range)float32...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[259200 values with dtype=float32]
- sweep_mode()object...
[1 values with dtype=object]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()object...
[1 values with dtype=object]
- follow_mode()object...
[1 values with dtype=object]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
- VRADH(time, range)float64...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[259200 values with dtype=float64]
<xarray.DatasetView> Dimensions: (range: 720, time: 360) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 azimuth (time) float64 ... elevation (time) float64 ... * time (time) datetime64[ns] 2023-10-02T10:35:57.998000128 ..... Data variables: DBZH (time, range) float32 ... sweep_mode object ... sweep_number int64 ... prt_mode object ... follow_mode object ... sweep_fixed_angle float64 ... VRADH (time, range) float64 ...sweep_1- range: 720
- time: 360
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2023-10-02T10:36:21.061999872 .....
- standard_name :
- time
array(['2023-10-02T10:36:21.061999872', '2023-10-02T10:36:21.124499968', '2023-10-02T10:36:21.187500032', ..., '2023-10-02T10:36:43.376999936', '2023-10-02T10:36:43.439000064', '2023-10-02T10:36:43.501999872'], dtype='datetime64[ns]')
- DBZH(time, range)float32...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[259200 values with dtype=float32]
- sweep_mode()object...
[1 values with dtype=object]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()object...
[1 values with dtype=object]
- follow_mode()object...
[1 values with dtype=object]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
- VRADH(time, range)float64...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[259200 values with dtype=float64]
<xarray.DatasetView> Dimensions: (range: 720, time: 360) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 azimuth (time) float64 ... elevation (time) float64 ... * time (time) datetime64[ns] 2023-10-02T10:36:21.061999872 ..... Data variables: DBZH (time, range) float32 ... sweep_mode object ... sweep_number int64 ... prt_mode object ... follow_mode object ... sweep_fixed_angle float64 ... VRADH (time, range) float64 ...sweep_2- range: 720
- time: 360
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2023-10-02T10:36:44.125999872 .....
- standard_name :
- time
array(['2023-10-02T10:36:44.125999872', '2023-10-02T10:36:44.189000192', '2023-10-02T10:36:44.250999808', ..., '2023-10-02T10:37:06.441999872', '2023-10-02T10:37:06.503500032', '2023-10-02T10:37:06.566499840'], dtype='datetime64[ns]')
- DBZH(time, range)float32...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[259200 values with dtype=float32]
- sweep_mode()object...
[1 values with dtype=object]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()object...
[1 values with dtype=object]
- follow_mode()object...
[1 values with dtype=object]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
- VRADH(time, range)float64...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[259200 values with dtype=float64]
<xarray.DatasetView> Dimensions: (range: 720, time: 360) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 azimuth (time) float64 ... elevation (time) float64 ... * time (time) datetime64[ns] 2023-10-02T10:36:44.125999872 ..... Data variables: DBZH (time, range) float32 ... sweep_mode object ... sweep_number int64 ... prt_mode object ... follow_mode object ... sweep_fixed_angle float64 ... VRADH (time, range) float64 ...sweep_3- range: 720
- time: 360
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2023-10-02T10:37:07.190000128 .....
- standard_name :
- time
array(['2023-10-02T10:37:07.190000128', '2023-10-02T10:37:07.253499904', '2023-10-02T10:37:07.316000000', ..., '2023-10-02T10:37:29.505499904', '2023-10-02T10:37:29.566999808', '2023-10-02T10:37:29.630000128'], dtype='datetime64[ns]')
- DBZH(time, range)float32...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[259200 values with dtype=float32]
- sweep_mode()object...
[1 values with dtype=object]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()object...
[1 values with dtype=object]
- follow_mode()object...
[1 values with dtype=object]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
- VRADH(time, range)float64...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[259200 values with dtype=float64]
<xarray.DatasetView> Dimensions: (range: 720, time: 360) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 azimuth (time) float64 ... elevation (time) float64 ... * time (time) datetime64[ns] 2023-10-02T10:37:07.190000128 ..... Data variables: DBZH (time, range) float32 ... sweep_mode object ... sweep_number int64 ... prt_mode object ... follow_mode object ... sweep_fixed_angle float64 ... VRADH (time, range) float64 ...sweep_4- range: 720
- time: 360
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2023-10-02T10:32:30.678500096 .....
- standard_name :
- time
array(['2023-10-02T10:32:30.678500096', '2023-10-02T10:32:30.763000064', '2023-10-02T10:32:30.847499776', ..., '2023-10-02T10:33:00.433000192', '2023-10-02T10:33:00.516499968', '2023-10-02T10:33:00.600000000'], dtype='datetime64[ns]')
- DBZH(time, range)float32...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[259200 values with dtype=float32]
- sweep_mode()object...
[1 values with dtype=object]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()object...
[1 values with dtype=object]
- follow_mode()object...
[1 values with dtype=object]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
- VRADH(time, range)float64...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[259200 values with dtype=float64]
<xarray.DatasetView> Dimensions: (range: 720, time: 360) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.796e+05 1.799e+05 azimuth (time) float64 ... elevation (time) float64 ... * time (time) datetime64[ns] 2023-10-02T10:32:30.678500096 ..... Data variables: DBZH (time, range) float32 ... sweep_mode object ... sweep_number int64 ... prt_mode object ... follow_mode object ... sweep_fixed_angle float64 ... VRADH (time, range) float64 ...sweep_5- range: 496
- time: 360
- range(range)float32125.0 375.0 ... 1.236e+05 1.239e+05
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 123375., 123625., 123875.], dtype=float32) - azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2023-10-02T10:33:02.277499904 .....
- standard_name :
- time
array(['2023-10-02T10:33:02.277499904', '2023-10-02T10:33:02.332499968', '2023-10-02T10:33:02.388499968', ..., '2023-10-02T10:33:22.113500160', '2023-10-02T10:33:22.169499904', '2023-10-02T10:33:22.224500224'], dtype='datetime64[ns]')
- DBZH(time, range)float32...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[178560 values with dtype=float32]
- sweep_mode()object...
[1 values with dtype=object]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()object...
[1 values with dtype=object]
- follow_mode()object...
[1 values with dtype=object]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
- VRADH(time, range)float64...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[178560 values with dtype=float64]
<xarray.DatasetView> Dimensions: (range: 496, time: 360) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 1.236e+05 1.239e+05 azimuth (time) float64 ... elevation (time) float64 ... * time (time) datetime64[ns] 2023-10-02T10:33:02.277499904 ..... Data variables: DBZH (time, range) float32 ... sweep_mode object ... sweep_number int64 ... prt_mode object ... follow_mode object ... sweep_fixed_angle float64 ... VRADH (time, range) float64 ...sweep_6- range: 240
- time: 360
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2023-10-02T10:33:23.681499904 .....
- standard_name :
- time
array(['2023-10-02T10:33:23.681499904', '2023-10-02T10:33:23.714499840', '2023-10-02T10:33:23.748000256', ..., '2023-10-02T10:33:35.583000064', '2023-10-02T10:33:35.616000000', '2023-10-02T10:33:35.649499904'], dtype='datetime64[ns]')
- DBZH(time, range)float32...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[86400 values with dtype=float32]
- sweep_mode()object...
[1 values with dtype=object]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()object...
[1 values with dtype=object]
- follow_mode()object...
[1 values with dtype=object]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
- VRADH(time, range)float64...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[86400 values with dtype=float64]
<xarray.DatasetView> Dimensions: (range: 240, time: 360) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 azimuth (time) float64 ... elevation (time) float64 ... * time (time) datetime64[ns] 2023-10-02T10:33:23.681499904 ..... Data variables: DBZH (time, range) float32 ... sweep_mode object ... sweep_number int64 ... prt_mode object ... follow_mode object ... sweep_fixed_angle float64 ... VRADH (time, range) float64 ...sweep_7- range: 240
- time: 360
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2023-10-02T10:33:36.915500032 .....
- standard_name :
- time
array(['2023-10-02T10:33:36.915500032', '2023-10-02T10:33:36.948499968', '2023-10-02T10:33:36.982500096', ..., '2023-10-02T10:33:48.816999936', '2023-10-02T10:33:48.850500096', '2023-10-02T10:33:48.883500032'], dtype='datetime64[ns]')
- DBZH(time, range)float32...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[86400 values with dtype=float32]
- sweep_mode()object...
[1 values with dtype=object]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()object...
[1 values with dtype=object]
- follow_mode()object...
[1 values with dtype=object]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
- VRADH(time, range)float64...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[86400 values with dtype=float64]
<xarray.DatasetView> Dimensions: (range: 240, time: 360) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 azimuth (time) float64 ... elevation (time) float64 ... * time (time) datetime64[ns] 2023-10-02T10:33:36.915500032 ..... Data variables: DBZH (time, range) float32 ... sweep_mode object ... sweep_number int64 ... prt_mode object ... follow_mode object ... sweep_fixed_angle float64 ... VRADH (time, range) float64 ...sweep_8- range: 240
- time: 360
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2023-10-02T10:33:50.483500032 .....
- standard_name :
- time
array(['2023-10-02T10:33:50.483500032', '2023-10-02T10:33:50.516999936', '2023-10-02T10:33:50.549999872', ..., '2023-10-02T10:34:02.384999936', '2023-10-02T10:34:02.418499840', '2023-10-02T10:34:02.451500032'], dtype='datetime64[ns]')
- DBZH(time, range)float32...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[86400 values with dtype=float32]
- sweep_mode()object...
[1 values with dtype=object]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()object...
[1 values with dtype=object]
- follow_mode()object...
[1 values with dtype=object]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
- VRADH(time, range)float64...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[86400 values with dtype=float64]
<xarray.DatasetView> Dimensions: (range: 240, time: 360) Coordinates: * range (range) float32 125.0 375.0 625.0 ... 5.962e+04 5.988e+04 azimuth (time) float64 ... elevation (time) float64 ... * time (time) datetime64[ns] 2023-10-02T10:33:50.483500032 ..... Data variables: DBZH (time, range) float32 ... sweep_mode object ... sweep_number int64 ... prt_mode object ... follow_mode object ... sweep_fixed_angle float64 ... VRADH (time, range) float64 ...sweep_9- volume_number()int64...
[1 values with dtype=int64]
- platform_type()object...
[1 values with dtype=object]
- instrument_type()object...
[1 values with dtype=object]
- time_coverage_start()object...
[1 values with dtype=object]
- time_coverage_end()object...
[1 values with dtype=object]
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- Conventions :
- Cf/Radial
- version :
- 2.0
- title :
- None
- institution :
- None
- references :
- None
- source :
- None
- history :
- None: xradar v0.4.0 CfRadial2 export
- comment :
- im/exported using xradar
- instrument_name :
- None