Load ODIM_H5 Volume data from German Weather Service#
In this example, we obtain and read the last 2 hours of available volumetric radar data from German Weather Service available at opendata.dwd.de. Finally we do some plotting.
This retrieves 24 timesteps of the 10 sweeps (moments DBZH and VRADH) of the DWD volume scan of a distinct radar. This amounts to 480 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.
Warning
The following code is based on xarray and xradar. It claims multiple data files and presents them in a DataTree.
import glob
import os
import shutil
import warnings
from html.parser import HTMLParser
import cartopy.crs as ccrs
import certifi
import matplotlib.pyplot as plt
import numpy as np
import urllib3
import xarray as xr
import xradar as xd
from IPython.display import display
warnings.filterwarnings("ignore")
class DWDHTMLParser(HTMLParser):
def handle_starttag(self, tag, attrs):
if tag != "a":
return
self.links.append(attrs[0][1])
parser = DWDHTMLParser()
Download data from opendata.dwd.de#
radar = "ESS"
DBZH = "sweep_vol_z"
VRADH = "sweep_vol_v"
opendata_url1 = f"https://opendata.dwd.de/weather/radar/sites/{DBZH}/{radar.lower()}/hdf5/filter_polarimetric/"
http = urllib3.PoolManager(cert_reqs="CERT_REQUIRED", ca_certs=certifi.where())
response = http.request("GET", opendata_url1).data.decode("utf-8")
parser.links = []
parser.feed(response)
filelist1 = parser.links[1:]
filelist1.sort(key=lambda x: x.split("-")[2])
filelist1.reverse()
opendata_url2 = f"https://opendata.dwd.de/weather/radar/sites/{VRADH}/{radar.lower()}/hdf5/filter_polarimetric/"
http = urllib3.PoolManager(cert_reqs="CERT_REQUIRED", ca_certs=certifi.where())
response = http.request("GET", opendata_url2).data.decode("utf-8")
parser.links = []
parser.feed(response)
filelist2 = parser.links[1:]
filelist2.sort(key=lambda x: x.split("-")[2])
filelist2.reverse()
Clean up local folder#
flist = glob.glob("ras07*")
for f in flist:
os.remove(f)
Download latest 24 volumes to current directory#
for f in filelist1[: 10 * 25]:
with http.request(
"GET", os.path.join(opendata_url1, f), preload_content=False
) as r, open(f, "wb") as out:
shutil.copyfileobj(r, out)
for f in filelist2[: 10 * 25]:
with http.request(
"GET", os.path.join(opendata_url2, f), preload_content=False
) as r, open(f, "wb") as out:
shutil.copyfileobj(r, out)
volume_reflectivity = glob.glob("ras07*_dbzh_*")
volume_velocity = glob.glob("ras07*_vradh_*")
volume_reflectivity = np.array(
sorted(volume_reflectivity, key=lambda x: x.split("-")[2])
)
volume_velocity = np.array(sorted(volume_velocity, key=lambda x: x.split("-")[2]))
volume_reflectivity = volume_reflectivity.reshape(-1, 10).T
volume_velocity = volume_velocity.reshape(-1, 10).T
Read the data into xarray powered structure#
dsl = []
reindex_angle = dict(
tolerance=1.0, start_angle=0, stop_angle=360, angle_res=1.0, direction=1
)
for i, (r, v) in enumerate(zip(volume_reflectivity, volume_velocity)):
ds0 = [
xr.open_dataset(
r0,
engine="odim",
group="sweep_0",
reindex_angle=reindex_angle,
fix_second_angle=True,
)
for r0 in r
]
ds0 = [r0.assign_coords(sweep_mode=r0.sweep_mode.min()) for r0 in ds0]
ds1 = [
xr.open_dataset(
v0,
engine="odim",
group="sweep_0",
reindex_angle=reindex_angle,
fix_second_angle=True,
)
for v0 in v
]
ds1 = [r1.assign_coords(sweep_mode=r1.sweep_mode.min()) for r1 in ds1]
ds2 = [
xr.merge([r0, v0], compat="no_conflicts").assign(
volume_time=r0.time.min().dt.floor("5min")
)
for r0, v0 in zip(ds0, ds1)
]
ds2 = [r2.wrl.georef.georeference() for r2 in ds2]
ds = xr.concat(ds2, "volume_time")
dsl.append(ds)
vt_min = np.array([dsl[i].volume_time.min().values for i in range(10)])
vt_max = np.array([dsl[i].volume_time.max().values for i in range(10)])
if not all((vt_min == vt_min[0])):
dsl = [ds.sel(volume_time=slice(vt_min.max(), vt_max.min())) for ds in dsl]
else:
dsl = [ds.isel(volume_time=slice(1, -1)) for ds in dsl]
dsl = sorted(dsl, key=lambda ds: ds.time.min().values)
dtree = {"/": xd.io.backends.common._get_required_root_dataset(dsl, optional=False)}
for i, swp in enumerate(dsl):
dsl[i]["sweep_number"] = i
dtree = xd.io.backends.common._attach_sweep_groups(dtree, dsl)
vol = xr.DataTree.from_dict(dtree)
display(vol)
<xarray.DataTree>
Group: /
β Dimensions: (sweep: 10, volume_time: 24)
β Coordinates:
β * volume_time (volume_time) datetime64[ns] 192B 2026-04-30T06:00:0...
β longitude float64 8B 6.967
β altitude float64 8B 185.1
β latitude float64 8B 51.41
β Dimensions without coordinates: sweep
β Data variables:
β volume_number int64 8B 0
β platform_type <U5 20B 'fixed'
β instrument_type <U5 20B 'radar'
β time_coverage_start <U20 80B '2026-04-30T06:00:35Z'
β time_coverage_end <U20 80B '2026-04-30T07:59:02Z'
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β sweep_group_name (sweep, volume_time) int64 2kB 0 0 0 0 0 ... 0 0 0 0 0
β sweep_fixed_angle (sweep, volume_time) float64 2kB 5.499 5.499 ... 25.0
β Attributes:
β Conventions: ODIM_H5/V2_2
β instrument_name: None
β version: None
β title: None
β institution: None
β references: None
β source: None
β history: None
β comment: im/exported using xradar
βββ Group: /sweep_0
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 5.471 5.471 5.471 ... 5.471 5.471
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.086 3.257 ... -1.559e+03
β y (azimuth, range) float64 2MB 124.4 373.3 ... 1.787e+05
β z (azimuth, range) float64 2MB 197.0 220.9 ... 1.922e+04
β gr (azimuth, range) float64 2MB 124.4 373.3 ... 1.787e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 0
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 5.499 5.499 ... 5.499 5.499
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_1
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 4.493 4.493 4.493 ... 4.493 4.493
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.087 3.262 ... -1.562e+03
β y (azimuth, range) float64 2MB 124.6 373.8 ... 1.79e+05
β z (azimuth, range) float64 2MB 194.9 214.5 ... 1.617e+04
β gr (azimuth, range) float64 2MB 124.6 373.8 ... 1.79e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 1
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 4.499 4.499 ... 4.499 4.499
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_2
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 3.494 3.494 3.494 ... 3.494 3.494
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.089 3.266 ... -1.564e+03
β y (azimuth, range) float64 2MB 124.8 374.3 ... 1.793e+05
β z (azimuth, range) float64 2MB 192.7 208.0 ... 1.304e+04
β gr (azimuth, range) float64 2MB 124.8 374.3 ... 1.793e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 2
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 3.499 3.499 ... 3.499 3.499
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_3
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 2.483 2.483 2.483 ... 2.483 2.483
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.09 3.269 ... -1.567e+03
β y (azimuth, range) float64 2MB 124.9 374.6 ... 1.795e+05
β z (azimuth, range) float64 2MB 190.5 201.4 ... 9.878e+03
β gr (azimuth, range) float64 2MB 124.9 374.6 ... 1.795e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 3
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 2.499 2.499 ... 2.499 2.499
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_4
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 1.494 1.494 1.494 ... 1.494 1.494
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.09 3.271 ... -1.568e+03
β y (azimuth, range) float64 2MB 124.9 374.8 ... 1.797e+05
β z (azimuth, range) float64 2MB 188.4 194.9 ... 6.779e+03
β gr (azimuth, range) float64 2MB 125.0 374.9 ... 1.797e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 4
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 1.5 1.5 1.5 ... 1.5 1.5 1.5
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_5
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 0.4834 0.4834 ... 0.4834 0.4834
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.091 3.272 ... -1.569e+03
β y (azimuth, range) float64 2MB 125.0 375.0 ... 1.798e+05
β z (azimuth, range) float64 2MB 186.2 188.3 ... 3.608e+03
β gr (azimuth, range) float64 2MB 125.0 375.0 ... 1.798e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 5
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 0.4999 0.4999 ... 0.4999
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_6
β Dimensions: (volume_time: 24, azimuth: 360, range: 496)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 7.987 7.987 7.987 ... 7.987 7.987
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 2kB 125.0 375.0 ... 1.236e+05 1.239e+05
β x (azimuth, range) float64 1MB 1.08 3.241 ... -1.068e+03
β y (azimuth, range) float64 1MB 123.8 371.3 ... 1.224e+05
β z (azimuth, range) float64 1MB 202.5 237.2 ... 1.828e+04
β gr (azimuth, range) float64 1MB 123.8 371.4 ... 1.224e+05
β rays (azimuth, range) float64 1MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 714kB 125.0 375.0 ... 1.239e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 34MB -64.0 ... -...
β sweep_number int64 8B 6
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 7.998 7.998 ... 7.998 7.998
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 34MB -128.0 ... ...
βββ Group: /sweep_7
β Dimensions: (volume_time: 24, azimuth: 360, range: 240)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 11.99 11.99 11.99 ... 11.99 11.99
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04
β x (azimuth, range) float64 691kB 1.067 3.201 ... -510.3
β y (azimuth, range) float64 691kB 122.3 366.8 ... 5.848e+04
β z (azimuth, range) float64 691kB 211.1 263.0 ... 1.282e+04
β gr (azimuth, range) float64 691kB 122.3 366.8 ... 5.848e+04
β rays (azimuth, range) float64 691kB 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 346kB 125.0 375.0 ... 5.988e+04
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 17MB -64.0 ... -...
β sweep_number int64 8B 7
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 12.0 12.0 12.0 ... 12.0 12.0
β nyquist_velocity (volume_time) float64 192B 32.22 32.22 ... 32.22 32.22
β VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...
βββ Group: /sweep_8
β Dimensions: (volume_time: 24, azimuth: 360, range: 240)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (volume_time, azimuth) float64 69kB 16.97 16.97 ... 16.97
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04
β x (volume_time, azimuth, range) float64 17MB 1.043 ... -...
β y (volume_time, azimuth, range) float64 17MB 119.5 ... 5...
β z (volume_time, azimuth, range) float64 17MB 221.6 ... 1...
β gr (volume_time, azimuth, range) float64 17MB 119.6 ... 5...
β rays (azimuth, range) float64 691kB 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 346kB 125.0 375.0 ... 5.988e+04
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 17MB -64.0 ... -...
β sweep_number int64 8B 8
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 17.0 17.0 17.0 ... 17.0 17.0
β nyquist_velocity (volume_time) float64 192B 32.22 32.22 ... 32.22 32.22
β VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...
βββ Group: /sweep_9
Dimensions: (volume_time: 24, azimuth: 360, range: 240)
Coordinates:
* azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
elevation (volume_time, azimuth) float64 69kB 24.97 24.97 ... 24.97
time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
* range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04
x (volume_time, azimuth, range) float64 17MB 0.9888 ... ...
y (volume_time, azimuth, range) float64 17MB 113.3 ... 5...
z (volume_time, azimuth, range) float64 17MB 237.9 ... 2...
gr (volume_time, azimuth, range) float64 17MB 113.3 ... 5...
rays (azimuth, range) float64 691kB 0.5 0.5 ... 359.5 359.5
bins (azimuth, range) float32 346kB 125.0 375.0 ... 5.988e+04
sweep_mode object 8B 'azimuth_surveillance'
crs_wkt int64 8B 0
Data variables:
DBZH (volume_time, azimuth, range) float64 17MB -64.0 ... -...
sweep_number int64 8B 9
prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
sweep_fixed_angle (volume_time) float64 192B 25.0 25.0 25.0 ... 25.0 25.0
nyquist_velocity (volume_time) float64 192B 32.22 32.22 ... 32.22 32.22
VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], shape=(360,))
- elevation(azimuth)float645.471 5.471 5.471 ... 5.471 5.471
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,...5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141])
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:00:54.347499776 .....
- standard_name :
- time
array([['2026-04-30T06:00:54.347499776', '2026-04-30T06:00:54.411000064','2026-04-30T06:00:54.472999936', ...,'2026-04-30T06:00:54.158999808', '2026-04-30T06:00:54.221000192','2026-04-30T06:00:54.284000000'],['2026-04-30T06:05:54.520500224', '2026-04-30T06:05:54.583000064','2026-04-30T06:05:54.645500160', ...,'2026-04-30T06:05:54.332000000', '2026-04-30T06:05:54.395000064','2026-04-30T06:05:54.456999936'],['2026-04-30T06:10:54.539000064', '2026-04-30T06:10:54.601999872','2026-04-30T06:10:54.664499968', ...,'2026-04-30T06:10:54.352000000', '2026-04-30T06:10:54.413499904','2026-04-30T06:10:54.476000000'],...,['2026-04-30T07:45:54.543000064', '2026-04-30T07:45:54.605999872','2026-04-30T07:45:54.668000000', ...,'2026-04-30T07:45:54.354000128', '2026-04-30T07:45:54.416000000','2026-04-30T07:45:54.479499776'],['2026-04-30T07:50:54.537000192', '2026-04-30T07:50:54.600000000','2026-04-30T07:50:54.662000128', ...,'2026-04-30T07:50:54.348000000', '2026-04-30T07:50:54.409999872','2026-04-30T07:50:54.473499904'],['2026-04-30T07:55:54.351500032', '2026-04-30T07:55:54.415000064','2026-04-30T07:55:54.476999936', ...,'2026-04-30T07:55:54.163000064', '2026-04-30T07:55:54.224999936','2026-04-30T07:55:54.288000000']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.086 3.257 ... -1.559e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.08582226e+00, 3.25745762e+00, 5.42908077e+00, ...,1.55479507e+03, 1.55695703e+03, 1.55911898e+03],[ 3.25713601e+00, 9.77138059e+00, 1.62855886e+01, ...,4.66391161e+03, 4.67039683e+03, 4.67688201e+03],[ 5.42745762e+00, 1.62823271e+01, 2.71371356e+01, ...,7.77160747e+03, 7.78241398e+03, 7.79322042e+03],...,[-5.42745762e+00, -1.62823271e+01, -2.71371356e+01, ...,-7.77160747e+03, -7.78241398e+03, -7.79322042e+03],[-3.25713601e+00, -9.77138059e+00, -1.62855886e+01, ...,-4.66391161e+03, -4.67039683e+03, -4.67688201e+03],[-1.08582226e+00, -3.25745762e+00, -5.42908077e+00, ...,-1.55479507e+03, -1.55695703e+03, -1.55911898e+03]],shape=(360, 720))
- y(azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24422907e+02, 3.73267671e+02, 6.22111037e+02, ...,1.78161868e+05, 1.78409605e+05, 1.78657339e+05],[1.24385006e+02, 3.73153970e+02, 6.21921536e+02, ...,1.78107599e+05, 1.78355259e+05, 1.78602918e+05],[1.24309217e+02, 3.72926603e+02, 6.21542592e+02, ...,1.77999075e+05, 1.78246585e+05, 1.78494093e+05],...,[1.24309217e+02, 3.72926603e+02, 6.21542592e+02, ...,1.77999075e+05, 1.78246585e+05, 1.78494093e+05],[1.24385006e+02, 3.73153970e+02, 6.21921536e+02, ...,1.78107599e+05, 1.78355259e+05, 1.78602918e+05],[1.24422907e+02, 3.73267671e+02, 6.22111037e+02, ...,1.78161868e+05, 1.78409605e+05, 1.78657339e+05]], shape=(360, 720))
- z(azimuth, range)float64197.0 220.9 ... 1.919e+04 1.922e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583],[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583],[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583],...,[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583],[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583],[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583]], shape=(360, 720))
- gr(azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05],[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05],[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05],...,[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05],[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05],[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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
array([5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723,5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723,5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723,5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723,5.49865723, 5.49865723, 5.49865723, 5.49865723])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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. ]]],shape=(24, 360, 720))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], shape=(360,))
- elevation(azimuth)float644.493 4.493 4.493 ... 4.493 4.493
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,...4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082])
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:01:16.849500160 .....
- standard_name :
- time
array([['2026-04-30T06:01:16.849500160', '2026-04-30T06:01:16.912499968','2026-04-30T06:01:16.974999808', ...,'2026-04-30T06:01:16.660999936', '2026-04-30T06:01:16.723500032','2026-04-30T06:01:16.786500096'],['2026-04-30T06:06:17.023000064', '2026-04-30T06:06:17.085999872','2026-04-30T06:06:17.148499968', ...,'2026-04-30T06:06:16.834000128', '2026-04-30T06:06:16.896000000','2026-04-30T06:06:16.959499776'],['2026-04-30T06:11:17.041999872', '2026-04-30T06:11:17.104999936','2026-04-30T06:11:17.168000000', ...,'2026-04-30T06:11:16.852999936', '2026-04-30T06:11:16.915500288','2026-04-30T06:11:16.978000128'],...,['2026-04-30T07:46:17.045499904', '2026-04-30T07:46:17.108499968','2026-04-30T07:46:17.171000064', ...,'2026-04-30T07:46:16.856999936', '2026-04-30T07:46:16.918499840','2026-04-30T07:46:16.981500160'],['2026-04-30T07:51:17.039000064', '2026-04-30T07:51:17.101999872','2026-04-30T07:51:17.164999936', ...,'2026-04-30T07:51:16.849999872', '2026-04-30T07:51:16.912499968','2026-04-30T07:51:16.974999808'],['2026-04-30T07:56:16.853499904', '2026-04-30T07:56:16.916999936','2026-04-30T07:56:16.979000064', ...,'2026-04-30T07:56:16.665999872', '2026-04-30T07:56:16.728000256','2026-04-30T07:56:16.790999808']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.087 3.262 ... -1.562e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.08743918e+00, 3.26231000e+00, 5.43717079e+00, ...,1.55766769e+03, 1.55983442e+03, 1.56200114e+03],[ 3.26198629e+00, 9.78593628e+00, 1.63098561e+01, ...,4.67252858e+03, 4.67902811e+03, 4.68552761e+03],[ 5.43553977e+00, 1.63065817e+01, 2.71775734e+01, ...,7.78596618e+03, 7.79679653e+03, 7.80762683e+03],...,[-5.43553977e+00, -1.63065817e+01, -2.71775734e+01, ...,-7.78596618e+03, -7.79679653e+03, -7.80762683e+03],[-3.26198629e+00, -9.78593628e+00, -1.63098561e+01, ...,-4.67252858e+03, -4.67902811e+03, -4.68552761e+03],[-1.08743918e+00, -3.26231000e+00, -5.43717079e+00, ...,-1.55766769e+03, -1.55983442e+03, -1.56200114e+03]],shape=(360, 720))
- y(azimuth, range)float64124.6 373.8 ... 1.787e+05 1.79e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24608188e+02, 3.73823700e+02, 6.23038061e+02, ...,1.78491038e+05, 1.78739320e+05, 1.78987602e+05],[1.24570231e+02, 3.73709829e+02, 6.22848278e+02, ...,1.78436668e+05, 1.78684875e+05, 1.78933080e+05],[1.24494329e+02, 3.73482123e+02, 6.22468769e+02, ...,1.78327944e+05, 1.78576000e+05, 1.78824054e+05],...,[1.24494329e+02, 3.73482123e+02, 6.22468769e+02, ...,1.78327944e+05, 1.78576000e+05, 1.78824054e+05],[1.24570231e+02, 3.73709829e+02, 6.22848278e+02, ...,1.78436668e+05, 1.78684875e+05, 1.78933080e+05],[1.24608188e+02, 3.73823700e+02, 6.23038061e+02, ...,1.78491038e+05, 1.78739320e+05, 1.78987602e+05]], shape=(360, 720))
- z(azimuth, range)float64194.9 214.5 ... 1.614e+04 1.617e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ],[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ],[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ],...,[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ],[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ],[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ]], shape=(360, 720))
- gr(azimuth, range)float64124.6 373.8 ... 1.787e+05 1.79e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05],[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05],[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05],...,[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05],[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05],[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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
array([4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137,4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137,4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137,4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137,4.49890137, 4.49890137, 4.49890137, 4.49890137])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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. , -0.35938597, ...,-128. , -128. , -128. ],[-128. , -128. , -128. , ...,-128. , -128. , -128. ],[-128. , -128. , -128. , ...,-128. , -128. , -128. ],...,[-128. , -128. , -128. , ...,-128. , -128. , -128. ],[-128. , 0.69924009, -0.51173437, ...,-128. , -128. , -128. ],[-128. , 8.14087344, -0.36329234, ...,-128. , -128. , -128. ]]],shape=(24, 360, 720))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], shape=(360,))
- elevation(azimuth)float643.494 3.494 3.494 ... 3.494 3.494
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,...3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234])
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:01:39.352000 ... 2...
- standard_name :
- time
array([['2026-04-30T06:01:39.352000000', '2026-04-30T06:01:39.415000064','2026-04-30T06:01:39.477499904', ...,'2026-04-30T06:01:39.164000000', '2026-04-30T06:01:39.225999872','2026-04-30T06:01:39.288999936'],['2026-04-30T06:06:39.525499904', '2026-04-30T06:06:39.588000000','2026-04-30T06:06:39.650000128', ...,'2026-04-30T06:06:39.336999936', '2026-04-30T06:06:39.398499840','2026-04-30T06:06:39.461500160'],['2026-04-30T06:11:39.543500032', '2026-04-30T06:11:39.606999808','2026-04-30T06:11:39.669000192', ...,'2026-04-30T06:11:39.355000064', '2026-04-30T06:11:39.416999936','2026-04-30T06:11:39.480499968'],...,['2026-04-30T07:46:39.547500032', '2026-04-30T07:46:39.611000064','2026-04-30T07:46:39.672500224', ...,'2026-04-30T07:46:39.360000256', '2026-04-30T07:46:39.421999872','2026-04-30T07:46:39.484000000'],['2026-04-30T07:51:39.541500160', '2026-04-30T07:51:39.604999936','2026-04-30T07:51:39.666999808', ...,'2026-04-30T07:51:39.352999936', '2026-04-30T07:51:39.415000064','2026-04-30T07:51:39.478000128'],['2026-04-30T07:56:39.356500224', '2026-04-30T07:56:39.420000000','2026-04-30T07:56:39.481999872', ...,'2026-04-30T07:56:39.168000000', '2026-04-30T07:56:39.231000064','2026-04-30T07:56:39.292999936']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.089 3.266 ... -1.564e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.08876499e+00, 3.26628910e+00, 5.44380540e+00, ...,1.56013868e+03, 1.56230965e+03, 1.56448060e+03],[ 3.26596332e+00, 9.79787237e+00, 1.63297580e+01, ...,4.67994082e+03, 4.68645305e+03, 4.69296525e+03],[ 5.44216681e+00, 1.63264711e+01, 2.72107363e+01, ...,7.79831740e+03, 7.80916891e+03, 7.82002038e+03],...,[-5.44216681e+00, -1.63264711e+01, -2.72107363e+01, ...,-7.79831740e+03, -7.80916891e+03, -7.82002038e+03],[-3.26596332e+00, -9.79787237e+00, -1.63297580e+01, ...,-4.67994082e+03, -4.68645305e+03, -4.69296525e+03],[-1.08876499e+00, -3.26628910e+00, -5.44380540e+00, ...,-1.56013868e+03, -1.56230965e+03, -1.56448060e+03]],shape=(360, 720))
- y(azimuth, range)float64124.8 374.3 ... 1.79e+05 1.793e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24760111e+02, 3.74279659e+02, 6.23798312e+02, ...,1.78774186e+05, 1.79022954e+05, 1.79271720e+05],[1.24722107e+02, 3.74165650e+02, 6.23608297e+02, ...,1.78719729e+05, 1.78968422e+05, 1.79217112e+05],[1.24646113e+02, 3.73937667e+02, 6.23228325e+02, ...,1.78610833e+05, 1.78859374e+05, 1.79107913e+05],...,[1.24646113e+02, 3.73937667e+02, 6.23228325e+02, ...,1.78610833e+05, 1.78859374e+05, 1.79107913e+05],[1.24722107e+02, 3.74165650e+02, 6.23608297e+02, ...,1.78719729e+05, 1.78968422e+05, 1.79217112e+05],[1.24760111e+02, 3.74279659e+02, 6.23798312e+02, ...,1.78774186e+05, 1.79022954e+05, 1.79271720e+05]], shape=(360, 720))
- z(azimuth, range)float64192.7 208.0 ... 1.302e+04 1.304e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666],[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666],[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666],...,[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666],[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666],[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666]], shape=(360, 720))
- gr(azimuth, range)float64124.8 374.3 ... 1.79e+05 1.793e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05],[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05],[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05],...,[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05],[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05],[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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
array([3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551,3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551,3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551,3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551,3.49914551, 3.49914551, 3.49914551, 3.49914551])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 720))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], shape=(360,))
- elevation(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, 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, 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, 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, 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,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]2026-04-30T06:02:01.854000128 .....
- standard_name :
- time
array([['2026-04-30T06:02:01.854000128', '2026-04-30T06:02:01.916999936','2026-04-30T06:02:01.979499776', ...,'2026-04-30T06:02:01.665999872', '2026-04-30T06:02:01.729000192','2026-04-30T06:02:01.790999808'],['2026-04-30T06:07:02.027500032', '2026-04-30T06:07:02.091000064','2026-04-30T06:07:02.152999936', ...,'2026-04-30T06:07:01.839000064', '2026-04-30T06:07:01.900999936','2026-04-30T06:07:01.964499968'],['2026-04-30T06:12:02.046500096', '2026-04-30T06:12:02.110000128','2026-04-30T06:12:02.172000000', ...,'2026-04-30T06:12:01.858000128', '2026-04-30T06:12:01.920000000','2026-04-30T06:12:01.982999808'],...,['2026-04-30T07:47:02.049499904', '2026-04-30T07:47:02.112999936','2026-04-30T07:47:02.175000064', ...,'2026-04-30T07:47:01.861999872', '2026-04-30T07:47:01.923999744','2026-04-30T07:47:01.987000064'],['2026-04-30T07:52:02.044000256', '2026-04-30T07:52:02.107500032','2026-04-30T07:52:02.170000128', ...,'2026-04-30T07:52:01.855000064', '2026-04-30T07:52:01.917499904','2026-04-30T07:52:01.980000000'],['2026-04-30T07:57:01.859000064', '2026-04-30T07:57:01.921999872','2026-04-30T07:57:01.984499968', ...,'2026-04-30T07:57:01.670000128', '2026-04-30T07:57:01.732000000','2026-04-30T07:57:01.795500032']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.09 3.269 ... -1.567e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.08976840e+00, 3.26930103e+00, 5.44882808e+00, ...,1.56215640e+03, 1.56433098e+03, 1.56650555e+03],[ 3.26897325e+00, 9.80690722e+00, 1.63448245e+01, ...,4.68599335e+03, 4.69251643e+03, 4.69903949e+03],[ 5.44718233e+00, 1.63415261e+01, 2.72358421e+01, ...,7.80840291e+03, 7.81927250e+03, 7.83014205e+03],...,[-5.44718233e+00, -1.63415261e+01, -2.72358421e+01, ...,-7.80840291e+03, -7.81927250e+03, -7.83014205e+03],[-3.26897325e+00, -9.80690722e+00, -1.63448245e+01, ...,-4.68599335e+03, -4.69251643e+03, -4.69903949e+03],[-1.08976840e+00, -3.26930103e+00, -5.44882808e+00, ...,-1.56215640e+03, -1.56433098e+03, -1.56650555e+03]],shape=(360, 720))
- y(azimuth, range)float64124.9 374.6 ... 1.793e+05 1.795e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24875090e+02, 3.74624791e+02, 6.24373855e+02, ...,1.79005393e+05, 1.79254575e+05, 1.79503757e+05],[1.24837052e+02, 3.74510677e+02, 6.24183665e+02, ...,1.78950866e+05, 1.79199973e+05, 1.79449078e+05],[1.24760987e+02, 3.74282483e+02, 6.23803342e+02, ...,1.78841829e+05, 1.79090784e+05, 1.79339738e+05],...,[1.24760987e+02, 3.74282483e+02, 6.23803342e+02, ...,1.78841829e+05, 1.79090784e+05, 1.79339738e+05],[1.24837052e+02, 3.74510677e+02, 6.24183665e+02, ...,1.78950866e+05, 1.79199973e+05, 1.79449078e+05],[1.24875090e+02, 3.74624791e+02, 6.24373855e+02, ...,1.79005393e+05, 1.79254575e+05, 1.79503757e+05]], shape=(360, 720))
- z(azimuth, range)float64190.5 201.4 ... 9.862e+03 9.878e+03
- standard_name :
- height_above_ground
- units :
- metre
array([[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ],[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ],[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ],...,[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ],[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ],[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ]], shape=(360, 720))
- gr(azimuth, range)float64124.9 374.6 ... 1.793e+05 1.795e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05],[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05],[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05],...,[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05],[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05],[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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
array([2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965,2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965,2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965,2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965,2.49938965, 2.49938965, 2.49938965, 2.49938965])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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. ]]],shape=(24, 360, 720))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], shape=(360,))
- elevation(azimuth)float641.494 1.494 1.494 ... 1.494 1.494
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,...1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062])
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:02:24.356500224 .....
- standard_name :
- time
array([['2026-04-30T06:02:24.356500224', '2026-04-30T06:02:24.420000000','2026-04-30T06:02:24.481999872', ...,'2026-04-30T06:02:24.168999936', '2026-04-30T06:02:24.231000064','2026-04-30T06:02:24.293999872'],['2026-04-30T06:07:24.529999872', '2026-04-30T06:07:24.592999936','2026-04-30T06:07:24.655500032', ...,'2026-04-30T06:07:24.341000192', '2026-04-30T06:07:24.403500032','2026-04-30T06:07:24.466500096'],['2026-04-30T06:12:24.548999680', '2026-04-30T06:12:24.611000064','2026-04-30T06:12:24.673500160', ...,'2026-04-30T06:12:24.360499968', '2026-04-30T06:12:24.422999808','2026-04-30T06:12:24.485000192'],...,['2026-04-30T07:47:24.552499968', '2026-04-30T07:47:24.616000256','2026-04-30T07:47:24.677999872', ...,'2026-04-30T07:47:24.364000000', '2026-04-30T07:47:24.426000128','2026-04-30T07:47:24.488500224'],['2026-04-30T07:52:24.546000128', '2026-04-30T07:52:24.609000192','2026-04-30T07:52:24.672000000', ...,'2026-04-30T07:52:24.356999936', '2026-04-30T07:52:24.419499776','2026-04-30T07:52:24.481999872'],['2026-04-30T07:57:24.360499968', '2026-04-30T07:57:24.423500032','2026-04-30T07:57:24.486500096', ...,'2026-04-30T07:57:24.172999936', '2026-04-30T07:57:24.235000064','2026-04-30T07:57:24.297500160']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.09 3.271 ... -1.568e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.09042185e+00, 3.27126305e+00, 5.45210088e+00, ...,1.56366172e+03, 1.56583919e+03, 1.56801665e+03],[ 3.27093341e+00, 9.81279268e+00, 1.63546419e+01, ...,4.69050885e+03, 4.69704059e+03, 4.70357232e+03],[ 5.45044860e+00, 1.63513332e+01, 2.72522011e+01, ...,7.81592721e+03, 7.82681124e+03, 7.83769523e+03],...,[-5.45044860e+00, -1.63513332e+01, -2.72522011e+01, ...,-7.81592721e+03, -7.82681124e+03, -7.83769523e+03],[-3.27093341e+00, -9.81279268e+00, -1.63546419e+01, ...,-4.69050885e+03, -4.69704059e+03, -4.70357232e+03],[-1.09042185e+00, -3.27126305e+00, -5.45210088e+00, ...,-1.56366172e+03, -1.56583919e+03, -1.56801665e+03]],shape=(360, 720))
- y(azimuth, range)float64124.9 374.8 ... 1.794e+05 1.797e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24949968e+02, 3.74849617e+02, 6.24748880e+02, ...,1.79177886e+05, 1.79427399e+05, 1.79676911e+05],[1.24911907e+02, 3.74735434e+02, 6.24558576e+02, ...,1.79123306e+05, 1.79372744e+05, 1.79622180e+05],[1.24835797e+02, 3.74507103e+02, 6.24178025e+02, ...,1.79014164e+05, 1.79263450e+05, 1.79512734e+05],...,[1.24835797e+02, 3.74507103e+02, 6.24178025e+02, ...,1.79014164e+05, 1.79263450e+05, 1.79512734e+05],[1.24911907e+02, 3.74735434e+02, 6.24558576e+02, ...,1.79123306e+05, 1.79372744e+05, 1.79622180e+05],[1.24949968e+02, 3.74849617e+02, 6.24748880e+02, ...,1.79177886e+05, 1.79427399e+05, 1.79676911e+05]], shape=(360, 720))
- z(azimuth, range)float64188.4 194.9 ... 6.767e+03 6.779e+03
- standard_name :
- height_above_ground
- units :
- metre
array([[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474],[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474],[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474],...,[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474],[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474],[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474]], shape=(360, 720))
- gr(azimuth, range)float64125.0 374.9 ... 1.794e+05 1.797e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05],[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05],[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05],...,[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05],[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05],[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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 1.5 1.5
array([1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379,1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379,1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379,1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379,1.49963379, 1.49963379, 1.49963379, 1.49963379])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 720))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], shape=(360,))
- elevation(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, 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, 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, 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, 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,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]2026-04-30T06:02:52.348000 ... 2...
- standard_name :
- time
array([['2026-04-30T06:02:52.348000000', '2026-04-30T06:02:52.432000256','2026-04-30T06:02:52.514999808', ...,'2026-04-30T06:02:52.096499968', '2026-04-30T06:02:52.179999744','2026-04-30T06:02:52.263500032'],['2026-04-30T06:07:52.561999872', '2026-04-30T06:07:52.645500160','2026-04-30T06:07:52.729000192', ...,'2026-04-30T06:07:52.310999808', '2026-04-30T06:07:52.394000128','2026-04-30T06:07:52.477499904'],['2026-04-30T06:12:52.580999936', '2026-04-30T06:12:52.664999936','2026-04-30T06:12:52.748499968', ...,'2026-04-30T06:12:52.330999808', '2026-04-30T06:12:52.413000192','2026-04-30T06:12:52.497000192'],...,['2026-04-30T07:47:52.592500224', '2026-04-30T07:47:52.676499968','2026-04-30T07:47:52.759500032', ...,'2026-04-30T07:47:52.341500160', '2026-04-30T07:47:52.424499968','2026-04-30T07:47:52.508500224'],['2026-04-30T07:52:52.579500288', '2026-04-30T07:52:52.663499776','2026-04-30T07:52:52.747500032', ...,'2026-04-30T07:52:52.328999936', '2026-04-30T07:52:52.412000000','2026-04-30T07:52:52.495999744'],['2026-04-30T07:57:52.336999936', '2026-04-30T07:57:52.420999936','2026-04-30T07:57:52.504499968', ...,'2026-04-30T07:57:52.086999808', '2026-04-30T07:57:52.169499904','2026-04-30T07:57:52.252499968']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.091 3.272 ... -1.569e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.09075419e+00, 3.27226175e+00, 5.45376822e+00, ...,1.56472054e+03, 1.56690030e+03, 1.56908005e+03],[ 3.27193031e+00, 9.81578849e+00, 1.63596434e+01, ...,4.69368500e+03, 4.70022360e+03, 4.70676219e+03],[ 5.45210977e+00, 1.63563252e+01, 2.72605353e+01, ...,7.82121972e+03, 7.83211517e+03, 7.84301061e+03],...,[-5.45210977e+00, -1.63563252e+01, -2.72605353e+01, ...,-7.82121972e+03, -7.83211517e+03, -7.84301061e+03],[-3.27193031e+00, -9.81578849e+00, -1.63596434e+01, ...,-4.69368500e+03, -4.70022360e+03, -4.70676219e+03],[-1.09075419e+00, -3.27226175e+00, -5.45376822e+00, ...,-1.56472054e+03, -1.56690030e+03, -1.56908005e+03]],shape=(360, 720))
- y(azimuth, range)float64125.0 375.0 ... 1.795e+05 1.798e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24988050e+02, 3.74964057e+02, 6.24939939e+02, ...,1.79299215e+05, 1.79548990e+05, 1.79798765e+05],[1.24949977e+02, 3.74849839e+02, 6.24749576e+02, ...,1.79244599e+05, 1.79494298e+05, 1.79743997e+05],[1.24873844e+02, 3.74621438e+02, 6.24368908e+02, ...,1.79135383e+05, 1.79384930e+05, 1.79634476e+05],...,[1.24873844e+02, 3.74621438e+02, 6.24368908e+02, ...,1.79135383e+05, 1.79384930e+05, 1.79634476e+05],[1.24949977e+02, 3.74849839e+02, 6.24749576e+02, ...,1.79244599e+05, 1.79494298e+05, 1.79743997e+05],[1.24988050e+02, 3.74964057e+02, 6.24939939e+02, ...,1.79299215e+05, 1.79548990e+05, 1.79798765e+05]], shape=(360, 720))
- z(azimuth, range)float64186.2 188.3 ... 3.601e+03 3.608e+03
- standard_name :
- height_above_ground
- units :
- metre
array([[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166],[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166],[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166],...,[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166],[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166],[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166]], shape=(360, 720))
- gr(azimuth, range)float64125.0 375.0 ... 1.796e+05 1.798e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05],[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05],[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05],...,[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05],[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05],[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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, 0.49987793, 0.49987793, 0.49987793, 0.49987793,0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793,0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793,0.49987793, 0.49987793, 0.49987793, 0.49987793])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 720))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 496
- 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], shape=(360,))
- elevation(azimuth)float647.987 7.987 7.987 ... 7.987 7.987
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,...7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055])
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:03:15.375500288 .....
- standard_name :
- time
array([['2026-04-30T06:03:15.375500288', '2026-04-30T06:03:15.431500032','2026-04-30T06:03:15.487000064', ...,'2026-04-30T06:03:15.207500032', '2026-04-30T06:03:15.263500032','2026-04-30T06:03:15.318500096'],['2026-04-30T06:08:15.533500160', '2026-04-30T06:08:15.589499904','2026-04-30T06:08:15.645500160', ...,'2026-04-30T06:08:15.366499840', '2026-04-30T06:08:15.421999872','2026-04-30T06:08:15.477499904'],['2026-04-30T06:13:15.529499904', '2026-04-30T06:13:15.585999872','2026-04-30T06:13:15.641499904', ...,'2026-04-30T06:13:15.362499840', '2026-04-30T06:13:15.418000128','2026-04-30T06:13:15.473999872'],...,['2026-04-30T07:48:15.539000064', '2026-04-30T07:48:15.594500096','2026-04-30T07:48:15.649499904', ...,'2026-04-30T07:48:15.371500032', '2026-04-30T07:48:15.426499840','2026-04-30T07:48:15.483000064'],['2026-04-30T07:53:15.533999872', '2026-04-30T07:53:15.590000128','2026-04-30T07:53:15.645500160', ...,'2026-04-30T07:53:15.367000064', '2026-04-30T07:53:15.422500096','2026-04-30T07:53:15.478000128'],['2026-04-30T07:58:15.368499968', '2026-04-30T07:58:15.424499968','2026-04-30T07:58:15.480000000', ...,'2026-04-30T07:58:15.201499904', '2026-04-30T07:58:15.256999936','2026-04-30T07:58:15.312499968']],shape=(24, 360), 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.],shape=(496,), dtype=float32)
- x(azimuth, range)float641.08 3.241 ... -1.068e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.08020967e+00, 3.24061574e+00, 5.40100411e+00, ...,1.06394671e+03, 1.06609798e+03, 1.06824923e+03],[ 3.24029996e+00, 9.72086009e+00, 1.62013671e+01, ...,3.19151605e+03, 3.19796920e+03, 3.20442230e+03],[ 5.39940322e+00, 1.61981434e+01, 2.69967951e+01, ...,5.31811322e+03, 5.32886629e+03, 5.33961926e+03],...,[-5.39940322e+00, -1.61981434e+01, -2.69967951e+01, ...,-5.31811322e+03, -5.32886629e+03, -5.33961926e+03],[-3.24029996e+00, -9.72086009e+00, -1.62013671e+01, ...,-3.19151605e+03, -3.19796920e+03, -3.20442230e+03],[-1.08020967e+00, -3.24061574e+00, -5.40100411e+00, ...,-1.06394671e+03, -1.06609798e+03, -1.06824923e+03]],shape=(360, 496))
- y(azimuth, range)float64123.8 371.3 ... 1.222e+05 1.224e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[ 123.77976763, 371.3377828 , 618.89377084, ...,121916.21772034, 122162.72870005, 122409.23745979],[ 123.74206311, 371.22466971, 618.7052498 , ...,121879.0808594 , 122125.51674947, 122371.95042025],[ 123.66666557, 370.99847799, 618.32826515, ...,121804.81844975, 122051.10418343, 122297.38769918],...,[ 123.66666557, 370.99847799, 618.32826515, ...,121804.81844975, 122051.10418343, 122297.38769918],[ 123.74206311, 371.22466971, 618.7052498 , ...,121879.0808594 , 122125.51674947, 122371.95042025],[ 123.77976763, 371.3377828 , 618.89377084, ...,121916.21772034, 122162.72870005, 122409.23745979]],shape=(360, 496))
- z(azimuth, range)float64202.5 237.2 ... 1.824e+04 1.828e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455],[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455],[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455],...,[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455],[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455],[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455]], shape=(360, 496))
- gr(azimuth, range)float64123.8 371.4 ... 1.222e+05 1.224e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595],[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595],[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595],...,[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595],[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595],[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595]],shape=(360, 496))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 496))
- bins(azimuth, 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.],[ 125., 375., 625., ..., 123375., 123625., 123875.],[ 125., 375., 625., ..., 123375., 123625., 123875.],...,[ 125., 375., 625., ..., 123375., 123625., 123875.],[ 125., 375., 625., ..., 123375., 123625., 123875.],[ 125., 375., 625., ..., 123375., 123625., 123875.]],shape=(360, 496), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 496))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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
array([7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688,7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688,7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688,7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688,7.99804688, 7.99804688, 7.99804688, 7.99804688])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 496))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 240
- 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], shape=(360,))
- elevation(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, 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, 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, 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, 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,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]2026-04-30T06:03:30.508000 ... 2...
- standard_name :
- time
array([['2026-04-30T06:03:30.508000000', '2026-04-30T06:03:30.541500160','2026-04-30T06:03:30.574500096', ...,'2026-04-30T06:03:30.407500032', '2026-04-30T06:03:30.440499968','2026-04-30T06:03:30.473999872'],['2026-04-30T06:08:30.621999872', '2026-04-30T06:08:30.655500032','2026-04-30T06:08:30.689500160', ...,'2026-04-30T06:08:30.522000128', '2026-04-30T06:08:30.555000064','2026-04-30T06:08:30.588499968'],['2026-04-30T06:13:30.599500032', '2026-04-30T06:13:30.632999936','2026-04-30T06:13:30.666500096', ...,'2026-04-30T06:13:30.499000064', '2026-04-30T06:13:30.532499968','2026-04-30T06:13:30.565499904'],...,['2026-04-30T07:48:30.606499840', '2026-04-30T07:48:30.640499968','2026-04-30T07:48:30.673500160', ...,'2026-04-30T07:48:30.506000128', '2026-04-30T07:48:30.539500032','2026-04-30T07:48:30.572499968'],['2026-04-30T07:53:30.608000000', '2026-04-30T07:53:30.641499904','2026-04-30T07:53:30.674500096', ...,'2026-04-30T07:53:30.507500032', '2026-04-30T07:53:30.540499968','2026-04-30T07:53:30.574500096'],['2026-04-30T07:58:30.505500160', '2026-04-30T07:58:30.539000064','2026-04-30T07:58:30.572499968', ...,'2026-04-30T07:58:30.404999936', '2026-04-30T07:58:30.438499840','2026-04-30T07:58:30.471500032']],shape=(24, 360), 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.],shape=(240,), dtype=float32)
- x(azimuth, range)float641.067 3.201 5.335 ... -508.2 -510.3
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.06700849e+00, 3.20100587e+00, 5.33497715e+00, ...,5.06087405e+02, 5.08215128e+02, 5.10342824e+02],[ 3.20070044e+00, 9.60204256e+00, 1.60033064e+01, ...,1.51810806e+03, 1.52449058e+03, 1.53087302e+03],[ 5.33341742e+00, 1.60001544e+01, 2.66667608e+01, ...,2.52966628e+03, 2.54030165e+03, 2.55093689e+03],...,[-5.33341742e+00, -1.60001544e+01, -2.66667608e+01, ...,-2.52966628e+03, -2.54030165e+03, -2.55093689e+03],[-3.20070044e+00, -9.60204256e+00, -1.60033064e+01, ...,-1.51810806e+03, -1.52449058e+03, -1.53087302e+03],[-1.06700849e+00, -3.20100587e+00, -5.33497715e+00, ...,-5.06087405e+02, -5.08215128e+02, -5.10342824e+02]],shape=(360, 240))
- y(azimuth, range)float64122.3 366.8 ... 5.824e+04 5.848e+04
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[ 122.26706202, 366.79894202, 611.32782964, ...,57991.87256273, 58235.68549519, 58479.4953529 ],[ 122.22981829, 366.68721151, 611.14161326, ...,57974.20767657, 58217.94634125, 58461.68193211],[ 122.15534217, 366.46378452, 610.76923723, ...,57938.88328514, 58182.47343688, 58426.06051667],...,[ 122.15534217, 366.46378452, 610.76923723, ...,57938.88328514, 58182.47343688, 58426.06051667],[ 122.22981829, 366.68721151, 611.14161326, ...,57974.20767657, 58217.94634125, 58461.68193211],[ 122.26706202, 366.79894202, 611.32782964, ...,57991.87256273, 58235.68549519, 58479.4953529 ]], shape=(360, 240))
- z(azimuth, range)float64211.1 263.0 ... 1.277e+04 1.282e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482],[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482],[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482],...,[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482],[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482],[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482]], shape=(360, 240))
- gr(azimuth, range)float64122.3 366.8 ... 5.824e+04 5.848e+04
- standard_name :
- distance_from_radar
- units :
- metre
array([[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768],[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768],[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768],...,[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768],[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768],[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768]], shape=(360, 240))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 240))
- bins(azimuth, 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.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],...,[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.]],shape=(360, 240), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 240))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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, 12.00256348, 12.00256348, 12.00256348, 12.00256348,12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348,12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348,12.00256348, 12.00256348, 12.00256348, 12.00256348])
- nyquist_velocity(volume_time)float6432.22 32.22 32.22 ... 32.22 32.22
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 240))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 240
- 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], shape=(360,))
- 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.98486328, 16.98486328, 16.98486328, ..., 16.98486328,16.98486328, 16.98486328],[16.98486328, 16.98486328, 16.98486328, ..., 16.98486328,16.98486328, 16.98486328],...,[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]], shape=(24, 360))
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:03:42.508999936 .....
- standard_name :
- time
array([['2026-04-30T06:03:42.508999936', '2026-04-30T06:03:42.542500096','2026-04-30T06:03:42.576499968', ...,'2026-04-30T06:03:42.408499968', '2026-04-30T06:03:42.441499904','2026-04-30T06:03:42.475500032'],['2026-04-30T06:08:42.623000064', '2026-04-30T06:08:42.657499904','2026-04-30T06:08:42.690500096', ...,'2026-04-30T06:08:42.523000064', '2026-04-30T06:08:42.556499968','2026-04-30T06:08:42.589499904'],['2026-04-30T06:13:42.600500224', '2026-04-30T06:13:42.634000128','2026-04-30T06:13:42.667500032', ...,'2026-04-30T06:13:42.500000000', '2026-04-30T06:13:42.533499904','2026-04-30T06:13:42.566499840'],...,['2026-04-30T07:48:42.608000000', '2026-04-30T07:48:42.641499904','2026-04-30T07:48:42.675000064', ...,'2026-04-30T07:48:42.507500032', '2026-04-30T07:48:42.540499968','2026-04-30T07:48:42.574500096'],['2026-04-30T07:53:42.608999936', '2026-04-30T07:53:42.642499840','2026-04-30T07:53:42.676000000', ...,'2026-04-30T07:53:42.508999936', '2026-04-30T07:53:42.541500160','2026-04-30T07:53:42.575500032'],['2026-04-30T07:58:42.507000064', '2026-04-30T07:58:42.540499968','2026-04-30T07:58:42.573499904', ...,'2026-04-30T07:58:42.406500096', '2026-04-30T07:58:42.439500032','2026-04-30T07:58:42.472999936']],shape=(24, 360), 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.],shape=(240,), dtype=float32)
- x(volume_time, azimuth, range)float641.043 3.13 5.216 ... -496.6 -498.7
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[[ 1.04327148e+00, 3.12978753e+00, 5.21626769e+00, ...,4.94538685e+02, 4.96616629e+02, 4.98694536e+02],[ 3.12949666e+00, 9.38840924e+00, 1.56472142e+01, ...,1.48346541e+03, 1.48969861e+03, 1.49593170e+03],[ 5.21476856e+00, 1.56441711e+01, 2.60733943e+01, ...,2.47194026e+03, 2.48232682e+03, 2.49271319e+03],...,[-5.21476856e+00, -1.56441711e+01, -2.60733943e+01, ...,-2.47194026e+03, -2.48232682e+03, -2.49271319e+03],[-3.12949666e+00, -9.38840924e+00, -1.56472142e+01, ...,-1.48346541e+03, -1.48969861e+03, -1.49593170e+03],[-1.04327148e+00, -3.12978753e+00, -5.21626769e+00, ...,-4.94538685e+02, -4.96616629e+02, -4.98694536e+02]],[[ 1.04321040e+00, 3.12960427e+00, 5.21596223e+00, ...,4.94509099e+02, 4.96586916e+02, 4.98664697e+02],[ 3.12931343e+00, 9.38785951e+00, 1.56462979e+01, ...,1.48337667e+03, 1.48960948e+03, 1.49584219e+03],[ 5.21446324e+00, 1.56432551e+01, 2.60718675e+01, ...,2.47179238e+03, 2.48217830e+03, 2.49256404e+03],...-2.47194026e+03, -2.48232682e+03, -2.49271319e+03],[-3.12949666e+00, -9.38840924e+00, -1.56472142e+01, ...,-1.48346541e+03, -1.48969861e+03, -1.49593170e+03],[-1.04327148e+00, -3.12978753e+00, -5.21626769e+00, ...,-4.94538685e+02, -4.96616629e+02, -4.98694536e+02]],[[ 1.04327148e+00, 3.12978753e+00, 5.21626769e+00, ...,4.94538685e+02, 4.96616629e+02, 4.98694536e+02],[ 3.12949666e+00, 9.38840924e+00, 1.56472142e+01, ...,1.48346541e+03, 1.48969861e+03, 1.49593170e+03],[ 5.21476856e+00, 1.56441711e+01, 2.60733943e+01, ...,2.47194026e+03, 2.48232682e+03, 2.49271319e+03],...,[-5.21476856e+00, -1.56441711e+01, -2.60733943e+01, ...,-2.47194026e+03, -2.48232682e+03, -2.49271319e+03],[-3.12949666e+00, -9.38840924e+00, -1.56472142e+01, ...,-1.48346541e+03, -1.48969861e+03, -1.49593170e+03],[-1.04327148e+00, -3.12978753e+00, -5.21626769e+00, ...,-4.94538685e+02, -4.96616629e+02, -4.98694536e+02]]],shape=(24, 360, 240))
- y(volume_time, azimuth, range)float64119.5 358.6 ... 5.691e+04 5.714e+04
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[[ 119.547071 , 358.63812872, 597.72507383, ...,56668.52032876, 56906.62913154, 57144.73375795],[ 119.5106558 , 358.52888407, 597.54300099, ...,56651.25854851, 56889.29482104, 57127.32691848],[ 119.4378365 , 358.31042805, 597.17891075, ...,56616.74024611, 56854.63148024, 57092.51854182],...,[ 119.4378365 , 358.31042805, 597.17891075, ...,56616.74024611, 56854.63148024, 57092.51854182],[ 119.5106558 , 358.52888407, 597.54300099, ...,56651.25854851, 56889.29482104, 57127.32691848],[ 119.547071 , 358.63812872, 597.72507383, ...,56668.52032876, 56906.62913154, 57144.73375795]],[[ 119.54007168, 358.61712901, 597.6900714 , ...,56665.13016602, 56903.2244188 , 57141.31449291],[ 119.50365862, 358.50789076, 597.50800921, ...,56647.86941844, 56885.89114541, 57123.90869497],[ 119.43084358, 358.28944753, 597.1439403 , ...,56613.35318108, 56851.2298785 , 57089.10240108],...56616.74024611, 56854.63148024, 57092.51854182],[ 119.5106558 , 358.52888407, 597.54300099, ...,56651.25854851, 56889.29482104, 57127.32691848],[ 119.547071 , 358.63812872, 597.72507383, ...,56668.52032876, 56906.62913154, 57144.73375795]],[[ 119.547071 , 358.63812872, 597.72507383, ...,56668.52032876, 56906.62913154, 57144.73375795],[ 119.5106558 , 358.52888407, 597.54300099, ...,56651.25854851, 56889.29482104, 57127.32691848],[ 119.4378365 , 358.31042805, 597.17891075, ...,56616.74024611, 56854.63148024, 57092.51854182],...,[ 119.4378365 , 358.31042805, 597.17891075, ...,56616.74024611, 56854.63148024, 57092.51854182],[ 119.5106558 , 358.52888407, 597.54300099, ...,56651.25854851, 56889.29482104, 57127.32691848],[ 119.547071 , 358.63812872, 597.72507383, ...,56668.52032876, 56906.62913154, 57144.73375795]]],shape=(24, 360, 240))
- z(volume_time, azimuth, range)float64221.6 294.6 ... 1.778e+04 1.786e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],...,[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ]],[[ 221.62572354, 294.66222238, 367.70545675, ...,17719.25937281, 17793.88730666, 17868.52193031],[ 221.62572354, 294.66222238, 367.70545675, ...,17719.25937281, 17793.88730666, 17868.52193031],[ 221.62572354, 294.66222238, 367.70545675, ...,17719.25937281, 17793.88730666, 17868.52193031],...17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ]],[[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],...,[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ]]],shape=(24, 360, 240))
- gr(volume_time, azimuth, range)float64119.6 358.7 ... 5.691e+04 5.715e+04
- standard_name :
- distance_from_radar
- units :
- metre
array([[[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],...,[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717]],[[ 119.54462358, 358.63078457, 597.71283047, ...,56667.2878827 , 56905.39120173, 57143.49034192],[ 119.54462358, 358.63078457, 597.71283047, ...,56667.2878827 , 56905.39120173, 57143.49034192],[ 119.54462358, 358.63078457, 597.71283047, ...,56667.2878827 , 56905.39120173, 57143.49034192],...56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717]],[[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],...,[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717]]],shape=(24, 360, 240))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 240))
- bins(azimuth, 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.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],...,[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.]],shape=(360, 240), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 240))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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, 17.00134277, 17.00134277, 17.00134277, 17.00134277,17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277,17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277,17.00134277, 17.00134277, 17.00134277, 17.00134277])
- nyquist_velocity(volume_time)float6432.22 32.22 32.22 ... 32.22 32.22
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 240))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 240
- 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], shape=(360,))
- elevation(volume_time, azimuth)float6424.97 24.97 24.97 ... 24.97 24.97
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383],[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383],[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383],...,[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383],[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383],[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383]], shape=(24, 360))
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:03:54.509999872 .....
- standard_name :
- time
array([['2026-04-30T06:03:54.509999872', '2026-04-30T06:03:54.543500032','2026-04-30T06:03:54.577500160', ...,'2026-04-30T06:03:54.410000128', '2026-04-30T06:03:54.443000064','2026-04-30T06:03:54.476499968'],['2026-04-30T06:08:54.624499968', '2026-04-30T06:08:54.658499840','2026-04-30T06:08:54.691500032', ...,'2026-04-30T06:08:54.524499968', '2026-04-30T06:08:54.557499904','2026-04-30T06:08:54.591000064'],['2026-04-30T06:13:54.601999872', '2026-04-30T06:13:54.635500032','2026-04-30T06:13:54.668499968', ...,'2026-04-30T06:13:54.501499904', '2026-04-30T06:13:54.534500096','2026-04-30T06:13:54.568499968'],...,['2026-04-30T07:48:54.608999936', '2026-04-30T07:48:54.642499840','2026-04-30T07:48:54.676499968', ...,'2026-04-30T07:48:54.508999936', '2026-04-30T07:48:54.542000128','2026-04-30T07:48:54.575500032'],['2026-04-30T07:53:54.610000128', '2026-04-30T07:53:54.644000000','2026-04-30T07:53:54.677499904', ...,'2026-04-30T07:53:54.509999872', '2026-04-30T07:53:54.543000064','2026-04-30T07:53:54.576499968'],['2026-04-30T07:58:54.508000000', '2026-04-30T07:58:54.541500160','2026-04-30T07:58:54.574500096', ...,'2026-04-30T07:58:54.407500032', '2026-04-30T07:58:54.440499968','2026-04-30T07:58:54.473999872']],shape=(24, 360), 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.],shape=(240,), dtype=float32)
- x(volume_time, azimuth, range)float640.9888 2.966 ... -470.3 -472.2
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[[ 9.88813949e-01, 2.96640496e+00, 4.94394678e+00, ...,4.68300150e+02, 4.70266057e+02, 4.72231914e+02],[ 2.96614065e+00, 8.89831127e+00, 1.48303344e+01, ...,1.40475780e+03, 1.41065492e+03, 1.41655189e+03],[ 4.94256383e+00, 1.48275071e+01, 2.47122045e+01, ...,2.34078755e+03, 2.35061409e+03, 2.36044038e+03],...,[-4.94256383e+00, -1.48275071e+01, -2.47122045e+01, ...,-2.34078755e+03, -2.35061409e+03, -2.36044038e+03],[-2.96614065e+00, -8.89831127e+00, -1.48303344e+01, ...,-1.40475780e+03, -1.41065492e+03, -1.41655189e+03],[-9.88813949e-01, -2.96640496e+00, -4.94394678e+00, ...,-4.68300150e+02, -4.70266057e+02, -4.72231914e+02]],[[ 9.88813949e-01, 2.96640496e+00, 4.94394678e+00, ...,4.68300150e+02, 4.70266057e+02, 4.72231914e+02],[ 2.96614065e+00, 8.89831127e+00, 1.48303344e+01, ...,1.40475780e+03, 1.41065492e+03, 1.41655189e+03],[ 4.94256383e+00, 1.48275071e+01, 2.47122045e+01, ...,2.34078755e+03, 2.35061409e+03, 2.36044038e+03],...-2.34078755e+03, -2.35061409e+03, -2.36044038e+03],[-2.96614065e+00, -8.89831127e+00, -1.48303344e+01, ...,-1.40475780e+03, -1.41065492e+03, -1.41655189e+03],[-9.88813949e-01, -2.96640496e+00, -4.94394678e+00, ...,-4.68300150e+02, -4.70266057e+02, -4.72231914e+02]],[[ 9.88813949e-01, 2.96640496e+00, 4.94394678e+00, ...,4.68300150e+02, 4.70266057e+02, 4.72231914e+02],[ 2.96614065e+00, 8.89831127e+00, 1.48303344e+01, ...,1.40475780e+03, 1.41065492e+03, 1.41655189e+03],[ 4.94256383e+00, 1.48275071e+01, 2.47122045e+01, ...,2.34078755e+03, 2.35061409e+03, 2.36044038e+03],...,[-4.94256383e+00, -1.48275071e+01, -2.47122045e+01, ...,-2.34078755e+03, -2.35061409e+03, -2.36044038e+03],[-2.96614065e+00, -8.89831127e+00, -1.48303344e+01, ...,-1.40475780e+03, -1.41065492e+03, -1.41655189e+03],[-9.88813949e-01, -2.96640496e+00, -4.94394678e+00, ...,-4.68300150e+02, -4.70266057e+02, -4.72231914e+02]]],shape=(24, 360, 240))
- y(volume_time, azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.2033231 , 339.60574585, 566.00253726, ...,53612.84927825, 53837.91400282, 54062.9730704 ],...,[ 113.2033231 , 339.60574585, 566.00253726, ...,53612.84927825, 53837.91400282, 54062.9730704 ],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922]],[[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.2033231 , 339.60574585, 566.00253726, ...,53612.84927825, 53837.91400282, 54062.9730704 ],...53612.84927825, 53837.91400282, 54062.9730704 ],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922]],[[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.2033231 , 339.60574585, 566.00253726, ...,53612.84927825, 53837.91400282, 54062.9730704 ],...,[ 113.2033231 , 339.60574585, 566.00253726, ...,53612.84927825, 53837.91400282, 54062.9730704 ],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922]]],shape=(24, 360, 240))
- z(volume_time, azimuth, range)float64237.9 343.4 ... 2.553e+04 2.564e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],...,[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289]],[[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],...25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289]],[[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],...,[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289]]],shape=(24, 360, 240))
- gr(volume_time, azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- standard_name :
- distance_from_radar
- units :
- metre
array([[[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],...,[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273]],[[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],...53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273]],[[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],...,[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273]]],shape=(24, 360, 240))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 240))
- bins(azimuth, 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.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],...,[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.]],shape=(360, 240), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 240))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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, 24.99938965, 24.99938965, 24.99938965, 24.99938965,24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965,24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965,24.99938965, 24.99938965, 24.99938965, 24.99938965])
- nyquist_velocity(volume_time)float6432.22 32.22 32.22 ... 32.22 32.22
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 240))
- sweep: 10
- volume_time: 24
- volume_time(volume_time)datetime64[ns]2026-04-30T06:00:00 ... 2026-04-...
- standard_name :
- time
array(['2026-04-30T06:00:00.000000000', '2026-04-30T06:05:00.000000000', '2026-04-30T06:10:00.000000000', '2026-04-30T06:15:00.000000000', '2026-04-30T06:20:00.000000000', '2026-04-30T06:25:00.000000000', '2026-04-30T06:30:00.000000000', '2026-04-30T06:35:00.000000000', '2026-04-30T06:40:00.000000000', '2026-04-30T06:45:00.000000000', '2026-04-30T06:50:00.000000000', '2026-04-30T06:55:00.000000000', '2026-04-30T07:00:00.000000000', '2026-04-30T07:05:00.000000000', '2026-04-30T07:10:00.000000000', '2026-04-30T07:15:00.000000000', '2026-04-30T07:20:00.000000000', '2026-04-30T07:25:00.000000000', '2026-04-30T07:30:00.000000000', '2026-04-30T07:35:00.000000000', '2026-04-30T07:40:00.000000000', '2026-04-30T07:45:00.000000000', '2026-04-30T07:50:00.000000000', '2026-04-30T07:55:00.000000000'], dtype='datetime64[ns]') - 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)
- 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'2026-04-30T06:00:35Z'
array('2026-04-30T06:00:35Z', dtype='<U20') - time_coverage_end()<U20'2026-04-30T07:59:02Z'
array('2026-04-30T07:59:02Z', dtype='<U20') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- sweep_group_name(sweep, volume_time)int640 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0
array([[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]) - sweep_fixed_angle(sweep, volume_time)float645.499 5.499 5.499 ... 25.0 25.0
array([[ 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723], [ 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137], [ 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551], [ 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965], ... [ 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688], [12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348], [17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277], [24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965]])
- Conventions :
- ODIM_H5/V2_2
- instrument_name :
- None
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- None
- history :
- None
- comment :
- im/exported using xradar
Inspect structure#
Root Group#
vol.root
<xarray.DataTree>
Group: /
β Dimensions: (sweep: 10, volume_time: 24)
β Coordinates:
β * volume_time (volume_time) datetime64[ns] 192B 2026-04-30T06:00:0...
β longitude float64 8B 6.967
β altitude float64 8B 185.1
β latitude float64 8B 51.41
β Dimensions without coordinates: sweep
β Data variables:
β volume_number int64 8B 0
β platform_type <U5 20B 'fixed'
β instrument_type <U5 20B 'radar'
β time_coverage_start <U20 80B '2026-04-30T06:00:35Z'
β time_coverage_end <U20 80B '2026-04-30T07:59:02Z'
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β sweep_group_name (sweep, volume_time) int64 2kB 0 0 0 0 0 ... 0 0 0 0 0
β sweep_fixed_angle (sweep, volume_time) float64 2kB 5.499 5.499 ... 25.0
β Attributes:
β Conventions: ODIM_H5/V2_2
β instrument_name: None
β version: None
β title: None
β institution: None
β references: None
β source: None
β history: None
β comment: im/exported using xradar
βββ Group: /sweep_0
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 5.471 5.471 5.471 ... 5.471 5.471
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.086 3.257 ... -1.559e+03
β y (azimuth, range) float64 2MB 124.4 373.3 ... 1.787e+05
β z (azimuth, range) float64 2MB 197.0 220.9 ... 1.922e+04
β gr (azimuth, range) float64 2MB 124.4 373.3 ... 1.787e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 0
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 5.499 5.499 ... 5.499 5.499
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_1
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 4.493 4.493 4.493 ... 4.493 4.493
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.087 3.262 ... -1.562e+03
β y (azimuth, range) float64 2MB 124.6 373.8 ... 1.79e+05
β z (azimuth, range) float64 2MB 194.9 214.5 ... 1.617e+04
β gr (azimuth, range) float64 2MB 124.6 373.8 ... 1.79e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 1
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 4.499 4.499 ... 4.499 4.499
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_2
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 3.494 3.494 3.494 ... 3.494 3.494
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.089 3.266 ... -1.564e+03
β y (azimuth, range) float64 2MB 124.8 374.3 ... 1.793e+05
β z (azimuth, range) float64 2MB 192.7 208.0 ... 1.304e+04
β gr (azimuth, range) float64 2MB 124.8 374.3 ... 1.793e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 2
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 3.499 3.499 ... 3.499 3.499
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_3
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 2.483 2.483 2.483 ... 2.483 2.483
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.09 3.269 ... -1.567e+03
β y (azimuth, range) float64 2MB 124.9 374.6 ... 1.795e+05
β z (azimuth, range) float64 2MB 190.5 201.4 ... 9.878e+03
β gr (azimuth, range) float64 2MB 124.9 374.6 ... 1.795e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 3
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 2.499 2.499 ... 2.499 2.499
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_4
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 1.494 1.494 1.494 ... 1.494 1.494
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.09 3.271 ... -1.568e+03
β y (azimuth, range) float64 2MB 124.9 374.8 ... 1.797e+05
β z (azimuth, range) float64 2MB 188.4 194.9 ... 6.779e+03
β gr (azimuth, range) float64 2MB 125.0 374.9 ... 1.797e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 4
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 1.5 1.5 1.5 ... 1.5 1.5 1.5
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_5
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 0.4834 0.4834 ... 0.4834 0.4834
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.091 3.272 ... -1.569e+03
β y (azimuth, range) float64 2MB 125.0 375.0 ... 1.798e+05
β z (azimuth, range) float64 2MB 186.2 188.3 ... 3.608e+03
β gr (azimuth, range) float64 2MB 125.0 375.0 ... 1.798e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 5
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 0.4999 0.4999 ... 0.4999
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_6
β Dimensions: (volume_time: 24, azimuth: 360, range: 496)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 7.987 7.987 7.987 ... 7.987 7.987
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 2kB 125.0 375.0 ... 1.236e+05 1.239e+05
β x (azimuth, range) float64 1MB 1.08 3.241 ... -1.068e+03
β y (azimuth, range) float64 1MB 123.8 371.3 ... 1.224e+05
β z (azimuth, range) float64 1MB 202.5 237.2 ... 1.828e+04
β gr (azimuth, range) float64 1MB 123.8 371.4 ... 1.224e+05
β rays (azimuth, range) float64 1MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 714kB 125.0 375.0 ... 1.239e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 34MB -64.0 ... -...
β sweep_number int64 8B 6
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 7.998 7.998 ... 7.998 7.998
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 34MB -128.0 ... ...
βββ Group: /sweep_7
β Dimensions: (volume_time: 24, azimuth: 360, range: 240)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 11.99 11.99 11.99 ... 11.99 11.99
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04
β x (azimuth, range) float64 691kB 1.067 3.201 ... -510.3
β y (azimuth, range) float64 691kB 122.3 366.8 ... 5.848e+04
β z (azimuth, range) float64 691kB 211.1 263.0 ... 1.282e+04
β gr (azimuth, range) float64 691kB 122.3 366.8 ... 5.848e+04
β rays (azimuth, range) float64 691kB 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 346kB 125.0 375.0 ... 5.988e+04
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 17MB -64.0 ... -...
β sweep_number int64 8B 7
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 12.0 12.0 12.0 ... 12.0 12.0
β nyquist_velocity (volume_time) float64 192B 32.22 32.22 ... 32.22 32.22
β VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...
βββ Group: /sweep_8
β Dimensions: (volume_time: 24, azimuth: 360, range: 240)
β Coordinates:
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (volume_time, azimuth) float64 69kB 16.97 16.97 ... 16.97
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04
β x (volume_time, azimuth, range) float64 17MB 1.043 ... -...
β y (volume_time, azimuth, range) float64 17MB 119.5 ... 5...
β z (volume_time, azimuth, range) float64 17MB 221.6 ... 1...
β gr (volume_time, azimuth, range) float64 17MB 119.6 ... 5...
β rays (azimuth, range) float64 691kB 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 346kB 125.0 375.0 ... 5.988e+04
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 17MB -64.0 ... -...
β sweep_number int64 8B 8
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 17.0 17.0 17.0 ... 17.0 17.0
β nyquist_velocity (volume_time) float64 192B 32.22 32.22 ... 32.22 32.22
β VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...
βββ Group: /sweep_9
Dimensions: (volume_time: 24, azimuth: 360, range: 240)
Coordinates:
* azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
elevation (volume_time, azimuth) float64 69kB 24.97 24.97 ... 24.97
time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
* range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04
x (volume_time, azimuth, range) float64 17MB 0.9888 ... ...
y (volume_time, azimuth, range) float64 17MB 113.3 ... 5...
z (volume_time, azimuth, range) float64 17MB 237.9 ... 2...
gr (volume_time, azimuth, range) float64 17MB 113.3 ... 5...
rays (azimuth, range) float64 691kB 0.5 0.5 ... 359.5 359.5
bins (azimuth, range) float32 346kB 125.0 375.0 ... 5.988e+04
sweep_mode object 8B 'azimuth_surveillance'
crs_wkt int64 8B 0
Data variables:
DBZH (volume_time, azimuth, range) float64 17MB -64.0 ... -...
sweep_number int64 8B 9
prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
sweep_fixed_angle (volume_time) float64 192B 25.0 25.0 25.0 ... 25.0 25.0
nyquist_velocity (volume_time) float64 192B 32.22 32.22 ... 32.22 32.22
VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], shape=(360,))
- elevation(azimuth)float645.471 5.471 5.471 ... 5.471 5.471
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,...5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141])
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:00:54.347499776 .....
- standard_name :
- time
array([['2026-04-30T06:00:54.347499776', '2026-04-30T06:00:54.411000064','2026-04-30T06:00:54.472999936', ...,'2026-04-30T06:00:54.158999808', '2026-04-30T06:00:54.221000192','2026-04-30T06:00:54.284000000'],['2026-04-30T06:05:54.520500224', '2026-04-30T06:05:54.583000064','2026-04-30T06:05:54.645500160', ...,'2026-04-30T06:05:54.332000000', '2026-04-30T06:05:54.395000064','2026-04-30T06:05:54.456999936'],['2026-04-30T06:10:54.539000064', '2026-04-30T06:10:54.601999872','2026-04-30T06:10:54.664499968', ...,'2026-04-30T06:10:54.352000000', '2026-04-30T06:10:54.413499904','2026-04-30T06:10:54.476000000'],...,['2026-04-30T07:45:54.543000064', '2026-04-30T07:45:54.605999872','2026-04-30T07:45:54.668000000', ...,'2026-04-30T07:45:54.354000128', '2026-04-30T07:45:54.416000000','2026-04-30T07:45:54.479499776'],['2026-04-30T07:50:54.537000192', '2026-04-30T07:50:54.600000000','2026-04-30T07:50:54.662000128', ...,'2026-04-30T07:50:54.348000000', '2026-04-30T07:50:54.409999872','2026-04-30T07:50:54.473499904'],['2026-04-30T07:55:54.351500032', '2026-04-30T07:55:54.415000064','2026-04-30T07:55:54.476999936', ...,'2026-04-30T07:55:54.163000064', '2026-04-30T07:55:54.224999936','2026-04-30T07:55:54.288000000']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.086 3.257 ... -1.559e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.08582226e+00, 3.25745762e+00, 5.42908077e+00, ...,1.55479507e+03, 1.55695703e+03, 1.55911898e+03],[ 3.25713601e+00, 9.77138059e+00, 1.62855886e+01, ...,4.66391161e+03, 4.67039683e+03, 4.67688201e+03],[ 5.42745762e+00, 1.62823271e+01, 2.71371356e+01, ...,7.77160747e+03, 7.78241398e+03, 7.79322042e+03],...,[-5.42745762e+00, -1.62823271e+01, -2.71371356e+01, ...,-7.77160747e+03, -7.78241398e+03, -7.79322042e+03],[-3.25713601e+00, -9.77138059e+00, -1.62855886e+01, ...,-4.66391161e+03, -4.67039683e+03, -4.67688201e+03],[-1.08582226e+00, -3.25745762e+00, -5.42908077e+00, ...,-1.55479507e+03, -1.55695703e+03, -1.55911898e+03]],shape=(360, 720))
- y(azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24422907e+02, 3.73267671e+02, 6.22111037e+02, ...,1.78161868e+05, 1.78409605e+05, 1.78657339e+05],[1.24385006e+02, 3.73153970e+02, 6.21921536e+02, ...,1.78107599e+05, 1.78355259e+05, 1.78602918e+05],[1.24309217e+02, 3.72926603e+02, 6.21542592e+02, ...,1.77999075e+05, 1.78246585e+05, 1.78494093e+05],...,[1.24309217e+02, 3.72926603e+02, 6.21542592e+02, ...,1.77999075e+05, 1.78246585e+05, 1.78494093e+05],[1.24385006e+02, 3.73153970e+02, 6.21921536e+02, ...,1.78107599e+05, 1.78355259e+05, 1.78602918e+05],[1.24422907e+02, 3.73267671e+02, 6.22111037e+02, ...,1.78161868e+05, 1.78409605e+05, 1.78657339e+05]], shape=(360, 720))
- z(azimuth, range)float64197.0 220.9 ... 1.919e+04 1.922e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583],[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583],[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583],...,[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583],[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583],[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583]], shape=(360, 720))
- gr(azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05],[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05],[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05],...,[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05],[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05],[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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
array([5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723,5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723,5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723,5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723,5.49865723, 5.49865723, 5.49865723, 5.49865723])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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. ]]],shape=(24, 360, 720))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], shape=(360,))
- elevation(azimuth)float644.493 4.493 4.493 ... 4.493 4.493
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,...4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082])
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:01:16.849500160 .....
- standard_name :
- time
array([['2026-04-30T06:01:16.849500160', '2026-04-30T06:01:16.912499968','2026-04-30T06:01:16.974999808', ...,'2026-04-30T06:01:16.660999936', '2026-04-30T06:01:16.723500032','2026-04-30T06:01:16.786500096'],['2026-04-30T06:06:17.023000064', '2026-04-30T06:06:17.085999872','2026-04-30T06:06:17.148499968', ...,'2026-04-30T06:06:16.834000128', '2026-04-30T06:06:16.896000000','2026-04-30T06:06:16.959499776'],['2026-04-30T06:11:17.041999872', '2026-04-30T06:11:17.104999936','2026-04-30T06:11:17.168000000', ...,'2026-04-30T06:11:16.852999936', '2026-04-30T06:11:16.915500288','2026-04-30T06:11:16.978000128'],...,['2026-04-30T07:46:17.045499904', '2026-04-30T07:46:17.108499968','2026-04-30T07:46:17.171000064', ...,'2026-04-30T07:46:16.856999936', '2026-04-30T07:46:16.918499840','2026-04-30T07:46:16.981500160'],['2026-04-30T07:51:17.039000064', '2026-04-30T07:51:17.101999872','2026-04-30T07:51:17.164999936', ...,'2026-04-30T07:51:16.849999872', '2026-04-30T07:51:16.912499968','2026-04-30T07:51:16.974999808'],['2026-04-30T07:56:16.853499904', '2026-04-30T07:56:16.916999936','2026-04-30T07:56:16.979000064', ...,'2026-04-30T07:56:16.665999872', '2026-04-30T07:56:16.728000256','2026-04-30T07:56:16.790999808']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.087 3.262 ... -1.562e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.08743918e+00, 3.26231000e+00, 5.43717079e+00, ...,1.55766769e+03, 1.55983442e+03, 1.56200114e+03],[ 3.26198629e+00, 9.78593628e+00, 1.63098561e+01, ...,4.67252858e+03, 4.67902811e+03, 4.68552761e+03],[ 5.43553977e+00, 1.63065817e+01, 2.71775734e+01, ...,7.78596618e+03, 7.79679653e+03, 7.80762683e+03],...,[-5.43553977e+00, -1.63065817e+01, -2.71775734e+01, ...,-7.78596618e+03, -7.79679653e+03, -7.80762683e+03],[-3.26198629e+00, -9.78593628e+00, -1.63098561e+01, ...,-4.67252858e+03, -4.67902811e+03, -4.68552761e+03],[-1.08743918e+00, -3.26231000e+00, -5.43717079e+00, ...,-1.55766769e+03, -1.55983442e+03, -1.56200114e+03]],shape=(360, 720))
- y(azimuth, range)float64124.6 373.8 ... 1.787e+05 1.79e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24608188e+02, 3.73823700e+02, 6.23038061e+02, ...,1.78491038e+05, 1.78739320e+05, 1.78987602e+05],[1.24570231e+02, 3.73709829e+02, 6.22848278e+02, ...,1.78436668e+05, 1.78684875e+05, 1.78933080e+05],[1.24494329e+02, 3.73482123e+02, 6.22468769e+02, ...,1.78327944e+05, 1.78576000e+05, 1.78824054e+05],...,[1.24494329e+02, 3.73482123e+02, 6.22468769e+02, ...,1.78327944e+05, 1.78576000e+05, 1.78824054e+05],[1.24570231e+02, 3.73709829e+02, 6.22848278e+02, ...,1.78436668e+05, 1.78684875e+05, 1.78933080e+05],[1.24608188e+02, 3.73823700e+02, 6.23038061e+02, ...,1.78491038e+05, 1.78739320e+05, 1.78987602e+05]], shape=(360, 720))
- z(azimuth, range)float64194.9 214.5 ... 1.614e+04 1.617e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ],[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ],[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ],...,[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ],[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ],[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ]], shape=(360, 720))
- gr(azimuth, range)float64124.6 373.8 ... 1.787e+05 1.79e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05],[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05],[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05],...,[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05],[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05],[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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
array([4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137,4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137,4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137,4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137,4.49890137, 4.49890137, 4.49890137, 4.49890137])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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. , -0.35938597, ...,-128. , -128. , -128. ],[-128. , -128. , -128. , ...,-128. , -128. , -128. ],[-128. , -128. , -128. , ...,-128. , -128. , -128. ],...,[-128. , -128. , -128. , ...,-128. , -128. , -128. ],[-128. , 0.69924009, -0.51173437, ...,-128. , -128. , -128. ],[-128. , 8.14087344, -0.36329234, ...,-128. , -128. , -128. ]]],shape=(24, 360, 720))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], shape=(360,))
- elevation(azimuth)float643.494 3.494 3.494 ... 3.494 3.494
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,...3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234])
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:01:39.352000 ... 2...
- standard_name :
- time
array([['2026-04-30T06:01:39.352000000', '2026-04-30T06:01:39.415000064','2026-04-30T06:01:39.477499904', ...,'2026-04-30T06:01:39.164000000', '2026-04-30T06:01:39.225999872','2026-04-30T06:01:39.288999936'],['2026-04-30T06:06:39.525499904', '2026-04-30T06:06:39.588000000','2026-04-30T06:06:39.650000128', ...,'2026-04-30T06:06:39.336999936', '2026-04-30T06:06:39.398499840','2026-04-30T06:06:39.461500160'],['2026-04-30T06:11:39.543500032', '2026-04-30T06:11:39.606999808','2026-04-30T06:11:39.669000192', ...,'2026-04-30T06:11:39.355000064', '2026-04-30T06:11:39.416999936','2026-04-30T06:11:39.480499968'],...,['2026-04-30T07:46:39.547500032', '2026-04-30T07:46:39.611000064','2026-04-30T07:46:39.672500224', ...,'2026-04-30T07:46:39.360000256', '2026-04-30T07:46:39.421999872','2026-04-30T07:46:39.484000000'],['2026-04-30T07:51:39.541500160', '2026-04-30T07:51:39.604999936','2026-04-30T07:51:39.666999808', ...,'2026-04-30T07:51:39.352999936', '2026-04-30T07:51:39.415000064','2026-04-30T07:51:39.478000128'],['2026-04-30T07:56:39.356500224', '2026-04-30T07:56:39.420000000','2026-04-30T07:56:39.481999872', ...,'2026-04-30T07:56:39.168000000', '2026-04-30T07:56:39.231000064','2026-04-30T07:56:39.292999936']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.089 3.266 ... -1.564e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.08876499e+00, 3.26628910e+00, 5.44380540e+00, ...,1.56013868e+03, 1.56230965e+03, 1.56448060e+03],[ 3.26596332e+00, 9.79787237e+00, 1.63297580e+01, ...,4.67994082e+03, 4.68645305e+03, 4.69296525e+03],[ 5.44216681e+00, 1.63264711e+01, 2.72107363e+01, ...,7.79831740e+03, 7.80916891e+03, 7.82002038e+03],...,[-5.44216681e+00, -1.63264711e+01, -2.72107363e+01, ...,-7.79831740e+03, -7.80916891e+03, -7.82002038e+03],[-3.26596332e+00, -9.79787237e+00, -1.63297580e+01, ...,-4.67994082e+03, -4.68645305e+03, -4.69296525e+03],[-1.08876499e+00, -3.26628910e+00, -5.44380540e+00, ...,-1.56013868e+03, -1.56230965e+03, -1.56448060e+03]],shape=(360, 720))
- y(azimuth, range)float64124.8 374.3 ... 1.79e+05 1.793e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24760111e+02, 3.74279659e+02, 6.23798312e+02, ...,1.78774186e+05, 1.79022954e+05, 1.79271720e+05],[1.24722107e+02, 3.74165650e+02, 6.23608297e+02, ...,1.78719729e+05, 1.78968422e+05, 1.79217112e+05],[1.24646113e+02, 3.73937667e+02, 6.23228325e+02, ...,1.78610833e+05, 1.78859374e+05, 1.79107913e+05],...,[1.24646113e+02, 3.73937667e+02, 6.23228325e+02, ...,1.78610833e+05, 1.78859374e+05, 1.79107913e+05],[1.24722107e+02, 3.74165650e+02, 6.23608297e+02, ...,1.78719729e+05, 1.78968422e+05, 1.79217112e+05],[1.24760111e+02, 3.74279659e+02, 6.23798312e+02, ...,1.78774186e+05, 1.79022954e+05, 1.79271720e+05]], shape=(360, 720))
- z(azimuth, range)float64192.7 208.0 ... 1.302e+04 1.304e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666],[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666],[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666],...,[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666],[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666],[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666]], shape=(360, 720))
- gr(azimuth, range)float64124.8 374.3 ... 1.79e+05 1.793e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05],[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05],[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05],...,[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05],[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05],[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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
array([3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551,3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551,3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551,3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551,3.49914551, 3.49914551, 3.49914551, 3.49914551])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 720))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], shape=(360,))
- elevation(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, 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, 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, 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, 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,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]2026-04-30T06:02:01.854000128 .....
- standard_name :
- time
array([['2026-04-30T06:02:01.854000128', '2026-04-30T06:02:01.916999936','2026-04-30T06:02:01.979499776', ...,'2026-04-30T06:02:01.665999872', '2026-04-30T06:02:01.729000192','2026-04-30T06:02:01.790999808'],['2026-04-30T06:07:02.027500032', '2026-04-30T06:07:02.091000064','2026-04-30T06:07:02.152999936', ...,'2026-04-30T06:07:01.839000064', '2026-04-30T06:07:01.900999936','2026-04-30T06:07:01.964499968'],['2026-04-30T06:12:02.046500096', '2026-04-30T06:12:02.110000128','2026-04-30T06:12:02.172000000', ...,'2026-04-30T06:12:01.858000128', '2026-04-30T06:12:01.920000000','2026-04-30T06:12:01.982999808'],...,['2026-04-30T07:47:02.049499904', '2026-04-30T07:47:02.112999936','2026-04-30T07:47:02.175000064', ...,'2026-04-30T07:47:01.861999872', '2026-04-30T07:47:01.923999744','2026-04-30T07:47:01.987000064'],['2026-04-30T07:52:02.044000256', '2026-04-30T07:52:02.107500032','2026-04-30T07:52:02.170000128', ...,'2026-04-30T07:52:01.855000064', '2026-04-30T07:52:01.917499904','2026-04-30T07:52:01.980000000'],['2026-04-30T07:57:01.859000064', '2026-04-30T07:57:01.921999872','2026-04-30T07:57:01.984499968', ...,'2026-04-30T07:57:01.670000128', '2026-04-30T07:57:01.732000000','2026-04-30T07:57:01.795500032']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.09 3.269 ... -1.567e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.08976840e+00, 3.26930103e+00, 5.44882808e+00, ...,1.56215640e+03, 1.56433098e+03, 1.56650555e+03],[ 3.26897325e+00, 9.80690722e+00, 1.63448245e+01, ...,4.68599335e+03, 4.69251643e+03, 4.69903949e+03],[ 5.44718233e+00, 1.63415261e+01, 2.72358421e+01, ...,7.80840291e+03, 7.81927250e+03, 7.83014205e+03],...,[-5.44718233e+00, -1.63415261e+01, -2.72358421e+01, ...,-7.80840291e+03, -7.81927250e+03, -7.83014205e+03],[-3.26897325e+00, -9.80690722e+00, -1.63448245e+01, ...,-4.68599335e+03, -4.69251643e+03, -4.69903949e+03],[-1.08976840e+00, -3.26930103e+00, -5.44882808e+00, ...,-1.56215640e+03, -1.56433098e+03, -1.56650555e+03]],shape=(360, 720))
- y(azimuth, range)float64124.9 374.6 ... 1.793e+05 1.795e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24875090e+02, 3.74624791e+02, 6.24373855e+02, ...,1.79005393e+05, 1.79254575e+05, 1.79503757e+05],[1.24837052e+02, 3.74510677e+02, 6.24183665e+02, ...,1.78950866e+05, 1.79199973e+05, 1.79449078e+05],[1.24760987e+02, 3.74282483e+02, 6.23803342e+02, ...,1.78841829e+05, 1.79090784e+05, 1.79339738e+05],...,[1.24760987e+02, 3.74282483e+02, 6.23803342e+02, ...,1.78841829e+05, 1.79090784e+05, 1.79339738e+05],[1.24837052e+02, 3.74510677e+02, 6.24183665e+02, ...,1.78950866e+05, 1.79199973e+05, 1.79449078e+05],[1.24875090e+02, 3.74624791e+02, 6.24373855e+02, ...,1.79005393e+05, 1.79254575e+05, 1.79503757e+05]], shape=(360, 720))
- z(azimuth, range)float64190.5 201.4 ... 9.862e+03 9.878e+03
- standard_name :
- height_above_ground
- units :
- metre
array([[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ],[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ],[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ],...,[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ],[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ],[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ]], shape=(360, 720))
- gr(azimuth, range)float64124.9 374.6 ... 1.793e+05 1.795e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05],[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05],[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05],...,[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05],[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05],[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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
array([2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965,2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965,2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965,2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965,2.49938965, 2.49938965, 2.49938965, 2.49938965])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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. ]]],shape=(24, 360, 720))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], shape=(360,))
- elevation(azimuth)float641.494 1.494 1.494 ... 1.494 1.494
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,...1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062])
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:02:24.356500224 .....
- standard_name :
- time
array([['2026-04-30T06:02:24.356500224', '2026-04-30T06:02:24.420000000','2026-04-30T06:02:24.481999872', ...,'2026-04-30T06:02:24.168999936', '2026-04-30T06:02:24.231000064','2026-04-30T06:02:24.293999872'],['2026-04-30T06:07:24.529999872', '2026-04-30T06:07:24.592999936','2026-04-30T06:07:24.655500032', ...,'2026-04-30T06:07:24.341000192', '2026-04-30T06:07:24.403500032','2026-04-30T06:07:24.466500096'],['2026-04-30T06:12:24.548999680', '2026-04-30T06:12:24.611000064','2026-04-30T06:12:24.673500160', ...,'2026-04-30T06:12:24.360499968', '2026-04-30T06:12:24.422999808','2026-04-30T06:12:24.485000192'],...,['2026-04-30T07:47:24.552499968', '2026-04-30T07:47:24.616000256','2026-04-30T07:47:24.677999872', ...,'2026-04-30T07:47:24.364000000', '2026-04-30T07:47:24.426000128','2026-04-30T07:47:24.488500224'],['2026-04-30T07:52:24.546000128', '2026-04-30T07:52:24.609000192','2026-04-30T07:52:24.672000000', ...,'2026-04-30T07:52:24.356999936', '2026-04-30T07:52:24.419499776','2026-04-30T07:52:24.481999872'],['2026-04-30T07:57:24.360499968', '2026-04-30T07:57:24.423500032','2026-04-30T07:57:24.486500096', ...,'2026-04-30T07:57:24.172999936', '2026-04-30T07:57:24.235000064','2026-04-30T07:57:24.297500160']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.09 3.271 ... -1.568e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.09042185e+00, 3.27126305e+00, 5.45210088e+00, ...,1.56366172e+03, 1.56583919e+03, 1.56801665e+03],[ 3.27093341e+00, 9.81279268e+00, 1.63546419e+01, ...,4.69050885e+03, 4.69704059e+03, 4.70357232e+03],[ 5.45044860e+00, 1.63513332e+01, 2.72522011e+01, ...,7.81592721e+03, 7.82681124e+03, 7.83769523e+03],...,[-5.45044860e+00, -1.63513332e+01, -2.72522011e+01, ...,-7.81592721e+03, -7.82681124e+03, -7.83769523e+03],[-3.27093341e+00, -9.81279268e+00, -1.63546419e+01, ...,-4.69050885e+03, -4.69704059e+03, -4.70357232e+03],[-1.09042185e+00, -3.27126305e+00, -5.45210088e+00, ...,-1.56366172e+03, -1.56583919e+03, -1.56801665e+03]],shape=(360, 720))
- y(azimuth, range)float64124.9 374.8 ... 1.794e+05 1.797e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24949968e+02, 3.74849617e+02, 6.24748880e+02, ...,1.79177886e+05, 1.79427399e+05, 1.79676911e+05],[1.24911907e+02, 3.74735434e+02, 6.24558576e+02, ...,1.79123306e+05, 1.79372744e+05, 1.79622180e+05],[1.24835797e+02, 3.74507103e+02, 6.24178025e+02, ...,1.79014164e+05, 1.79263450e+05, 1.79512734e+05],...,[1.24835797e+02, 3.74507103e+02, 6.24178025e+02, ...,1.79014164e+05, 1.79263450e+05, 1.79512734e+05],[1.24911907e+02, 3.74735434e+02, 6.24558576e+02, ...,1.79123306e+05, 1.79372744e+05, 1.79622180e+05],[1.24949968e+02, 3.74849617e+02, 6.24748880e+02, ...,1.79177886e+05, 1.79427399e+05, 1.79676911e+05]], shape=(360, 720))
- z(azimuth, range)float64188.4 194.9 ... 6.767e+03 6.779e+03
- standard_name :
- height_above_ground
- units :
- metre
array([[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474],[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474],[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474],...,[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474],[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474],[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474]], shape=(360, 720))
- gr(azimuth, range)float64125.0 374.9 ... 1.794e+05 1.797e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05],[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05],[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05],...,[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05],[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05],[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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 1.5 1.5
array([1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379,1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379,1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379,1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379,1.49963379, 1.49963379, 1.49963379, 1.49963379])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 720))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], shape=(360,))
- elevation(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, 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, 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, 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, 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,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]2026-04-30T06:02:52.348000 ... 2...
- standard_name :
- time
array([['2026-04-30T06:02:52.348000000', '2026-04-30T06:02:52.432000256','2026-04-30T06:02:52.514999808', ...,'2026-04-30T06:02:52.096499968', '2026-04-30T06:02:52.179999744','2026-04-30T06:02:52.263500032'],['2026-04-30T06:07:52.561999872', '2026-04-30T06:07:52.645500160','2026-04-30T06:07:52.729000192', ...,'2026-04-30T06:07:52.310999808', '2026-04-30T06:07:52.394000128','2026-04-30T06:07:52.477499904'],['2026-04-30T06:12:52.580999936', '2026-04-30T06:12:52.664999936','2026-04-30T06:12:52.748499968', ...,'2026-04-30T06:12:52.330999808', '2026-04-30T06:12:52.413000192','2026-04-30T06:12:52.497000192'],...,['2026-04-30T07:47:52.592500224', '2026-04-30T07:47:52.676499968','2026-04-30T07:47:52.759500032', ...,'2026-04-30T07:47:52.341500160', '2026-04-30T07:47:52.424499968','2026-04-30T07:47:52.508500224'],['2026-04-30T07:52:52.579500288', '2026-04-30T07:52:52.663499776','2026-04-30T07:52:52.747500032', ...,'2026-04-30T07:52:52.328999936', '2026-04-30T07:52:52.412000000','2026-04-30T07:52:52.495999744'],['2026-04-30T07:57:52.336999936', '2026-04-30T07:57:52.420999936','2026-04-30T07:57:52.504499968', ...,'2026-04-30T07:57:52.086999808', '2026-04-30T07:57:52.169499904','2026-04-30T07:57:52.252499968']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.091 3.272 ... -1.569e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.09075419e+00, 3.27226175e+00, 5.45376822e+00, ...,1.56472054e+03, 1.56690030e+03, 1.56908005e+03],[ 3.27193031e+00, 9.81578849e+00, 1.63596434e+01, ...,4.69368500e+03, 4.70022360e+03, 4.70676219e+03],[ 5.45210977e+00, 1.63563252e+01, 2.72605353e+01, ...,7.82121972e+03, 7.83211517e+03, 7.84301061e+03],...,[-5.45210977e+00, -1.63563252e+01, -2.72605353e+01, ...,-7.82121972e+03, -7.83211517e+03, -7.84301061e+03],[-3.27193031e+00, -9.81578849e+00, -1.63596434e+01, ...,-4.69368500e+03, -4.70022360e+03, -4.70676219e+03],[-1.09075419e+00, -3.27226175e+00, -5.45376822e+00, ...,-1.56472054e+03, -1.56690030e+03, -1.56908005e+03]],shape=(360, 720))
- y(azimuth, range)float64125.0 375.0 ... 1.795e+05 1.798e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24988050e+02, 3.74964057e+02, 6.24939939e+02, ...,1.79299215e+05, 1.79548990e+05, 1.79798765e+05],[1.24949977e+02, 3.74849839e+02, 6.24749576e+02, ...,1.79244599e+05, 1.79494298e+05, 1.79743997e+05],[1.24873844e+02, 3.74621438e+02, 6.24368908e+02, ...,1.79135383e+05, 1.79384930e+05, 1.79634476e+05],...,[1.24873844e+02, 3.74621438e+02, 6.24368908e+02, ...,1.79135383e+05, 1.79384930e+05, 1.79634476e+05],[1.24949977e+02, 3.74849839e+02, 6.24749576e+02, ...,1.79244599e+05, 1.79494298e+05, 1.79743997e+05],[1.24988050e+02, 3.74964057e+02, 6.24939939e+02, ...,1.79299215e+05, 1.79548990e+05, 1.79798765e+05]], shape=(360, 720))
- z(azimuth, range)float64186.2 188.3 ... 3.601e+03 3.608e+03
- standard_name :
- height_above_ground
- units :
- metre
array([[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166],[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166],[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166],...,[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166],[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166],[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166]], shape=(360, 720))
- gr(azimuth, range)float64125.0 375.0 ... 1.796e+05 1.798e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05],[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05],[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05],...,[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05],[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05],[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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, 0.49987793, 0.49987793, 0.49987793, 0.49987793,0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793,0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793,0.49987793, 0.49987793, 0.49987793, 0.49987793])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 720))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 496
- 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], shape=(360,))
- elevation(azimuth)float647.987 7.987 7.987 ... 7.987 7.987
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,...7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055])
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:03:15.375500288 .....
- standard_name :
- time
array([['2026-04-30T06:03:15.375500288', '2026-04-30T06:03:15.431500032','2026-04-30T06:03:15.487000064', ...,'2026-04-30T06:03:15.207500032', '2026-04-30T06:03:15.263500032','2026-04-30T06:03:15.318500096'],['2026-04-30T06:08:15.533500160', '2026-04-30T06:08:15.589499904','2026-04-30T06:08:15.645500160', ...,'2026-04-30T06:08:15.366499840', '2026-04-30T06:08:15.421999872','2026-04-30T06:08:15.477499904'],['2026-04-30T06:13:15.529499904', '2026-04-30T06:13:15.585999872','2026-04-30T06:13:15.641499904', ...,'2026-04-30T06:13:15.362499840', '2026-04-30T06:13:15.418000128','2026-04-30T06:13:15.473999872'],...,['2026-04-30T07:48:15.539000064', '2026-04-30T07:48:15.594500096','2026-04-30T07:48:15.649499904', ...,'2026-04-30T07:48:15.371500032', '2026-04-30T07:48:15.426499840','2026-04-30T07:48:15.483000064'],['2026-04-30T07:53:15.533999872', '2026-04-30T07:53:15.590000128','2026-04-30T07:53:15.645500160', ...,'2026-04-30T07:53:15.367000064', '2026-04-30T07:53:15.422500096','2026-04-30T07:53:15.478000128'],['2026-04-30T07:58:15.368499968', '2026-04-30T07:58:15.424499968','2026-04-30T07:58:15.480000000', ...,'2026-04-30T07:58:15.201499904', '2026-04-30T07:58:15.256999936','2026-04-30T07:58:15.312499968']],shape=(24, 360), 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.],shape=(496,), dtype=float32)
- x(azimuth, range)float641.08 3.241 ... -1.068e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.08020967e+00, 3.24061574e+00, 5.40100411e+00, ...,1.06394671e+03, 1.06609798e+03, 1.06824923e+03],[ 3.24029996e+00, 9.72086009e+00, 1.62013671e+01, ...,3.19151605e+03, 3.19796920e+03, 3.20442230e+03],[ 5.39940322e+00, 1.61981434e+01, 2.69967951e+01, ...,5.31811322e+03, 5.32886629e+03, 5.33961926e+03],...,[-5.39940322e+00, -1.61981434e+01, -2.69967951e+01, ...,-5.31811322e+03, -5.32886629e+03, -5.33961926e+03],[-3.24029996e+00, -9.72086009e+00, -1.62013671e+01, ...,-3.19151605e+03, -3.19796920e+03, -3.20442230e+03],[-1.08020967e+00, -3.24061574e+00, -5.40100411e+00, ...,-1.06394671e+03, -1.06609798e+03, -1.06824923e+03]],shape=(360, 496))
- y(azimuth, range)float64123.8 371.3 ... 1.222e+05 1.224e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[ 123.77976763, 371.3377828 , 618.89377084, ...,121916.21772034, 122162.72870005, 122409.23745979],[ 123.74206311, 371.22466971, 618.7052498 , ...,121879.0808594 , 122125.51674947, 122371.95042025],[ 123.66666557, 370.99847799, 618.32826515, ...,121804.81844975, 122051.10418343, 122297.38769918],...,[ 123.66666557, 370.99847799, 618.32826515, ...,121804.81844975, 122051.10418343, 122297.38769918],[ 123.74206311, 371.22466971, 618.7052498 , ...,121879.0808594 , 122125.51674947, 122371.95042025],[ 123.77976763, 371.3377828 , 618.89377084, ...,121916.21772034, 122162.72870005, 122409.23745979]],shape=(360, 496))
- z(azimuth, range)float64202.5 237.2 ... 1.824e+04 1.828e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455],[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455],[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455],...,[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455],[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455],[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455]], shape=(360, 496))
- gr(azimuth, range)float64123.8 371.4 ... 1.222e+05 1.224e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595],[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595],[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595],...,[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595],[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595],[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595]],shape=(360, 496))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 496))
- bins(azimuth, 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.],[ 125., 375., 625., ..., 123375., 123625., 123875.],[ 125., 375., 625., ..., 123375., 123625., 123875.],...,[ 125., 375., 625., ..., 123375., 123625., 123875.],[ 125., 375., 625., ..., 123375., 123625., 123875.],[ 125., 375., 625., ..., 123375., 123625., 123875.]],shape=(360, 496), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 496))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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
array([7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688,7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688,7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688,7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688,7.99804688, 7.99804688, 7.99804688, 7.99804688])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 496))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 240
- 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], shape=(360,))
- elevation(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, 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, 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, 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, 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,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]2026-04-30T06:03:30.508000 ... 2...
- standard_name :
- time
array([['2026-04-30T06:03:30.508000000', '2026-04-30T06:03:30.541500160','2026-04-30T06:03:30.574500096', ...,'2026-04-30T06:03:30.407500032', '2026-04-30T06:03:30.440499968','2026-04-30T06:03:30.473999872'],['2026-04-30T06:08:30.621999872', '2026-04-30T06:08:30.655500032','2026-04-30T06:08:30.689500160', ...,'2026-04-30T06:08:30.522000128', '2026-04-30T06:08:30.555000064','2026-04-30T06:08:30.588499968'],['2026-04-30T06:13:30.599500032', '2026-04-30T06:13:30.632999936','2026-04-30T06:13:30.666500096', ...,'2026-04-30T06:13:30.499000064', '2026-04-30T06:13:30.532499968','2026-04-30T06:13:30.565499904'],...,['2026-04-30T07:48:30.606499840', '2026-04-30T07:48:30.640499968','2026-04-30T07:48:30.673500160', ...,'2026-04-30T07:48:30.506000128', '2026-04-30T07:48:30.539500032','2026-04-30T07:48:30.572499968'],['2026-04-30T07:53:30.608000000', '2026-04-30T07:53:30.641499904','2026-04-30T07:53:30.674500096', ...,'2026-04-30T07:53:30.507500032', '2026-04-30T07:53:30.540499968','2026-04-30T07:53:30.574500096'],['2026-04-30T07:58:30.505500160', '2026-04-30T07:58:30.539000064','2026-04-30T07:58:30.572499968', ...,'2026-04-30T07:58:30.404999936', '2026-04-30T07:58:30.438499840','2026-04-30T07:58:30.471500032']],shape=(24, 360), 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.],shape=(240,), dtype=float32)
- x(azimuth, range)float641.067 3.201 5.335 ... -508.2 -510.3
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.06700849e+00, 3.20100587e+00, 5.33497715e+00, ...,5.06087405e+02, 5.08215128e+02, 5.10342824e+02],[ 3.20070044e+00, 9.60204256e+00, 1.60033064e+01, ...,1.51810806e+03, 1.52449058e+03, 1.53087302e+03],[ 5.33341742e+00, 1.60001544e+01, 2.66667608e+01, ...,2.52966628e+03, 2.54030165e+03, 2.55093689e+03],...,[-5.33341742e+00, -1.60001544e+01, -2.66667608e+01, ...,-2.52966628e+03, -2.54030165e+03, -2.55093689e+03],[-3.20070044e+00, -9.60204256e+00, -1.60033064e+01, ...,-1.51810806e+03, -1.52449058e+03, -1.53087302e+03],[-1.06700849e+00, -3.20100587e+00, -5.33497715e+00, ...,-5.06087405e+02, -5.08215128e+02, -5.10342824e+02]],shape=(360, 240))
- y(azimuth, range)float64122.3 366.8 ... 5.824e+04 5.848e+04
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[ 122.26706202, 366.79894202, 611.32782964, ...,57991.87256273, 58235.68549519, 58479.4953529 ],[ 122.22981829, 366.68721151, 611.14161326, ...,57974.20767657, 58217.94634125, 58461.68193211],[ 122.15534217, 366.46378452, 610.76923723, ...,57938.88328514, 58182.47343688, 58426.06051667],...,[ 122.15534217, 366.46378452, 610.76923723, ...,57938.88328514, 58182.47343688, 58426.06051667],[ 122.22981829, 366.68721151, 611.14161326, ...,57974.20767657, 58217.94634125, 58461.68193211],[ 122.26706202, 366.79894202, 611.32782964, ...,57991.87256273, 58235.68549519, 58479.4953529 ]], shape=(360, 240))
- z(azimuth, range)float64211.1 263.0 ... 1.277e+04 1.282e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482],[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482],[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482],...,[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482],[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482],[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482]], shape=(360, 240))
- gr(azimuth, range)float64122.3 366.8 ... 5.824e+04 5.848e+04
- standard_name :
- distance_from_radar
- units :
- metre
array([[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768],[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768],[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768],...,[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768],[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768],[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768]], shape=(360, 240))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 240))
- bins(azimuth, 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.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],...,[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.]],shape=(360, 240), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 240))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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, 12.00256348, 12.00256348, 12.00256348, 12.00256348,12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348,12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348,12.00256348, 12.00256348, 12.00256348, 12.00256348])
- nyquist_velocity(volume_time)float6432.22 32.22 32.22 ... 32.22 32.22
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 240))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 240
- 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], shape=(360,))
- 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.98486328, 16.98486328, 16.98486328, ..., 16.98486328,16.98486328, 16.98486328],[16.98486328, 16.98486328, 16.98486328, ..., 16.98486328,16.98486328, 16.98486328],...,[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]], shape=(24, 360))
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:03:42.508999936 .....
- standard_name :
- time
array([['2026-04-30T06:03:42.508999936', '2026-04-30T06:03:42.542500096','2026-04-30T06:03:42.576499968', ...,'2026-04-30T06:03:42.408499968', '2026-04-30T06:03:42.441499904','2026-04-30T06:03:42.475500032'],['2026-04-30T06:08:42.623000064', '2026-04-30T06:08:42.657499904','2026-04-30T06:08:42.690500096', ...,'2026-04-30T06:08:42.523000064', '2026-04-30T06:08:42.556499968','2026-04-30T06:08:42.589499904'],['2026-04-30T06:13:42.600500224', '2026-04-30T06:13:42.634000128','2026-04-30T06:13:42.667500032', ...,'2026-04-30T06:13:42.500000000', '2026-04-30T06:13:42.533499904','2026-04-30T06:13:42.566499840'],...,['2026-04-30T07:48:42.608000000', '2026-04-30T07:48:42.641499904','2026-04-30T07:48:42.675000064', ...,'2026-04-30T07:48:42.507500032', '2026-04-30T07:48:42.540499968','2026-04-30T07:48:42.574500096'],['2026-04-30T07:53:42.608999936', '2026-04-30T07:53:42.642499840','2026-04-30T07:53:42.676000000', ...,'2026-04-30T07:53:42.508999936', '2026-04-30T07:53:42.541500160','2026-04-30T07:53:42.575500032'],['2026-04-30T07:58:42.507000064', '2026-04-30T07:58:42.540499968','2026-04-30T07:58:42.573499904', ...,'2026-04-30T07:58:42.406500096', '2026-04-30T07:58:42.439500032','2026-04-30T07:58:42.472999936']],shape=(24, 360), 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.],shape=(240,), dtype=float32)
- x(volume_time, azimuth, range)float641.043 3.13 5.216 ... -496.6 -498.7
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[[ 1.04327148e+00, 3.12978753e+00, 5.21626769e+00, ...,4.94538685e+02, 4.96616629e+02, 4.98694536e+02],[ 3.12949666e+00, 9.38840924e+00, 1.56472142e+01, ...,1.48346541e+03, 1.48969861e+03, 1.49593170e+03],[ 5.21476856e+00, 1.56441711e+01, 2.60733943e+01, ...,2.47194026e+03, 2.48232682e+03, 2.49271319e+03],...,[-5.21476856e+00, -1.56441711e+01, -2.60733943e+01, ...,-2.47194026e+03, -2.48232682e+03, -2.49271319e+03],[-3.12949666e+00, -9.38840924e+00, -1.56472142e+01, ...,-1.48346541e+03, -1.48969861e+03, -1.49593170e+03],[-1.04327148e+00, -3.12978753e+00, -5.21626769e+00, ...,-4.94538685e+02, -4.96616629e+02, -4.98694536e+02]],[[ 1.04321040e+00, 3.12960427e+00, 5.21596223e+00, ...,4.94509099e+02, 4.96586916e+02, 4.98664697e+02],[ 3.12931343e+00, 9.38785951e+00, 1.56462979e+01, ...,1.48337667e+03, 1.48960948e+03, 1.49584219e+03],[ 5.21446324e+00, 1.56432551e+01, 2.60718675e+01, ...,2.47179238e+03, 2.48217830e+03, 2.49256404e+03],...-2.47194026e+03, -2.48232682e+03, -2.49271319e+03],[-3.12949666e+00, -9.38840924e+00, -1.56472142e+01, ...,-1.48346541e+03, -1.48969861e+03, -1.49593170e+03],[-1.04327148e+00, -3.12978753e+00, -5.21626769e+00, ...,-4.94538685e+02, -4.96616629e+02, -4.98694536e+02]],[[ 1.04327148e+00, 3.12978753e+00, 5.21626769e+00, ...,4.94538685e+02, 4.96616629e+02, 4.98694536e+02],[ 3.12949666e+00, 9.38840924e+00, 1.56472142e+01, ...,1.48346541e+03, 1.48969861e+03, 1.49593170e+03],[ 5.21476856e+00, 1.56441711e+01, 2.60733943e+01, ...,2.47194026e+03, 2.48232682e+03, 2.49271319e+03],...,[-5.21476856e+00, -1.56441711e+01, -2.60733943e+01, ...,-2.47194026e+03, -2.48232682e+03, -2.49271319e+03],[-3.12949666e+00, -9.38840924e+00, -1.56472142e+01, ...,-1.48346541e+03, -1.48969861e+03, -1.49593170e+03],[-1.04327148e+00, -3.12978753e+00, -5.21626769e+00, ...,-4.94538685e+02, -4.96616629e+02, -4.98694536e+02]]],shape=(24, 360, 240))
- y(volume_time, azimuth, range)float64119.5 358.6 ... 5.691e+04 5.714e+04
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[[ 119.547071 , 358.63812872, 597.72507383, ...,56668.52032876, 56906.62913154, 57144.73375795],[ 119.5106558 , 358.52888407, 597.54300099, ...,56651.25854851, 56889.29482104, 57127.32691848],[ 119.4378365 , 358.31042805, 597.17891075, ...,56616.74024611, 56854.63148024, 57092.51854182],...,[ 119.4378365 , 358.31042805, 597.17891075, ...,56616.74024611, 56854.63148024, 57092.51854182],[ 119.5106558 , 358.52888407, 597.54300099, ...,56651.25854851, 56889.29482104, 57127.32691848],[ 119.547071 , 358.63812872, 597.72507383, ...,56668.52032876, 56906.62913154, 57144.73375795]],[[ 119.54007168, 358.61712901, 597.6900714 , ...,56665.13016602, 56903.2244188 , 57141.31449291],[ 119.50365862, 358.50789076, 597.50800921, ...,56647.86941844, 56885.89114541, 57123.90869497],[ 119.43084358, 358.28944753, 597.1439403 , ...,56613.35318108, 56851.2298785 , 57089.10240108],...56616.74024611, 56854.63148024, 57092.51854182],[ 119.5106558 , 358.52888407, 597.54300099, ...,56651.25854851, 56889.29482104, 57127.32691848],[ 119.547071 , 358.63812872, 597.72507383, ...,56668.52032876, 56906.62913154, 57144.73375795]],[[ 119.547071 , 358.63812872, 597.72507383, ...,56668.52032876, 56906.62913154, 57144.73375795],[ 119.5106558 , 358.52888407, 597.54300099, ...,56651.25854851, 56889.29482104, 57127.32691848],[ 119.4378365 , 358.31042805, 597.17891075, ...,56616.74024611, 56854.63148024, 57092.51854182],...,[ 119.4378365 , 358.31042805, 597.17891075, ...,56616.74024611, 56854.63148024, 57092.51854182],[ 119.5106558 , 358.52888407, 597.54300099, ...,56651.25854851, 56889.29482104, 57127.32691848],[ 119.547071 , 358.63812872, 597.72507383, ...,56668.52032876, 56906.62913154, 57144.73375795]]],shape=(24, 360, 240))
- z(volume_time, azimuth, range)float64221.6 294.6 ... 1.778e+04 1.786e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],...,[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ]],[[ 221.62572354, 294.66222238, 367.70545675, ...,17719.25937281, 17793.88730666, 17868.52193031],[ 221.62572354, 294.66222238, 367.70545675, ...,17719.25937281, 17793.88730666, 17868.52193031],[ 221.62572354, 294.66222238, 367.70545675, ...,17719.25937281, 17793.88730666, 17868.52193031],...17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ]],[[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],...,[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ]]],shape=(24, 360, 240))
- gr(volume_time, azimuth, range)float64119.6 358.7 ... 5.691e+04 5.715e+04
- standard_name :
- distance_from_radar
- units :
- metre
array([[[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],...,[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717]],[[ 119.54462358, 358.63078457, 597.71283047, ...,56667.2878827 , 56905.39120173, 57143.49034192],[ 119.54462358, 358.63078457, 597.71283047, ...,56667.2878827 , 56905.39120173, 57143.49034192],[ 119.54462358, 358.63078457, 597.71283047, ...,56667.2878827 , 56905.39120173, 57143.49034192],...56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717]],[[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],...,[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717]]],shape=(24, 360, 240))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 240))
- bins(azimuth, 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.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],...,[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.]],shape=(360, 240), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 240))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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, 17.00134277, 17.00134277, 17.00134277, 17.00134277,17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277,17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277,17.00134277, 17.00134277, 17.00134277, 17.00134277])
- nyquist_velocity(volume_time)float6432.22 32.22 32.22 ... 32.22 32.22
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 240))
- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 240
- 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], shape=(360,))
- elevation(volume_time, azimuth)float6424.97 24.97 24.97 ... 24.97 24.97
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383],[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383],[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383],...,[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383],[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383],[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383]], shape=(24, 360))
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:03:54.509999872 .....
- standard_name :
- time
array([['2026-04-30T06:03:54.509999872', '2026-04-30T06:03:54.543500032','2026-04-30T06:03:54.577500160', ...,'2026-04-30T06:03:54.410000128', '2026-04-30T06:03:54.443000064','2026-04-30T06:03:54.476499968'],['2026-04-30T06:08:54.624499968', '2026-04-30T06:08:54.658499840','2026-04-30T06:08:54.691500032', ...,'2026-04-30T06:08:54.524499968', '2026-04-30T06:08:54.557499904','2026-04-30T06:08:54.591000064'],['2026-04-30T06:13:54.601999872', '2026-04-30T06:13:54.635500032','2026-04-30T06:13:54.668499968', ...,'2026-04-30T06:13:54.501499904', '2026-04-30T06:13:54.534500096','2026-04-30T06:13:54.568499968'],...,['2026-04-30T07:48:54.608999936', '2026-04-30T07:48:54.642499840','2026-04-30T07:48:54.676499968', ...,'2026-04-30T07:48:54.508999936', '2026-04-30T07:48:54.542000128','2026-04-30T07:48:54.575500032'],['2026-04-30T07:53:54.610000128', '2026-04-30T07:53:54.644000000','2026-04-30T07:53:54.677499904', ...,'2026-04-30T07:53:54.509999872', '2026-04-30T07:53:54.543000064','2026-04-30T07:53:54.576499968'],['2026-04-30T07:58:54.508000000', '2026-04-30T07:58:54.541500160','2026-04-30T07:58:54.574500096', ...,'2026-04-30T07:58:54.407500032', '2026-04-30T07:58:54.440499968','2026-04-30T07:58:54.473999872']],shape=(24, 360), 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.],shape=(240,), dtype=float32)
- x(volume_time, azimuth, range)float640.9888 2.966 ... -470.3 -472.2
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[[ 9.88813949e-01, 2.96640496e+00, 4.94394678e+00, ...,4.68300150e+02, 4.70266057e+02, 4.72231914e+02],[ 2.96614065e+00, 8.89831127e+00, 1.48303344e+01, ...,1.40475780e+03, 1.41065492e+03, 1.41655189e+03],[ 4.94256383e+00, 1.48275071e+01, 2.47122045e+01, ...,2.34078755e+03, 2.35061409e+03, 2.36044038e+03],...,[-4.94256383e+00, -1.48275071e+01, -2.47122045e+01, ...,-2.34078755e+03, -2.35061409e+03, -2.36044038e+03],[-2.96614065e+00, -8.89831127e+00, -1.48303344e+01, ...,-1.40475780e+03, -1.41065492e+03, -1.41655189e+03],[-9.88813949e-01, -2.96640496e+00, -4.94394678e+00, ...,-4.68300150e+02, -4.70266057e+02, -4.72231914e+02]],[[ 9.88813949e-01, 2.96640496e+00, 4.94394678e+00, ...,4.68300150e+02, 4.70266057e+02, 4.72231914e+02],[ 2.96614065e+00, 8.89831127e+00, 1.48303344e+01, ...,1.40475780e+03, 1.41065492e+03, 1.41655189e+03],[ 4.94256383e+00, 1.48275071e+01, 2.47122045e+01, ...,2.34078755e+03, 2.35061409e+03, 2.36044038e+03],...-2.34078755e+03, -2.35061409e+03, -2.36044038e+03],[-2.96614065e+00, -8.89831127e+00, -1.48303344e+01, ...,-1.40475780e+03, -1.41065492e+03, -1.41655189e+03],[-9.88813949e-01, -2.96640496e+00, -4.94394678e+00, ...,-4.68300150e+02, -4.70266057e+02, -4.72231914e+02]],[[ 9.88813949e-01, 2.96640496e+00, 4.94394678e+00, ...,4.68300150e+02, 4.70266057e+02, 4.72231914e+02],[ 2.96614065e+00, 8.89831127e+00, 1.48303344e+01, ...,1.40475780e+03, 1.41065492e+03, 1.41655189e+03],[ 4.94256383e+00, 1.48275071e+01, 2.47122045e+01, ...,2.34078755e+03, 2.35061409e+03, 2.36044038e+03],...,[-4.94256383e+00, -1.48275071e+01, -2.47122045e+01, ...,-2.34078755e+03, -2.35061409e+03, -2.36044038e+03],[-2.96614065e+00, -8.89831127e+00, -1.48303344e+01, ...,-1.40475780e+03, -1.41065492e+03, -1.41655189e+03],[-9.88813949e-01, -2.96640496e+00, -4.94394678e+00, ...,-4.68300150e+02, -4.70266057e+02, -4.72231914e+02]]],shape=(24, 360, 240))
- y(volume_time, azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.2033231 , 339.60574585, 566.00253726, ...,53612.84927825, 53837.91400282, 54062.9730704 ],...,[ 113.2033231 , 339.60574585, 566.00253726, ...,53612.84927825, 53837.91400282, 54062.9730704 ],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922]],[[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.2033231 , 339.60574585, 566.00253726, ...,53612.84927825, 53837.91400282, 54062.9730704 ],...53612.84927825, 53837.91400282, 54062.9730704 ],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922]],[[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.2033231 , 339.60574585, 566.00253726, ...,53612.84927825, 53837.91400282, 54062.9730704 ],...,[ 113.2033231 , 339.60574585, 566.00253726, ...,53612.84927825, 53837.91400282, 54062.9730704 ],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922]]],shape=(24, 360, 240))
- z(volume_time, azimuth, range)float64237.9 343.4 ... 2.553e+04 2.564e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],...,[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289]],[[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],...25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289]],[[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],...,[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289]]],shape=(24, 360, 240))
- gr(volume_time, azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- standard_name :
- distance_from_radar
- units :
- metre
array([[[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],...,[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273]],[[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],...53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273]],[[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],...,[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273]]],shape=(24, 360, 240))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 240))
- bins(azimuth, 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.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],...,[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.]],shape=(360, 240), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 240))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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, 24.99938965, 24.99938965, 24.99938965, 24.99938965,24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965,24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965,24.99938965, 24.99938965, 24.99938965, 24.99938965])
- nyquist_velocity(volume_time)float6432.22 32.22 32.22 ... 32.22 32.22
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 240))
- sweep: 10
- volume_time: 24
- volume_time(volume_time)datetime64[ns]2026-04-30T06:00:00 ... 2026-04-...
- standard_name :
- time
array(['2026-04-30T06:00:00.000000000', '2026-04-30T06:05:00.000000000', '2026-04-30T06:10:00.000000000', '2026-04-30T06:15:00.000000000', '2026-04-30T06:20:00.000000000', '2026-04-30T06:25:00.000000000', '2026-04-30T06:30:00.000000000', '2026-04-30T06:35:00.000000000', '2026-04-30T06:40:00.000000000', '2026-04-30T06:45:00.000000000', '2026-04-30T06:50:00.000000000', '2026-04-30T06:55:00.000000000', '2026-04-30T07:00:00.000000000', '2026-04-30T07:05:00.000000000', '2026-04-30T07:10:00.000000000', '2026-04-30T07:15:00.000000000', '2026-04-30T07:20:00.000000000', '2026-04-30T07:25:00.000000000', '2026-04-30T07:30:00.000000000', '2026-04-30T07:35:00.000000000', '2026-04-30T07:40:00.000000000', '2026-04-30T07:45:00.000000000', '2026-04-30T07:50:00.000000000', '2026-04-30T07:55:00.000000000'], dtype='datetime64[ns]') - 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)
- 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'2026-04-30T06:00:35Z'
array('2026-04-30T06:00:35Z', dtype='<U20') - time_coverage_end()<U20'2026-04-30T07:59:02Z'
array('2026-04-30T07:59:02Z', dtype='<U20') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- sweep_group_name(sweep, volume_time)int640 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0
array([[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]) - sweep_fixed_angle(sweep, volume_time)float645.499 5.499 5.499 ... 25.0 25.0
array([[ 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723], [ 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137], [ 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551], [ 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965], ... [ 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688], [12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348], [17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277], [24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965]])
- Conventions :
- ODIM_H5/V2_2
- instrument_name :
- None
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- None
- history :
- None
- comment :
- im/exported using xradar
Sweep Groups#
vol["sweep_0"]
<xarray.DataTree 'sweep_0'>
Group: /sweep_0
Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 720)
Coordinates:
* azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
elevation (azimuth) float64 3kB 5.471 5.471 5.471 ... 5.471 5.471
time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
* range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
x (azimuth, range) float64 2MB 1.086 3.257 ... -1.559e+03
y (azimuth, range) float64 2MB 124.4 373.3 ... 1.787e+05
z (azimuth, range) float64 2MB 197.0 220.9 ... 1.922e+04
gr (azimuth, range) float64 2MB 124.4 373.3 ... 1.787e+05
rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
sweep_mode object 8B 'azimuth_surveillance'
crs_wkt int64 8B 0
Inherited coordinates:
* volume_time (volume_time) datetime64[ns] 192B 2026-04-30T06:00:00 ...
Dimensions without coordinates: sweep
Data variables:
DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
sweep_number int64 8B 0
prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
sweep_fixed_angle (volume_time) float64 192B 5.499 5.499 ... 5.499 5.499
nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], shape=(360,))
- elevation(azimuth)float645.471 5.471 5.471 ... 5.471 5.471
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, ... 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141]) - time(volume_time, azimuth)datetime64[ns]2026-04-30T06:00:54.347499776 .....
- standard_name :
- time
array([['2026-04-30T06:00:54.347499776', '2026-04-30T06:00:54.411000064', '2026-04-30T06:00:54.472999936', ..., '2026-04-30T06:00:54.158999808', '2026-04-30T06:00:54.221000192', '2026-04-30T06:00:54.284000000'], ['2026-04-30T06:05:54.520500224', '2026-04-30T06:05:54.583000064', '2026-04-30T06:05:54.645500160', ..., '2026-04-30T06:05:54.332000000', '2026-04-30T06:05:54.395000064', '2026-04-30T06:05:54.456999936'], ['2026-04-30T06:10:54.539000064', '2026-04-30T06:10:54.601999872', '2026-04-30T06:10:54.664499968', ..., '2026-04-30T06:10:54.352000000', '2026-04-30T06:10:54.413499904', '2026-04-30T06:10:54.476000000'], ..., ['2026-04-30T07:45:54.543000064', '2026-04-30T07:45:54.605999872', '2026-04-30T07:45:54.668000000', ..., '2026-04-30T07:45:54.354000128', '2026-04-30T07:45:54.416000000', '2026-04-30T07:45:54.479499776'], ['2026-04-30T07:50:54.537000192', '2026-04-30T07:50:54.600000000', '2026-04-30T07:50:54.662000128', ..., '2026-04-30T07:50:54.348000000', '2026-04-30T07:50:54.409999872', '2026-04-30T07:50:54.473499904'], ['2026-04-30T07:55:54.351500032', '2026-04-30T07:55:54.415000064', '2026-04-30T07:55:54.476999936', ..., '2026-04-30T07:55:54.163000064', '2026-04-30T07:55:54.224999936', '2026-04-30T07:55:54.288000000']], shape=(24, 360), 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], shape=(720,), dtype=float32) - x(azimuth, range)float641.086 3.257 ... -1.559e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.08582226e+00, 3.25745762e+00, 5.42908077e+00, ..., 1.55479507e+03, 1.55695703e+03, 1.55911898e+03], [ 3.25713601e+00, 9.77138059e+00, 1.62855886e+01, ..., 4.66391161e+03, 4.67039683e+03, 4.67688201e+03], [ 5.42745762e+00, 1.62823271e+01, 2.71371356e+01, ..., 7.77160747e+03, 7.78241398e+03, 7.79322042e+03], ..., [-5.42745762e+00, -1.62823271e+01, -2.71371356e+01, ..., -7.77160747e+03, -7.78241398e+03, -7.79322042e+03], [-3.25713601e+00, -9.77138059e+00, -1.62855886e+01, ..., -4.66391161e+03, -4.67039683e+03, -4.67688201e+03], [-1.08582226e+00, -3.25745762e+00, -5.42908077e+00, ..., -1.55479507e+03, -1.55695703e+03, -1.55911898e+03]], shape=(360, 720)) - y(azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24422907e+02, 3.73267671e+02, 6.22111037e+02, ..., 1.78161868e+05, 1.78409605e+05, 1.78657339e+05], [1.24385006e+02, 3.73153970e+02, 6.21921536e+02, ..., 1.78107599e+05, 1.78355259e+05, 1.78602918e+05], [1.24309217e+02, 3.72926603e+02, 6.21542592e+02, ..., 1.77999075e+05, 1.78246585e+05, 1.78494093e+05], ..., [1.24309217e+02, 3.72926603e+02, 6.21542592e+02, ..., 1.77999075e+05, 1.78246585e+05, 1.78494093e+05], [1.24385006e+02, 3.73153970e+02, 6.21921536e+02, ..., 1.78107599e+05, 1.78355259e+05, 1.78602918e+05], [1.24422907e+02, 3.73267671e+02, 6.22111037e+02, ..., 1.78161868e+05, 1.78409605e+05, 1.78657339e+05]], shape=(360, 720)) - z(azimuth, range)float64197.0 220.9 ... 1.919e+04 1.922e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 197.02906846, 220.87267828, 244.72358527, ..., 19162.01573651, 19191.07448906, 19220.14048583], [ 197.02906846, 220.87267828, 244.72358527, ..., 19162.01573651, 19191.07448906, 19220.14048583], [ 197.02906846, 220.87267828, 244.72358527, ..., 19162.01573651, 19191.07448906, 19220.14048583], ..., [ 197.02906846, 220.87267828, 244.72358527, ..., 19162.01573651, 19191.07448906, 19220.14048583], [ 197.02906846, 220.87267828, 244.72358527, ..., 19162.01573651, 19191.07448906, 19220.14048583], [ 197.02906846, 220.87267828, 244.72358527, ..., 19162.01573651, 19191.07448906, 19220.14048583]], shape=(360, 720)) - gr(azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ..., 1.78168652e+05, 1.78416398e+05, 1.78664142e+05], [1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ..., 1.78168652e+05, 1.78416398e+05, 1.78664142e+05], [1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ..., 1.78168652e+05, 1.78416398e+05, 1.78664142e+05], ..., [1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ..., 1.78168652e+05, 1.78416398e+05, 1.78664142e+05], [1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ..., 1.78168652e+05, 1.78416398e+05, 1.78664142e+05], [1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ..., 1.78168652e+05, 1.78416398e+05, 1.78664142e+05]], shape=(360, 720)) - rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5], [ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5], [ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5], ..., [357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5], [358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5], [359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720)) - bins(azimuth, 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], [1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], [1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], ..., [1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], [1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], [1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32) - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- volume_time(volume_time)datetime64[ns]2026-04-30T06:00:00 ... 2026-04-...
- standard_name :
- time
array(['2026-04-30T06:00:00.000000000', '2026-04-30T06:05:00.000000000', '2026-04-30T06:10:00.000000000', '2026-04-30T06:15:00.000000000', '2026-04-30T06:20:00.000000000', '2026-04-30T06:25:00.000000000', '2026-04-30T06:30:00.000000000', '2026-04-30T06:35:00.000000000', '2026-04-30T06:40:00.000000000', '2026-04-30T06:45:00.000000000', '2026-04-30T06:50:00.000000000', '2026-04-30T06:55:00.000000000', '2026-04-30T07:00:00.000000000', '2026-04-30T07:05:00.000000000', '2026-04-30T07:10:00.000000000', '2026-04-30T07:15:00.000000000', '2026-04-30T07:20:00.000000000', '2026-04-30T07:25:00.000000000', '2026-04-30T07:30:00.000000000', '2026-04-30T07:35:00.000000000', '2026-04-30T07:40:00.000000000', '2026-04-30T07:45:00.000000000', '2026-04-30T07:50:00.000000000', '2026-04-30T07:55:00.000000000'], dtype='datetime64[ns]')
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ... [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]]], shape=(24, 360, 720)) - 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', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', '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', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', '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
array([5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723]) - nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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. ]]], shape=(24, 360, 720))
plot sweeps#
DBZH#
vol["sweep_0"].isel(volume_time=0)
<xarray.DataTree 'sweep_0'>
Group: /
Dimensions: (azimuth: 360, range: 720)
Coordinates: (12/13)
* azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
elevation (azimuth) float64 3kB 5.471 5.471 5.471 ... 5.471 5.471
time (azimuth) datetime64[ns] 3kB 2026-04-30T06:00:54.34749...
* range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
x (azimuth, range) float64 2MB 1.086 3.257 ... -1.559e+03
y (azimuth, range) float64 2MB 124.4 373.3 ... 1.787e+05
... ...
gr (azimuth, range) float64 2MB 124.4 373.3 ... 1.787e+05
rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
volume_time datetime64[ns] 8B 2026-04-30T06:00:00
sweep_mode object 8B 'azimuth_surveillance'
crs_wkt int64 8B 0
Data variables:
DBZH (azimuth, range) float64 2MB -64.0 -64.0 ... -64.0 -64.0
sweep_number int64 8B 0
prt_mode <U7 28B 'not_set'
follow_mode <U7 28B 'not_set'
sweep_fixed_angle float64 8B 5.499
nyquist_velocity float64 8B 32.08
VRADH (azimuth, range) float64 2MB -128.0 -128.0 ... -128.0- azimuth: 360
- range: 720
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], shape=(360,))
- elevation(azimuth)float645.471 5.471 5.471 ... 5.471 5.471
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, ... 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141]) - time(azimuth)datetime64[ns]2026-04-30T06:00:54.347499776 .....
- standard_name :
- time
array(['2026-04-30T06:00:54.347499776', '2026-04-30T06:00:54.411000064', '2026-04-30T06:00:54.472999936', '2026-04-30T06:00:54.534999808', '2026-04-30T06:00:54.598500096', '2026-04-30T06:00:54.660999936', '2026-04-30T06:00:54.724000000', '2026-04-30T06:00:54.786000128', '2026-04-30T06:00:54.848000000', '2026-04-30T06:00:54.910500096', '2026-04-30T06:00:54.972999936', '2026-04-30T06:00:55.034999808', '2026-04-30T06:00:55.097000192', '2026-04-30T06:00:55.159500032', '2026-04-30T06:00:55.222499840', '2026-04-30T06:00:55.285500160', '2026-04-30T06:00:55.348000000', '2026-04-30T06:00:55.409999872', '2026-04-30T06:00:55.472999936', '2026-04-30T06:00:55.535000064', '2026-04-30T06:00:55.597499904', '2026-04-30T06:00:55.659999744', '2026-04-30T06:00:55.722000128', '2026-04-30T06:00:55.784500224', '2026-04-30T06:00:55.847000064', '2026-04-30T06:00:55.909999872', '2026-04-30T06:00:55.972499968', '2026-04-30T06:00:56.033999872', '2026-04-30T06:00:56.097000192', '2026-04-30T06:00:56.158999808', '2026-04-30T06:00:56.221499904', '2026-04-30T06:00:56.284500224', '2026-04-30T06:00:56.347000064', '2026-04-30T06:00:56.408999936', '2026-04-30T06:00:56.472000000', '2026-04-30T06:00:56.533999872', '2026-04-30T06:00:56.596000000', '2026-04-30T06:00:56.657999872', '2026-04-30T06:00:56.721499904', '2026-04-30T06:00:56.784000000', ... '2026-04-30T06:00:51.971000064', '2026-04-30T06:00:52.032999936', '2026-04-30T06:00:52.096499968', '2026-04-30T06:00:52.158999808', '2026-04-30T06:00:52.222000128', '2026-04-30T06:00:52.283500032', '2026-04-30T06:00:52.345999872', '2026-04-30T06:00:52.408000000', '2026-04-30T06:00:52.471000064', '2026-04-30T06:00:52.532999936', '2026-04-30T06:00:52.596000256', '2026-04-30T06:00:52.658499840', '2026-04-30T06:00:52.720999936', '2026-04-30T06:00:52.783000064', '2026-04-30T06:00:52.845999872', '2026-04-30T06:00:52.908000000', '2026-04-30T06:00:52.971000320', '2026-04-30T06:00:53.033499904', '2026-04-30T06:00:53.096499968', '2026-04-30T06:00:53.158999808', '2026-04-30T06:00:53.221000192', '2026-04-30T06:00:53.283500032', '2026-04-30T06:00:53.345999872', '2026-04-30T06:00:53.408000000', '2026-04-30T06:00:53.471500032', '2026-04-30T06:00:53.533999872', '2026-04-30T06:00:53.597000192', '2026-04-30T06:00:53.658499840', '2026-04-30T06:00:53.720999936', '2026-04-30T06:00:53.783000064', '2026-04-30T06:00:53.846499840', '2026-04-30T06:00:53.908999936', '2026-04-30T06:00:53.972000000', '2026-04-30T06:00:54.033499904', '2026-04-30T06:00:54.096499968', '2026-04-30T06:00:54.158999808', '2026-04-30T06:00:54.221000192', '2026-04-30T06:00:54.284000000'], 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], shape=(720,), dtype=float32) - x(azimuth, range)float641.086 3.257 ... -1.559e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.08582226e+00, 3.25745762e+00, 5.42908077e+00, ..., 1.55479507e+03, 1.55695703e+03, 1.55911898e+03], [ 3.25713601e+00, 9.77138059e+00, 1.62855886e+01, ..., 4.66391161e+03, 4.67039683e+03, 4.67688201e+03], [ 5.42745762e+00, 1.62823271e+01, 2.71371356e+01, ..., 7.77160747e+03, 7.78241398e+03, 7.79322042e+03], ..., [-5.42745762e+00, -1.62823271e+01, -2.71371356e+01, ..., -7.77160747e+03, -7.78241398e+03, -7.79322042e+03], [-3.25713601e+00, -9.77138059e+00, -1.62855886e+01, ..., -4.66391161e+03, -4.67039683e+03, -4.67688201e+03], [-1.08582226e+00, -3.25745762e+00, -5.42908077e+00, ..., -1.55479507e+03, -1.55695703e+03, -1.55911898e+03]], shape=(360, 720)) - y(azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24422907e+02, 3.73267671e+02, 6.22111037e+02, ..., 1.78161868e+05, 1.78409605e+05, 1.78657339e+05], [1.24385006e+02, 3.73153970e+02, 6.21921536e+02, ..., 1.78107599e+05, 1.78355259e+05, 1.78602918e+05], [1.24309217e+02, 3.72926603e+02, 6.21542592e+02, ..., 1.77999075e+05, 1.78246585e+05, 1.78494093e+05], ..., [1.24309217e+02, 3.72926603e+02, 6.21542592e+02, ..., 1.77999075e+05, 1.78246585e+05, 1.78494093e+05], [1.24385006e+02, 3.73153970e+02, 6.21921536e+02, ..., 1.78107599e+05, 1.78355259e+05, 1.78602918e+05], [1.24422907e+02, 3.73267671e+02, 6.22111037e+02, ..., 1.78161868e+05, 1.78409605e+05, 1.78657339e+05]], shape=(360, 720)) - z(azimuth, range)float64197.0 220.9 ... 1.919e+04 1.922e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 197.02906846, 220.87267828, 244.72358527, ..., 19162.01573651, 19191.07448906, 19220.14048583], [ 197.02906846, 220.87267828, 244.72358527, ..., 19162.01573651, 19191.07448906, 19220.14048583], [ 197.02906846, 220.87267828, 244.72358527, ..., 19162.01573651, 19191.07448906, 19220.14048583], ..., [ 197.02906846, 220.87267828, 244.72358527, ..., 19162.01573651, 19191.07448906, 19220.14048583], [ 197.02906846, 220.87267828, 244.72358527, ..., 19162.01573651, 19191.07448906, 19220.14048583], [ 197.02906846, 220.87267828, 244.72358527, ..., 19162.01573651, 19191.07448906, 19220.14048583]], shape=(360, 720)) - gr(azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ..., 1.78168652e+05, 1.78416398e+05, 1.78664142e+05], [1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ..., 1.78168652e+05, 1.78416398e+05, 1.78664142e+05], [1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ..., 1.78168652e+05, 1.78416398e+05, 1.78664142e+05], ..., [1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ..., 1.78168652e+05, 1.78416398e+05, 1.78664142e+05], [1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ..., 1.78168652e+05, 1.78416398e+05, 1.78664142e+05], [1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ..., 1.78168652e+05, 1.78416398e+05, 1.78664142e+05]], shape=(360, 720)) - rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5], [ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5], [ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5], ..., [357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5], [358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5], [359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720)) - bins(azimuth, 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], [1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], [1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], ..., [1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], [1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], [1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32) - volume_time()datetime64[ns]2026-04-30T06:00:00
- standard_name :
- time
array('2026-04-30T06:00:00.000000000', dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]], shape=(360, 720)) - 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)
- nyquist_velocity()float6432.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array(32.08234226)
- VRADH(azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]], shape=(360, 720))
vol.match("sweep*")
<xarray.DataTree>
Group: /
βββ Group: /sweep_0
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates: (12/13)
β * volume_time (volume_time) datetime64[ns] 192B 2026-04-30T06:00:00 ...
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 5.471 5.471 5.471 ... 5.471 5.471
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.086 3.257 ... -1.559e+03
β ... ...
β z (azimuth, range) float64 2MB 197.0 220.9 ... 1.922e+04
β gr (azimuth, range) float64 2MB 124.4 373.3 ... 1.787e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 0
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 5.499 5.499 ... 5.499 5.499
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_1
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates: (12/13)
β * volume_time (volume_time) datetime64[ns] 192B 2026-04-30T06:00:00 ...
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 4.493 4.493 4.493 ... 4.493 4.493
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.087 3.262 ... -1.562e+03
β ... ...
β z (azimuth, range) float64 2MB 194.9 214.5 ... 1.617e+04
β gr (azimuth, range) float64 2MB 124.6 373.8 ... 1.79e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 1
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 4.499 4.499 ... 4.499 4.499
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_2
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates: (12/13)
β * volume_time (volume_time) datetime64[ns] 192B 2026-04-30T06:00:00 ...
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 3.494 3.494 3.494 ... 3.494 3.494
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.089 3.266 ... -1.564e+03
β ... ...
β z (azimuth, range) float64 2MB 192.7 208.0 ... 1.304e+04
β gr (azimuth, range) float64 2MB 124.8 374.3 ... 1.793e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 2
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 3.499 3.499 ... 3.499 3.499
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_3
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates: (12/13)
β * volume_time (volume_time) datetime64[ns] 192B 2026-04-30T06:00:00 ...
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 2.483 2.483 2.483 ... 2.483 2.483
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.09 3.269 ... -1.567e+03
β ... ...
β z (azimuth, range) float64 2MB 190.5 201.4 ... 9.878e+03
β gr (azimuth, range) float64 2MB 124.9 374.6 ... 1.795e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 3
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 2.499 2.499 ... 2.499 2.499
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_4
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates: (12/13)
β * volume_time (volume_time) datetime64[ns] 192B 2026-04-30T06:00:00 ...
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 1.494 1.494 1.494 ... 1.494 1.494
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.09 3.271 ... -1.568e+03
β ... ...
β z (azimuth, range) float64 2MB 188.4 194.9 ... 6.779e+03
β gr (azimuth, range) float64 2MB 125.0 374.9 ... 1.797e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 4
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 1.5 1.5 1.5 ... 1.5 1.5 1.5
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_5
β Dimensions: (volume_time: 24, azimuth: 360, range: 720)
β Coordinates: (12/13)
β * volume_time (volume_time) datetime64[ns] 192B 2026-04-30T06:00:00 ...
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 0.4834 0.4834 ... 0.4834 0.4834
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β x (azimuth, range) float64 2MB 1.091 3.272 ... -1.569e+03
β ... ...
β z (azimuth, range) float64 2MB 186.2 188.3 ... 3.608e+03
β gr (azimuth, range) float64 2MB 125.0 375.0 ... 1.798e+05
β rays (azimuth, range) float64 2MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 1MB 125.0 375.0 ... 1.799e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 50MB -64.0 ... -...
β sweep_number int64 8B 5
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 0.4999 0.4999 ... 0.4999
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...
βββ Group: /sweep_6
β Dimensions: (volume_time: 24, azimuth: 360, range: 496)
β Coordinates: (12/13)
β * volume_time (volume_time) datetime64[ns] 192B 2026-04-30T06:00:00 ...
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 7.987 7.987 7.987 ... 7.987 7.987
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 2kB 125.0 375.0 ... 1.236e+05 1.239e+05
β x (azimuth, range) float64 1MB 1.08 3.241 ... -1.068e+03
β ... ...
β z (azimuth, range) float64 1MB 202.5 237.2 ... 1.828e+04
β gr (azimuth, range) float64 1MB 123.8 371.4 ... 1.224e+05
β rays (azimuth, range) float64 1MB 0.5 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 714kB 125.0 375.0 ... 1.239e+05
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 34MB -64.0 ... -...
β sweep_number int64 8B 6
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 7.998 7.998 ... 7.998 7.998
β nyquist_velocity (volume_time) float64 192B 32.08 32.08 ... 32.08 32.08
β VRADH (volume_time, azimuth, range) float64 34MB -128.0 ... ...
βββ Group: /sweep_7
β Dimensions: (volume_time: 24, azimuth: 360, range: 240)
β Coordinates: (12/13)
β * volume_time (volume_time) datetime64[ns] 192B 2026-04-30T06:00:00 ...
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB 11.99 11.99 11.99 ... 11.99 11.99
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04
β x (azimuth, range) float64 691kB 1.067 3.201 ... -510.3
β ... ...
β z (azimuth, range) float64 691kB 211.1 263.0 ... 1.282e+04
β gr (azimuth, range) float64 691kB 122.3 366.8 ... 5.848e+04
β rays (azimuth, range) float64 691kB 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 346kB 125.0 375.0 ... 5.988e+04
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 17MB -64.0 ... -...
β sweep_number int64 8B 7
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 12.0 12.0 12.0 ... 12.0 12.0
β nyquist_velocity (volume_time) float64 192B 32.22 32.22 ... 32.22 32.22
β VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...
βββ Group: /sweep_8
β Dimensions: (volume_time: 24, azimuth: 360, range: 240)
β Coordinates: (12/13)
β * volume_time (volume_time) datetime64[ns] 192B 2026-04-30T06:00:00 ...
β * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (volume_time, azimuth) float64 69kB 16.97 16.97 ... 16.97
β time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
β * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04
β x (volume_time, azimuth, range) float64 17MB 1.043 ... -...
β ... ...
β z (volume_time, azimuth, range) float64 17MB 221.6 ... 1...
β gr (volume_time, azimuth, range) float64 17MB 119.6 ... 5...
β rays (azimuth, range) float64 691kB 0.5 0.5 ... 359.5 359.5
β bins (azimuth, range) float32 346kB 125.0 375.0 ... 5.988e+04
β sweep_mode object 8B 'azimuth_surveillance'
β crs_wkt int64 8B 0
β Data variables:
β DBZH (volume_time, azimuth, range) float64 17MB -64.0 ... -...
β sweep_number int64 8B 8
β prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
β sweep_fixed_angle (volume_time) float64 192B 17.0 17.0 17.0 ... 17.0 17.0
β nyquist_velocity (volume_time) float64 192B 32.22 32.22 ... 32.22 32.22
β VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...
βββ Group: /sweep_9
Dimensions: (volume_time: 24, azimuth: 360, range: 240)
Coordinates: (12/13)
* volume_time (volume_time) datetime64[ns] 192B 2026-04-30T06:00:00 ...
* azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
elevation (volume_time, azimuth) float64 69kB 24.97 24.97 ... 24.97
time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
* range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04
x (volume_time, azimuth, range) float64 17MB 0.9888 ... ...
... ...
z (volume_time, azimuth, range) float64 17MB 237.9 ... 2...
gr (volume_time, azimuth, range) float64 17MB 113.3 ... 5...
rays (azimuth, range) float64 691kB 0.5 0.5 ... 359.5 359.5
bins (azimuth, range) float32 346kB 125.0 375.0 ... 5.988e+04
sweep_mode object 8B 'azimuth_surveillance'
crs_wkt int64 8B 0
Data variables:
DBZH (volume_time, azimuth, range) float64 17MB -64.0 ... -...
sweep_number int64 8B 9
prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
sweep_fixed_angle (volume_time) float64 192B 25.0 25.0 25.0 ... 25.0 25.0
nyquist_velocity (volume_time) float64 192B 32.22 32.22 ... 32.22 32.22
VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...- volume_time: 24
- azimuth: 360
- range: 720
- volume_time(volume_time)datetime64[ns]2026-04-30T06:00:00 ... 2026-04-...
- standard_name :
- time
array(['2026-04-30T06:00:00.000000000', '2026-04-30T06:05:00.000000000','2026-04-30T06:10:00.000000000', '2026-04-30T06:15:00.000000000','2026-04-30T06:20:00.000000000', '2026-04-30T06:25:00.000000000','2026-04-30T06:30:00.000000000', '2026-04-30T06:35:00.000000000','2026-04-30T06:40:00.000000000', '2026-04-30T06:45:00.000000000','2026-04-30T06:50:00.000000000', '2026-04-30T06:55:00.000000000','2026-04-30T07:00:00.000000000', '2026-04-30T07:05:00.000000000','2026-04-30T07:10:00.000000000', '2026-04-30T07:15:00.000000000','2026-04-30T07:20:00.000000000', '2026-04-30T07:25:00.000000000','2026-04-30T07:30:00.000000000', '2026-04-30T07:35:00.000000000','2026-04-30T07:40:00.000000000', '2026-04-30T07:45:00.000000000','2026-04-30T07:50:00.000000000', '2026-04-30T07:55:00.000000000'],dtype='datetime64[ns]')
- 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], shape=(360,))
- elevation(azimuth)float645.471 5.471 5.471 ... 5.471 5.471
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,...5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141,5.47119141, 5.47119141, 5.47119141, 5.47119141, 5.47119141])
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:00:54.347499776 .....
- standard_name :
- time
array([['2026-04-30T06:00:54.347499776', '2026-04-30T06:00:54.411000064','2026-04-30T06:00:54.472999936', ...,'2026-04-30T06:00:54.158999808', '2026-04-30T06:00:54.221000192','2026-04-30T06:00:54.284000000'],['2026-04-30T06:05:54.520500224', '2026-04-30T06:05:54.583000064','2026-04-30T06:05:54.645500160', ...,'2026-04-30T06:05:54.332000000', '2026-04-30T06:05:54.395000064','2026-04-30T06:05:54.456999936'],['2026-04-30T06:10:54.539000064', '2026-04-30T06:10:54.601999872','2026-04-30T06:10:54.664499968', ...,'2026-04-30T06:10:54.352000000', '2026-04-30T06:10:54.413499904','2026-04-30T06:10:54.476000000'],...,['2026-04-30T07:45:54.543000064', '2026-04-30T07:45:54.605999872','2026-04-30T07:45:54.668000000', ...,'2026-04-30T07:45:54.354000128', '2026-04-30T07:45:54.416000000','2026-04-30T07:45:54.479499776'],['2026-04-30T07:50:54.537000192', '2026-04-30T07:50:54.600000000','2026-04-30T07:50:54.662000128', ...,'2026-04-30T07:50:54.348000000', '2026-04-30T07:50:54.409999872','2026-04-30T07:50:54.473499904'],['2026-04-30T07:55:54.351500032', '2026-04-30T07:55:54.415000064','2026-04-30T07:55:54.476999936', ...,'2026-04-30T07:55:54.163000064', '2026-04-30T07:55:54.224999936','2026-04-30T07:55:54.288000000']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.086 3.257 ... -1.559e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.08582226e+00, 3.25745762e+00, 5.42908077e+00, ...,1.55479507e+03, 1.55695703e+03, 1.55911898e+03],[ 3.25713601e+00, 9.77138059e+00, 1.62855886e+01, ...,4.66391161e+03, 4.67039683e+03, 4.67688201e+03],[ 5.42745762e+00, 1.62823271e+01, 2.71371356e+01, ...,7.77160747e+03, 7.78241398e+03, 7.79322042e+03],...,[-5.42745762e+00, -1.62823271e+01, -2.71371356e+01, ...,-7.77160747e+03, -7.78241398e+03, -7.79322042e+03],[-3.25713601e+00, -9.77138059e+00, -1.62855886e+01, ...,-4.66391161e+03, -4.67039683e+03, -4.67688201e+03],[-1.08582226e+00, -3.25745762e+00, -5.42908077e+00, ...,-1.55479507e+03, -1.55695703e+03, -1.55911898e+03]],shape=(360, 720))
- y(azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24422907e+02, 3.73267671e+02, 6.22111037e+02, ...,1.78161868e+05, 1.78409605e+05, 1.78657339e+05],[1.24385006e+02, 3.73153970e+02, 6.21921536e+02, ...,1.78107599e+05, 1.78355259e+05, 1.78602918e+05],[1.24309217e+02, 3.72926603e+02, 6.21542592e+02, ...,1.77999075e+05, 1.78246585e+05, 1.78494093e+05],...,[1.24309217e+02, 3.72926603e+02, 6.21542592e+02, ...,1.77999075e+05, 1.78246585e+05, 1.78494093e+05],[1.24385006e+02, 3.73153970e+02, 6.21921536e+02, ...,1.78107599e+05, 1.78355259e+05, 1.78602918e+05],[1.24422907e+02, 3.73267671e+02, 6.22111037e+02, ...,1.78161868e+05, 1.78409605e+05, 1.78657339e+05]], shape=(360, 720))
- z(azimuth, range)float64197.0 220.9 ... 1.919e+04 1.922e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583],[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583],[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583],...,[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583],[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583],[ 197.02906846, 220.87267828, 244.72358527, ...,19162.01573651, 19191.07448906, 19220.14048583]], shape=(360, 720))
- gr(azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05],[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05],[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05],...,[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05],[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05],[1.24427644e+02, 3.73281884e+02, 6.22134726e+02, ...,1.78168652e+05, 1.78416398e+05, 1.78664142e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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
array([5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723,5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723,5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723,5.49865723, 5.49865723, 5.49865723, 5.49865723, 5.49865723,5.49865723, 5.49865723, 5.49865723, 5.49865723])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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. ]]],shape=(24, 360, 720))
- volume_time: 24
- azimuth: 360
- range: 720
- volume_time(volume_time)datetime64[ns]2026-04-30T06:00:00 ... 2026-04-...
- standard_name :
- time
array(['2026-04-30T06:00:00.000000000', '2026-04-30T06:05:00.000000000','2026-04-30T06:10:00.000000000', '2026-04-30T06:15:00.000000000','2026-04-30T06:20:00.000000000', '2026-04-30T06:25:00.000000000','2026-04-30T06:30:00.000000000', '2026-04-30T06:35:00.000000000','2026-04-30T06:40:00.000000000', '2026-04-30T06:45:00.000000000','2026-04-30T06:50:00.000000000', '2026-04-30T06:55:00.000000000','2026-04-30T07:00:00.000000000', '2026-04-30T07:05:00.000000000','2026-04-30T07:10:00.000000000', '2026-04-30T07:15:00.000000000','2026-04-30T07:20:00.000000000', '2026-04-30T07:25:00.000000000','2026-04-30T07:30:00.000000000', '2026-04-30T07:35:00.000000000','2026-04-30T07:40:00.000000000', '2026-04-30T07:45:00.000000000','2026-04-30T07:50:00.000000000', '2026-04-30T07:55:00.000000000'],dtype='datetime64[ns]')
- 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], shape=(360,))
- elevation(azimuth)float644.493 4.493 4.493 ... 4.493 4.493
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,...4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082,4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082, 4.4934082])
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:01:16.849500160 .....
- standard_name :
- time
array([['2026-04-30T06:01:16.849500160', '2026-04-30T06:01:16.912499968','2026-04-30T06:01:16.974999808', ...,'2026-04-30T06:01:16.660999936', '2026-04-30T06:01:16.723500032','2026-04-30T06:01:16.786500096'],['2026-04-30T06:06:17.023000064', '2026-04-30T06:06:17.085999872','2026-04-30T06:06:17.148499968', ...,'2026-04-30T06:06:16.834000128', '2026-04-30T06:06:16.896000000','2026-04-30T06:06:16.959499776'],['2026-04-30T06:11:17.041999872', '2026-04-30T06:11:17.104999936','2026-04-30T06:11:17.168000000', ...,'2026-04-30T06:11:16.852999936', '2026-04-30T06:11:16.915500288','2026-04-30T06:11:16.978000128'],...,['2026-04-30T07:46:17.045499904', '2026-04-30T07:46:17.108499968','2026-04-30T07:46:17.171000064', ...,'2026-04-30T07:46:16.856999936', '2026-04-30T07:46:16.918499840','2026-04-30T07:46:16.981500160'],['2026-04-30T07:51:17.039000064', '2026-04-30T07:51:17.101999872','2026-04-30T07:51:17.164999936', ...,'2026-04-30T07:51:16.849999872', '2026-04-30T07:51:16.912499968','2026-04-30T07:51:16.974999808'],['2026-04-30T07:56:16.853499904', '2026-04-30T07:56:16.916999936','2026-04-30T07:56:16.979000064', ...,'2026-04-30T07:56:16.665999872', '2026-04-30T07:56:16.728000256','2026-04-30T07:56:16.790999808']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.087 3.262 ... -1.562e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.08743918e+00, 3.26231000e+00, 5.43717079e+00, ...,1.55766769e+03, 1.55983442e+03, 1.56200114e+03],[ 3.26198629e+00, 9.78593628e+00, 1.63098561e+01, ...,4.67252858e+03, 4.67902811e+03, 4.68552761e+03],[ 5.43553977e+00, 1.63065817e+01, 2.71775734e+01, ...,7.78596618e+03, 7.79679653e+03, 7.80762683e+03],...,[-5.43553977e+00, -1.63065817e+01, -2.71775734e+01, ...,-7.78596618e+03, -7.79679653e+03, -7.80762683e+03],[-3.26198629e+00, -9.78593628e+00, -1.63098561e+01, ...,-4.67252858e+03, -4.67902811e+03, -4.68552761e+03],[-1.08743918e+00, -3.26231000e+00, -5.43717079e+00, ...,-1.55766769e+03, -1.55983442e+03, -1.56200114e+03]],shape=(360, 720))
- y(azimuth, range)float64124.6 373.8 ... 1.787e+05 1.79e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24608188e+02, 3.73823700e+02, 6.23038061e+02, ...,1.78491038e+05, 1.78739320e+05, 1.78987602e+05],[1.24570231e+02, 3.73709829e+02, 6.22848278e+02, ...,1.78436668e+05, 1.78684875e+05, 1.78933080e+05],[1.24494329e+02, 3.73482123e+02, 6.22468769e+02, ...,1.78327944e+05, 1.78576000e+05, 1.78824054e+05],...,[1.24494329e+02, 3.73482123e+02, 6.22468769e+02, ...,1.78327944e+05, 1.78576000e+05, 1.78824054e+05],[1.24570231e+02, 3.73709829e+02, 6.22848278e+02, ...,1.78436668e+05, 1.78684875e+05, 1.78933080e+05],[1.24608188e+02, 3.73823700e+02, 6.23038061e+02, ...,1.78491038e+05, 1.78739320e+05, 1.78987602e+05]], shape=(360, 720))
- z(azimuth, range)float64194.9 214.5 ... 1.614e+04 1.617e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ],[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ],[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ],...,[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ],[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ],[ 194.90396504, 214.49738433, 234.09812255, ...,16118.74753128, 16143.57444977, 16168.4086419 ]], shape=(360, 720))
- gr(azimuth, range)float64124.6 373.8 ... 1.787e+05 1.79e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05],[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05],[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05],...,[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05],[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05],[1.24612932e+02, 3.73837934e+02, 6.23061785e+02, ...,1.78497834e+05, 1.78746127e+05, 1.78994417e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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
array([4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137,4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137,4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137,4.49890137, 4.49890137, 4.49890137, 4.49890137, 4.49890137,4.49890137, 4.49890137, 4.49890137, 4.49890137])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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. , -0.35938597, ...,-128. , -128. , -128. ],[-128. , -128. , -128. , ...,-128. , -128. , -128. ],[-128. , -128. , -128. , ...,-128. , -128. , -128. ],...,[-128. , -128. , -128. , ...,-128. , -128. , -128. ],[-128. , 0.69924009, -0.51173437, ...,-128. , -128. , -128. ],[-128. , 8.14087344, -0.36329234, ...,-128. , -128. , -128. ]]],shape=(24, 360, 720))
- volume_time: 24
- azimuth: 360
- range: 720
- volume_time(volume_time)datetime64[ns]2026-04-30T06:00:00 ... 2026-04-...
- standard_name :
- time
array(['2026-04-30T06:00:00.000000000', '2026-04-30T06:05:00.000000000','2026-04-30T06:10:00.000000000', '2026-04-30T06:15:00.000000000','2026-04-30T06:20:00.000000000', '2026-04-30T06:25:00.000000000','2026-04-30T06:30:00.000000000', '2026-04-30T06:35:00.000000000','2026-04-30T06:40:00.000000000', '2026-04-30T06:45:00.000000000','2026-04-30T06:50:00.000000000', '2026-04-30T06:55:00.000000000','2026-04-30T07:00:00.000000000', '2026-04-30T07:05:00.000000000','2026-04-30T07:10:00.000000000', '2026-04-30T07:15:00.000000000','2026-04-30T07:20:00.000000000', '2026-04-30T07:25:00.000000000','2026-04-30T07:30:00.000000000', '2026-04-30T07:35:00.000000000','2026-04-30T07:40:00.000000000', '2026-04-30T07:45:00.000000000','2026-04-30T07:50:00.000000000', '2026-04-30T07:55:00.000000000'],dtype='datetime64[ns]')
- 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], shape=(360,))
- elevation(azimuth)float643.494 3.494 3.494 ... 3.494 3.494
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,...3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234,3.49365234, 3.49365234, 3.49365234, 3.49365234, 3.49365234])
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:01:39.352000 ... 2...
- standard_name :
- time
array([['2026-04-30T06:01:39.352000000', '2026-04-30T06:01:39.415000064','2026-04-30T06:01:39.477499904', ...,'2026-04-30T06:01:39.164000000', '2026-04-30T06:01:39.225999872','2026-04-30T06:01:39.288999936'],['2026-04-30T06:06:39.525499904', '2026-04-30T06:06:39.588000000','2026-04-30T06:06:39.650000128', ...,'2026-04-30T06:06:39.336999936', '2026-04-30T06:06:39.398499840','2026-04-30T06:06:39.461500160'],['2026-04-30T06:11:39.543500032', '2026-04-30T06:11:39.606999808','2026-04-30T06:11:39.669000192', ...,'2026-04-30T06:11:39.355000064', '2026-04-30T06:11:39.416999936','2026-04-30T06:11:39.480499968'],...,['2026-04-30T07:46:39.547500032', '2026-04-30T07:46:39.611000064','2026-04-30T07:46:39.672500224', ...,'2026-04-30T07:46:39.360000256', '2026-04-30T07:46:39.421999872','2026-04-30T07:46:39.484000000'],['2026-04-30T07:51:39.541500160', '2026-04-30T07:51:39.604999936','2026-04-30T07:51:39.666999808', ...,'2026-04-30T07:51:39.352999936', '2026-04-30T07:51:39.415000064','2026-04-30T07:51:39.478000128'],['2026-04-30T07:56:39.356500224', '2026-04-30T07:56:39.420000000','2026-04-30T07:56:39.481999872', ...,'2026-04-30T07:56:39.168000000', '2026-04-30T07:56:39.231000064','2026-04-30T07:56:39.292999936']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.089 3.266 ... -1.564e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.08876499e+00, 3.26628910e+00, 5.44380540e+00, ...,1.56013868e+03, 1.56230965e+03, 1.56448060e+03],[ 3.26596332e+00, 9.79787237e+00, 1.63297580e+01, ...,4.67994082e+03, 4.68645305e+03, 4.69296525e+03],[ 5.44216681e+00, 1.63264711e+01, 2.72107363e+01, ...,7.79831740e+03, 7.80916891e+03, 7.82002038e+03],...,[-5.44216681e+00, -1.63264711e+01, -2.72107363e+01, ...,-7.79831740e+03, -7.80916891e+03, -7.82002038e+03],[-3.26596332e+00, -9.79787237e+00, -1.63297580e+01, ...,-4.67994082e+03, -4.68645305e+03, -4.69296525e+03],[-1.08876499e+00, -3.26628910e+00, -5.44380540e+00, ...,-1.56013868e+03, -1.56230965e+03, -1.56448060e+03]],shape=(360, 720))
- y(azimuth, range)float64124.8 374.3 ... 1.79e+05 1.793e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24760111e+02, 3.74279659e+02, 6.23798312e+02, ...,1.78774186e+05, 1.79022954e+05, 1.79271720e+05],[1.24722107e+02, 3.74165650e+02, 6.23608297e+02, ...,1.78719729e+05, 1.78968422e+05, 1.79217112e+05],[1.24646113e+02, 3.73937667e+02, 6.23228325e+02, ...,1.78610833e+05, 1.78859374e+05, 1.79107913e+05],...,[1.24646113e+02, 3.73937667e+02, 6.23228325e+02, ...,1.78610833e+05, 1.78859374e+05, 1.79107913e+05],[1.24722107e+02, 3.74165650e+02, 6.23608297e+02, ...,1.78719729e+05, 1.78968422e+05, 1.79217112e+05],[1.24760111e+02, 3.74279659e+02, 6.23798312e+02, ...,1.78774186e+05, 1.79022954e+05, 1.79271720e+05]], shape=(360, 720))
- z(azimuth, range)float64192.7 208.0 ... 1.302e+04 1.304e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666],[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666],[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666],...,[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666],[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666],[ 192.72816189, 207.9699883 , 223.2191515 , ...,13001.74633656, 13022.2373219 , 13042.73560666]], shape=(360, 720))
- gr(azimuth, range)float64124.8 374.3 ... 1.79e+05 1.793e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05],[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05],[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05],...,[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05],[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05],[1.24764861e+02, 3.74293911e+02, 6.23822065e+02, ...,1.78780993e+05, 1.79029771e+05, 1.79278547e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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
array([3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551,3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551,3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551,3.49914551, 3.49914551, 3.49914551, 3.49914551, 3.49914551,3.49914551, 3.49914551, 3.49914551, 3.49914551])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 720))
- volume_time: 24
- azimuth: 360
- range: 720
- volume_time(volume_time)datetime64[ns]2026-04-30T06:00:00 ... 2026-04-...
- standard_name :
- time
array(['2026-04-30T06:00:00.000000000', '2026-04-30T06:05:00.000000000','2026-04-30T06:10:00.000000000', '2026-04-30T06:15:00.000000000','2026-04-30T06:20:00.000000000', '2026-04-30T06:25:00.000000000','2026-04-30T06:30:00.000000000', '2026-04-30T06:35:00.000000000','2026-04-30T06:40:00.000000000', '2026-04-30T06:45:00.000000000','2026-04-30T06:50:00.000000000', '2026-04-30T06:55:00.000000000','2026-04-30T07:00:00.000000000', '2026-04-30T07:05:00.000000000','2026-04-30T07:10:00.000000000', '2026-04-30T07:15:00.000000000','2026-04-30T07:20:00.000000000', '2026-04-30T07:25:00.000000000','2026-04-30T07:30:00.000000000', '2026-04-30T07:35:00.000000000','2026-04-30T07:40:00.000000000', '2026-04-30T07:45:00.000000000','2026-04-30T07:50:00.000000000', '2026-04-30T07:55:00.000000000'],dtype='datetime64[ns]')
- 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], shape=(360,))
- elevation(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, 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, 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, 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, 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,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]2026-04-30T06:02:01.854000128 .....
- standard_name :
- time
array([['2026-04-30T06:02:01.854000128', '2026-04-30T06:02:01.916999936','2026-04-30T06:02:01.979499776', ...,'2026-04-30T06:02:01.665999872', '2026-04-30T06:02:01.729000192','2026-04-30T06:02:01.790999808'],['2026-04-30T06:07:02.027500032', '2026-04-30T06:07:02.091000064','2026-04-30T06:07:02.152999936', ...,'2026-04-30T06:07:01.839000064', '2026-04-30T06:07:01.900999936','2026-04-30T06:07:01.964499968'],['2026-04-30T06:12:02.046500096', '2026-04-30T06:12:02.110000128','2026-04-30T06:12:02.172000000', ...,'2026-04-30T06:12:01.858000128', '2026-04-30T06:12:01.920000000','2026-04-30T06:12:01.982999808'],...,['2026-04-30T07:47:02.049499904', '2026-04-30T07:47:02.112999936','2026-04-30T07:47:02.175000064', ...,'2026-04-30T07:47:01.861999872', '2026-04-30T07:47:01.923999744','2026-04-30T07:47:01.987000064'],['2026-04-30T07:52:02.044000256', '2026-04-30T07:52:02.107500032','2026-04-30T07:52:02.170000128', ...,'2026-04-30T07:52:01.855000064', '2026-04-30T07:52:01.917499904','2026-04-30T07:52:01.980000000'],['2026-04-30T07:57:01.859000064', '2026-04-30T07:57:01.921999872','2026-04-30T07:57:01.984499968', ...,'2026-04-30T07:57:01.670000128', '2026-04-30T07:57:01.732000000','2026-04-30T07:57:01.795500032']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.09 3.269 ... -1.567e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.08976840e+00, 3.26930103e+00, 5.44882808e+00, ...,1.56215640e+03, 1.56433098e+03, 1.56650555e+03],[ 3.26897325e+00, 9.80690722e+00, 1.63448245e+01, ...,4.68599335e+03, 4.69251643e+03, 4.69903949e+03],[ 5.44718233e+00, 1.63415261e+01, 2.72358421e+01, ...,7.80840291e+03, 7.81927250e+03, 7.83014205e+03],...,[-5.44718233e+00, -1.63415261e+01, -2.72358421e+01, ...,-7.80840291e+03, -7.81927250e+03, -7.83014205e+03],[-3.26897325e+00, -9.80690722e+00, -1.63448245e+01, ...,-4.68599335e+03, -4.69251643e+03, -4.69903949e+03],[-1.08976840e+00, -3.26930103e+00, -5.44882808e+00, ...,-1.56215640e+03, -1.56433098e+03, -1.56650555e+03]],shape=(360, 720))
- y(azimuth, range)float64124.9 374.6 ... 1.793e+05 1.795e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24875090e+02, 3.74624791e+02, 6.24373855e+02, ...,1.79005393e+05, 1.79254575e+05, 1.79503757e+05],[1.24837052e+02, 3.74510677e+02, 6.24183665e+02, ...,1.78950866e+05, 1.79199973e+05, 1.79449078e+05],[1.24760987e+02, 3.74282483e+02, 6.23803342e+02, ...,1.78841829e+05, 1.79090784e+05, 1.79339738e+05],...,[1.24760987e+02, 3.74282483e+02, 6.23803342e+02, ...,1.78841829e+05, 1.79090784e+05, 1.79339738e+05],[1.24837052e+02, 3.74510677e+02, 6.24183665e+02, ...,1.78950866e+05, 1.79199973e+05, 1.79449078e+05],[1.24875090e+02, 3.74624791e+02, 6.24373855e+02, ...,1.79005393e+05, 1.79254575e+05, 1.79503757e+05]], shape=(360, 720))
- z(azimuth, range)float64190.5 201.4 ... 9.862e+03 9.878e+03
- standard_name :
- height_above_ground
- units :
- metre
array([[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ],[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ],[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ],...,[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ],[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ],[ 190.52609321, 201.36379239, 212.2088419 , ..., 9845.95433559,9862.05380786, 9878.1606012 ]], shape=(360, 720))
- gr(azimuth, range)float64124.9 374.6 ... 1.793e+05 1.795e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05],[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05],[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05],...,[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05],[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05],[1.24879845e+02, 3.74639057e+02, 6.24397630e+02, ...,1.79012209e+05, 1.79261401e+05, 1.79510592e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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
array([2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965,2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965,2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965,2.49938965, 2.49938965, 2.49938965, 2.49938965, 2.49938965,2.49938965, 2.49938965, 2.49938965, 2.49938965])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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. ]]],shape=(24, 360, 720))
- volume_time: 24
- azimuth: 360
- range: 720
- volume_time(volume_time)datetime64[ns]2026-04-30T06:00:00 ... 2026-04-...
- standard_name :
- time
array(['2026-04-30T06:00:00.000000000', '2026-04-30T06:05:00.000000000','2026-04-30T06:10:00.000000000', '2026-04-30T06:15:00.000000000','2026-04-30T06:20:00.000000000', '2026-04-30T06:25:00.000000000','2026-04-30T06:30:00.000000000', '2026-04-30T06:35:00.000000000','2026-04-30T06:40:00.000000000', '2026-04-30T06:45:00.000000000','2026-04-30T06:50:00.000000000', '2026-04-30T06:55:00.000000000','2026-04-30T07:00:00.000000000', '2026-04-30T07:05:00.000000000','2026-04-30T07:10:00.000000000', '2026-04-30T07:15:00.000000000','2026-04-30T07:20:00.000000000', '2026-04-30T07:25:00.000000000','2026-04-30T07:30:00.000000000', '2026-04-30T07:35:00.000000000','2026-04-30T07:40:00.000000000', '2026-04-30T07:45:00.000000000','2026-04-30T07:50:00.000000000', '2026-04-30T07:55:00.000000000'],dtype='datetime64[ns]')
- 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], shape=(360,))
- elevation(azimuth)float641.494 1.494 1.494 ... 1.494 1.494
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,...1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062,1.49414062, 1.49414062, 1.49414062, 1.49414062, 1.49414062])
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:02:24.356500224 .....
- standard_name :
- time
array([['2026-04-30T06:02:24.356500224', '2026-04-30T06:02:24.420000000','2026-04-30T06:02:24.481999872', ...,'2026-04-30T06:02:24.168999936', '2026-04-30T06:02:24.231000064','2026-04-30T06:02:24.293999872'],['2026-04-30T06:07:24.529999872', '2026-04-30T06:07:24.592999936','2026-04-30T06:07:24.655500032', ...,'2026-04-30T06:07:24.341000192', '2026-04-30T06:07:24.403500032','2026-04-30T06:07:24.466500096'],['2026-04-30T06:12:24.548999680', '2026-04-30T06:12:24.611000064','2026-04-30T06:12:24.673500160', ...,'2026-04-30T06:12:24.360499968', '2026-04-30T06:12:24.422999808','2026-04-30T06:12:24.485000192'],...,['2026-04-30T07:47:24.552499968', '2026-04-30T07:47:24.616000256','2026-04-30T07:47:24.677999872', ...,'2026-04-30T07:47:24.364000000', '2026-04-30T07:47:24.426000128','2026-04-30T07:47:24.488500224'],['2026-04-30T07:52:24.546000128', '2026-04-30T07:52:24.609000192','2026-04-30T07:52:24.672000000', ...,'2026-04-30T07:52:24.356999936', '2026-04-30T07:52:24.419499776','2026-04-30T07:52:24.481999872'],['2026-04-30T07:57:24.360499968', '2026-04-30T07:57:24.423500032','2026-04-30T07:57:24.486500096', ...,'2026-04-30T07:57:24.172999936', '2026-04-30T07:57:24.235000064','2026-04-30T07:57:24.297500160']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.09 3.271 ... -1.568e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.09042185e+00, 3.27126305e+00, 5.45210088e+00, ...,1.56366172e+03, 1.56583919e+03, 1.56801665e+03],[ 3.27093341e+00, 9.81279268e+00, 1.63546419e+01, ...,4.69050885e+03, 4.69704059e+03, 4.70357232e+03],[ 5.45044860e+00, 1.63513332e+01, 2.72522011e+01, ...,7.81592721e+03, 7.82681124e+03, 7.83769523e+03],...,[-5.45044860e+00, -1.63513332e+01, -2.72522011e+01, ...,-7.81592721e+03, -7.82681124e+03, -7.83769523e+03],[-3.27093341e+00, -9.81279268e+00, -1.63546419e+01, ...,-4.69050885e+03, -4.69704059e+03, -4.70357232e+03],[-1.09042185e+00, -3.27126305e+00, -5.45210088e+00, ...,-1.56366172e+03, -1.56583919e+03, -1.56801665e+03]],shape=(360, 720))
- y(azimuth, range)float64124.9 374.8 ... 1.794e+05 1.797e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24949968e+02, 3.74849617e+02, 6.24748880e+02, ...,1.79177886e+05, 1.79427399e+05, 1.79676911e+05],[1.24911907e+02, 3.74735434e+02, 6.24558576e+02, ...,1.79123306e+05, 1.79372744e+05, 1.79622180e+05],[1.24835797e+02, 3.74507103e+02, 6.24178025e+02, ...,1.79014164e+05, 1.79263450e+05, 1.79512734e+05],...,[1.24835797e+02, 3.74507103e+02, 6.24178025e+02, ...,1.79014164e+05, 1.79263450e+05, 1.79512734e+05],[1.24911907e+02, 3.74735434e+02, 6.24558576e+02, ...,1.79123306e+05, 1.79372744e+05, 1.79622180e+05],[1.24949968e+02, 3.74849617e+02, 6.24748880e+02, ...,1.79177886e+05, 1.79427399e+05, 1.79676911e+05]], shape=(360, 720))
- z(azimuth, range)float64188.4 194.9 ... 6.767e+03 6.779e+03
- standard_name :
- height_above_ground
- units :
- metre
array([[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474],[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474],[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474],...,[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474],[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474],[ 188.37025963, 194.89629827, 201.42969607, ..., 6755.28694972,6767.08395331, 6778.88829474]], shape=(360, 720))
- gr(azimuth, range)float64125.0 374.9 ... 1.794e+05 1.797e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05],[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05],[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05],...,[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05],[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05],[1.24954726e+02, 3.74863890e+02, 6.24772670e+02, ...,1.79184708e+05, 1.79434231e+05, 1.79683753e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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 1.5 1.5
array([1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379,1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379,1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379,1.49963379, 1.49963379, 1.49963379, 1.49963379, 1.49963379,1.49963379, 1.49963379, 1.49963379, 1.49963379])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 720))
- volume_time: 24
- azimuth: 360
- range: 720
- volume_time(volume_time)datetime64[ns]2026-04-30T06:00:00 ... 2026-04-...
- standard_name :
- time
array(['2026-04-30T06:00:00.000000000', '2026-04-30T06:05:00.000000000','2026-04-30T06:10:00.000000000', '2026-04-30T06:15:00.000000000','2026-04-30T06:20:00.000000000', '2026-04-30T06:25:00.000000000','2026-04-30T06:30:00.000000000', '2026-04-30T06:35:00.000000000','2026-04-30T06:40:00.000000000', '2026-04-30T06:45:00.000000000','2026-04-30T06:50:00.000000000', '2026-04-30T06:55:00.000000000','2026-04-30T07:00:00.000000000', '2026-04-30T07:05:00.000000000','2026-04-30T07:10:00.000000000', '2026-04-30T07:15:00.000000000','2026-04-30T07:20:00.000000000', '2026-04-30T07:25:00.000000000','2026-04-30T07:30:00.000000000', '2026-04-30T07:35:00.000000000','2026-04-30T07:40:00.000000000', '2026-04-30T07:45:00.000000000','2026-04-30T07:50:00.000000000', '2026-04-30T07:55:00.000000000'],dtype='datetime64[ns]')
- 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], shape=(360,))
- elevation(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, 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, 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, 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, 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,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]2026-04-30T06:02:52.348000 ... 2...
- standard_name :
- time
array([['2026-04-30T06:02:52.348000000', '2026-04-30T06:02:52.432000256','2026-04-30T06:02:52.514999808', ...,'2026-04-30T06:02:52.096499968', '2026-04-30T06:02:52.179999744','2026-04-30T06:02:52.263500032'],['2026-04-30T06:07:52.561999872', '2026-04-30T06:07:52.645500160','2026-04-30T06:07:52.729000192', ...,'2026-04-30T06:07:52.310999808', '2026-04-30T06:07:52.394000128','2026-04-30T06:07:52.477499904'],['2026-04-30T06:12:52.580999936', '2026-04-30T06:12:52.664999936','2026-04-30T06:12:52.748499968', ...,'2026-04-30T06:12:52.330999808', '2026-04-30T06:12:52.413000192','2026-04-30T06:12:52.497000192'],...,['2026-04-30T07:47:52.592500224', '2026-04-30T07:47:52.676499968','2026-04-30T07:47:52.759500032', ...,'2026-04-30T07:47:52.341500160', '2026-04-30T07:47:52.424499968','2026-04-30T07:47:52.508500224'],['2026-04-30T07:52:52.579500288', '2026-04-30T07:52:52.663499776','2026-04-30T07:52:52.747500032', ...,'2026-04-30T07:52:52.328999936', '2026-04-30T07:52:52.412000000','2026-04-30T07:52:52.495999744'],['2026-04-30T07:57:52.336999936', '2026-04-30T07:57:52.420999936','2026-04-30T07:57:52.504499968', ...,'2026-04-30T07:57:52.086999808', '2026-04-30T07:57:52.169499904','2026-04-30T07:57:52.252499968']],shape=(24, 360), 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], shape=(720,), dtype=float32)
- x(azimuth, range)float641.091 3.272 ... -1.569e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.09075419e+00, 3.27226175e+00, 5.45376822e+00, ...,1.56472054e+03, 1.56690030e+03, 1.56908005e+03],[ 3.27193031e+00, 9.81578849e+00, 1.63596434e+01, ...,4.69368500e+03, 4.70022360e+03, 4.70676219e+03],[ 5.45210977e+00, 1.63563252e+01, 2.72605353e+01, ...,7.82121972e+03, 7.83211517e+03, 7.84301061e+03],...,[-5.45210977e+00, -1.63563252e+01, -2.72605353e+01, ...,-7.82121972e+03, -7.83211517e+03, -7.84301061e+03],[-3.27193031e+00, -9.81578849e+00, -1.63596434e+01, ...,-4.69368500e+03, -4.70022360e+03, -4.70676219e+03],[-1.09075419e+00, -3.27226175e+00, -5.45376822e+00, ...,-1.56472054e+03, -1.56690030e+03, -1.56908005e+03]],shape=(360, 720))
- y(azimuth, range)float64125.0 375.0 ... 1.795e+05 1.798e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[1.24988050e+02, 3.74964057e+02, 6.24939939e+02, ...,1.79299215e+05, 1.79548990e+05, 1.79798765e+05],[1.24949977e+02, 3.74849839e+02, 6.24749576e+02, ...,1.79244599e+05, 1.79494298e+05, 1.79743997e+05],[1.24873844e+02, 3.74621438e+02, 6.24368908e+02, ...,1.79135383e+05, 1.79384930e+05, 1.79634476e+05],...,[1.24873844e+02, 3.74621438e+02, 6.24368908e+02, ...,1.79135383e+05, 1.79384930e+05, 1.79634476e+05],[1.24949977e+02, 3.74849839e+02, 6.24749576e+02, ...,1.79244599e+05, 1.79494298e+05, 1.79743997e+05],[1.24988050e+02, 3.74964057e+02, 6.24939939e+02, ...,1.79299215e+05, 1.79548990e+05, 1.79798765e+05]], shape=(360, 720))
- z(azimuth, range)float64186.2 188.3 ... 3.601e+03 3.608e+03
- standard_name :
- height_above_ground
- units :
- metre
array([[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166],[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166],[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166],...,[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166],[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166],[ 186.16551974, 188.28208197, 190.40600787, ..., 3593.34319895,3600.73689003, 3608.13793166]], shape=(360, 720))
- gr(azimuth, range)float64125.0 375.0 ... 1.796e+05 1.798e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05],[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05],[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05],...,[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05],[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05],[1.24992809e+02, 3.74978335e+02, 6.24963735e+02, ...,1.79306042e+05, 1.79555827e+05, 1.79805611e+05]], shape=(360, 720))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 720))
- bins(azimuth, 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],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],...,[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05],[1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05,1.79625e+05, 1.79875e+05]], shape=(360, 720), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 720))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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, 0.49987793, 0.49987793, 0.49987793, 0.49987793,0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793,0.49987793, 0.49987793, 0.49987793, 0.49987793, 0.49987793,0.49987793, 0.49987793, 0.49987793, 0.49987793])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 720))
- volume_time: 24
- azimuth: 360
- range: 496
- volume_time(volume_time)datetime64[ns]2026-04-30T06:00:00 ... 2026-04-...
- standard_name :
- time
array(['2026-04-30T06:00:00.000000000', '2026-04-30T06:05:00.000000000','2026-04-30T06:10:00.000000000', '2026-04-30T06:15:00.000000000','2026-04-30T06:20:00.000000000', '2026-04-30T06:25:00.000000000','2026-04-30T06:30:00.000000000', '2026-04-30T06:35:00.000000000','2026-04-30T06:40:00.000000000', '2026-04-30T06:45:00.000000000','2026-04-30T06:50:00.000000000', '2026-04-30T06:55:00.000000000','2026-04-30T07:00:00.000000000', '2026-04-30T07:05:00.000000000','2026-04-30T07:10:00.000000000', '2026-04-30T07:15:00.000000000','2026-04-30T07:20:00.000000000', '2026-04-30T07:25:00.000000000','2026-04-30T07:30:00.000000000', '2026-04-30T07:35:00.000000000','2026-04-30T07:40:00.000000000', '2026-04-30T07:45:00.000000000','2026-04-30T07:50:00.000000000', '2026-04-30T07:55:00.000000000'],dtype='datetime64[ns]')
- 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], shape=(360,))
- elevation(azimuth)float647.987 7.987 7.987 ... 7.987 7.987
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,...7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055,7.98706055, 7.98706055, 7.98706055, 7.98706055, 7.98706055])
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:03:15.375500288 .....
- standard_name :
- time
array([['2026-04-30T06:03:15.375500288', '2026-04-30T06:03:15.431500032','2026-04-30T06:03:15.487000064', ...,'2026-04-30T06:03:15.207500032', '2026-04-30T06:03:15.263500032','2026-04-30T06:03:15.318500096'],['2026-04-30T06:08:15.533500160', '2026-04-30T06:08:15.589499904','2026-04-30T06:08:15.645500160', ...,'2026-04-30T06:08:15.366499840', '2026-04-30T06:08:15.421999872','2026-04-30T06:08:15.477499904'],['2026-04-30T06:13:15.529499904', '2026-04-30T06:13:15.585999872','2026-04-30T06:13:15.641499904', ...,'2026-04-30T06:13:15.362499840', '2026-04-30T06:13:15.418000128','2026-04-30T06:13:15.473999872'],...,['2026-04-30T07:48:15.539000064', '2026-04-30T07:48:15.594500096','2026-04-30T07:48:15.649499904', ...,'2026-04-30T07:48:15.371500032', '2026-04-30T07:48:15.426499840','2026-04-30T07:48:15.483000064'],['2026-04-30T07:53:15.533999872', '2026-04-30T07:53:15.590000128','2026-04-30T07:53:15.645500160', ...,'2026-04-30T07:53:15.367000064', '2026-04-30T07:53:15.422500096','2026-04-30T07:53:15.478000128'],['2026-04-30T07:58:15.368499968', '2026-04-30T07:58:15.424499968','2026-04-30T07:58:15.480000000', ...,'2026-04-30T07:58:15.201499904', '2026-04-30T07:58:15.256999936','2026-04-30T07:58:15.312499968']],shape=(24, 360), 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.],shape=(496,), dtype=float32)
- x(azimuth, range)float641.08 3.241 ... -1.068e+03
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.08020967e+00, 3.24061574e+00, 5.40100411e+00, ...,1.06394671e+03, 1.06609798e+03, 1.06824923e+03],[ 3.24029996e+00, 9.72086009e+00, 1.62013671e+01, ...,3.19151605e+03, 3.19796920e+03, 3.20442230e+03],[ 5.39940322e+00, 1.61981434e+01, 2.69967951e+01, ...,5.31811322e+03, 5.32886629e+03, 5.33961926e+03],...,[-5.39940322e+00, -1.61981434e+01, -2.69967951e+01, ...,-5.31811322e+03, -5.32886629e+03, -5.33961926e+03],[-3.24029996e+00, -9.72086009e+00, -1.62013671e+01, ...,-3.19151605e+03, -3.19796920e+03, -3.20442230e+03],[-1.08020967e+00, -3.24061574e+00, -5.40100411e+00, ...,-1.06394671e+03, -1.06609798e+03, -1.06824923e+03]],shape=(360, 496))
- y(azimuth, range)float64123.8 371.3 ... 1.222e+05 1.224e+05
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[ 123.77976763, 371.3377828 , 618.89377084, ...,121916.21772034, 122162.72870005, 122409.23745979],[ 123.74206311, 371.22466971, 618.7052498 , ...,121879.0808594 , 122125.51674947, 122371.95042025],[ 123.66666557, 370.99847799, 618.32826515, ...,121804.81844975, 122051.10418343, 122297.38769918],...,[ 123.66666557, 370.99847799, 618.32826515, ...,121804.81844975, 122051.10418343, 122297.38769918],[ 123.74206311, 371.22466971, 618.7052498 , ...,121879.0808594 , 122125.51674947, 122371.95042025],[ 123.77976763, 371.3377828 , 618.89377084, ...,121916.21772034, 122162.72870005, 122409.23745979]],shape=(360, 496))
- z(azimuth, range)float64202.5 237.2 ... 1.824e+04 1.828e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455],[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455],[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455],...,[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455],[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455],[ 202.47958515, 237.22417191, 271.97598056, ...,18205.61466548, 18243.90856408, 18282.20963455]], shape=(360, 496))
- gr(azimuth, range)float64123.8 371.4 ... 1.222e+05 1.224e+05
- standard_name :
- distance_from_radar
- units :
- metre
array([[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595],[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595],[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595],...,[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595],[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595],[ 123.78448096, 371.35192274, 618.91733731, ...,121920.86009311, 122167.38045955, 122413.89860595]],shape=(360, 496))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 496))
- bins(azimuth, 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.],[ 125., 375., 625., ..., 123375., 123625., 123875.],[ 125., 375., 625., ..., 123375., 123625., 123875.],...,[ 125., 375., 625., ..., 123375., 123625., 123875.],[ 125., 375., 625., ..., 123375., 123625., 123875.],[ 125., 375., 625., ..., 123375., 123625., 123875.]],shape=(360, 496), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 496))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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
array([7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688,7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688,7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688,7.99804688, 7.99804688, 7.99804688, 7.99804688, 7.99804688,7.99804688, 7.99804688, 7.99804688, 7.99804688])
- nyquist_velocity(volume_time)float6432.08 32.08 32.08 ... 32.08 32.08
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226, 32.08234226,32.08234226, 32.08234226, 32.08234226, 32.08234226])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 496))
- volume_time: 24
- azimuth: 360
- range: 240
- volume_time(volume_time)datetime64[ns]2026-04-30T06:00:00 ... 2026-04-...
- standard_name :
- time
array(['2026-04-30T06:00:00.000000000', '2026-04-30T06:05:00.000000000','2026-04-30T06:10:00.000000000', '2026-04-30T06:15:00.000000000','2026-04-30T06:20:00.000000000', '2026-04-30T06:25:00.000000000','2026-04-30T06:30:00.000000000', '2026-04-30T06:35:00.000000000','2026-04-30T06:40:00.000000000', '2026-04-30T06:45:00.000000000','2026-04-30T06:50:00.000000000', '2026-04-30T06:55:00.000000000','2026-04-30T07:00:00.000000000', '2026-04-30T07:05:00.000000000','2026-04-30T07:10:00.000000000', '2026-04-30T07:15:00.000000000','2026-04-30T07:20:00.000000000', '2026-04-30T07:25:00.000000000','2026-04-30T07:30:00.000000000', '2026-04-30T07:35:00.000000000','2026-04-30T07:40:00.000000000', '2026-04-30T07:45:00.000000000','2026-04-30T07:50:00.000000000', '2026-04-30T07:55:00.000000000'],dtype='datetime64[ns]')
- 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], shape=(360,))
- elevation(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, 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, 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, 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, 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,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]2026-04-30T06:03:30.508000 ... 2...
- standard_name :
- time
array([['2026-04-30T06:03:30.508000000', '2026-04-30T06:03:30.541500160','2026-04-30T06:03:30.574500096', ...,'2026-04-30T06:03:30.407500032', '2026-04-30T06:03:30.440499968','2026-04-30T06:03:30.473999872'],['2026-04-30T06:08:30.621999872', '2026-04-30T06:08:30.655500032','2026-04-30T06:08:30.689500160', ...,'2026-04-30T06:08:30.522000128', '2026-04-30T06:08:30.555000064','2026-04-30T06:08:30.588499968'],['2026-04-30T06:13:30.599500032', '2026-04-30T06:13:30.632999936','2026-04-30T06:13:30.666500096', ...,'2026-04-30T06:13:30.499000064', '2026-04-30T06:13:30.532499968','2026-04-30T06:13:30.565499904'],...,['2026-04-30T07:48:30.606499840', '2026-04-30T07:48:30.640499968','2026-04-30T07:48:30.673500160', ...,'2026-04-30T07:48:30.506000128', '2026-04-30T07:48:30.539500032','2026-04-30T07:48:30.572499968'],['2026-04-30T07:53:30.608000000', '2026-04-30T07:53:30.641499904','2026-04-30T07:53:30.674500096', ...,'2026-04-30T07:53:30.507500032', '2026-04-30T07:53:30.540499968','2026-04-30T07:53:30.574500096'],['2026-04-30T07:58:30.505500160', '2026-04-30T07:58:30.539000064','2026-04-30T07:58:30.572499968', ...,'2026-04-30T07:58:30.404999936', '2026-04-30T07:58:30.438499840','2026-04-30T07:58:30.471500032']],shape=(24, 360), 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.],shape=(240,), dtype=float32)
- x(azimuth, range)float641.067 3.201 5.335 ... -508.2 -510.3
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 1.06700849e+00, 3.20100587e+00, 5.33497715e+00, ...,5.06087405e+02, 5.08215128e+02, 5.10342824e+02],[ 3.20070044e+00, 9.60204256e+00, 1.60033064e+01, ...,1.51810806e+03, 1.52449058e+03, 1.53087302e+03],[ 5.33341742e+00, 1.60001544e+01, 2.66667608e+01, ...,2.52966628e+03, 2.54030165e+03, 2.55093689e+03],...,[-5.33341742e+00, -1.60001544e+01, -2.66667608e+01, ...,-2.52966628e+03, -2.54030165e+03, -2.55093689e+03],[-3.20070044e+00, -9.60204256e+00, -1.60033064e+01, ...,-1.51810806e+03, -1.52449058e+03, -1.53087302e+03],[-1.06700849e+00, -3.20100587e+00, -5.33497715e+00, ...,-5.06087405e+02, -5.08215128e+02, -5.10342824e+02]],shape=(360, 240))
- y(azimuth, range)float64122.3 366.8 ... 5.824e+04 5.848e+04
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[ 122.26706202, 366.79894202, 611.32782964, ...,57991.87256273, 58235.68549519, 58479.4953529 ],[ 122.22981829, 366.68721151, 611.14161326, ...,57974.20767657, 58217.94634125, 58461.68193211],[ 122.15534217, 366.46378452, 610.76923723, ...,57938.88328514, 58182.47343688, 58426.06051667],...,[ 122.15534217, 366.46378452, 610.76923723, ...,57938.88328514, 58182.47343688, 58426.06051667],[ 122.22981829, 366.68721151, 611.14161326, ...,57974.20767657, 58217.94634125, 58461.68193211],[ 122.26706202, 366.79894202, 611.32782964, ...,57991.87256273, 58235.68549519, 58479.4953529 ]], shape=(360, 240))
- z(azimuth, range)float64211.1 263.0 ... 1.277e+04 1.282e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482],[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482],[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482],...,[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482],[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482],[ 211.07014481, 262.99571931, 314.92834021, ...,12714.20563812, 12767.79756092, 12821.39649482]], shape=(360, 240))
- gr(azimuth, range)float64122.3 366.8 ... 5.824e+04 5.848e+04
- standard_name :
- distance_from_radar
- units :
- metre
array([[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768],[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768],[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768],...,[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768],[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768],[ 122.27171776, 366.81290913, 611.35110802, ...,57994.08079963, 58237.90301609, 58481.72215768]], shape=(360, 240))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 240))
- bins(azimuth, 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.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],...,[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.]],shape=(360, 240), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 240))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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, 12.00256348, 12.00256348, 12.00256348, 12.00256348,12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348,12.00256348, 12.00256348, 12.00256348, 12.00256348, 12.00256348,12.00256348, 12.00256348, 12.00256348, 12.00256348])
- nyquist_velocity(volume_time)float6432.22 32.22 32.22 ... 32.22 32.22
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 240))
- volume_time: 24
- azimuth: 360
- range: 240
- volume_time(volume_time)datetime64[ns]2026-04-30T06:00:00 ... 2026-04-...
- standard_name :
- time
array(['2026-04-30T06:00:00.000000000', '2026-04-30T06:05:00.000000000','2026-04-30T06:10:00.000000000', '2026-04-30T06:15:00.000000000','2026-04-30T06:20:00.000000000', '2026-04-30T06:25:00.000000000','2026-04-30T06:30:00.000000000', '2026-04-30T06:35:00.000000000','2026-04-30T06:40:00.000000000', '2026-04-30T06:45:00.000000000','2026-04-30T06:50:00.000000000', '2026-04-30T06:55:00.000000000','2026-04-30T07:00:00.000000000', '2026-04-30T07:05:00.000000000','2026-04-30T07:10:00.000000000', '2026-04-30T07:15:00.000000000','2026-04-30T07:20:00.000000000', '2026-04-30T07:25:00.000000000','2026-04-30T07:30:00.000000000', '2026-04-30T07:35:00.000000000','2026-04-30T07:40:00.000000000', '2026-04-30T07:45:00.000000000','2026-04-30T07:50:00.000000000', '2026-04-30T07:55:00.000000000'],dtype='datetime64[ns]')
- 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], shape=(360,))
- 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.98486328, 16.98486328, 16.98486328, ..., 16.98486328,16.98486328, 16.98486328],[16.98486328, 16.98486328, 16.98486328, ..., 16.98486328,16.98486328, 16.98486328],...,[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]], shape=(24, 360))
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:03:42.508999936 .....
- standard_name :
- time
array([['2026-04-30T06:03:42.508999936', '2026-04-30T06:03:42.542500096','2026-04-30T06:03:42.576499968', ...,'2026-04-30T06:03:42.408499968', '2026-04-30T06:03:42.441499904','2026-04-30T06:03:42.475500032'],['2026-04-30T06:08:42.623000064', '2026-04-30T06:08:42.657499904','2026-04-30T06:08:42.690500096', ...,'2026-04-30T06:08:42.523000064', '2026-04-30T06:08:42.556499968','2026-04-30T06:08:42.589499904'],['2026-04-30T06:13:42.600500224', '2026-04-30T06:13:42.634000128','2026-04-30T06:13:42.667500032', ...,'2026-04-30T06:13:42.500000000', '2026-04-30T06:13:42.533499904','2026-04-30T06:13:42.566499840'],...,['2026-04-30T07:48:42.608000000', '2026-04-30T07:48:42.641499904','2026-04-30T07:48:42.675000064', ...,'2026-04-30T07:48:42.507500032', '2026-04-30T07:48:42.540499968','2026-04-30T07:48:42.574500096'],['2026-04-30T07:53:42.608999936', '2026-04-30T07:53:42.642499840','2026-04-30T07:53:42.676000000', ...,'2026-04-30T07:53:42.508999936', '2026-04-30T07:53:42.541500160','2026-04-30T07:53:42.575500032'],['2026-04-30T07:58:42.507000064', '2026-04-30T07:58:42.540499968','2026-04-30T07:58:42.573499904', ...,'2026-04-30T07:58:42.406500096', '2026-04-30T07:58:42.439500032','2026-04-30T07:58:42.472999936']],shape=(24, 360), 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.],shape=(240,), dtype=float32)
- x(volume_time, azimuth, range)float641.043 3.13 5.216 ... -496.6 -498.7
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[[ 1.04327148e+00, 3.12978753e+00, 5.21626769e+00, ...,4.94538685e+02, 4.96616629e+02, 4.98694536e+02],[ 3.12949666e+00, 9.38840924e+00, 1.56472142e+01, ...,1.48346541e+03, 1.48969861e+03, 1.49593170e+03],[ 5.21476856e+00, 1.56441711e+01, 2.60733943e+01, ...,2.47194026e+03, 2.48232682e+03, 2.49271319e+03],...,[-5.21476856e+00, -1.56441711e+01, -2.60733943e+01, ...,-2.47194026e+03, -2.48232682e+03, -2.49271319e+03],[-3.12949666e+00, -9.38840924e+00, -1.56472142e+01, ...,-1.48346541e+03, -1.48969861e+03, -1.49593170e+03],[-1.04327148e+00, -3.12978753e+00, -5.21626769e+00, ...,-4.94538685e+02, -4.96616629e+02, -4.98694536e+02]],[[ 1.04321040e+00, 3.12960427e+00, 5.21596223e+00, ...,4.94509099e+02, 4.96586916e+02, 4.98664697e+02],[ 3.12931343e+00, 9.38785951e+00, 1.56462979e+01, ...,1.48337667e+03, 1.48960948e+03, 1.49584219e+03],[ 5.21446324e+00, 1.56432551e+01, 2.60718675e+01, ...,2.47179238e+03, 2.48217830e+03, 2.49256404e+03],...-2.47194026e+03, -2.48232682e+03, -2.49271319e+03],[-3.12949666e+00, -9.38840924e+00, -1.56472142e+01, ...,-1.48346541e+03, -1.48969861e+03, -1.49593170e+03],[-1.04327148e+00, -3.12978753e+00, -5.21626769e+00, ...,-4.94538685e+02, -4.96616629e+02, -4.98694536e+02]],[[ 1.04327148e+00, 3.12978753e+00, 5.21626769e+00, ...,4.94538685e+02, 4.96616629e+02, 4.98694536e+02],[ 3.12949666e+00, 9.38840924e+00, 1.56472142e+01, ...,1.48346541e+03, 1.48969861e+03, 1.49593170e+03],[ 5.21476856e+00, 1.56441711e+01, 2.60733943e+01, ...,2.47194026e+03, 2.48232682e+03, 2.49271319e+03],...,[-5.21476856e+00, -1.56441711e+01, -2.60733943e+01, ...,-2.47194026e+03, -2.48232682e+03, -2.49271319e+03],[-3.12949666e+00, -9.38840924e+00, -1.56472142e+01, ...,-1.48346541e+03, -1.48969861e+03, -1.49593170e+03],[-1.04327148e+00, -3.12978753e+00, -5.21626769e+00, ...,-4.94538685e+02, -4.96616629e+02, -4.98694536e+02]]],shape=(24, 360, 240))
- y(volume_time, azimuth, range)float64119.5 358.6 ... 5.691e+04 5.714e+04
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[[ 119.547071 , 358.63812872, 597.72507383, ...,56668.52032876, 56906.62913154, 57144.73375795],[ 119.5106558 , 358.52888407, 597.54300099, ...,56651.25854851, 56889.29482104, 57127.32691848],[ 119.4378365 , 358.31042805, 597.17891075, ...,56616.74024611, 56854.63148024, 57092.51854182],...,[ 119.4378365 , 358.31042805, 597.17891075, ...,56616.74024611, 56854.63148024, 57092.51854182],[ 119.5106558 , 358.52888407, 597.54300099, ...,56651.25854851, 56889.29482104, 57127.32691848],[ 119.547071 , 358.63812872, 597.72507383, ...,56668.52032876, 56906.62913154, 57144.73375795]],[[ 119.54007168, 358.61712901, 597.6900714 , ...,56665.13016602, 56903.2244188 , 57141.31449291],[ 119.50365862, 358.50789076, 597.50800921, ...,56647.86941844, 56885.89114541, 57123.90869497],[ 119.43084358, 358.28944753, 597.1439403 , ...,56613.35318108, 56851.2298785 , 57089.10240108],...56616.74024611, 56854.63148024, 57092.51854182],[ 119.5106558 , 358.52888407, 597.54300099, ...,56651.25854851, 56889.29482104, 57127.32691848],[ 119.547071 , 358.63812872, 597.72507383, ...,56668.52032876, 56906.62913154, 57144.73375795]],[[ 119.547071 , 358.63812872, 597.72507383, ...,56668.52032876, 56906.62913154, 57144.73375795],[ 119.5106558 , 358.52888407, 597.54300099, ...,56651.25854851, 56889.29482104, 57127.32691848],[ 119.4378365 , 358.31042805, 597.17891075, ...,56616.74024611, 56854.63148024, 57092.51854182],...,[ 119.4378365 , 358.31042805, 597.17891075, ...,56616.74024611, 56854.63148024, 57092.51854182],[ 119.5106558 , 358.52888407, 597.54300099, ...,56651.25854851, 56889.29482104, 57127.32691848],[ 119.547071 , 358.63812872, 597.72507383, ...,56668.52032876, 56906.62913154, 57144.73375795]]],shape=(24, 360, 240))
- z(volume_time, azimuth, range)float64221.6 294.6 ... 1.778e+04 1.786e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],...,[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ]],[[ 221.62572354, 294.66222238, 367.70545675, ...,17719.25937281, 17793.88730666, 17868.52193031],[ 221.62572354, 294.66222238, 367.70545675, ...,17719.25937281, 17793.88730666, 17868.52193031],[ 221.62572354, 294.66222238, 367.70545675, ...,17719.25937281, 17793.88730666, 17868.52193031],...17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ]],[[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],...,[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ],[ 221.60279998, 294.59345228, 367.59084089, ...,17708.39307511, 17782.97535185, 17857.5643192 ]]],shape=(24, 360, 240))
- gr(volume_time, azimuth, range)float64119.6 358.7 ... 5.691e+04 5.715e+04
- standard_name :
- distance_from_radar
- units :
- metre
array([[[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],...,[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717]],[[ 119.54462358, 358.63078457, 597.71283047, ...,56667.2878827 , 56905.39120173, 57143.49034192],[ 119.54462358, 358.63078457, 597.71283047, ...,56667.2878827 , 56905.39120173, 57143.49034192],[ 119.54462358, 358.63078457, 597.71283047, ...,56667.2878827 , 56905.39120173, 57143.49034192],...56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717]],[[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],...,[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717],[ 119.55162316, 358.65178508, 597.74783424, ...,56670.67817453, 56908.79604412, 57146.90973717]]],shape=(24, 360, 240))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 240))
- bins(azimuth, 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.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],...,[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.]],shape=(360, 240), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 240))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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, 17.00134277, 17.00134277, 17.00134277, 17.00134277,17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277,17.00134277, 17.00134277, 17.00134277, 17.00134277, 17.00134277,17.00134277, 17.00134277, 17.00134277, 17.00134277])
- nyquist_velocity(volume_time)float6432.22 32.22 32.22 ... 32.22 32.22
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 240))
- volume_time: 24
- azimuth: 360
- range: 240
- volume_time(volume_time)datetime64[ns]2026-04-30T06:00:00 ... 2026-04-...
- standard_name :
- time
array(['2026-04-30T06:00:00.000000000', '2026-04-30T06:05:00.000000000','2026-04-30T06:10:00.000000000', '2026-04-30T06:15:00.000000000','2026-04-30T06:20:00.000000000', '2026-04-30T06:25:00.000000000','2026-04-30T06:30:00.000000000', '2026-04-30T06:35:00.000000000','2026-04-30T06:40:00.000000000', '2026-04-30T06:45:00.000000000','2026-04-30T06:50:00.000000000', '2026-04-30T06:55:00.000000000','2026-04-30T07:00:00.000000000', '2026-04-30T07:05:00.000000000','2026-04-30T07:10:00.000000000', '2026-04-30T07:15:00.000000000','2026-04-30T07:20:00.000000000', '2026-04-30T07:25:00.000000000','2026-04-30T07:30:00.000000000', '2026-04-30T07:35:00.000000000','2026-04-30T07:40:00.000000000', '2026-04-30T07:45:00.000000000','2026-04-30T07:50:00.000000000', '2026-04-30T07:55:00.000000000'],dtype='datetime64[ns]')
- 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], shape=(360,))
- elevation(volume_time, azimuth)float6424.97 24.97 24.97 ... 24.97 24.97
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383],[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383],[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383],...,[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383],[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383],[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383,24.97192383, 24.97192383]], shape=(24, 360))
- time(volume_time, azimuth)datetime64[ns]2026-04-30T06:03:54.509999872 .....
- standard_name :
- time
array([['2026-04-30T06:03:54.509999872', '2026-04-30T06:03:54.543500032','2026-04-30T06:03:54.577500160', ...,'2026-04-30T06:03:54.410000128', '2026-04-30T06:03:54.443000064','2026-04-30T06:03:54.476499968'],['2026-04-30T06:08:54.624499968', '2026-04-30T06:08:54.658499840','2026-04-30T06:08:54.691500032', ...,'2026-04-30T06:08:54.524499968', '2026-04-30T06:08:54.557499904','2026-04-30T06:08:54.591000064'],['2026-04-30T06:13:54.601999872', '2026-04-30T06:13:54.635500032','2026-04-30T06:13:54.668499968', ...,'2026-04-30T06:13:54.501499904', '2026-04-30T06:13:54.534500096','2026-04-30T06:13:54.568499968'],...,['2026-04-30T07:48:54.608999936', '2026-04-30T07:48:54.642499840','2026-04-30T07:48:54.676499968', ...,'2026-04-30T07:48:54.508999936', '2026-04-30T07:48:54.542000128','2026-04-30T07:48:54.575500032'],['2026-04-30T07:53:54.610000128', '2026-04-30T07:53:54.644000000','2026-04-30T07:53:54.677499904', ...,'2026-04-30T07:53:54.509999872', '2026-04-30T07:53:54.543000064','2026-04-30T07:53:54.576499968'],['2026-04-30T07:58:54.508000000', '2026-04-30T07:58:54.541500160','2026-04-30T07:58:54.574500096', ...,'2026-04-30T07:58:54.407500032', '2026-04-30T07:58:54.440499968','2026-04-30T07:58:54.473999872']],shape=(24, 360), 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.],shape=(240,), dtype=float32)
- x(volume_time, azimuth, range)float640.9888 2.966 ... -470.3 -472.2
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[[ 9.88813949e-01, 2.96640496e+00, 4.94394678e+00, ...,4.68300150e+02, 4.70266057e+02, 4.72231914e+02],[ 2.96614065e+00, 8.89831127e+00, 1.48303344e+01, ...,1.40475780e+03, 1.41065492e+03, 1.41655189e+03],[ 4.94256383e+00, 1.48275071e+01, 2.47122045e+01, ...,2.34078755e+03, 2.35061409e+03, 2.36044038e+03],...,[-4.94256383e+00, -1.48275071e+01, -2.47122045e+01, ...,-2.34078755e+03, -2.35061409e+03, -2.36044038e+03],[-2.96614065e+00, -8.89831127e+00, -1.48303344e+01, ...,-1.40475780e+03, -1.41065492e+03, -1.41655189e+03],[-9.88813949e-01, -2.96640496e+00, -4.94394678e+00, ...,-4.68300150e+02, -4.70266057e+02, -4.72231914e+02]],[[ 9.88813949e-01, 2.96640496e+00, 4.94394678e+00, ...,4.68300150e+02, 4.70266057e+02, 4.72231914e+02],[ 2.96614065e+00, 8.89831127e+00, 1.48303344e+01, ...,1.40475780e+03, 1.41065492e+03, 1.41655189e+03],[ 4.94256383e+00, 1.48275071e+01, 2.47122045e+01, ...,2.34078755e+03, 2.35061409e+03, 2.36044038e+03],...-2.34078755e+03, -2.35061409e+03, -2.36044038e+03],[-2.96614065e+00, -8.89831127e+00, -1.48303344e+01, ...,-1.40475780e+03, -1.41065492e+03, -1.41655189e+03],[-9.88813949e-01, -2.96640496e+00, -4.94394678e+00, ...,-4.68300150e+02, -4.70266057e+02, -4.72231914e+02]],[[ 9.88813949e-01, 2.96640496e+00, 4.94394678e+00, ...,4.68300150e+02, 4.70266057e+02, 4.72231914e+02],[ 2.96614065e+00, 8.89831127e+00, 1.48303344e+01, ...,1.40475780e+03, 1.41065492e+03, 1.41655189e+03],[ 4.94256383e+00, 1.48275071e+01, 2.47122045e+01, ...,2.34078755e+03, 2.35061409e+03, 2.36044038e+03],...,[-4.94256383e+00, -1.48275071e+01, -2.47122045e+01, ...,-2.34078755e+03, -2.35061409e+03, -2.36044038e+03],[-2.96614065e+00, -8.89831127e+00, -1.48303344e+01, ...,-1.40475780e+03, -1.41065492e+03, -1.41655189e+03],[-9.88813949e-01, -2.96640496e+00, -4.94394678e+00, ...,-4.68300150e+02, -4.70266057e+02, -4.72231914e+02]]],shape=(24, 360, 240))
- y(volume_time, azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.2033231 , 339.60574585, 566.00253726, ...,53612.84927825, 53837.91400282, 54062.9730704 ],...,[ 113.2033231 , 339.60574585, 566.00253726, ...,53612.84927825, 53837.91400282, 54062.9730704 ],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922]],[[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.2033231 , 339.60574585, 566.00253726, ...,53612.84927825, 53837.91400282, 54062.9730704 ],...53612.84927825, 53837.91400282, 54062.9730704 ],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922]],[[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.2033231 , 339.60574585, 566.00253726, ...,53612.84927825, 53837.91400282, 54062.9730704 ],...,[ 113.2033231 , 339.60574585, 566.00253726, ...,53612.84927825, 53837.91400282, 54062.9730704 ],[ 113.27234131, 339.81279793, 566.34761977, ...,53645.53615736, 53870.73810021, 54095.93438264],[ 113.30685568, 339.91633974, 566.52018731, ...,53661.88208648, 53887.15264893, 54112.41754922]]],shape=(24, 360, 240))
- z(volume_time, azimuth, range)float64237.9 343.4 ... 2.553e+04 2.564e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],...,[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289]],[[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],...25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289]],[[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],...,[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289],[ 237.88251903, 343.43209572, 448.98772375, ...,25421.86890833, 25528.84633384, 25635.82975289]]],shape=(24, 360, 240))
- gr(volume_time, azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- standard_name :
- distance_from_radar
- units :
- metre
array([[[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],...,[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273]],[[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],...53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273]],[[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],...,[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273],[ 113.31117022, 339.9292832 , 566.54175948, ...,53663.92544432, 53889.20458471, 54114.47806273]]],shape=(24, 360, 240))
- rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5],[ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5],[ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5],...,[357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5],[358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5],[359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 240))
- bins(azimuth, 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.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],...,[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.],[ 125., 375., 625., ..., 59375., 59625., 59875.]],shape=(360, 240), dtype=float32)
- sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]],[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],...,[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982],[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,-64.00292982, -64.00292982]]], shape=(24, 360, 240))
- 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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set','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, 24.99938965, 24.99938965, 24.99938965, 24.99938965,24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965,24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965,24.99938965, 24.99938965, 24.99938965, 24.99938965])
- nyquist_velocity(volume_time)float6432.22 32.22 32.22 ... 32.22 32.22
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868,32.21601868, 32.21601868, 32.21601868, 32.21601868])
- VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]],shape=(24, 360, 240))
swp = vol["sweep_0"].isel(volume_time=0).ds
swp.sweep_fixed_angle.values
array(5.49865723)
fig, gs = plt.subplots(
4, 3, figsize=(20, 30), sharex=True, sharey=True, constrained_layout=True
)
for i, grp in enumerate(vol.match("sweep_*")):
ax = gs.flat[i]
swp = vol[grp].isel(volume_time=0).ds
swp.DBZH.wrl.vis.plot(ax=ax, fig=fig)
ax.set_title(swp.sweep_fixed_angle.values)
fig.delaxes(gs.flat[-2])
fig.delaxes(gs.flat[-1])
VRADH#
fig, gs = plt.subplots(
4, 3, figsize=(20, 30), sharex=True, sharey=True, constrained_layout=True
)
for i, grp in enumerate(vol.match("sweep_*")):
ax = gs.flat[i]
swp = vol[grp].isel(volume_time=0).ds
swp.VRADH.wrl.vis.plot(ax=ax, fig=fig)
ax.set_title(swp.sweep_fixed_angle.values)
fig.delaxes(gs.flat[-2])
fig.delaxes(gs.flat[-1])
Plot single sweep using cartopy#
vol0 = vol.isel(volume_time=0)
swp = vol0["sweep_9"].to_dataset(inherit="all_coords")
map_trans = ccrs.AzimuthalEquidistant(
central_latitude=swp.latitude.values,
central_longitude=swp.longitude.values,
)
map_proj = ccrs.AzimuthalEquidistant(
central_latitude=swp.latitude.values,
central_longitude=swp.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 >
map_proj = ccrs.Mercator(central_longitude=swp.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)
<cartopy.mpl.gridliner.Gridliner at 0x78c63c36da90>
fig = plt.figure(figsize=(10, 8))
proj = ccrs.AzimuthalEquidistant(
central_latitude=swp.latitude.values,
central_longitude=swp.longitude.values,
)
ax = fig.add_subplot(111, projection=proj)
pm = swp.DBZH.wrl.georef.georeference().wrl.vis.plot(ax=ax)
ax.gridlines()
<cartopy.mpl.gridliner.Gridliner at 0x78c63c240f50>
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.
vol["sweep_9"].isel(volume_time=0).ds.DBZH
<xarray.DataArray 'DBZH' (azimuth: 360, range: 240)> Size: 691kB
array([[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,
-64.00292982, -64.00292982],
[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,
-64.00292982, -64.00292982],
[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,
-64.00292982, -64.00292982],
...,
[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,
-64.00292982, -64.00292982],
[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,
-64.00292982, -64.00292982],
[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,
-64.00292982, -64.00292982]], shape=(360, 240))
Coordinates: (12/13)
* azimuth (azimuth) float64 3kB 0.5 1.5 2.5 3.5 ... 357.5 358.5 359.5
elevation (azimuth) float64 3kB 24.97 24.97 24.97 ... 24.97 24.97 24.97
time (azimuth) datetime64[ns] 3kB 2026-04-30T06:03:54.509999872 ....
* range (range) float32 960B 125.0 375.0 625.0 ... 5.962e+04 5.988e+04
x (azimuth, range) float64 691kB 0.9888 2.966 ... -470.3 -472.2
y (azimuth, range) float64 691kB 113.3 339.9 ... 5.411e+04
... ...
gr (azimuth, range) float64 691kB 113.3 339.9 ... 5.411e+04
rays (azimuth, range) float64 691kB 0.5 0.5 0.5 ... 359.5 359.5
bins (azimuth, range) float32 346kB 125.0 375.0 ... 5.988e+04
volume_time datetime64[ns] 8B 2026-04-30T06:00:00
sweep_mode object 8B 'azimuth_surveillance'
crs_wkt int64 8B 0
Attributes:
_Undetect: 0.0
units: dBZ
long_name: Equivalent reflectivity factor H
standard_name: radar_equivalent_reflectivity_factor_h- 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.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]], shape=(360, 240)) - 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], shape=(360,))
- elevation(azimuth)float6424.97 24.97 24.97 ... 24.97 24.97
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, ... 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383, 24.97192383]) - time(azimuth)datetime64[ns]2026-04-30T06:03:54.509999872 .....
- standard_name :
- time
array(['2026-04-30T06:03:54.509999872', '2026-04-30T06:03:54.543500032', '2026-04-30T06:03:54.577500160', '2026-04-30T06:03:54.610500096', '2026-04-30T06:03:54.644499968', '2026-04-30T06:03:54.677499904', '2026-04-30T06:03:54.711000064', '2026-04-30T06:03:54.744000000', '2026-04-30T06:03:54.776999936', '2026-04-30T06:03:54.810499840', '2026-04-30T06:03:54.843999744', '2026-04-30T06:03:54.876999936', '2026-04-30T06:03:54.910500096', '2026-04-30T06:03:54.943500032', '2026-04-30T06:03:54.977499904', '2026-04-30T06:03:55.010499840', '2026-04-30T06:03:55.044000256', '2026-04-30T06:03:55.077500160', '2026-04-30T06:03:55.110500096', '2026-04-30T06:03:55.144000000', '2026-04-30T06:03:55.177499904', '2026-04-30T06:03:55.210500096', '2026-04-30T06:03:55.243500032', '2026-04-30T06:03:55.276999936', '2026-04-30T06:03:55.310499840', '2026-04-30T06:03:55.343499776', '2026-04-30T06:03:55.376999936', '2026-04-30T06:03:55.410500096', '2026-04-30T06:03:55.443500032', '2026-04-30T06:03:55.476999936', '2026-04-30T06:03:55.509499904', '2026-04-30T06:03:55.543500032', '2026-04-30T06:03:55.576499968', '2026-04-30T06:03:55.610000128', '2026-04-30T06:03:55.643500032', '2026-04-30T06:03:55.676499968', '2026-04-30T06:03:55.709500160', '2026-04-30T06:03:55.743500032', '2026-04-30T06:03:55.776499968', '2026-04-30T06:03:55.809499904', ... '2026-04-30T06:03:53.243000064', '2026-04-30T06:03:53.276499968', '2026-04-30T06:03:53.309499904', '2026-04-30T06:03:53.343499776', '2026-04-30T06:03:53.376499968', '2026-04-30T06:03:53.409500160', '2026-04-30T06:03:53.443000064', '2026-04-30T06:03:53.476499968', '2026-04-30T06:03:53.509499904', '2026-04-30T06:03:53.542500096', '2026-04-30T06:03:53.576000000', '2026-04-30T06:03:53.609499904', '2026-04-30T06:03:53.642499840', '2026-04-30T06:03:53.676499968', '2026-04-30T06:03:53.709500160', '2026-04-30T06:03:53.743000064', '2026-04-30T06:03:53.776499968', '2026-04-30T06:03:53.809499904', '2026-04-30T06:03:53.842999808', '2026-04-30T06:03:53.876499968', '2026-04-30T06:03:53.909500160', '2026-04-30T06:03:53.943500032', '2026-04-30T06:03:53.976499968', '2026-04-30T06:03:54.009499904', '2026-04-30T06:03:54.043000064', '2026-04-30T06:03:54.076499968', '2026-04-30T06:03:54.109499904', '2026-04-30T06:03:54.143000064', '2026-04-30T06:03:54.176499968', '2026-04-30T06:03:54.209500160', '2026-04-30T06:03:54.243000064', '2026-04-30T06:03:54.276499968', '2026-04-30T06:03:54.309999872', '2026-04-30T06:03:54.343499776', '2026-04-30T06:03:54.376499968', '2026-04-30T06:03:54.410000128', '2026-04-30T06:03:54.443000064', '2026-04-30T06:03:54.476499968'], 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.], shape=(240,), dtype=float32) - x(azimuth, range)float640.9888 2.966 ... -470.3 -472.2
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[ 9.88813949e-01, 2.96640496e+00, 4.94394678e+00, ..., 4.68300150e+02, 4.70266057e+02, 4.72231914e+02], [ 2.96614065e+00, 8.89831127e+00, 1.48303344e+01, ..., 1.40475780e+03, 1.41065492e+03, 1.41655189e+03], [ 4.94256383e+00, 1.48275071e+01, 2.47122045e+01, ..., 2.34078755e+03, 2.35061409e+03, 2.36044038e+03], ..., [-4.94256383e+00, -1.48275071e+01, -2.47122045e+01, ..., -2.34078755e+03, -2.35061409e+03, -2.36044038e+03], [-2.96614065e+00, -8.89831127e+00, -1.48303344e+01, ..., -1.40475780e+03, -1.41065492e+03, -1.41655189e+03], [-9.88813949e-01, -2.96640496e+00, -4.94394678e+00, ..., -4.68300150e+02, -4.70266057e+02, -4.72231914e+02]], shape=(360, 240)) - y(azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[ 113.30685568, 339.91633974, 566.52018731, ..., 53661.88208648, 53887.15264893, 54112.41754922], [ 113.27234131, 339.81279793, 566.34761977, ..., 53645.53615736, 53870.73810021, 54095.93438264], [ 113.2033231 , 339.60574585, 566.00253726, ..., 53612.84927825, 53837.91400282, 54062.9730704 ], ..., [ 113.2033231 , 339.60574585, 566.00253726, ..., 53612.84927825, 53837.91400282, 54062.9730704 ], [ 113.27234131, 339.81279793, 566.34761977, ..., 53645.53615736, 53870.73810021, 54095.93438264], [ 113.30685568, 339.91633974, 566.52018731, ..., 53661.88208648, 53887.15264893, 54112.41754922]], shape=(360, 240)) - z(azimuth, range)float64237.9 343.4 ... 2.553e+04 2.564e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], ..., [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289]], shape=(360, 240)) - gr(azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- standard_name :
- distance_from_radar
- units :
- metre
array([[ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], ..., [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273]], shape=(360, 240)) - rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5], [ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5], [ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5], ..., [357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5], [358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5], [359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 240)) - bins(azimuth, 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.], [ 125., 375., 625., ..., 59375., 59625., 59875.], [ 125., 375., 625., ..., 59375., 59625., 59875.], ..., [ 125., 375., 625., ..., 59375., 59625., 59875.], [ 125., 375., 625., ..., 59375., 59625., 59875.], [ 125., 375., 625., ..., 59375., 59625., 59875.]], shape=(360, 240), dtype=float32) - volume_time()datetime64[ns]2026-04-30T06:00:00
- standard_name :
- time
array('2026-04-30T06:00:00.000000000', dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
vol["sweep_9"].isel(volume_time=0).ds.sweep_mode
<xarray.DataArray 'sweep_mode' ()> Size: 8B
array('azimuth_surveillance', dtype=object)
Coordinates:
volume_time datetime64[ns] 8B 2026-04-30T06:00:00
sweep_mode object 8B 'azimuth_surveillance'
crs_wkt int64 8B 0- 'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - volume_time()datetime64[ns]2026-04-30T06:00:00
- standard_name :
- time
array('2026-04-30T06:00:00.000000000', dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
Plot Quasi Vertical Profile#
ts = vol["sweep_9"]
ts
<xarray.DataTree 'sweep_9'>
Group: /sweep_9
Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 240)
Coordinates:
* azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
elevation (volume_time, azimuth) float64 69kB 24.97 24.97 ... 24.97
time (volume_time, azimuth) datetime64[ns] 69kB 2026-04-30T...
* range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04
x (volume_time, azimuth, range) float64 17MB 0.9888 ... ...
y (volume_time, azimuth, range) float64 17MB 113.3 ... 5...
z (volume_time, azimuth, range) float64 17MB 237.9 ... 2...
gr (volume_time, azimuth, range) float64 17MB 113.3 ... 5...
rays (azimuth, range) float64 691kB 0.5 0.5 ... 359.5 359.5
bins (azimuth, range) float32 346kB 125.0 375.0 ... 5.988e+04
sweep_mode object 8B 'azimuth_surveillance'
crs_wkt int64 8B 0
Inherited coordinates:
* volume_time (volume_time) datetime64[ns] 192B 2026-04-30T06:00:00 ...
Dimensions without coordinates: sweep
Data variables:
DBZH (volume_time, azimuth, range) float64 17MB -64.0 ... -...
sweep_number int64 8B 9
prt_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
follow_mode (volume_time) <U7 672B 'not_set' 'not_set' ... 'not_set'
sweep_fixed_angle (volume_time) float64 192B 25.0 25.0 25.0 ... 25.0 25.0
nyquist_velocity (volume_time) float64 192B 32.22 32.22 ... 32.22 32.22
VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 240
- 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], shape=(360,))
- elevation(volume_time, azimuth)float6424.97 24.97 24.97 ... 24.97 24.97
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([[24.97192383, 24.97192383, 24.97192383, ..., 24.97192383, 24.97192383, 24.97192383], [24.97192383, 24.97192383, 24.97192383, ..., 24.97192383, 24.97192383, 24.97192383], [24.97192383, 24.97192383, 24.97192383, ..., 24.97192383, 24.97192383, 24.97192383], ..., [24.97192383, 24.97192383, 24.97192383, ..., 24.97192383, 24.97192383, 24.97192383], [24.97192383, 24.97192383, 24.97192383, ..., 24.97192383, 24.97192383, 24.97192383], [24.97192383, 24.97192383, 24.97192383, ..., 24.97192383, 24.97192383, 24.97192383]], shape=(24, 360)) - time(volume_time, azimuth)datetime64[ns]2026-04-30T06:03:54.509999872 .....
- standard_name :
- time
array([['2026-04-30T06:03:54.509999872', '2026-04-30T06:03:54.543500032', '2026-04-30T06:03:54.577500160', ..., '2026-04-30T06:03:54.410000128', '2026-04-30T06:03:54.443000064', '2026-04-30T06:03:54.476499968'], ['2026-04-30T06:08:54.624499968', '2026-04-30T06:08:54.658499840', '2026-04-30T06:08:54.691500032', ..., '2026-04-30T06:08:54.524499968', '2026-04-30T06:08:54.557499904', '2026-04-30T06:08:54.591000064'], ['2026-04-30T06:13:54.601999872', '2026-04-30T06:13:54.635500032', '2026-04-30T06:13:54.668499968', ..., '2026-04-30T06:13:54.501499904', '2026-04-30T06:13:54.534500096', '2026-04-30T06:13:54.568499968'], ..., ['2026-04-30T07:48:54.608999936', '2026-04-30T07:48:54.642499840', '2026-04-30T07:48:54.676499968', ..., '2026-04-30T07:48:54.508999936', '2026-04-30T07:48:54.542000128', '2026-04-30T07:48:54.575500032'], ['2026-04-30T07:53:54.610000128', '2026-04-30T07:53:54.644000000', '2026-04-30T07:53:54.677499904', ..., '2026-04-30T07:53:54.509999872', '2026-04-30T07:53:54.543000064', '2026-04-30T07:53:54.576499968'], ['2026-04-30T07:58:54.508000000', '2026-04-30T07:58:54.541500160', '2026-04-30T07:58:54.574500096', ..., '2026-04-30T07:58:54.407500032', '2026-04-30T07:58:54.440499968', '2026-04-30T07:58:54.473999872']], shape=(24, 360), 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.], shape=(240,), dtype=float32) - x(volume_time, azimuth, range)float640.9888 2.966 ... -470.3 -472.2
- axis :
- X
- long_name :
- Easting
- standard_name :
- projection_x_coordinate
- units :
- metre
array([[[ 9.88813949e-01, 2.96640496e+00, 4.94394678e+00, ..., 4.68300150e+02, 4.70266057e+02, 4.72231914e+02], [ 2.96614065e+00, 8.89831127e+00, 1.48303344e+01, ..., 1.40475780e+03, 1.41065492e+03, 1.41655189e+03], [ 4.94256383e+00, 1.48275071e+01, 2.47122045e+01, ..., 2.34078755e+03, 2.35061409e+03, 2.36044038e+03], ..., [-4.94256383e+00, -1.48275071e+01, -2.47122045e+01, ..., -2.34078755e+03, -2.35061409e+03, -2.36044038e+03], [-2.96614065e+00, -8.89831127e+00, -1.48303344e+01, ..., -1.40475780e+03, -1.41065492e+03, -1.41655189e+03], [-9.88813949e-01, -2.96640496e+00, -4.94394678e+00, ..., -4.68300150e+02, -4.70266057e+02, -4.72231914e+02]], [[ 9.88813949e-01, 2.96640496e+00, 4.94394678e+00, ..., 4.68300150e+02, 4.70266057e+02, 4.72231914e+02], [ 2.96614065e+00, 8.89831127e+00, 1.48303344e+01, ..., 1.40475780e+03, 1.41065492e+03, 1.41655189e+03], [ 4.94256383e+00, 1.48275071e+01, 2.47122045e+01, ..., 2.34078755e+03, 2.35061409e+03, 2.36044038e+03], ... -2.34078755e+03, -2.35061409e+03, -2.36044038e+03], [-2.96614065e+00, -8.89831127e+00, -1.48303344e+01, ..., -1.40475780e+03, -1.41065492e+03, -1.41655189e+03], [-9.88813949e-01, -2.96640496e+00, -4.94394678e+00, ..., -4.68300150e+02, -4.70266057e+02, -4.72231914e+02]], [[ 9.88813949e-01, 2.96640496e+00, 4.94394678e+00, ..., 4.68300150e+02, 4.70266057e+02, 4.72231914e+02], [ 2.96614065e+00, 8.89831127e+00, 1.48303344e+01, ..., 1.40475780e+03, 1.41065492e+03, 1.41655189e+03], [ 4.94256383e+00, 1.48275071e+01, 2.47122045e+01, ..., 2.34078755e+03, 2.35061409e+03, 2.36044038e+03], ..., [-4.94256383e+00, -1.48275071e+01, -2.47122045e+01, ..., -2.34078755e+03, -2.35061409e+03, -2.36044038e+03], [-2.96614065e+00, -8.89831127e+00, -1.48303344e+01, ..., -1.40475780e+03, -1.41065492e+03, -1.41655189e+03], [-9.88813949e-01, -2.96640496e+00, -4.94394678e+00, ..., -4.68300150e+02, -4.70266057e+02, -4.72231914e+02]]], shape=(24, 360, 240)) - y(volume_time, azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- axis :
- Y
- long_name :
- Northing
- standard_name :
- projection_y_coordinate
- units :
- metre
array([[[ 113.30685568, 339.91633974, 566.52018731, ..., 53661.88208648, 53887.15264893, 54112.41754922], [ 113.27234131, 339.81279793, 566.34761977, ..., 53645.53615736, 53870.73810021, 54095.93438264], [ 113.2033231 , 339.60574585, 566.00253726, ..., 53612.84927825, 53837.91400282, 54062.9730704 ], ..., [ 113.2033231 , 339.60574585, 566.00253726, ..., 53612.84927825, 53837.91400282, 54062.9730704 ], [ 113.27234131, 339.81279793, 566.34761977, ..., 53645.53615736, 53870.73810021, 54095.93438264], [ 113.30685568, 339.91633974, 566.52018731, ..., 53661.88208648, 53887.15264893, 54112.41754922]], [[ 113.30685568, 339.91633974, 566.52018731, ..., 53661.88208648, 53887.15264893, 54112.41754922], [ 113.27234131, 339.81279793, 566.34761977, ..., 53645.53615736, 53870.73810021, 54095.93438264], [ 113.2033231 , 339.60574585, 566.00253726, ..., 53612.84927825, 53837.91400282, 54062.9730704 ], ... 53612.84927825, 53837.91400282, 54062.9730704 ], [ 113.27234131, 339.81279793, 566.34761977, ..., 53645.53615736, 53870.73810021, 54095.93438264], [ 113.30685568, 339.91633974, 566.52018731, ..., 53661.88208648, 53887.15264893, 54112.41754922]], [[ 113.30685568, 339.91633974, 566.52018731, ..., 53661.88208648, 53887.15264893, 54112.41754922], [ 113.27234131, 339.81279793, 566.34761977, ..., 53645.53615736, 53870.73810021, 54095.93438264], [ 113.2033231 , 339.60574585, 566.00253726, ..., 53612.84927825, 53837.91400282, 54062.9730704 ], ..., [ 113.2033231 , 339.60574585, 566.00253726, ..., 53612.84927825, 53837.91400282, 54062.9730704 ], [ 113.27234131, 339.81279793, 566.34761977, ..., 53645.53615736, 53870.73810021, 54095.93438264], [ 113.30685568, 339.91633974, 566.52018731, ..., 53661.88208648, 53887.15264893, 54112.41754922]]], shape=(24, 360, 240)) - z(volume_time, azimuth, range)float64237.9 343.4 ... 2.553e+04 2.564e+04
- standard_name :
- height_above_ground
- units :
- metre
array([[[ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], ..., [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289]], [[ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], ... 25421.86890833, 25528.84633384, 25635.82975289], [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289]], [[ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], ..., [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289], [ 237.88251903, 343.43209572, 448.98772375, ..., 25421.86890833, 25528.84633384, 25635.82975289]]], shape=(24, 360, 240)) - gr(volume_time, azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- standard_name :
- distance_from_radar
- units :
- metre
array([[[ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], ..., [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273]], [[ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], ... 53663.92544432, 53889.20458471, 54114.47806273], [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273]], [[ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], ..., [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273], [ 113.31117022, 339.9292832 , 566.54175948, ..., 53663.92544432, 53889.20458471, 54114.47806273]]], shape=(24, 360, 240)) - rays(azimuth, range)float640.5 0.5 0.5 ... 359.5 359.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([[ 0.5, 0.5, 0.5, ..., 0.5, 0.5, 0.5], [ 1.5, 1.5, 1.5, ..., 1.5, 1.5, 1.5], [ 2.5, 2.5, 2.5, ..., 2.5, 2.5, 2.5], ..., [357.5, 357.5, 357.5, ..., 357.5, 357.5, 357.5], [358.5, 358.5, 358.5, ..., 358.5, 358.5, 358.5], [359.5, 359.5, 359.5, ..., 359.5, 359.5, 359.5]], shape=(360, 240)) - bins(azimuth, 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.], [ 125., 375., 625., ..., 59375., 59625., 59875.], [ 125., 375., 625., ..., 59375., 59625., 59875.], ..., [ 125., 375., 625., ..., 59375., 59625., 59875.], [ 125., 375., 625., ..., 59375., 59625., 59875.], [ 125., 375., 625., ..., 59375., 59625., 59875.]], shape=(360, 240), dtype=float32) - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - crs_wkt()int640
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
array(0)
- volume_time(volume_time)datetime64[ns]2026-04-30T06:00:00 ... 2026-04-...
- standard_name :
- time
array(['2026-04-30T06:00:00.000000000', '2026-04-30T06:05:00.000000000', '2026-04-30T06:10:00.000000000', '2026-04-30T06:15:00.000000000', '2026-04-30T06:20:00.000000000', '2026-04-30T06:25:00.000000000', '2026-04-30T06:30:00.000000000', '2026-04-30T06:35:00.000000000', '2026-04-30T06:40:00.000000000', '2026-04-30T06:45:00.000000000', '2026-04-30T06:50:00.000000000', '2026-04-30T06:55:00.000000000', '2026-04-30T07:00:00.000000000', '2026-04-30T07:05:00.000000000', '2026-04-30T07:10:00.000000000', '2026-04-30T07:15:00.000000000', '2026-04-30T07:20:00.000000000', '2026-04-30T07:25:00.000000000', '2026-04-30T07:30:00.000000000', '2026-04-30T07:35:00.000000000', '2026-04-30T07:40:00.000000000', '2026-04-30T07:45:00.000000000', '2026-04-30T07:50:00.000000000', '2026-04-30T07:55:00.000000000'], dtype='datetime64[ns]')
- DBZH(volume_time, azimuth, range)float64-64.0 -64.0 -64.0 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
array([[[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ... [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]]], shape=(24, 360, 240)) - 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', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', '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', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', 'not_set', '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, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965, 24.99938965]) - nyquist_velocity(volume_time)float6432.22 32.22 32.22 ... 32.22 32.22
- standard_name :
- nyquist_velocity
- units :
- m s-1
array([32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868, 32.21601868]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
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.]]], shape=(24, 360, 240))
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)
(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.
xd.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.
xd.io.to_cfradial2(vol0, "dwd_cfradial2.nc")
Import again#
vol1 = xd.io.open_odim_datatree("dwd_odim.h5")
display(vol1)
<xarray.DataTree>
Group: /
β Dimensions: (sweep: 10)
β Coordinates:
β latitude float64 8B ...
β longitude float64 8B ...
β altitude float64 8B ...
β Dimensions without coordinates: sweep
β Data variables:
β volume_number int64 8B 0
β platform_type <U5 20B 'fixed'
β instrument_type <U5 20B 'radar'
β time_coverage_start <U20 80B '2026-04-30T06:00:35Z'
β time_coverage_end <U20 80B '2026-04-30T06:04:02Z'
β sweep_group_name (sweep) int64 80B 0 1 2 3 4 5 6 7 8 9
β sweep_fixed_angle (sweep) float64 80B 5.499 4.499 3.499 ... 17.0 25.0
β Attributes:
β Conventions: ODIM_H5/V2_2
β instrument_name: None
β version: None
β title: None
β institution: None
β references: None
β source: None
β history: None
β comment: im/exported using xradar
βββ Group: /sweep_0
β Dimensions: (azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB ...
β time (azimuth) datetime64[ns] 3kB 2026-04-30T06:00:54.51802...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β Data variables:
β DBZH (azimuth, range) float64 2MB ...
β VRADH (azimuth, range) float64 2MB ...
β sweep_mode <U20 80B ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β nyquist_velocity object 8B ...
βββ Group: /sweep_1
β Dimensions: (azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB ...
β time (azimuth) datetime64[ns] 3kB 2026-04-30T06:01:16.94302...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β Data variables:
β DBZH (azimuth, range) float64 2MB ...
β VRADH (azimuth, range) float64 2MB ...
β sweep_mode <U20 80B ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β nyquist_velocity object 8B ...
βββ Group: /sweep_2
β Dimensions: (azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB ...
β time (azimuth) datetime64[ns] 3kB 2026-04-30T06:01:39.36802...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β Data variables:
β DBZH (azimuth, range) float64 2MB ...
β VRADH (azimuth, range) float64 2MB ...
β sweep_mode <U20 80B ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β nyquist_velocity object 8B ...
βββ Group: /sweep_3
β Dimensions: (azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB ...
β time (azimuth) datetime64[ns] 3kB 2026-04-30T06:02:01.95836...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β Data variables:
β DBZH (azimuth, range) float64 2MB ...
β VRADH (azimuth, range) float64 2MB ...
β sweep_mode <U20 80B ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β nyquist_velocity object 8B ...
βββ Group: /sweep_4
β Dimensions: (azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB ...
β time (azimuth) datetime64[ns] 3kB 2026-04-30T06:02:24.40836...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β Data variables:
β DBZH (azimuth, range) float64 2MB ...
β VRADH (azimuth, range) float64 2MB ...
β sweep_mode <U20 80B ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β nyquist_velocity object 8B ...
βββ Group: /sweep_5
β Dimensions: (azimuth: 360, range: 720)
β Coordinates:
β * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB ...
β time (azimuth) datetime64[ns] 3kB 2026-04-30T06:02:52.37497...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β Data variables:
β DBZH (azimuth, range) float64 2MB ...
β VRADH (azimuth, range) float64 2MB ...
β sweep_mode <U20 80B ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β nyquist_velocity object 8B ...
βββ Group: /sweep_6
β Dimensions: (azimuth: 360, range: 496)
β Coordinates:
β * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB ...
β time (azimuth) datetime64[ns] 3kB 2026-04-30T06:03:15.80556...
β * range (range) float32 2kB 125.0 375.0 ... 1.236e+05 1.239e+05
β Data variables:
β DBZH (azimuth, range) float64 1MB ...
β VRADH (azimuth, range) float64 1MB ...
β sweep_mode <U20 80B ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β nyquist_velocity object 8B ...
βββ Group: /sweep_7
β Dimensions: (azimuth: 360, range: 240)
β Coordinates:
β * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB ...
β time (azimuth) datetime64[ns] 3kB 2026-04-30T06:03:30.48332...
β * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04
β Data variables:
β DBZH (azimuth, range) float64 691kB ...
β VRADH (azimuth, range) float64 691kB ...
β sweep_mode <U20 80B ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β nyquist_velocity object 8B ...
βββ Group: /sweep_8
β Dimensions: (azimuth: 360, range: 240)
β Coordinates:
β * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
β elevation (azimuth) float64 3kB ...
β time (azimuth) datetime64[ns] 3kB 2026-04-30T06:03:42.28332...
β * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04
β Data variables:
β DBZH (azimuth, range) float64 691kB ...
β VRADH (azimuth, range) float64 691kB ...
β sweep_mode <U20 80B ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β nyquist_velocity object 8B ...
βββ Group: /sweep_9
Dimensions: (azimuth: 360, range: 240)
Coordinates:
* azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
elevation (azimuth) float64 3kB ...
time (azimuth) datetime64[ns] 3kB 2026-04-30T06:03:54.74999...
* range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04
Data variables:
DBZH (azimuth, range) float64 691kB ...
VRADH (azimuth, range) float64 691kB ...
sweep_mode <U20 80B ...
sweep_number int64 8B ...
prt_mode <U7 28B ...
follow_mode <U7 28B ...
sweep_fixed_angle float64 8B ...
nyquist_velocity object 8B ...- sweep: 10
- azimuth: 360
- range: 720
- 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],shape=(360,), dtype=float32)
- elevation(azimuth)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(azimuth)datetime64[ns]2026-04-30T06:00:54.518024960 .....
- standard_name :
- time
array(['2026-04-30T06:00:54.518024960', '2026-04-30T06:00:54.581913600','2026-04-30T06:00:54.645802496', ..., '2026-04-30T06:00:54.326358528','2026-04-30T06:00:54.390247424', '2026-04-30T06:00:54.454136064'],shape=(360,), 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], shape=(720,), dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[259200 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[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]
- nyquist_velocity()object...
- standard_name :
- nyquist_velocity
- units :
- m s-1
[1 values with dtype=object]
- sweep: 10
- azimuth: 360
- range: 720
- 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],shape=(360,), dtype=float32)
- elevation(azimuth)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(azimuth)datetime64[ns]2026-04-30T06:01:16.943025920 .....
- standard_name :
- time
array(['2026-04-30T06:01:16.943025920', '2026-04-30T06:01:17.006914560','2026-04-30T06:01:17.070803456', ..., '2026-04-30T06:01:16.751359488','2026-04-30T06:01:16.815248128', '2026-04-30T06:01:16.879137024'],shape=(360,), 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], shape=(720,), dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[259200 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[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]
- nyquist_velocity()object...
- standard_name :
- nyquist_velocity
- units :
- m s-1
[1 values with dtype=object]
- sweep: 10
- azimuth: 360
- range: 720
- 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],shape=(360,), dtype=float32)
- elevation(azimuth)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(azimuth)datetime64[ns]2026-04-30T06:01:39.368026624 .....
- standard_name :
- time
array(['2026-04-30T06:01:39.368026624', '2026-04-30T06:01:39.431915520','2026-04-30T06:01:39.495804416', ..., '2026-04-30T06:01:39.176360448','2026-04-30T06:01:39.240249088', '2026-04-30T06:01:39.304137984'],shape=(360,), 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], shape=(720,), dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[259200 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[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]
- nyquist_velocity()object...
- standard_name :
- nyquist_velocity
- units :
- m s-1
[1 values with dtype=object]
- sweep: 10
- azimuth: 360
- range: 720
- 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],shape=(360,), dtype=float32)
- elevation(azimuth)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(azimuth)datetime64[ns]2026-04-30T06:02:01.958361088 .....
- standard_name :
- time
array(['2026-04-30T06:02:01.958361088', '2026-04-30T06:02:02.019472384','2026-04-30T06:02:02.080583680', ..., '2026-04-30T06:02:01.775027456','2026-04-30T06:02:01.836138752', '2026-04-30T06:02:01.897250048'],shape=(360,), 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], shape=(720,), dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[259200 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[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]
- nyquist_velocity()object...
- standard_name :
- nyquist_velocity
- units :
- m s-1
[1 values with dtype=object]
- sweep: 10
- azimuth: 360
- range: 720
- 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],shape=(360,), dtype=float32)
- elevation(azimuth)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(azimuth)datetime64[ns]2026-04-30T06:02:24.408360192 .....
- standard_name :
- time
array(['2026-04-30T06:02:24.408360192', '2026-04-30T06:02:24.469471488','2026-04-30T06:02:24.530582784', ..., '2026-04-30T06:02:24.225026560','2026-04-30T06:02:24.286137856', '2026-04-30T06:02:24.347249152'],shape=(360,), 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], shape=(720,), dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[259200 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[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]
- nyquist_velocity()object...
- standard_name :
- nyquist_velocity
- units :
- m s-1
[1 values with dtype=object]
- sweep: 10
- azimuth: 360
- range: 720
- 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],shape=(360,), dtype=float32)
- elevation(azimuth)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(azimuth)datetime64[ns]2026-04-30T06:02:52.374979840 .....
- standard_name :
- time
array(['2026-04-30T06:02:52.374979840', '2026-04-30T06:02:52.458312960','2026-04-30T06:02:52.541646336', ..., '2026-04-30T06:02:52.124979968','2026-04-30T06:02:52.208313344', '2026-04-30T06:02:52.291646464'],shape=(360,), 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], shape=(720,), dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[259200 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[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]
- nyquist_velocity()object...
- standard_name :
- nyquist_velocity
- units :
- m s-1
[1 values with dtype=object]
- sweep: 10
- azimuth: 360
- range: 496
- 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],shape=(360,), dtype=float32)
- elevation(azimuth)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(azimuth)datetime64[ns]2026-04-30T06:03:15.805561600 .....
- standard_name :
- time
array(['2026-04-30T06:03:15.805561600', '2026-04-30T06:03:15.861117184','2026-04-30T06:03:15.916672768', ..., '2026-04-30T06:03:15.638894848','2026-04-30T06:03:15.694450432', '2026-04-30T06:03:15.750006016'],shape=(360,), 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.],shape=(496,), dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[178560 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[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]
- nyquist_velocity()object...
- standard_name :
- nyquist_velocity
- units :
- m s-1
[1 values with dtype=object]
- sweep: 10
- azimuth: 360
- range: 240
- 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],shape=(360,), dtype=float32)
- elevation(azimuth)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(azimuth)datetime64[ns]2026-04-30T06:03:30.483327232 .....
- standard_name :
- time
array(['2026-04-30T06:03:30.483327232', '2026-04-30T06:03:30.516660480','2026-04-30T06:03:30.549993728', ..., '2026-04-30T06:03:30.383327232','2026-04-30T06:03:30.416660480', '2026-04-30T06:03:30.449993728'],shape=(360,), 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.],shape=(240,), dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[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]
- nyquist_velocity()object...
- standard_name :
- nyquist_velocity
- units :
- m s-1
[1 values with dtype=object]
- sweep: 10
- azimuth: 360
- range: 240
- 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],shape=(360,), dtype=float32)
- elevation(azimuth)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(azimuth)datetime64[ns]2026-04-30T06:03:42.283328256 .....
- standard_name :
- time
array(['2026-04-30T06:03:42.283328256', '2026-04-30T06:03:42.316661504','2026-04-30T06:03:42.349995008', ..., '2026-04-30T06:03:42.183328512','2026-04-30T06:03:42.216661760', '2026-04-30T06:03:42.249995008'],shape=(360,), 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.],shape=(240,), dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[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]
- nyquist_velocity()object...
- standard_name :
- nyquist_velocity
- units :
- m s-1
[1 values with dtype=object]
- sweep: 10
- azimuth: 360
- range: 240
- 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],shape=(360,), dtype=float32)
- elevation(azimuth)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(azimuth)datetime64[ns]2026-04-30T06:03:54.749996544 .....
- standard_name :
- time
array(['2026-04-30T06:03:54.749996544', '2026-04-30T06:03:54.783329792','2026-04-30T06:03:54.816663040', ..., '2026-04-30T06:03:54.649996544','2026-04-30T06:03:54.683329792', '2026-04-30T06:03:54.716663040'],shape=(360,), 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.],shape=(240,), dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[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]
- nyquist_velocity()object...
- standard_name :
- nyquist_velocity
- units :
- m s-1
[1 values with dtype=object]
- sweep: 10
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- 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]
- 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'2026-04-30T06:00:35Z'
array('2026-04-30T06:00:35Z', dtype='<U20') - time_coverage_end()<U20'2026-04-30T06:04:02Z'
array('2026-04-30T06:04:02Z', dtype='<U20') - sweep_group_name(sweep)int640 1 2 3 4 5 6 7 8 9
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
- sweep_fixed_angle(sweep)float645.499 4.499 3.499 ... 17.0 25.0
array([ 5.49865723, 4.49890137, 3.49914551, 2.49938965, 1.49963379, 0.49987793, 7.99804688, 12.00256348, 17.00134277, 24.99938965])
- Conventions :
- ODIM_H5/V2_2
- instrument_name :
- None
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- None
- history :
- None
- comment :
- im/exported using xradar
vol2 = xr.open_datatree("dwd_cfradial2.nc")
display(vol2)
<xarray.DataTree>
Group: /
β Dimensions: (sweep: 10)
β Coordinates:
β longitude float64 8B ...
β altitude float64 8B ...
β latitude float64 8B ...
β volume_time datetime64[ns] 8B ...
β Dimensions without coordinates: sweep
β Data variables:
β volume_number int64 8B ...
β platform_type <U5 20B ...
β instrument_type <U5 20B ...
β time_coverage_start <U20 80B ...
β time_coverage_end <U20 80B ...
β sweep_mode <U20 80B ...
β crs_wkt int64 8B ...
β sweep_group_name (sweep) int64 80B ...
β sweep_fixed_angle (sweep) float64 80B ...
β Attributes:
β Conventions: ODIM_H5/V2_2
β instrument_name: None
β version: None
β title: None
β institution: None
β references: None
β source: None
β history: None
β comment: im/exported using xradar
βββ Group: /sweep_0
β Dimensions: (time: 360, range: 720)
β Coordinates:
β * time (time) datetime64[ns] 3kB 2026-04-30T06:00:35.28250009...
β azimuth (time) float64 3kB ...
β elevation (time) float64 3kB ...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β sweep_mode <U20 80B ...
β Data variables:
β DBZH (time, range) float64 2MB ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β VRADH (time, range) float64 2MB ...
βββ Group: /sweep_1
β Dimensions: (time: 360, range: 720)
β Coordinates:
β * time (time) datetime64[ns] 3kB 2026-04-30T06:00:58.348000 ....
β azimuth (time) float64 3kB ...
β elevation (time) float64 3kB ...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β sweep_mode <U20 80B ...
β Data variables:
β DBZH (time, range) float64 2MB ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β VRADH (time, range) float64 2MB ...
βββ Group: /sweep_2
β Dimensions: (time: 360, range: 720)
β Coordinates:
β * time (time) datetime64[ns] 3kB 2026-04-30T06:01:21.41200025...
β azimuth (time) float64 3kB ...
β elevation (time) float64 3kB ...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β sweep_mode <U20 80B ...
β Data variables:
β DBZH (time, range) float64 2MB ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β VRADH (time, range) float64 2MB ...
βββ Group: /sweep_3
β Dimensions: (time: 360, range: 720)
β Coordinates:
β * time (time) datetime64[ns] 3kB 2026-04-30T06:01:44.53900006...
β azimuth (time) float64 3kB ...
β elevation (time) float64 3kB ...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β sweep_mode <U20 80B ...
β Data variables:
β DBZH (time, range) float64 2MB ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β VRADH (time, range) float64 2MB ...
βββ Group: /sweep_4
β Dimensions: (time: 360, range: 720)
β Coordinates:
β * time (time) datetime64[ns] 3kB 2026-04-30T06:02:07.604000 ....
β azimuth (time) float64 3kB ...
β elevation (time) float64 3kB ...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β sweep_mode <U20 80B ...
β Data variables:
β DBZH (time, range) float64 2MB ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β VRADH (time, range) float64 2MB ...
βββ Group: /sweep_5
β Dimensions: (time: 360, range: 720)
β Coordinates:
β * time (time) datetime64[ns] 3kB 2026-04-30T06:02:31.01049984...
β azimuth (time) float64 3kB ...
β elevation (time) float64 3kB ...
β * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
β sweep_mode <U20 80B ...
β Data variables:
β DBZH (time, range) float64 2MB ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β VRADH (time, range) float64 2MB ...
βββ Group: /sweep_6
β Dimensions: (time: 360, range: 496)
β Coordinates:
β * time (time) datetime64[ns] 3kB 2026-04-30T06:03:02.59550003...
β azimuth (time) float64 3kB ...
β elevation (time) float64 3kB ...
β * range (range) float32 2kB 125.0 375.0 ... 1.236e+05 1.239e+05
β sweep_mode <U20 80B ...
β Data variables:
β DBZH (time, range) float64 1MB ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β VRADH (time, range) float64 1MB ...
βββ Group: /sweep_7
β Dimensions: (time: 360, range: 240)
β Coordinates:
β * time (time) datetime64[ns] 3kB 2026-04-30T06:03:24.03950003...
β azimuth (time) float64 3kB ...
β elevation (time) float64 3kB ...
β * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04
β sweep_mode <U20 80B ...
β Data variables:
β DBZH (time, range) float64 691kB ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β VRADH (time, range) float64 691kB ...
βββ Group: /sweep_8
β Dimensions: (time: 360, range: 240)
β Coordinates:
β * time (time) datetime64[ns] 3kB 2026-04-30T06:03:37.24049996...
β azimuth (time) float64 3kB ...
β elevation (time) float64 3kB ...
β * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04
β sweep_mode <U20 80B ...
β Data variables:
β DBZH (time, range) float64 691kB ...
β sweep_number int64 8B ...
β prt_mode <U7 28B ...
β follow_mode <U7 28B ...
β sweep_fixed_angle float64 8B ...
β VRADH (time, range) float64 691kB ...
βββ Group: /sweep_9
Dimensions: (time: 360, range: 240)
Coordinates:
* time (time) datetime64[ns] 3kB 2026-04-30T06:03:50.77550003...
azimuth (time) float64 3kB ...
elevation (time) float64 3kB ...
* range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04
sweep_mode <U20 80B ...
Data variables:
DBZH (time, range) float64 691kB ...
sweep_number int64 8B ...
prt_mode <U7 28B ...
follow_mode <U7 28B ...
sweep_fixed_angle float64 8B ...
VRADH (time, range) float64 691kB ...- sweep: 10
- time: 360
- range: 720
- time(time)datetime64[ns]2026-04-30T06:00:35.282500096 .....
- standard_name :
- time
array(['2026-04-30T06:00:35.282500096', '2026-04-30T06:00:35.345499904','2026-04-30T06:00:35.408499968', ..., '2026-04-30T06:00:57.598000128','2026-04-30T06:00:57.659999744', '2026-04-30T06:00:57.723000064'],shape=(360,), dtype='datetime64[ns]')
- 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]
- 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], shape=(720,), dtype=float32)
- sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[259200 values with dtype=float64]
- 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]
- VRADH(time, range)float64...
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[259200 values with dtype=float64]
- sweep: 10
- time: 360
- range: 720
- time(time)datetime64[ns]2026-04-30T06:00:58.348000 ... 2...
- standard_name :
- time
array(['2026-04-30T06:00:58.348000000', '2026-04-30T06:00:58.411000064','2026-04-30T06:00:58.472999936', ..., '2026-04-30T06:01:20.663000064','2026-04-30T06:01:20.724999936', '2026-04-30T06:01:20.788499712'],shape=(360,), dtype='datetime64[ns]')
- 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]
- 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], shape=(720,), dtype=float32)
- sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[259200 values with dtype=float64]
- 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]
- VRADH(time, range)float64...
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[259200 values with dtype=float64]
- sweep: 10
- time: 360
- range: 720
- time(time)datetime64[ns]2026-04-30T06:01:21.412000256 .....
- standard_name :
- time
array(['2026-04-30T06:01:21.412000256', '2026-04-30T06:01:21.474999808','2026-04-30T06:01:21.538000128', ..., '2026-04-30T06:01:43.728000000','2026-04-30T06:01:43.789999872', '2026-04-30T06:01:43.852000000'],shape=(360,), dtype='datetime64[ns]')
- 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]
- 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], shape=(720,), dtype=float32)
- sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[259200 values with dtype=float64]
- 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]
- VRADH(time, range)float64...
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[259200 values with dtype=float64]
- sweep: 10
- time: 360
- range: 720
- time(time)datetime64[ns]2026-04-30T06:01:44.539000064 .....
- standard_name :
- time
array(['2026-04-30T06:01:44.539000064', '2026-04-30T06:01:44.601500160','2026-04-30T06:01:44.664499968', ..., '2026-04-30T06:02:06.854000128','2026-04-30T06:02:06.917499904', '2026-04-30T06:02:06.979000064'],shape=(360,), dtype='datetime64[ns]')
- 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]
- 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], shape=(720,), dtype=float32)
- sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[259200 values with dtype=float64]
- 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]
- VRADH(time, range)float64...
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[259200 values with dtype=float64]
- sweep: 10
- time: 360
- range: 720
- time(time)datetime64[ns]2026-04-30T06:02:07.604000 ... 2...
- standard_name :
- time
array(['2026-04-30T06:02:07.604000000', '2026-04-30T06:02:07.667000064','2026-04-30T06:02:07.729000192', ..., '2026-04-30T06:02:29.917999872','2026-04-30T06:02:29.980000000', '2026-04-30T06:02:30.043500032'],shape=(360,), dtype='datetime64[ns]')
- 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]
- 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], shape=(720,), dtype=float32)
- sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[259200 values with dtype=float64]
- 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]
- VRADH(time, range)float64...
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[259200 values with dtype=float64]
- sweep: 10
- time: 360
- range: 720
- time(time)datetime64[ns]2026-04-30T06:02:31.010499840 .....
- standard_name :
- time
array(['2026-04-30T06:02:31.010499840', '2026-04-30T06:02:31.093999872','2026-04-30T06:02:31.177499904', ..., '2026-04-30T06:03:00.763000064','2026-04-30T06:03:00.847000064', '2026-04-30T06:03:00.930500096'],shape=(360,), dtype='datetime64[ns]')
- 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]
- 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], shape=(720,), dtype=float32)
- sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[259200 values with dtype=float64]
- 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]
- VRADH(time, range)float64...
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[259200 values with dtype=float64]
- sweep: 10
- time: 360
- range: 496
- time(time)datetime64[ns]2026-04-30T06:03:02.595500032 .....
- standard_name :
- time
array(['2026-04-30T06:03:02.595500032', '2026-04-30T06:03:02.649499904','2026-04-30T06:03:02.705999872', ..., '2026-04-30T06:03:22.430500096','2026-04-30T06:03:22.486500096', '2026-04-30T06:03:22.541999872'],shape=(360,), dtype='datetime64[ns]')
- 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]
- 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.],shape=(496,), dtype=float32)
- sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[178560 values with dtype=float64]
- 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]
- VRADH(time, range)float64...
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[178560 values with dtype=float64]
- sweep: 10
- time: 360
- range: 240
- time(time)datetime64[ns]2026-04-30T06:03:24.039500032 .....
- standard_name :
- time
array(['2026-04-30T06:03:24.039500032', '2026-04-30T06:03:24.072999936','2026-04-30T06:03:24.105999872', ..., '2026-04-30T06:03:35.941499904','2026-04-30T06:03:35.974499840', '2026-04-30T06:03:36.007500032'],shape=(360,), dtype='datetime64[ns]')
- 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]
- 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.],shape=(240,), dtype=float32)
- sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float64]
- 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]
- VRADH(time, range)float64...
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[86400 values with dtype=float64]
- sweep: 10
- time: 360
- range: 240
- time(time)datetime64[ns]2026-04-30T06:03:37.240499968 .....
- standard_name :
- time
array(['2026-04-30T06:03:37.240499968', '2026-04-30T06:03:37.273499904','2026-04-30T06:03:37.306999808', ..., '2026-04-30T06:03:49.142499840','2026-04-30T06:03:49.175500032', '2026-04-30T06:03:49.208499968'],shape=(360,), dtype='datetime64[ns]')
- 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]
- 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.],shape=(240,), dtype=float32)
- sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float64]
- 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]
- VRADH(time, range)float64...
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[86400 values with dtype=float64]
- sweep: 10
- time: 360
- range: 240
- time(time)datetime64[ns]2026-04-30T06:03:50.775500032 .....
- standard_name :
- time
array(['2026-04-30T06:03:50.775500032', '2026-04-30T06:03:50.808999936','2026-04-30T06:03:50.842000128', ..., '2026-04-30T06:04:02.677499904','2026-04-30T06:04:02.710500096', '2026-04-30T06:04:02.743500032'],shape=(360,), dtype='datetime64[ns]')
- 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]
- 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.],shape=(240,), dtype=float32)
- sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- _Undetect :
- 0.0
- units :
- dBZ
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
[86400 values with dtype=float64]
- 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]
- VRADH(time, range)float64...
- _Undetect :
- 0.0
- units :
- meters per seconds
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
[86400 values with dtype=float64]
- sweep: 10
- 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]
- volume_time()datetime64[ns]...
- standard_name :
- time
[1 values with dtype=datetime64[ns]]
- volume_number()int64...
[1 values with dtype=int64]
- platform_type()<U5...
[1 values with dtype=<U5]
- instrument_type()<U5...
[1 values with dtype=<U5]
- time_coverage_start()<U20...
[1 values with dtype=<U20]
- time_coverage_end()<U20...
[1 values with dtype=<U20]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- crs_wkt()int64...
- crs_wkt :
- PROJCRS["AEQD centered at 51.405649N 6.967111E",BASEGEOGCRS["unknown",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]],ID["EPSG",6326]],PRIMEM["Greenwich",0,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8901]]],CONVERSION["unknown",METHOD["Azimuthal Equidistant",ID["EPSG",1125]],PARAMETER["Latitude of natural origin",51.405649,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",6.967111,ANGLEUNIT["degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["False easting",0,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",0,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS[Cartesian,2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]
- semi_major_axis :
- 6378137.0
- semi_minor_axis :
- 6356752.314245179
- inverse_flattening :
- 298.257223563
- reference_ellipsoid_name :
- WGS 84
- longitude_of_prime_meridian :
- 0.0
- prime_meridian_name :
- Greenwich
- geographic_crs_name :
- unknown
- horizontal_datum_name :
- World Geodetic System 1984
- projected_crs_name :
- AEQD centered at 51.405649N 6.967111E
- grid_mapping_name :
- azimuthal_equidistant
- latitude_of_projection_origin :
- 51.405649
- longitude_of_projection_origin :
- 6.967111
- false_easting :
- 0.0
- false_northing :
- 0.0
[1 values with dtype=int64]
- sweep_group_name(sweep)int64...
[10 values with dtype=int64]
- sweep_fixed_angle(sweep)float64...
[10 values with dtype=float64]
- Conventions :
- ODIM_H5/V2_2
- instrument_name :
- None
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- None
- history :
- None
- comment :
- im/exported using xradar