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.
Note
The following code is based on xarray and xradar. It claims multiple data files and presents them in a DataTree.
[1]:
import wradlib as wrl
import warnings
warnings.filterwarnings("ignore")
import matplotlib.pyplot as plt
import numpy as np
import xarray as xr
import xradar as xd
try:
get_ipython().run_line_magic("matplotlib inline")
except:
plt.ion()
[2]:
import urllib3
import os
import io
import glob
import shutil
import datetime
[3]:
from html.parser import HTMLParser
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#
[4]:
radar = "ESS"
DBZH = "sweep_vol_z"
VRADH = "sweep_vol_v"
import certifi
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#
[5]:
flist = glob.glob("ras07*")
for f in flist:
os.remove(f)
Download latest 24 volumes to current directory#
[6]:
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)
[7]:
volume_reflectivity = glob.glob("ras07*_dbzh_*")
volume_velocity = glob.glob("ras07*_vradh_*")
[8]:
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]))
[9]:
volume_reflectivity = volume_reflectivity.reshape(-1, 10).T
volume_velocity = volume_velocity.reshape(-1, 10).T
Read the data into xarray powered structure#
[10]:
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)
[11]:
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)
[12]:
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)
[13]:
vol = xr.DataTree.from_dict(dtree)
[14]:
display(vol)
<xarray.DatasetView> Size: 4kB
Dimensions: (sweep: 10, volume_time: 24)
Coordinates:
* volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:0...
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 '2024-11-06T09:25:34Z'
time_coverage_end <U20 80B '2024-11-06T11:24:02Z'
sweep_mode object 8B 'azimuth_surveillance'
longitude float64 8B 6.967
altitude float64 8B 185.1
crs_wkt int64 8B 0
latitude float64 8B 51.41
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<xarray.DatasetView> Size: 302MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 69kB 5.471 5.471 ... 5.482 time (volume_time, azimuth) datetime64[ns] 69kB 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... y (volume_time, azimuth, range) float64 50MB 124.4 ... 1... z (volume_time, azimuth, range) float64 50MB 197.0 ... 1... gr (volume_time, azimuth, range) float64 50MB 124.4 ... 1... 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 crs_wkt int64 8B 0 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_0- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float645.471 5.471 5.471 ... 5.482 5.482
- 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.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], ..., [5.47119141, 5.47119141, 5.47119141, ..., 5.47119141, 5.47119141, 5.47119141], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773]]) - time(volume_time, azimuth)datetime64[ns]2024-11-06T09:25:53.944499968 .....
- standard_name :
- time
array([['2024-11-06T09:25:53.944499968', '2024-11-06T09:25:54.008000000', '2024-11-06T09:25:54.069999872', ..., '2024-11-06T09:25:53.756000000', '2024-11-06T09:25:53.817999872', '2024-11-06T09:25:53.880999936'], ['2024-11-06T09:30:53.938000128', '2024-11-06T09:30:54.000999936', '2024-11-06T09:30:54.063000320', ..., '2024-11-06T09:30:53.749000192', '2024-11-06T09:30:53.811500032', '2024-11-06T09:30:53.874500096'], ['2024-11-06T09:35:54.532499712', '2024-11-06T09:35:54.596000000', '2024-11-06T09:35:54.657999872', ..., '2024-11-06T09:35:54.343999744', '2024-11-06T09:35:54.406000128', '2024-11-06T09:35:54.469500160'], ..., ['2024-11-06T11:10:54.557000192', '2024-11-06T11:10:54.620000000', '2024-11-06T11:10:54.683000064', ..., '2024-11-06T11:10:54.368000000', '2024-11-06T11:10:54.430500096', '2024-11-06T11:10:54.492999936'], ['2024-11-06T11:15:53.941999872', '2024-11-06T11:15:54.005000192', '2024-11-06T11:15:54.068000000', ..., '2024-11-06T11:15:53.752999936', '2024-11-06T11:15:53.815500032', '2024-11-06T11:15:53.877999872'], ['2024-11-06T11:20:54.551499776', '2024-11-06T11:20:54.615000064', '2024-11-06T11:20:54.677999872', ..., '2024-11-06T11:20:54.363500032', '2024-11-06T11:20:54.426000128', '2024-11-06T11:20:54.488000000']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(volume_time, azimuth, range)float641.086 3.257 ... -1.559e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]], [[ 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.42735782e+00, -1.62820276e+01, -2.71366363e+01, ..., -7.77143336e+03, -7.78223958e+03, -7.79304574e+03], [-3.25707612e+00, -9.77120087e+00, -1.62852889e+01, ..., -4.66380712e+03, -4.67029217e+03, -4.67677718e+03], [-1.08580229e+00, -3.25739770e+00, -5.42898089e+00, ..., -1.55476024e+03, -1.55692214e+03, -1.55908403e+03]], [[ 1.08580229e+00, 3.25739770e+00, 5.42898089e+00, ..., 1.55476024e+03, 1.55692214e+03, 1.55908403e+03], [ 3.25707612e+00, 9.77120087e+00, 1.62852889e+01, ..., 4.66380712e+03, 4.67029217e+03, 4.67677718e+03], [ 5.42735782e+00, 1.62820276e+01, 2.71366363e+01, ..., 7.77143336e+03, 7.78223958e+03, 7.79304574e+03], ..., [-5.42735782e+00, -1.62820276e+01, -2.71366363e+01, ..., -7.77143336e+03, -7.78223958e+03, -7.79304574e+03], [-3.25707612e+00, -9.77120087e+00, -1.62852889e+01, ..., -4.66380712e+03, -4.67029217e+03, -4.67677718e+03], [-1.08580229e+00, -3.25739770e+00, -5.42898089e+00, ..., -1.55476024e+03, -1.55692214e+03, -1.55908403e+03]]]) - y(volume_time, azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]], [[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.24306931e+02, 3.72919744e+02, 6.21531156e+02, ..., 1.77995088e+05, 1.78242591e+05, 1.78490092e+05], [1.24382719e+02, 3.73147107e+02, 6.21910094e+02, ..., 1.78103608e+05, 1.78351262e+05, 1.78598915e+05], [1.24420619e+02, 3.73260806e+02, 6.22099591e+02, ..., 1.78157877e+05, 1.78405607e+05, 1.78653335e+05]], [[1.24420619e+02, 3.73260806e+02, 6.22099591e+02, ..., 1.78157877e+05, 1.78405607e+05, 1.78653335e+05], [1.24382719e+02, 3.73147107e+02, 6.21910094e+02, ..., 1.78103608e+05, 1.78351262e+05, 1.78598915e+05], [1.24306931e+02, 3.72919744e+02, 6.21531156e+02, ..., 1.77995088e+05, 1.78242591e+05, 1.78490092e+05], ..., [1.24306931e+02, 3.72919744e+02, 6.21531156e+02, ..., 1.77995088e+05, 1.78242591e+05, 1.78490092e+05], [1.24382719e+02, 3.73147107e+02, 6.21910094e+02, ..., 1.78103608e+05, 1.78351262e+05, 1.78598915e+05], [1.24420619e+02, 3.73260806e+02, 6.22099591e+02, ..., 1.78157877e+05, 1.78405607e+05, 1.78653335e+05]]]) - z(volume_time, azimuth, range)float64197.0 220.9 ... 1.923e+04 1.925e+04
- standard_name :
- height_above_ground
- units :
- meters
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]], [[ 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.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ]], [[ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], ..., [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ]]]) - gr(volume_time, azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]], [[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.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05]], [[1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], ..., [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05]]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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. ]]])
<xarray.DatasetView> Size: 111MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_1- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)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]2024-11-06T09:26:16.446499840 .....
- standard_name :
- time
array([['2024-11-06T09:26:16.446499840', '2024-11-06T09:26:16.509499904', '2024-11-06T09:26:16.572000000', ..., '2024-11-06T09:26:16.259000064', '2024-11-06T09:26:16.320499968', '2024-11-06T09:26:16.383500032'], ['2024-11-06T09:31:16.440000000', '2024-11-06T09:31:16.503000064', '2024-11-06T09:31:16.565499904', ..., '2024-11-06T09:31:16.252999936', '2024-11-06T09:31:16.315000064', '2024-11-06T09:31:16.376999936'], ['2024-11-06T09:36:17.034500096', '2024-11-06T09:36:17.098000128', '2024-11-06T09:36:17.159999744', ..., '2024-11-06T09:36:16.845999872', '2024-11-06T09:36:16.908000000', '2024-11-06T09:36:16.971000320'], ..., ['2024-11-06T11:11:17.059500288', '2024-11-06T11:11:17.123000064', '2024-11-06T11:11:17.184999936', ..., '2024-11-06T11:11:16.871000064', '2024-11-06T11:11:16.933000192', '2024-11-06T11:11:16.996499968'], ['2024-11-06T11:16:16.444499968', '2024-11-06T11:16:16.508000000', '2024-11-06T11:16:16.570000128', ..., '2024-11-06T11:16:16.256000000', '2024-11-06T11:16:16.317999872', '2024-11-06T11:16:16.380999936'], ['2024-11-06T11:21:17.054500096', '2024-11-06T11:21:17.117000192', '2024-11-06T11:21:17.179500032', ..., '2024-11-06T11:21:16.866000128', '2024-11-06T11:21:16.928999936', '2024-11-06T11:21:16.991000064']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.087 3.262 ... -1.562e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]]) - y(azimuth, range)float64124.6 373.8 ... 1.787e+05 1.79e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]]) - z(azimuth, range)float64194.9 214.5 ... 1.614e+04 1.617e+04
- standard_name :
- height_above_ground
- units :
- meters
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 ]]) - gr(azimuth, range)float64124.6 373.8 ... 1.787e+05 1.79e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 111MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_2- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)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]2024-11-06T09:26:38.948999936 .....
- standard_name :
- time
array([['2024-11-06T09:26:38.948999936', '2024-11-06T09:26:39.012000000', '2024-11-06T09:26:39.075000064', ..., '2024-11-06T09:26:38.760000000', '2024-11-06T09:26:38.822500096', '2024-11-06T09:26:38.884999936'], ['2024-11-06T09:31:38.942500096', '2024-11-06T09:31:39.006000128', '2024-11-06T09:31:39.067999744', ..., '2024-11-06T09:31:38.755000064', '2024-11-06T09:31:38.816999936', '2024-11-06T09:31:38.880000000'], ['2024-11-06T09:36:39.537499904', '2024-11-06T09:36:39.600000000', '2024-11-06T09:36:39.661499904', ..., '2024-11-06T09:36:39.348999936', '2024-11-06T09:36:39.411000064', '2024-11-06T09:36:39.473499904'], ..., ['2024-11-06T11:11:39.561500160', '2024-11-06T11:11:39.624999936', '2024-11-06T11:11:39.686999808', ..., '2024-11-06T11:11:39.374000128', '2024-11-06T11:11:39.435999744', '2024-11-06T11:11:39.498000128'], ['2024-11-06T11:16:38.947000064', '2024-11-06T11:16:39.009499904', '2024-11-06T11:16:39.071000064', ..., '2024-11-06T11:16:38.757999872', '2024-11-06T11:16:38.820499968', '2024-11-06T11:16:38.883500032'], ['2024-11-06T11:21:39.557000192', '2024-11-06T11:21:39.619000064', '2024-11-06T11:21:39.681499904', ..., '2024-11-06T11:21:39.368499968', '2024-11-06T11:21:39.431000064', '2024-11-06T11:21:39.492999936']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.089 3.266 ... -1.564e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]]) - y(azimuth, range)float64124.8 374.3 ... 1.79e+05 1.793e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]]) - z(azimuth, range)float64192.7 208.0 ... 1.302e+04 1.304e+04
- standard_name :
- height_above_ground
- units :
- meters
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]]) - gr(azimuth, range)float64124.8 374.3 ... 1.79e+05 1.793e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 111MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_3- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)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]2024-11-06T09:27:01.451500032 .....
- standard_name :
- time
array([['2024-11-06T09:27:01.451500032', '2024-11-06T09:27:01.514999808', '2024-11-06T09:27:01.577000192', ..., '2024-11-06T09:27:01.263000064', '2024-11-06T09:27:01.324999936', '2024-11-06T09:27:01.388000000'], ['2024-11-06T09:32:01.445000192', '2024-11-06T09:32:01.508000000', '2024-11-06T09:32:01.571000064', ..., '2024-11-06T09:32:01.256000000', '2024-11-06T09:32:01.318500096', '2024-11-06T09:32:01.380999936'], ['2024-11-06T09:37:02.039500032', '2024-11-06T09:37:02.101999872', '2024-11-06T09:37:02.164499968', ..., '2024-11-06T09:37:01.850999808', '2024-11-06T09:37:01.914000128', '2024-11-06T09:37:01.975500032'], ..., ['2024-11-06T11:12:02.064000256', '2024-11-06T11:12:02.126999808', '2024-11-06T11:12:02.189000192', ..., '2024-11-06T11:12:01.875000064', '2024-11-06T11:12:01.937499904', '2024-11-06T11:12:02.000499968'], ['2024-11-06T11:17:01.449500160', '2024-11-06T11:17:01.512999936', '2024-11-06T11:17:01.574999808', ..., '2024-11-06T11:17:01.260999936', '2024-11-06T11:17:01.323000064', '2024-11-06T11:17:01.385499904'], ['2024-11-06T11:22:02.059500288', '2024-11-06T11:22:02.123000064', '2024-11-06T11:22:02.184499968', ..., '2024-11-06T11:22:01.869999872', '2024-11-06T11:22:01.932499968', '2024-11-06T11:22:01.995500032']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.09 3.269 ... -1.567e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]]) - y(azimuth, range)float64124.9 374.6 ... 1.793e+05 1.795e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]]) - z(azimuth, range)float64190.5 201.4 ... 9.862e+03 9.878e+03
- standard_name :
- height_above_ground
- units :
- meters
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 ]]) - gr(azimuth, range)float64124.9 374.6 ... 1.793e+05 1.795e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 302MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 69kB 1.494 1.494 ... 1.494 time (volume_time, azimuth) datetime64[ns] 69kB 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... y (volume_time, azimuth, range) float64 50MB 124.9 ... 1... z (volume_time, azimuth, range) float64 50MB 188.4 ... 6... gr (volume_time, azimuth, range) float64 50MB 125.0 ... 1... 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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_4- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float641.494 1.494 1.494 ... 1.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.4831543 , 1.4831543 , 1.4831543 , ..., 1.4831543 , 1.4831543 , 1.4831543 ], [1.4831543 , 1.4831543 , 1.4831543 , ..., 1.4831543 , 1.4831543 , 1.4831543 ], ..., [1.4831543 , 1.4831543 , 1.4831543 , ..., 1.4831543 , 1.4831543 , 1.4831543 ], [1.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]2024-11-06T09:27:23.953999872 .....
- standard_name :
- time
array([['2024-11-06T09:27:23.953999872', '2024-11-06T09:27:24.016999936', '2024-11-06T09:27:24.079500032', ..., '2024-11-06T09:27:23.764999936', '2024-11-06T09:27:23.827000064', '2024-11-06T09:27:23.890500096'], ['2024-11-06T09:32:23.947000064', '2024-11-06T09:32:24.010499840', '2024-11-06T09:32:24.072999936', ..., '2024-11-06T09:32:23.757999872', '2024-11-06T09:32:23.820499968', '2024-11-06T09:32:23.883500032'], ['2024-11-06T09:37:24.541500160', '2024-11-06T09:37:24.604000000', '2024-11-06T09:37:24.666500096', ..., '2024-11-06T09:37:24.353499904', '2024-11-06T09:37:24.416000000', '2024-11-06T09:37:24.478000128'], ..., ['2024-11-06T11:12:24.566500096', '2024-11-06T11:12:24.630000128', '2024-11-06T11:12:24.692000000', ..., '2024-11-06T11:12:24.378000128', '2024-11-06T11:12:24.440000000', '2024-11-06T11:12:24.502999808'], ['2024-11-06T11:17:23.951500032', '2024-11-06T11:17:24.014499840', '2024-11-06T11:17:24.076000256', ..., '2024-11-06T11:17:23.763000064', '2024-11-06T11:17:23.824999936', '2024-11-06T11:17:23.888499968'], ['2024-11-06T11:22:24.561500160', '2024-11-06T11:22:24.624999936', '2024-11-06T11:22:24.686999808', ..., '2024-11-06T11:22:24.373000192', '2024-11-06T11:22:24.435000064', '2024-11-06T11:22:24.498000128']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(volume_time, azimuth, range)float641.09 3.271 ... -1.568e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]], [[ 1.09042729e+00, 3.27127937e+00, 5.45212813e+00, ..., 1.56367584e+03, 1.56585334e+03, 1.56803083e+03], [ 3.27094972e+00, 9.81284166e+00, 1.63547236e+01, ..., 4.69055120e+03, 4.69708303e+03, 4.70361484e+03], [ 5.45047578e+00, 1.63514149e+01, 2.72523373e+01, ..., 7.81599778e+03, 7.82688195e+03, 7.83776609e+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]], [[ 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]]]) - y(volume_time, azimuth, range)float64124.9 374.8 ... 1.794e+05 1.797e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]], [[1.24950591e+02, 3.74851488e+02, 6.24752002e+02, ..., 1.79179504e+05, 1.79429020e+05, 1.79678536e+05], [1.24912530e+02, 3.74737304e+02, 6.24561697e+02, ..., 1.79124924e+05, 1.79374364e+05, 1.79623804e+05], [1.24836419e+02, 3.74508972e+02, 6.24181144e+02, ..., 1.79015781e+05, 1.79265069e+05, 1.79514357e+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]], [[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]]]) - z(volume_time, azimuth, range)float64188.4 194.9 ... 6.767e+03 6.779e+03
- standard_name :
- height_above_ground
- units :
- meters
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]], [[ 188.34629928, 194.82441727, 201.3098945 , ..., 6720.93036025, 6732.67952777, 6744.43603331], [ 188.34629928, 194.82441727, 201.3098945 , ..., 6720.93036025, 6732.67952777, 6744.43603331], [ 188.34629928, 194.82441727, 201.3098945 , ..., 6720.93036025, 6732.67952777, 6744.43603331], ... [ 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], ..., [ 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]]]) - gr(volume_time, azimuth, range)float64125.0 374.9 ... 1.794e+05 1.797e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]], [[1.24955349e+02, 3.74865761e+02, 6.24775792e+02, ..., 1.79186326e+05, 1.79435852e+05, 1.79685378e+05], [1.24955349e+02, 3.74865761e+02, 6.24775792e+02, ..., 1.79186326e+05, 1.79435852e+05, 1.79685378e+05], [1.24955349e+02, 3.74865761e+02, 6.24775792e+02, ..., 1.79186326e+05, 1.79435852e+05, 1.79685378e+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], [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]]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 111MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_5- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)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]2024-11-06T09:27:51.940000 ... 2...
- standard_name :
- time
array([['2024-11-06T09:27:51.940000000', '2024-11-06T09:27:52.024000256', '2024-11-06T09:27:52.106999808', ..., '2024-11-06T09:27:51.688499968', '2024-11-06T09:27:51.772499968', '2024-11-06T09:27:51.855500032'], ['2024-11-06T09:32:51.896500224', '2024-11-06T09:32:51.980499968', '2024-11-06T09:32:52.064499968', ..., '2024-11-06T09:32:51.645999872', '2024-11-06T09:32:51.729499904', '2024-11-06T09:32:51.813499904'], ['2024-11-06T09:37:52.506500096', '2024-11-06T09:37:52.590499840', '2024-11-06T09:37:52.673500160', ..., '2024-11-06T09:37:52.255499776', '2024-11-06T09:37:52.338500096', '2024-11-06T09:37:52.422500096'], ..., ['2024-11-06T11:12:52.575500032', '2024-11-06T11:12:52.658999808', '2024-11-06T11:12:52.742499840', ..., '2024-11-06T11:12:52.324000000', '2024-11-06T11:12:52.407000064', '2024-11-06T11:12:52.490500096'], ['2024-11-06T11:17:51.869999872', '2024-11-06T11:17:51.953999872', '2024-11-06T11:17:52.037499904', ..., '2024-11-06T11:17:51.619000064', '2024-11-06T11:17:51.702499840', '2024-11-06T11:17:51.786500096'], ['2024-11-06T11:22:52.534500096', '2024-11-06T11:22:52.618000128', '2024-11-06T11:22:52.701499904', ..., '2024-11-06T11:22:52.283000064', '2024-11-06T11:22:52.366499840', '2024-11-06T11:22:52.450000128']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.091 3.272 ... -1.569e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]]) - y(azimuth, range)float64125.0 375.0 ... 1.795e+05 1.798e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]]) - z(azimuth, range)float64186.2 188.3 ... 3.601e+03 3.608e+03
- standard_name :
- height_above_ground
- units :
- meters
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]]) - gr(azimuth, range)float64125.0 375.0 ... 1.796e+05 1.798e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 77MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 496) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 2kB 125.0 375.0 ... 1.236e+05 1.239e+05 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep 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 VRADH (volume_time, azimuth, range) float64 34MB -128.0 ... ...sweep_6- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 496
- range(range)float32125.0 375.0 ... 1.236e+05 1.239e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 123375., 123625., 123875.], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(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]2024-11-06T09:28:14.967500032 .....
- standard_name :
- time
array([['2024-11-06T09:28:14.967500032', '2024-11-06T09:28:15.023500032', '2024-11-06T09:28:15.079000064', ..., '2024-11-06T09:28:14.800499968', '2024-11-06T09:28:14.856000000', '2024-11-06T09:28:14.911500032'], ['2024-11-06T09:33:14.956499968', '2024-11-06T09:33:15.012499968', '2024-11-06T09:33:15.067500032', ..., '2024-11-06T09:33:14.788999936', '2024-11-06T09:33:14.844499968', '2024-11-06T09:33:14.900499712'], ['2024-11-06T09:38:15.515500032', '2024-11-06T09:38:15.571500032', '2024-11-06T09:38:15.626500096', ..., '2024-11-06T09:38:15.348000000', '2024-11-06T09:38:15.402500096', '2024-11-06T09:38:15.459499776'], ..., ['2024-11-06T11:13:15.563500032', '2024-11-06T11:13:15.619500288', '2024-11-06T11:13:15.675000064', ..., '2024-11-06T11:13:15.395500288', '2024-11-06T11:13:15.452000256', '2024-11-06T11:13:15.507500288'], ['2024-11-06T11:18:14.908000000', '2024-11-06T11:18:14.964499968', '2024-11-06T11:18:15.020000000', ..., '2024-11-06T11:18:14.740499968', '2024-11-06T11:18:14.796000000', '2024-11-06T11:18:14.851500032'], ['2024-11-06T11:23:15.517000192', '2024-11-06T11:23:15.572999936', '2024-11-06T11:23:15.628499968', ..., '2024-11-06T11:23:15.348999936', '2024-11-06T11:23:15.404499968', '2024-11-06T11:23:15.460499968']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.08 3.241 ... -1.068e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]]) - y(azimuth, range)float64123.8 371.3 ... 1.222e+05 1.224e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]]) - z(azimuth, range)float64202.5 237.2 ... 1.824e+04 1.828e+04
- standard_name :
- height_above_ground
- units :
- meters
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]]) - gr(azimuth, range)float64123.8 371.4 ... 1.222e+05 1.224e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]]) - 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]]) - 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.]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 37MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 240) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 elevation (azimuth) float64 3kB 12.0 12.0 12.0 ... 12.0 12.0 12.0 time (volume_time, azimuth) datetime64[ns] 69kB 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... y (azimuth, range) float64 691kB 122.3 366.8 ... 5.848e+04 z (azimuth, range) float64 691kB 211.1 263.1 ... 1.283e+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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep 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 VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...sweep_7- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 240
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)float6412.0 12.0 12.0 ... 12.0 12.0 12.0
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, ... 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031]) - time(volume_time, azimuth)datetime64[ns]2024-11-06T09:28:30.100500224 .....
- standard_name :
- time
array([['2024-11-06T09:28:30.100500224', '2024-11-06T09:28:30.134500096', '2024-11-06T09:28:30.167500032', ..., '2024-11-06T09:28:30.000000000', '2024-11-06T09:28:30.033499904', '2024-11-06T09:28:30.066499840'], ['2024-11-06T09:33:30.115000064', '2024-11-06T09:33:30.148499968', '2024-11-06T09:33:30.181999872', ..., '2024-11-06T09:33:30.014499840', '2024-11-06T09:33:30.047499776', '2024-11-06T09:33:30.081500160'], ['2024-11-06T09:38:30.632999936', '2024-11-06T09:38:30.666500096', '2024-11-06T09:38:30.700000000', ..., '2024-11-06T09:38:30.532999936', '2024-11-06T09:38:30.565999872', '2024-11-06T09:38:30.599500032'], ..., ['2024-11-06T11:13:30.665499904', '2024-11-06T11:13:30.698999808', '2024-11-06T11:13:30.732499968', ..., '2024-11-06T11:13:30.564999936', '2024-11-06T11:13:30.598500096', '2024-11-06T11:13:30.631500032'], ['2024-11-06T11:18:30.049999872', '2024-11-06T11:18:30.083500032', '2024-11-06T11:18:30.117000192', ..., '2024-11-06T11:18:29.949500160', '2024-11-06T11:18:29.983000064', '2024-11-06T11:18:30.016499968'], ['2024-11-06T11:23:30.613999872', '2024-11-06T11:23:30.648000000', '2024-11-06T11:23:30.681499904', ..., '2024-11-06T11:23:30.513499904', '2024-11-06T11:23:30.546499840', '2024-11-06T11:23:30.580499968']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.067 3.201 5.335 ... -508.2 -510.3
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 1.06696503e+00, 3.20087548e+00, 5.33475980e+00, ..., 5.06066131e+02, 5.08193762e+02, 5.10321366e+02], [ 3.20057007e+00, 9.60165142e+00, 1.60026544e+01, ..., 1.51804424e+03, 1.52442649e+03, 1.53080865e+03], [ 5.33320019e+00, 1.59995026e+01, 2.66656744e+01, ..., 2.52955994e+03, 2.54019485e+03, 2.55082963e+03], ..., [-5.33320019e+00, -1.59995026e+01, -2.66656744e+01, ..., -2.52955994e+03, -2.54019485e+03, -2.55082963e+03], [-3.20057007e+00, -9.60165142e+00, -1.60026544e+01, ..., -1.51804424e+03, -1.52442649e+03, -1.53080865e+03], [-1.06696503e+00, -3.20087548e+00, -5.33475980e+00, ..., -5.06066131e+02, -5.08193762e+02, -5.10321366e+02]]) - y(azimuth, range)float64122.3 366.8 ... 5.823e+04 5.848e+04
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[ 122.26208213, 366.78400039, 611.3029237 , ..., 57989.43482545, 58233.23718887, 58477.036475 ], [ 122.22483991, 366.67227443, 611.11671491, ..., 57971.77068184, 58215.4987807 , 58459.22380321], [ 122.15036683, 366.44885654, 610.74435404, ..., 57936.4477753 , 58180.02736766, 58423.60388554], ..., [ 122.15036683, 366.44885654, 610.74435404, ..., 57936.4477753 , 58180.02736766, 58423.60388554], [ 122.22483991, 366.67227443, 611.11671491, ..., 57971.77068184, 58215.4987807 , 58459.22380321], [ 122.26208213, 366.78400039, 611.3029237 , ..., 57989.43482545, 58233.23718887, 58477.036475 ]]) - z(azimuth, range)float64211.1 263.1 ... 1.278e+04 1.283e+04
- standard_name :
- height_above_ground
- units :
- meters
array([[ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473], [ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473], [ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473], ..., [ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473], [ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473], [ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473]]) - gr(azimuth, range)float64122.3 366.8 ... 5.824e+04 5.848e+04
- standard_name :
- distance_from_radar
- units :
- meters
array([[ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615], [ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615], [ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615], ..., [ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615], [ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615], [ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615]]) - 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]]) - 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.]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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 -1.668 -9.889 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
array([[[-64.00292982, -1.66804511, -9.88912456, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -2.7784475 , -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [ -0.62795843, 1.41998688, -18.24204599, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ... [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 37MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 240) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 elevation (azimuth) float64 3kB 16.98 16.98 16.98 ... 16.98 16.98 time (volume_time, azimuth) datetime64[ns] 69kB 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... y (azimuth, range) float64 691kB 119.5 358.6 ... 5.714e+04 z (azimuth, range) float64 691kB 221.6 294.7 ... 1.787e+04 gr (azimuth, range) float64 691kB 119.5 358.6 ... 5.714e+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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep Data variables: DBZH (volume_time, azimuth, range) float64 17MB -2.433 ... ... 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 VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...sweep_8- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 240
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)float6416.98 16.98 16.98 ... 16.98 16.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, ... 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328]) - time(volume_time, azimuth)datetime64[ns]2024-11-06T09:28:42.101500160 .....
- standard_name :
- time
array([['2024-11-06T09:28:42.101500160', '2024-11-06T09:28:42.135500032', '2024-11-06T09:28:42.168499968', ..., '2024-11-06T09:28:42.001499904', '2024-11-06T09:28:42.034500096', '2024-11-06T09:28:42.067500032'], ['2024-11-06T09:33:42.116000000', '2024-11-06T09:33:42.150000128', '2024-11-06T09:33:42.183000064', ..., '2024-11-06T09:33:42.016000000', '2024-11-06T09:33:42.048999936', '2024-11-06T09:33:42.082500096'], ['2024-11-06T09:38:42.634000128', '2024-11-06T09:38:42.668000000', '2024-11-06T09:38:42.700999936', ..., '2024-11-06T09:38:42.533999872', '2024-11-06T09:38:42.566999808', '2024-11-06T09:38:42.600500224'], ..., ['2024-11-06T11:13:42.666500096', '2024-11-06T11:13:42.700499968', '2024-11-06T11:13:42.733499904', ..., '2024-11-06T11:13:42.566499840', '2024-11-06T11:13:42.599500032', '2024-11-06T11:13:42.632499968'], ['2024-11-06T11:18:42.051000064', '2024-11-06T11:18:42.084499968', '2024-11-06T11:18:42.118500096', ..., '2024-11-06T11:18:41.950500096', '2024-11-06T11:18:41.984000000', '2024-11-06T11:18:42.017499904'], ['2024-11-06T11:23:42.615500032', '2024-11-06T11:23:42.648999936', '2024-11-06T11:23:42.682499840', ..., '2024-11-06T11:23:42.514499840', '2024-11-06T11:23:42.547999744', '2024-11-06T11:23:42.581500160']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.043 3.13 5.216 ... -496.6 -498.7
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 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], ..., [-5.21446324e+00, -1.56432551e+01, -2.60718675e+01, ..., -2.47179238e+03, -2.48217830e+03, -2.49256404e+03], [-3.12931343e+00, -9.38785951e+00, -1.56462979e+01, ..., -1.48337667e+03, -1.48960948e+03, -1.49584219e+03], [-1.04321040e+00, -3.12960427e+00, -5.21596223e+00, ..., -4.94509099e+02, -4.96586916e+02, -4.98664697e+02]]) - y(azimuth, range)float64119.5 358.6 ... 5.69e+04 5.714e+04
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[ 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], ..., [ 119.43084358, 358.28944753, 597.1439403 , ..., 56613.35318108, 56851.2298785 , 57089.10240108], [ 119.50365862, 358.50789076, 597.50800921, ..., 56647.86941844, 56885.89114541, 57123.90869497], [ 119.54007168, 358.61712901, 597.6900714 , ..., 56665.13016602, 56903.2244188 , 57141.31449291]]) - z(azimuth, range)float64221.6 294.7 ... 1.779e+04 1.787e+04
- standard_name :
- height_above_ground
- units :
- meters
array([[ 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], ..., [ 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]]) - gr(azimuth, range)float64119.5 358.6 ... 5.691e+04 5.714e+04
- standard_name :
- distance_from_radar
- units :
- meters
array([[ 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], ..., [ 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]]) - 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]]) - 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.]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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-2.433 -9.538 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
array([[[ -2.43272855, -9.53754597, -4.3371126 , ..., -64.00292982, -64.00292982, -64.00292982], [ -1.90829048, -0.9619581 , -16.43141623, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, 0.08691804, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -2.86634215, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [ -3.22085056, -0.9619581 , -9.7455633 , ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -3.0772893 , -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ... [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 101MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 240) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep Data variables: DBZH (volume_time, azimuth, range) float64 17MB -3.382 ... ... 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 VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...sweep_9- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 240
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float6424.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]]) - time(volume_time, azimuth)datetime64[ns]2024-11-06T09:28:54.102499840 .....
- standard_name :
- time
array([['2024-11-06T09:28:54.102499840', '2024-11-06T09:28:54.136499968', '2024-11-06T09:28:54.169500160', ..., '2024-11-06T09:28:54.002500096', '2024-11-06T09:28:54.035500032', '2024-11-06T09:28:54.068999936'], ['2024-11-06T09:33:54.117500160', '2024-11-06T09:33:54.151000064', '2024-11-06T09:33:54.184499968', ..., '2024-11-06T09:33:54.016999936', '2024-11-06T09:33:54.050499840', '2024-11-06T09:33:54.083500032'], ['2024-11-06T09:38:54.635500032', '2024-11-06T09:38:54.669500160', '2024-11-06T09:38:54.702500096', ..., '2024-11-06T09:38:54.535000064', '2024-11-06T09:38:54.568499968', '2024-11-06T09:38:54.601500160'], ..., ['2024-11-06T11:13:54.667500032', '2024-11-06T11:13:54.701499904', '2024-11-06T11:13:54.734499840', ..., '2024-11-06T11:13:54.567500032', '2024-11-06T11:13:54.600500224', '2024-11-06T11:13:54.634000128'], ['2024-11-06T11:18:54.052000000', '2024-11-06T11:18:54.085499904', '2024-11-06T11:18:54.119500032', ..., '2024-11-06T11:18:53.952000256', '2024-11-06T11:18:53.985500160', '2024-11-06T11:18:54.018500096'], ['2024-11-06T11:23:54.617000192', '2024-11-06T11:23:54.650000128', '2024-11-06T11:23:54.683500032', ..., '2024-11-06T11:23:54.516000000', '2024-11-06T11:23:54.549499904', '2024-11-06T11:23:54.583000064']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(volume_time, azimuth, range)float640.9888 2.966 ... -470.3 -472.2
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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], ... [-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], ..., [-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]]]) - y(volume_time, azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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 ], ... [ 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 ], ..., [ 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]]]) - z(volume_time, azimuth, range)float64237.9 343.4 ... 2.553e+04 2.564e+04
- standard_name :
- height_above_ground
- units :
- meters
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], ... [ 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]]]) - gr(volume_time, azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- standard_name :
- distance_from_radar
- units :
- meters
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], ... [ 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]]]) - 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]]) - 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.]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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-3.382 -4.654 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
array([[[ -3.38199075, -4.65353333, -18.29185296, ..., -64.00292982, -64.00292982, -64.00292982], [ -3.68962202, -3.15932431, -5.73463751, ..., -64.00292982, -64.00292982, -64.00292982], [ -2.78430714, -3.39956968, -14.2047518 , ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -16.2907848 , ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -2.58800909, -20.31050005, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ... [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -16.81815269, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
- sweep: 10
- volume_time: 24
- volume_time(volume_time)datetime64[ns]2024-11-06T09:25:00 ... 2024-11-...
array(['2024-11-06T09:25:00.000000000', '2024-11-06T09:30:00.000000000', '2024-11-06T09:35:00.000000000', '2024-11-06T09:40:00.000000000', '2024-11-06T09:45:00.000000000', '2024-11-06T09:50:00.000000000', '2024-11-06T09:55:00.000000000', '2024-11-06T10:00:00.000000000', '2024-11-06T10:05:00.000000000', '2024-11-06T10:10:00.000000000', '2024-11-06T10:15:00.000000000', '2024-11-06T10:20:00.000000000', '2024-11-06T10:25:00.000000000', '2024-11-06T10:30:00.000000000', '2024-11-06T10:35:00.000000000', '2024-11-06T10:40:00.000000000', '2024-11-06T10:45:00.000000000', '2024-11-06T10:50:00.000000000', '2024-11-06T10:55:00.000000000', '2024-11-06T11:00:00.000000000', '2024-11-06T11:05:00.000000000', '2024-11-06T11:10:00.000000000', '2024-11-06T11:15:00.000000000', '2024-11-06T11:20:00.000000000'], dtype='datetime64[ns]')
- 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'2024-11-06T09:25:34Z'
array('2024-11-06T09:25:34Z', dtype='<U20') - time_coverage_end()<U20'2024-11-06T11:24:02Z'
array('2024-11-06T11:24:02Z', dtype='<U20') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - 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)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- 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#
[15]:
vol.root
[15]:
<xarray.DatasetView> Size: 4kB
Dimensions: (sweep: 10, volume_time: 24)
Coordinates:
* volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:0...
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 '2024-11-06T09:25:34Z'
time_coverage_end <U20 80B '2024-11-06T11:24:02Z'
sweep_mode object 8B 'azimuth_surveillance'
longitude float64 8B 6.967
altitude float64 8B 185.1
crs_wkt int64 8B 0
latitude float64 8B 51.41
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<xarray.DatasetView> Size: 302MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 69kB 5.471 5.471 ... 5.482 time (volume_time, azimuth) datetime64[ns] 69kB 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... y (volume_time, azimuth, range) float64 50MB 124.4 ... 1... z (volume_time, azimuth, range) float64 50MB 197.0 ... 1... gr (volume_time, azimuth, range) float64 50MB 124.4 ... 1... 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 crs_wkt int64 8B 0 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_0- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float645.471 5.471 5.471 ... 5.482 5.482
- 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.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], ..., [5.47119141, 5.47119141, 5.47119141, ..., 5.47119141, 5.47119141, 5.47119141], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773]]) - time(volume_time, azimuth)datetime64[ns]2024-11-06T09:25:53.944499968 .....
- standard_name :
- time
array([['2024-11-06T09:25:53.944499968', '2024-11-06T09:25:54.008000000', '2024-11-06T09:25:54.069999872', ..., '2024-11-06T09:25:53.756000000', '2024-11-06T09:25:53.817999872', '2024-11-06T09:25:53.880999936'], ['2024-11-06T09:30:53.938000128', '2024-11-06T09:30:54.000999936', '2024-11-06T09:30:54.063000320', ..., '2024-11-06T09:30:53.749000192', '2024-11-06T09:30:53.811500032', '2024-11-06T09:30:53.874500096'], ['2024-11-06T09:35:54.532499712', '2024-11-06T09:35:54.596000000', '2024-11-06T09:35:54.657999872', ..., '2024-11-06T09:35:54.343999744', '2024-11-06T09:35:54.406000128', '2024-11-06T09:35:54.469500160'], ..., ['2024-11-06T11:10:54.557000192', '2024-11-06T11:10:54.620000000', '2024-11-06T11:10:54.683000064', ..., '2024-11-06T11:10:54.368000000', '2024-11-06T11:10:54.430500096', '2024-11-06T11:10:54.492999936'], ['2024-11-06T11:15:53.941999872', '2024-11-06T11:15:54.005000192', '2024-11-06T11:15:54.068000000', ..., '2024-11-06T11:15:53.752999936', '2024-11-06T11:15:53.815500032', '2024-11-06T11:15:53.877999872'], ['2024-11-06T11:20:54.551499776', '2024-11-06T11:20:54.615000064', '2024-11-06T11:20:54.677999872', ..., '2024-11-06T11:20:54.363500032', '2024-11-06T11:20:54.426000128', '2024-11-06T11:20:54.488000000']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(volume_time, azimuth, range)float641.086 3.257 ... -1.559e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]], [[ 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.42735782e+00, -1.62820276e+01, -2.71366363e+01, ..., -7.77143336e+03, -7.78223958e+03, -7.79304574e+03], [-3.25707612e+00, -9.77120087e+00, -1.62852889e+01, ..., -4.66380712e+03, -4.67029217e+03, -4.67677718e+03], [-1.08580229e+00, -3.25739770e+00, -5.42898089e+00, ..., -1.55476024e+03, -1.55692214e+03, -1.55908403e+03]], [[ 1.08580229e+00, 3.25739770e+00, 5.42898089e+00, ..., 1.55476024e+03, 1.55692214e+03, 1.55908403e+03], [ 3.25707612e+00, 9.77120087e+00, 1.62852889e+01, ..., 4.66380712e+03, 4.67029217e+03, 4.67677718e+03], [ 5.42735782e+00, 1.62820276e+01, 2.71366363e+01, ..., 7.77143336e+03, 7.78223958e+03, 7.79304574e+03], ..., [-5.42735782e+00, -1.62820276e+01, -2.71366363e+01, ..., -7.77143336e+03, -7.78223958e+03, -7.79304574e+03], [-3.25707612e+00, -9.77120087e+00, -1.62852889e+01, ..., -4.66380712e+03, -4.67029217e+03, -4.67677718e+03], [-1.08580229e+00, -3.25739770e+00, -5.42898089e+00, ..., -1.55476024e+03, -1.55692214e+03, -1.55908403e+03]]]) - y(volume_time, azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]], [[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.24306931e+02, 3.72919744e+02, 6.21531156e+02, ..., 1.77995088e+05, 1.78242591e+05, 1.78490092e+05], [1.24382719e+02, 3.73147107e+02, 6.21910094e+02, ..., 1.78103608e+05, 1.78351262e+05, 1.78598915e+05], [1.24420619e+02, 3.73260806e+02, 6.22099591e+02, ..., 1.78157877e+05, 1.78405607e+05, 1.78653335e+05]], [[1.24420619e+02, 3.73260806e+02, 6.22099591e+02, ..., 1.78157877e+05, 1.78405607e+05, 1.78653335e+05], [1.24382719e+02, 3.73147107e+02, 6.21910094e+02, ..., 1.78103608e+05, 1.78351262e+05, 1.78598915e+05], [1.24306931e+02, 3.72919744e+02, 6.21531156e+02, ..., 1.77995088e+05, 1.78242591e+05, 1.78490092e+05], ..., [1.24306931e+02, 3.72919744e+02, 6.21531156e+02, ..., 1.77995088e+05, 1.78242591e+05, 1.78490092e+05], [1.24382719e+02, 3.73147107e+02, 6.21910094e+02, ..., 1.78103608e+05, 1.78351262e+05, 1.78598915e+05], [1.24420619e+02, 3.73260806e+02, 6.22099591e+02, ..., 1.78157877e+05, 1.78405607e+05, 1.78653335e+05]]]) - z(volume_time, azimuth, range)float64197.0 220.9 ... 1.923e+04 1.925e+04
- standard_name :
- height_above_ground
- units :
- meters
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]], [[ 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.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ]], [[ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], ..., [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ]]]) - gr(volume_time, azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]], [[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.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05]], [[1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], ..., [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05]]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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. ]]])
<xarray.DatasetView> Size: 111MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_1- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)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]2024-11-06T09:26:16.446499840 .....
- standard_name :
- time
array([['2024-11-06T09:26:16.446499840', '2024-11-06T09:26:16.509499904', '2024-11-06T09:26:16.572000000', ..., '2024-11-06T09:26:16.259000064', '2024-11-06T09:26:16.320499968', '2024-11-06T09:26:16.383500032'], ['2024-11-06T09:31:16.440000000', '2024-11-06T09:31:16.503000064', '2024-11-06T09:31:16.565499904', ..., '2024-11-06T09:31:16.252999936', '2024-11-06T09:31:16.315000064', '2024-11-06T09:31:16.376999936'], ['2024-11-06T09:36:17.034500096', '2024-11-06T09:36:17.098000128', '2024-11-06T09:36:17.159999744', ..., '2024-11-06T09:36:16.845999872', '2024-11-06T09:36:16.908000000', '2024-11-06T09:36:16.971000320'], ..., ['2024-11-06T11:11:17.059500288', '2024-11-06T11:11:17.123000064', '2024-11-06T11:11:17.184999936', ..., '2024-11-06T11:11:16.871000064', '2024-11-06T11:11:16.933000192', '2024-11-06T11:11:16.996499968'], ['2024-11-06T11:16:16.444499968', '2024-11-06T11:16:16.508000000', '2024-11-06T11:16:16.570000128', ..., '2024-11-06T11:16:16.256000000', '2024-11-06T11:16:16.317999872', '2024-11-06T11:16:16.380999936'], ['2024-11-06T11:21:17.054500096', '2024-11-06T11:21:17.117000192', '2024-11-06T11:21:17.179500032', ..., '2024-11-06T11:21:16.866000128', '2024-11-06T11:21:16.928999936', '2024-11-06T11:21:16.991000064']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.087 3.262 ... -1.562e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]]) - y(azimuth, range)float64124.6 373.8 ... 1.787e+05 1.79e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]]) - z(azimuth, range)float64194.9 214.5 ... 1.614e+04 1.617e+04
- standard_name :
- height_above_ground
- units :
- meters
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 ]]) - gr(azimuth, range)float64124.6 373.8 ... 1.787e+05 1.79e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 111MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_2- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)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]2024-11-06T09:26:38.948999936 .....
- standard_name :
- time
array([['2024-11-06T09:26:38.948999936', '2024-11-06T09:26:39.012000000', '2024-11-06T09:26:39.075000064', ..., '2024-11-06T09:26:38.760000000', '2024-11-06T09:26:38.822500096', '2024-11-06T09:26:38.884999936'], ['2024-11-06T09:31:38.942500096', '2024-11-06T09:31:39.006000128', '2024-11-06T09:31:39.067999744', ..., '2024-11-06T09:31:38.755000064', '2024-11-06T09:31:38.816999936', '2024-11-06T09:31:38.880000000'], ['2024-11-06T09:36:39.537499904', '2024-11-06T09:36:39.600000000', '2024-11-06T09:36:39.661499904', ..., '2024-11-06T09:36:39.348999936', '2024-11-06T09:36:39.411000064', '2024-11-06T09:36:39.473499904'], ..., ['2024-11-06T11:11:39.561500160', '2024-11-06T11:11:39.624999936', '2024-11-06T11:11:39.686999808', ..., '2024-11-06T11:11:39.374000128', '2024-11-06T11:11:39.435999744', '2024-11-06T11:11:39.498000128'], ['2024-11-06T11:16:38.947000064', '2024-11-06T11:16:39.009499904', '2024-11-06T11:16:39.071000064', ..., '2024-11-06T11:16:38.757999872', '2024-11-06T11:16:38.820499968', '2024-11-06T11:16:38.883500032'], ['2024-11-06T11:21:39.557000192', '2024-11-06T11:21:39.619000064', '2024-11-06T11:21:39.681499904', ..., '2024-11-06T11:21:39.368499968', '2024-11-06T11:21:39.431000064', '2024-11-06T11:21:39.492999936']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.089 3.266 ... -1.564e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]]) - y(azimuth, range)float64124.8 374.3 ... 1.79e+05 1.793e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]]) - z(azimuth, range)float64192.7 208.0 ... 1.302e+04 1.304e+04
- standard_name :
- height_above_ground
- units :
- meters
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]]) - gr(azimuth, range)float64124.8 374.3 ... 1.79e+05 1.793e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 111MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_3- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)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]2024-11-06T09:27:01.451500032 .....
- standard_name :
- time
array([['2024-11-06T09:27:01.451500032', '2024-11-06T09:27:01.514999808', '2024-11-06T09:27:01.577000192', ..., '2024-11-06T09:27:01.263000064', '2024-11-06T09:27:01.324999936', '2024-11-06T09:27:01.388000000'], ['2024-11-06T09:32:01.445000192', '2024-11-06T09:32:01.508000000', '2024-11-06T09:32:01.571000064', ..., '2024-11-06T09:32:01.256000000', '2024-11-06T09:32:01.318500096', '2024-11-06T09:32:01.380999936'], ['2024-11-06T09:37:02.039500032', '2024-11-06T09:37:02.101999872', '2024-11-06T09:37:02.164499968', ..., '2024-11-06T09:37:01.850999808', '2024-11-06T09:37:01.914000128', '2024-11-06T09:37:01.975500032'], ..., ['2024-11-06T11:12:02.064000256', '2024-11-06T11:12:02.126999808', '2024-11-06T11:12:02.189000192', ..., '2024-11-06T11:12:01.875000064', '2024-11-06T11:12:01.937499904', '2024-11-06T11:12:02.000499968'], ['2024-11-06T11:17:01.449500160', '2024-11-06T11:17:01.512999936', '2024-11-06T11:17:01.574999808', ..., '2024-11-06T11:17:01.260999936', '2024-11-06T11:17:01.323000064', '2024-11-06T11:17:01.385499904'], ['2024-11-06T11:22:02.059500288', '2024-11-06T11:22:02.123000064', '2024-11-06T11:22:02.184499968', ..., '2024-11-06T11:22:01.869999872', '2024-11-06T11:22:01.932499968', '2024-11-06T11:22:01.995500032']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.09 3.269 ... -1.567e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]]) - y(azimuth, range)float64124.9 374.6 ... 1.793e+05 1.795e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]]) - z(azimuth, range)float64190.5 201.4 ... 9.862e+03 9.878e+03
- standard_name :
- height_above_ground
- units :
- meters
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 ]]) - gr(azimuth, range)float64124.9 374.6 ... 1.793e+05 1.795e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 302MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 69kB 1.494 1.494 ... 1.494 time (volume_time, azimuth) datetime64[ns] 69kB 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... y (volume_time, azimuth, range) float64 50MB 124.9 ... 1... z (volume_time, azimuth, range) float64 50MB 188.4 ... 6... gr (volume_time, azimuth, range) float64 50MB 125.0 ... 1... 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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_4- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float641.494 1.494 1.494 ... 1.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.4831543 , 1.4831543 , 1.4831543 , ..., 1.4831543 , 1.4831543 , 1.4831543 ], [1.4831543 , 1.4831543 , 1.4831543 , ..., 1.4831543 , 1.4831543 , 1.4831543 ], ..., [1.4831543 , 1.4831543 , 1.4831543 , ..., 1.4831543 , 1.4831543 , 1.4831543 ], [1.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]2024-11-06T09:27:23.953999872 .....
- standard_name :
- time
array([['2024-11-06T09:27:23.953999872', '2024-11-06T09:27:24.016999936', '2024-11-06T09:27:24.079500032', ..., '2024-11-06T09:27:23.764999936', '2024-11-06T09:27:23.827000064', '2024-11-06T09:27:23.890500096'], ['2024-11-06T09:32:23.947000064', '2024-11-06T09:32:24.010499840', '2024-11-06T09:32:24.072999936', ..., '2024-11-06T09:32:23.757999872', '2024-11-06T09:32:23.820499968', '2024-11-06T09:32:23.883500032'], ['2024-11-06T09:37:24.541500160', '2024-11-06T09:37:24.604000000', '2024-11-06T09:37:24.666500096', ..., '2024-11-06T09:37:24.353499904', '2024-11-06T09:37:24.416000000', '2024-11-06T09:37:24.478000128'], ..., ['2024-11-06T11:12:24.566500096', '2024-11-06T11:12:24.630000128', '2024-11-06T11:12:24.692000000', ..., '2024-11-06T11:12:24.378000128', '2024-11-06T11:12:24.440000000', '2024-11-06T11:12:24.502999808'], ['2024-11-06T11:17:23.951500032', '2024-11-06T11:17:24.014499840', '2024-11-06T11:17:24.076000256', ..., '2024-11-06T11:17:23.763000064', '2024-11-06T11:17:23.824999936', '2024-11-06T11:17:23.888499968'], ['2024-11-06T11:22:24.561500160', '2024-11-06T11:22:24.624999936', '2024-11-06T11:22:24.686999808', ..., '2024-11-06T11:22:24.373000192', '2024-11-06T11:22:24.435000064', '2024-11-06T11:22:24.498000128']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(volume_time, azimuth, range)float641.09 3.271 ... -1.568e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]], [[ 1.09042729e+00, 3.27127937e+00, 5.45212813e+00, ..., 1.56367584e+03, 1.56585334e+03, 1.56803083e+03], [ 3.27094972e+00, 9.81284166e+00, 1.63547236e+01, ..., 4.69055120e+03, 4.69708303e+03, 4.70361484e+03], [ 5.45047578e+00, 1.63514149e+01, 2.72523373e+01, ..., 7.81599778e+03, 7.82688195e+03, 7.83776609e+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]], [[ 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]]]) - y(volume_time, azimuth, range)float64124.9 374.8 ... 1.794e+05 1.797e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]], [[1.24950591e+02, 3.74851488e+02, 6.24752002e+02, ..., 1.79179504e+05, 1.79429020e+05, 1.79678536e+05], [1.24912530e+02, 3.74737304e+02, 6.24561697e+02, ..., 1.79124924e+05, 1.79374364e+05, 1.79623804e+05], [1.24836419e+02, 3.74508972e+02, 6.24181144e+02, ..., 1.79015781e+05, 1.79265069e+05, 1.79514357e+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]], [[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]]]) - z(volume_time, azimuth, range)float64188.4 194.9 ... 6.767e+03 6.779e+03
- standard_name :
- height_above_ground
- units :
- meters
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]], [[ 188.34629928, 194.82441727, 201.3098945 , ..., 6720.93036025, 6732.67952777, 6744.43603331], [ 188.34629928, 194.82441727, 201.3098945 , ..., 6720.93036025, 6732.67952777, 6744.43603331], [ 188.34629928, 194.82441727, 201.3098945 , ..., 6720.93036025, 6732.67952777, 6744.43603331], ... [ 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], ..., [ 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]]]) - gr(volume_time, azimuth, range)float64125.0 374.9 ... 1.794e+05 1.797e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]], [[1.24955349e+02, 3.74865761e+02, 6.24775792e+02, ..., 1.79186326e+05, 1.79435852e+05, 1.79685378e+05], [1.24955349e+02, 3.74865761e+02, 6.24775792e+02, ..., 1.79186326e+05, 1.79435852e+05, 1.79685378e+05], [1.24955349e+02, 3.74865761e+02, 6.24775792e+02, ..., 1.79186326e+05, 1.79435852e+05, 1.79685378e+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], [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]]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 111MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_5- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)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]2024-11-06T09:27:51.940000 ... 2...
- standard_name :
- time
array([['2024-11-06T09:27:51.940000000', '2024-11-06T09:27:52.024000256', '2024-11-06T09:27:52.106999808', ..., '2024-11-06T09:27:51.688499968', '2024-11-06T09:27:51.772499968', '2024-11-06T09:27:51.855500032'], ['2024-11-06T09:32:51.896500224', '2024-11-06T09:32:51.980499968', '2024-11-06T09:32:52.064499968', ..., '2024-11-06T09:32:51.645999872', '2024-11-06T09:32:51.729499904', '2024-11-06T09:32:51.813499904'], ['2024-11-06T09:37:52.506500096', '2024-11-06T09:37:52.590499840', '2024-11-06T09:37:52.673500160', ..., '2024-11-06T09:37:52.255499776', '2024-11-06T09:37:52.338500096', '2024-11-06T09:37:52.422500096'], ..., ['2024-11-06T11:12:52.575500032', '2024-11-06T11:12:52.658999808', '2024-11-06T11:12:52.742499840', ..., '2024-11-06T11:12:52.324000000', '2024-11-06T11:12:52.407000064', '2024-11-06T11:12:52.490500096'], ['2024-11-06T11:17:51.869999872', '2024-11-06T11:17:51.953999872', '2024-11-06T11:17:52.037499904', ..., '2024-11-06T11:17:51.619000064', '2024-11-06T11:17:51.702499840', '2024-11-06T11:17:51.786500096'], ['2024-11-06T11:22:52.534500096', '2024-11-06T11:22:52.618000128', '2024-11-06T11:22:52.701499904', ..., '2024-11-06T11:22:52.283000064', '2024-11-06T11:22:52.366499840', '2024-11-06T11:22:52.450000128']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.091 3.272 ... -1.569e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]]) - y(azimuth, range)float64125.0 375.0 ... 1.795e+05 1.798e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]]) - z(azimuth, range)float64186.2 188.3 ... 3.601e+03 3.608e+03
- standard_name :
- height_above_ground
- units :
- meters
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]]) - gr(azimuth, range)float64125.0 375.0 ... 1.796e+05 1.798e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 77MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 496) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 2kB 125.0 375.0 ... 1.236e+05 1.239e+05 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep 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 VRADH (volume_time, azimuth, range) float64 34MB -128.0 ... ...sweep_6- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 496
- range(range)float32125.0 375.0 ... 1.236e+05 1.239e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 123375., 123625., 123875.], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(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]2024-11-06T09:28:14.967500032 .....
- standard_name :
- time
array([['2024-11-06T09:28:14.967500032', '2024-11-06T09:28:15.023500032', '2024-11-06T09:28:15.079000064', ..., '2024-11-06T09:28:14.800499968', '2024-11-06T09:28:14.856000000', '2024-11-06T09:28:14.911500032'], ['2024-11-06T09:33:14.956499968', '2024-11-06T09:33:15.012499968', '2024-11-06T09:33:15.067500032', ..., '2024-11-06T09:33:14.788999936', '2024-11-06T09:33:14.844499968', '2024-11-06T09:33:14.900499712'], ['2024-11-06T09:38:15.515500032', '2024-11-06T09:38:15.571500032', '2024-11-06T09:38:15.626500096', ..., '2024-11-06T09:38:15.348000000', '2024-11-06T09:38:15.402500096', '2024-11-06T09:38:15.459499776'], ..., ['2024-11-06T11:13:15.563500032', '2024-11-06T11:13:15.619500288', '2024-11-06T11:13:15.675000064', ..., '2024-11-06T11:13:15.395500288', '2024-11-06T11:13:15.452000256', '2024-11-06T11:13:15.507500288'], ['2024-11-06T11:18:14.908000000', '2024-11-06T11:18:14.964499968', '2024-11-06T11:18:15.020000000', ..., '2024-11-06T11:18:14.740499968', '2024-11-06T11:18:14.796000000', '2024-11-06T11:18:14.851500032'], ['2024-11-06T11:23:15.517000192', '2024-11-06T11:23:15.572999936', '2024-11-06T11:23:15.628499968', ..., '2024-11-06T11:23:15.348999936', '2024-11-06T11:23:15.404499968', '2024-11-06T11:23:15.460499968']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.08 3.241 ... -1.068e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]]) - y(azimuth, range)float64123.8 371.3 ... 1.222e+05 1.224e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]]) - z(azimuth, range)float64202.5 237.2 ... 1.824e+04 1.828e+04
- standard_name :
- height_above_ground
- units :
- meters
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]]) - gr(azimuth, range)float64123.8 371.4 ... 1.222e+05 1.224e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]]) - 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]]) - 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.]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 37MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 240) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 elevation (azimuth) float64 3kB 12.0 12.0 12.0 ... 12.0 12.0 12.0 time (volume_time, azimuth) datetime64[ns] 69kB 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... y (azimuth, range) float64 691kB 122.3 366.8 ... 5.848e+04 z (azimuth, range) float64 691kB 211.1 263.1 ... 1.283e+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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep 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 VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...sweep_7- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 240
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)float6412.0 12.0 12.0 ... 12.0 12.0 12.0
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, ... 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031]) - time(volume_time, azimuth)datetime64[ns]2024-11-06T09:28:30.100500224 .....
- standard_name :
- time
array([['2024-11-06T09:28:30.100500224', '2024-11-06T09:28:30.134500096', '2024-11-06T09:28:30.167500032', ..., '2024-11-06T09:28:30.000000000', '2024-11-06T09:28:30.033499904', '2024-11-06T09:28:30.066499840'], ['2024-11-06T09:33:30.115000064', '2024-11-06T09:33:30.148499968', '2024-11-06T09:33:30.181999872', ..., '2024-11-06T09:33:30.014499840', '2024-11-06T09:33:30.047499776', '2024-11-06T09:33:30.081500160'], ['2024-11-06T09:38:30.632999936', '2024-11-06T09:38:30.666500096', '2024-11-06T09:38:30.700000000', ..., '2024-11-06T09:38:30.532999936', '2024-11-06T09:38:30.565999872', '2024-11-06T09:38:30.599500032'], ..., ['2024-11-06T11:13:30.665499904', '2024-11-06T11:13:30.698999808', '2024-11-06T11:13:30.732499968', ..., '2024-11-06T11:13:30.564999936', '2024-11-06T11:13:30.598500096', '2024-11-06T11:13:30.631500032'], ['2024-11-06T11:18:30.049999872', '2024-11-06T11:18:30.083500032', '2024-11-06T11:18:30.117000192', ..., '2024-11-06T11:18:29.949500160', '2024-11-06T11:18:29.983000064', '2024-11-06T11:18:30.016499968'], ['2024-11-06T11:23:30.613999872', '2024-11-06T11:23:30.648000000', '2024-11-06T11:23:30.681499904', ..., '2024-11-06T11:23:30.513499904', '2024-11-06T11:23:30.546499840', '2024-11-06T11:23:30.580499968']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.067 3.201 5.335 ... -508.2 -510.3
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 1.06696503e+00, 3.20087548e+00, 5.33475980e+00, ..., 5.06066131e+02, 5.08193762e+02, 5.10321366e+02], [ 3.20057007e+00, 9.60165142e+00, 1.60026544e+01, ..., 1.51804424e+03, 1.52442649e+03, 1.53080865e+03], [ 5.33320019e+00, 1.59995026e+01, 2.66656744e+01, ..., 2.52955994e+03, 2.54019485e+03, 2.55082963e+03], ..., [-5.33320019e+00, -1.59995026e+01, -2.66656744e+01, ..., -2.52955994e+03, -2.54019485e+03, -2.55082963e+03], [-3.20057007e+00, -9.60165142e+00, -1.60026544e+01, ..., -1.51804424e+03, -1.52442649e+03, -1.53080865e+03], [-1.06696503e+00, -3.20087548e+00, -5.33475980e+00, ..., -5.06066131e+02, -5.08193762e+02, -5.10321366e+02]]) - y(azimuth, range)float64122.3 366.8 ... 5.823e+04 5.848e+04
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[ 122.26208213, 366.78400039, 611.3029237 , ..., 57989.43482545, 58233.23718887, 58477.036475 ], [ 122.22483991, 366.67227443, 611.11671491, ..., 57971.77068184, 58215.4987807 , 58459.22380321], [ 122.15036683, 366.44885654, 610.74435404, ..., 57936.4477753 , 58180.02736766, 58423.60388554], ..., [ 122.15036683, 366.44885654, 610.74435404, ..., 57936.4477753 , 58180.02736766, 58423.60388554], [ 122.22483991, 366.67227443, 611.11671491, ..., 57971.77068184, 58215.4987807 , 58459.22380321], [ 122.26208213, 366.78400039, 611.3029237 , ..., 57989.43482545, 58233.23718887, 58477.036475 ]]) - z(azimuth, range)float64211.1 263.1 ... 1.278e+04 1.283e+04
- standard_name :
- height_above_ground
- units :
- meters
array([[ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473], [ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473], [ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473], ..., [ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473], [ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473], [ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473]]) - gr(azimuth, range)float64122.3 366.8 ... 5.824e+04 5.848e+04
- standard_name :
- distance_from_radar
- units :
- meters
array([[ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615], [ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615], [ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615], ..., [ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615], [ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615], [ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615]]) - 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]]) - 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.]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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 -1.668 -9.889 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
array([[[-64.00292982, -1.66804511, -9.88912456, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -2.7784475 , -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [ -0.62795843, 1.41998688, -18.24204599, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ... [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 37MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 240) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 elevation (azimuth) float64 3kB 16.98 16.98 16.98 ... 16.98 16.98 time (volume_time, azimuth) datetime64[ns] 69kB 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... y (azimuth, range) float64 691kB 119.5 358.6 ... 5.714e+04 z (azimuth, range) float64 691kB 221.6 294.7 ... 1.787e+04 gr (azimuth, range) float64 691kB 119.5 358.6 ... 5.714e+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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep Data variables: DBZH (volume_time, azimuth, range) float64 17MB -2.433 ... ... 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 VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...sweep_8- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 240
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)float6416.98 16.98 16.98 ... 16.98 16.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, ... 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328]) - time(volume_time, azimuth)datetime64[ns]2024-11-06T09:28:42.101500160 .....
- standard_name :
- time
array([['2024-11-06T09:28:42.101500160', '2024-11-06T09:28:42.135500032', '2024-11-06T09:28:42.168499968', ..., '2024-11-06T09:28:42.001499904', '2024-11-06T09:28:42.034500096', '2024-11-06T09:28:42.067500032'], ['2024-11-06T09:33:42.116000000', '2024-11-06T09:33:42.150000128', '2024-11-06T09:33:42.183000064', ..., '2024-11-06T09:33:42.016000000', '2024-11-06T09:33:42.048999936', '2024-11-06T09:33:42.082500096'], ['2024-11-06T09:38:42.634000128', '2024-11-06T09:38:42.668000000', '2024-11-06T09:38:42.700999936', ..., '2024-11-06T09:38:42.533999872', '2024-11-06T09:38:42.566999808', '2024-11-06T09:38:42.600500224'], ..., ['2024-11-06T11:13:42.666500096', '2024-11-06T11:13:42.700499968', '2024-11-06T11:13:42.733499904', ..., '2024-11-06T11:13:42.566499840', '2024-11-06T11:13:42.599500032', '2024-11-06T11:13:42.632499968'], ['2024-11-06T11:18:42.051000064', '2024-11-06T11:18:42.084499968', '2024-11-06T11:18:42.118500096', ..., '2024-11-06T11:18:41.950500096', '2024-11-06T11:18:41.984000000', '2024-11-06T11:18:42.017499904'], ['2024-11-06T11:23:42.615500032', '2024-11-06T11:23:42.648999936', '2024-11-06T11:23:42.682499840', ..., '2024-11-06T11:23:42.514499840', '2024-11-06T11:23:42.547999744', '2024-11-06T11:23:42.581500160']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.043 3.13 5.216 ... -496.6 -498.7
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 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], ..., [-5.21446324e+00, -1.56432551e+01, -2.60718675e+01, ..., -2.47179238e+03, -2.48217830e+03, -2.49256404e+03], [-3.12931343e+00, -9.38785951e+00, -1.56462979e+01, ..., -1.48337667e+03, -1.48960948e+03, -1.49584219e+03], [-1.04321040e+00, -3.12960427e+00, -5.21596223e+00, ..., -4.94509099e+02, -4.96586916e+02, -4.98664697e+02]]) - y(azimuth, range)float64119.5 358.6 ... 5.69e+04 5.714e+04
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[ 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], ..., [ 119.43084358, 358.28944753, 597.1439403 , ..., 56613.35318108, 56851.2298785 , 57089.10240108], [ 119.50365862, 358.50789076, 597.50800921, ..., 56647.86941844, 56885.89114541, 57123.90869497], [ 119.54007168, 358.61712901, 597.6900714 , ..., 56665.13016602, 56903.2244188 , 57141.31449291]]) - z(azimuth, range)float64221.6 294.7 ... 1.779e+04 1.787e+04
- standard_name :
- height_above_ground
- units :
- meters
array([[ 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], ..., [ 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]]) - gr(azimuth, range)float64119.5 358.6 ... 5.691e+04 5.714e+04
- standard_name :
- distance_from_radar
- units :
- meters
array([[ 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], ..., [ 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]]) - 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]]) - 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.]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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-2.433 -9.538 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
array([[[ -2.43272855, -9.53754597, -4.3371126 , ..., -64.00292982, -64.00292982, -64.00292982], [ -1.90829048, -0.9619581 , -16.43141623, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, 0.08691804, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -2.86634215, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [ -3.22085056, -0.9619581 , -9.7455633 , ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -3.0772893 , -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ... [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 101MB Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 240) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 crs_wkt int64 8B 0 Dimensions without coordinates: sweep Data variables: DBZH (volume_time, azimuth, range) float64 17MB -3.382 ... ... 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 VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...sweep_9- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 240
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float6424.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]]) - time(volume_time, azimuth)datetime64[ns]2024-11-06T09:28:54.102499840 .....
- standard_name :
- time
array([['2024-11-06T09:28:54.102499840', '2024-11-06T09:28:54.136499968', '2024-11-06T09:28:54.169500160', ..., '2024-11-06T09:28:54.002500096', '2024-11-06T09:28:54.035500032', '2024-11-06T09:28:54.068999936'], ['2024-11-06T09:33:54.117500160', '2024-11-06T09:33:54.151000064', '2024-11-06T09:33:54.184499968', ..., '2024-11-06T09:33:54.016999936', '2024-11-06T09:33:54.050499840', '2024-11-06T09:33:54.083500032'], ['2024-11-06T09:38:54.635500032', '2024-11-06T09:38:54.669500160', '2024-11-06T09:38:54.702500096', ..., '2024-11-06T09:38:54.535000064', '2024-11-06T09:38:54.568499968', '2024-11-06T09:38:54.601500160'], ..., ['2024-11-06T11:13:54.667500032', '2024-11-06T11:13:54.701499904', '2024-11-06T11:13:54.734499840', ..., '2024-11-06T11:13:54.567500032', '2024-11-06T11:13:54.600500224', '2024-11-06T11:13:54.634000128'], ['2024-11-06T11:18:54.052000000', '2024-11-06T11:18:54.085499904', '2024-11-06T11:18:54.119500032', ..., '2024-11-06T11:18:53.952000256', '2024-11-06T11:18:53.985500160', '2024-11-06T11:18:54.018500096'], ['2024-11-06T11:23:54.617000192', '2024-11-06T11:23:54.650000128', '2024-11-06T11:23:54.683500032', ..., '2024-11-06T11:23:54.516000000', '2024-11-06T11:23:54.549499904', '2024-11-06T11:23:54.583000064']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(volume_time, azimuth, range)float640.9888 2.966 ... -470.3 -472.2
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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], ... [-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], ..., [-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]]]) - y(volume_time, azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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 ], ... [ 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 ], ..., [ 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]]]) - z(volume_time, azimuth, range)float64237.9 343.4 ... 2.553e+04 2.564e+04
- standard_name :
- height_above_ground
- units :
- meters
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], ... [ 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]]]) - gr(volume_time, azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- standard_name :
- distance_from_radar
- units :
- meters
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], ... [ 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]]]) - 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]]) - 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.]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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-3.382 -4.654 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
array([[[ -3.38199075, -4.65353333, -18.29185296, ..., -64.00292982, -64.00292982, -64.00292982], [ -3.68962202, -3.15932431, -5.73463751, ..., -64.00292982, -64.00292982, -64.00292982], [ -2.78430714, -3.39956968, -14.2047518 , ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -16.2907848 , ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -2.58800909, -20.31050005, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ... [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -16.81815269, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
- sweep: 10
- volume_time: 24
- volume_time(volume_time)datetime64[ns]2024-11-06T09:25:00 ... 2024-11-...
array(['2024-11-06T09:25:00.000000000', '2024-11-06T09:30:00.000000000', '2024-11-06T09:35:00.000000000', '2024-11-06T09:40:00.000000000', '2024-11-06T09:45:00.000000000', '2024-11-06T09:50:00.000000000', '2024-11-06T09:55:00.000000000', '2024-11-06T10:00:00.000000000', '2024-11-06T10:05:00.000000000', '2024-11-06T10:10:00.000000000', '2024-11-06T10:15:00.000000000', '2024-11-06T10:20:00.000000000', '2024-11-06T10:25:00.000000000', '2024-11-06T10:30:00.000000000', '2024-11-06T10:35:00.000000000', '2024-11-06T10:40:00.000000000', '2024-11-06T10:45:00.000000000', '2024-11-06T10:50:00.000000000', '2024-11-06T10:55:00.000000000', '2024-11-06T11:00:00.000000000', '2024-11-06T11:05:00.000000000', '2024-11-06T11:10:00.000000000', '2024-11-06T11:15:00.000000000', '2024-11-06T11:20:00.000000000'], dtype='datetime64[ns]')
- 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'2024-11-06T09:25:34Z'
array('2024-11-06T09:25:34Z', dtype='<U20') - time_coverage_end()<U20'2024-11-06T11:24:02Z'
array('2024-11-06T11:24:02Z', dtype='<U20') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - 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)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- 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#
[16]:
vol["sweep_0"]
[16]:
<xarray.DatasetView> Size: 302MB
Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 720)
Coordinates: (12/16)
* volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ...
* range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
* azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5
elevation (volume_time, azimuth) float64 69kB 5.471 5.471 ... 5.482
time (volume_time, azimuth) datetime64[ns] 69kB 2024-11-06T...
sweep_mode object 8B 'azimuth_surveillance'
... ...
y (volume_time, azimuth, range) float64 50MB 124.4 ... 1...
z (volume_time, azimuth, range) float64 50MB 197.0 ... 1...
gr (volume_time, azimuth, range) float64 50MB 124.4 ... 1...
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
crs_wkt int64 8B 0
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
VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float645.471 5.471 5.471 ... 5.482 5.482
- 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.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], ..., [5.47119141, 5.47119141, 5.47119141, ..., 5.47119141, 5.47119141, 5.47119141], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773]]) - time(volume_time, azimuth)datetime64[ns]2024-11-06T09:25:53.944499968 .....
- standard_name :
- time
array([['2024-11-06T09:25:53.944499968', '2024-11-06T09:25:54.008000000', '2024-11-06T09:25:54.069999872', ..., '2024-11-06T09:25:53.756000000', '2024-11-06T09:25:53.817999872', '2024-11-06T09:25:53.880999936'], ['2024-11-06T09:30:53.938000128', '2024-11-06T09:30:54.000999936', '2024-11-06T09:30:54.063000320', ..., '2024-11-06T09:30:53.749000192', '2024-11-06T09:30:53.811500032', '2024-11-06T09:30:53.874500096'], ['2024-11-06T09:35:54.532499712', '2024-11-06T09:35:54.596000000', '2024-11-06T09:35:54.657999872', ..., '2024-11-06T09:35:54.343999744', '2024-11-06T09:35:54.406000128', '2024-11-06T09:35:54.469500160'], ..., ['2024-11-06T11:10:54.557000192', '2024-11-06T11:10:54.620000000', '2024-11-06T11:10:54.683000064', ..., '2024-11-06T11:10:54.368000000', '2024-11-06T11:10:54.430500096', '2024-11-06T11:10:54.492999936'], ['2024-11-06T11:15:53.941999872', '2024-11-06T11:15:54.005000192', '2024-11-06T11:15:54.068000000', ..., '2024-11-06T11:15:53.752999936', '2024-11-06T11:15:53.815500032', '2024-11-06T11:15:53.877999872'], ['2024-11-06T11:20:54.551499776', '2024-11-06T11:20:54.615000064', '2024-11-06T11:20:54.677999872', ..., '2024-11-06T11:20:54.363500032', '2024-11-06T11:20:54.426000128', '2024-11-06T11:20:54.488000000']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(volume_time, azimuth, range)float641.086 3.257 ... -1.559e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]], [[ 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.42735782e+00, -1.62820276e+01, -2.71366363e+01, ..., -7.77143336e+03, -7.78223958e+03, -7.79304574e+03], [-3.25707612e+00, -9.77120087e+00, -1.62852889e+01, ..., -4.66380712e+03, -4.67029217e+03, -4.67677718e+03], [-1.08580229e+00, -3.25739770e+00, -5.42898089e+00, ..., -1.55476024e+03, -1.55692214e+03, -1.55908403e+03]], [[ 1.08580229e+00, 3.25739770e+00, 5.42898089e+00, ..., 1.55476024e+03, 1.55692214e+03, 1.55908403e+03], [ 3.25707612e+00, 9.77120087e+00, 1.62852889e+01, ..., 4.66380712e+03, 4.67029217e+03, 4.67677718e+03], [ 5.42735782e+00, 1.62820276e+01, 2.71366363e+01, ..., 7.77143336e+03, 7.78223958e+03, 7.79304574e+03], ..., [-5.42735782e+00, -1.62820276e+01, -2.71366363e+01, ..., -7.77143336e+03, -7.78223958e+03, -7.79304574e+03], [-3.25707612e+00, -9.77120087e+00, -1.62852889e+01, ..., -4.66380712e+03, -4.67029217e+03, -4.67677718e+03], [-1.08580229e+00, -3.25739770e+00, -5.42898089e+00, ..., -1.55476024e+03, -1.55692214e+03, -1.55908403e+03]]]) - y(volume_time, azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]], [[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.24306931e+02, 3.72919744e+02, 6.21531156e+02, ..., 1.77995088e+05, 1.78242591e+05, 1.78490092e+05], [1.24382719e+02, 3.73147107e+02, 6.21910094e+02, ..., 1.78103608e+05, 1.78351262e+05, 1.78598915e+05], [1.24420619e+02, 3.73260806e+02, 6.22099591e+02, ..., 1.78157877e+05, 1.78405607e+05, 1.78653335e+05]], [[1.24420619e+02, 3.73260806e+02, 6.22099591e+02, ..., 1.78157877e+05, 1.78405607e+05, 1.78653335e+05], [1.24382719e+02, 3.73147107e+02, 6.21910094e+02, ..., 1.78103608e+05, 1.78351262e+05, 1.78598915e+05], [1.24306931e+02, 3.72919744e+02, 6.21531156e+02, ..., 1.77995088e+05, 1.78242591e+05, 1.78490092e+05], ..., [1.24306931e+02, 3.72919744e+02, 6.21531156e+02, ..., 1.77995088e+05, 1.78242591e+05, 1.78490092e+05], [1.24382719e+02, 3.73147107e+02, 6.21910094e+02, ..., 1.78103608e+05, 1.78351262e+05, 1.78598915e+05], [1.24420619e+02, 3.73260806e+02, 6.22099591e+02, ..., 1.78157877e+05, 1.78405607e+05, 1.78653335e+05]]]) - z(volume_time, azimuth, range)float64197.0 220.9 ... 1.923e+04 1.925e+04
- standard_name :
- height_above_ground
- units :
- meters
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]], [[ 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.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ]], [[ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], ..., [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ]]]) - gr(volume_time, azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]], [[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.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05]], [[1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], ..., [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05]]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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]2024-11-06T09:25:00 ... 2024-11-...
array(['2024-11-06T09:25:00.000000000', '2024-11-06T09:30:00.000000000', '2024-11-06T09:35:00.000000000', '2024-11-06T09:40:00.000000000', '2024-11-06T09:45:00.000000000', '2024-11-06T09:50:00.000000000', '2024-11-06T09:55:00.000000000', '2024-11-06T10:00:00.000000000', '2024-11-06T10:05:00.000000000', '2024-11-06T10:10:00.000000000', '2024-11-06T10:15:00.000000000', '2024-11-06T10:20:00.000000000', '2024-11-06T10:25:00.000000000', '2024-11-06T10:30:00.000000000', '2024-11-06T10:35:00.000000000', '2024-11-06T10:40:00.000000000', '2024-11-06T10:45:00.000000000', '2024-11-06T10:50:00.000000000', '2024-11-06T10:55:00.000000000', '2024-11-06T11:00:00.000000000', '2024-11-06T11:05:00.000000000', '2024-11-06T11:10:00.000000000', '2024-11-06T11:15:00.000000000', '2024-11-06T11:20: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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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. ]]])
plot sweeps#
DBZH#
[17]:
vol["sweep_0"].isel(volume_time=0)
[17]:
<xarray.DatasetView> Size: 16MB
Dimensions: (azimuth: 360, range: 720)
Coordinates: (12/16)
volume_time datetime64[ns] 8B 2024-11-06T09:25:00
* range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05
* 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 2024-11-06T09:25:53.94449...
sweep_mode object 8B 'azimuth_surveillance'
... ...
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
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
VRADH (azimuth, range) float64 2MB -128.0 -128.0 ... -128.0- azimuth: 360
- range: 720
- volume_time()datetime64[ns]2024-11-06T09:25:00
array('2024-11-06T09:25:00.000000000', dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)float645.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]2024-11-06T09:25:53.944499968 .....
- standard_name :
- time
array(['2024-11-06T09:25:53.944499968', '2024-11-06T09:25:54.008000000', '2024-11-06T09:25:54.069999872', '2024-11-06T09:25:54.132500224', '2024-11-06T09:25:54.194999808', '2024-11-06T09:25:54.256999936', '2024-11-06T09:25:54.320000000', '2024-11-06T09:25:54.382500096', '2024-11-06T09:25:54.445499904', '2024-11-06T09:25:54.506500096', '2024-11-06T09:25:54.568999936', '2024-11-06T09:25:54.631000064', '2024-11-06T09:25:54.694000128', '2024-11-06T09:25:54.756000000', '2024-11-06T09:25:54.819000064', '2024-11-06T09:25:54.881499904', '2024-11-06T09:25:54.944499968', '2024-11-06T09:25:55.007000064', '2024-11-06T09:25:55.068999936', '2024-11-06T09:25:55.131500032', '2024-11-06T09:25:55.194500096', '2024-11-06T09:25:55.257500160', '2024-11-06T09:25:55.320000000', '2024-11-06T09:25:55.381999872', '2024-11-06T09:25:55.444999936', '2024-11-06T09:25:55.506500096', '2024-11-06T09:25:55.568999936', '2024-11-06T09:25:55.631000064', '2024-11-06T09:25:55.694000128', '2024-11-06T09:25:55.756000000', '2024-11-06T09:25:55.819000064', '2024-11-06T09:25:55.881499904', '2024-11-06T09:25:55.944000000', '2024-11-06T09:25:56.006000128', '2024-11-06T09:25:56.068999936', '2024-11-06T09:25:56.131000064', '2024-11-06T09:25:56.193000192', '2024-11-06T09:25:56.255499776', '2024-11-06T09:25:56.318500096', '2024-11-06T09:25:56.380999936', ... '2024-11-06T09:25:51.568999936', '2024-11-06T09:25:51.631000064', '2024-11-06T09:25:51.694000128', '2024-11-06T09:25:51.756000000', '2024-11-06T09:25:51.818000128', '2024-11-06T09:25:51.880000000', '2024-11-06T09:25:51.943500032', '2024-11-06T09:25:52.005000192', '2024-11-06T09:25:52.067500032', '2024-11-06T09:25:52.130000128', '2024-11-06T09:25:52.193500160', '2024-11-06T09:25:52.255000064', '2024-11-06T09:25:52.317500160', '2024-11-06T09:25:52.380000000', '2024-11-06T09:25:52.443000064', '2024-11-06T09:25:52.505000192', '2024-11-06T09:25:52.567999744', '2024-11-06T09:25:52.631000064', '2024-11-06T09:25:52.693500160', '2024-11-06T09:25:52.756000000', '2024-11-06T09:25:52.817999872', '2024-11-06T09:25:52.880999936', '2024-11-06T09:25:52.943000064', '2024-11-06T09:25:53.005000192', '2024-11-06T09:25:53.068499968', '2024-11-06T09:25:53.131000064', '2024-11-06T09:25:53.194000128', '2024-11-06T09:25:53.256000000', '2024-11-06T09:25:53.318000128', '2024-11-06T09:25:53.380499712', '2024-11-06T09:25:53.443500032', '2024-11-06T09:25:53.506000128', '2024-11-06T09:25:53.568999936', '2024-11-06T09:25:53.631000064', '2024-11-06T09:25:53.694000128', '2024-11-06T09:25:53.756000000', '2024-11-06T09:25:53.817999872', '2024-11-06T09:25:53.880999936'], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.086 3.257 ... -1.559e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]]) - y(azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]]) - z(azimuth, range)float64197.0 220.9 ... 1.919e+04 1.922e+04
- standard_name :
- height_above_ground
- units :
- meters
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]]) - gr(azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]) - sweep_number()int640
array(0)
- prt_mode()<U7'not_set'
array('not_set', dtype='<U7') - follow_mode()<U7'not_set'
array('not_set', dtype='<U7') - sweep_fixed_angle()float645.499
array(5.49865723)
- VRADH(azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]])
[18]:
vol.match("sweep*")
[18]:
<xarray.DatasetView> Size: 0B
Dimensions: ()
Data variables:
*empty*<xarray.DatasetView> Size: 302MB Dimensions: (volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 69kB 5.471 5.471 ... 5.482 time (volume_time, azimuth) datetime64[ns] 69kB 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... y (volume_time, azimuth, range) float64 50MB 124.4 ... 1... z (volume_time, azimuth, range) float64 50MB 197.0 ... 1... gr (volume_time, azimuth, range) float64 50MB 124.4 ... 1... 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 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_0- volume_time: 24
- azimuth: 360
- range: 720
- volume_time(volume_time)datetime64[ns]2024-11-06T09:25:00 ... 2024-11-...
array(['2024-11-06T09:25:00.000000000', '2024-11-06T09:30:00.000000000', '2024-11-06T09:35:00.000000000', '2024-11-06T09:40:00.000000000', '2024-11-06T09:45:00.000000000', '2024-11-06T09:50:00.000000000', '2024-11-06T09:55:00.000000000', '2024-11-06T10:00:00.000000000', '2024-11-06T10:05:00.000000000', '2024-11-06T10:10:00.000000000', '2024-11-06T10:15:00.000000000', '2024-11-06T10:20:00.000000000', '2024-11-06T10:25:00.000000000', '2024-11-06T10:30:00.000000000', '2024-11-06T10:35:00.000000000', '2024-11-06T10:40:00.000000000', '2024-11-06T10:45:00.000000000', '2024-11-06T10:50:00.000000000', '2024-11-06T10:55:00.000000000', '2024-11-06T11:00:00.000000000', '2024-11-06T11:05:00.000000000', '2024-11-06T11:10:00.000000000', '2024-11-06T11:15:00.000000000', '2024-11-06T11:20:00.000000000'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float645.471 5.471 5.471 ... 5.482 5.482
- 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.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], ..., [5.47119141, 5.47119141, 5.47119141, ..., 5.47119141, 5.47119141, 5.47119141], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773], [5.48217773, 5.48217773, 5.48217773, ..., 5.48217773, 5.48217773, 5.48217773]]) - time(volume_time, azimuth)datetime64[ns]2024-11-06T09:25:53.944499968 .....
- standard_name :
- time
array([['2024-11-06T09:25:53.944499968', '2024-11-06T09:25:54.008000000', '2024-11-06T09:25:54.069999872', ..., '2024-11-06T09:25:53.756000000', '2024-11-06T09:25:53.817999872', '2024-11-06T09:25:53.880999936'], ['2024-11-06T09:30:53.938000128', '2024-11-06T09:30:54.000999936', '2024-11-06T09:30:54.063000320', ..., '2024-11-06T09:30:53.749000192', '2024-11-06T09:30:53.811500032', '2024-11-06T09:30:53.874500096'], ['2024-11-06T09:35:54.532499712', '2024-11-06T09:35:54.596000000', '2024-11-06T09:35:54.657999872', ..., '2024-11-06T09:35:54.343999744', '2024-11-06T09:35:54.406000128', '2024-11-06T09:35:54.469500160'], ..., ['2024-11-06T11:10:54.557000192', '2024-11-06T11:10:54.620000000', '2024-11-06T11:10:54.683000064', ..., '2024-11-06T11:10:54.368000000', '2024-11-06T11:10:54.430500096', '2024-11-06T11:10:54.492999936'], ['2024-11-06T11:15:53.941999872', '2024-11-06T11:15:54.005000192', '2024-11-06T11:15:54.068000000', ..., '2024-11-06T11:15:53.752999936', '2024-11-06T11:15:53.815500032', '2024-11-06T11:15:53.877999872'], ['2024-11-06T11:20:54.551499776', '2024-11-06T11:20:54.615000064', '2024-11-06T11:20:54.677999872', ..., '2024-11-06T11:20:54.363500032', '2024-11-06T11:20:54.426000128', '2024-11-06T11:20:54.488000000']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(volume_time, azimuth, range)float641.086 3.257 ... -1.559e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]], [[ 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.42735782e+00, -1.62820276e+01, -2.71366363e+01, ..., -7.77143336e+03, -7.78223958e+03, -7.79304574e+03], [-3.25707612e+00, -9.77120087e+00, -1.62852889e+01, ..., -4.66380712e+03, -4.67029217e+03, -4.67677718e+03], [-1.08580229e+00, -3.25739770e+00, -5.42898089e+00, ..., -1.55476024e+03, -1.55692214e+03, -1.55908403e+03]], [[ 1.08580229e+00, 3.25739770e+00, 5.42898089e+00, ..., 1.55476024e+03, 1.55692214e+03, 1.55908403e+03], [ 3.25707612e+00, 9.77120087e+00, 1.62852889e+01, ..., 4.66380712e+03, 4.67029217e+03, 4.67677718e+03], [ 5.42735782e+00, 1.62820276e+01, 2.71366363e+01, ..., 7.77143336e+03, 7.78223958e+03, 7.79304574e+03], ..., [-5.42735782e+00, -1.62820276e+01, -2.71366363e+01, ..., -7.77143336e+03, -7.78223958e+03, -7.79304574e+03], [-3.25707612e+00, -9.77120087e+00, -1.62852889e+01, ..., -4.66380712e+03, -4.67029217e+03, -4.67677718e+03], [-1.08580229e+00, -3.25739770e+00, -5.42898089e+00, ..., -1.55476024e+03, -1.55692214e+03, -1.55908403e+03]]]) - y(volume_time, azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]], [[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.24306931e+02, 3.72919744e+02, 6.21531156e+02, ..., 1.77995088e+05, 1.78242591e+05, 1.78490092e+05], [1.24382719e+02, 3.73147107e+02, 6.21910094e+02, ..., 1.78103608e+05, 1.78351262e+05, 1.78598915e+05], [1.24420619e+02, 3.73260806e+02, 6.22099591e+02, ..., 1.78157877e+05, 1.78405607e+05, 1.78653335e+05]], [[1.24420619e+02, 3.73260806e+02, 6.22099591e+02, ..., 1.78157877e+05, 1.78405607e+05, 1.78653335e+05], [1.24382719e+02, 3.73147107e+02, 6.21910094e+02, ..., 1.78103608e+05, 1.78351262e+05, 1.78598915e+05], [1.24306931e+02, 3.72919744e+02, 6.21531156e+02, ..., 1.77995088e+05, 1.78242591e+05, 1.78490092e+05], ..., [1.24306931e+02, 3.72919744e+02, 6.21531156e+02, ..., 1.77995088e+05, 1.78242591e+05, 1.78490092e+05], [1.24382719e+02, 3.73147107e+02, 6.21910094e+02, ..., 1.78103608e+05, 1.78351262e+05, 1.78598915e+05], [1.24420619e+02, 3.73260806e+02, 6.22099591e+02, ..., 1.78157877e+05, 1.78405607e+05, 1.78653335e+05]]]) - z(volume_time, azimuth, range)float64197.0 220.9 ... 1.923e+04 1.925e+04
- standard_name :
- height_above_ground
- units :
- meters
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]], [[ 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.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ]], [[ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], ..., [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ], [ 197.05292746, 220.94425509, 244.84287961, ..., 19196.17700092, 19225.28324803, 19254.396739 ]]]) - gr(volume_time, azimuth, range)float64124.4 373.3 ... 1.784e+05 1.787e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]], [[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.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05]], [[1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], ..., [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05], [1.24425356e+02, 3.73275019e+02, 6.22123280e+02, ..., 1.78164661e+05, 1.78412400e+05, 1.78660137e+05]]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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. ]]])
<xarray.DatasetView> Size: 111MB Dimensions: (volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_1- volume_time: 24
- azimuth: 360
- range: 720
- volume_time(volume_time)datetime64[ns]2024-11-06T09:25:00 ... 2024-11-...
array(['2024-11-06T09:25:00.000000000', '2024-11-06T09:30:00.000000000', '2024-11-06T09:35:00.000000000', '2024-11-06T09:40:00.000000000', '2024-11-06T09:45:00.000000000', '2024-11-06T09:50:00.000000000', '2024-11-06T09:55:00.000000000', '2024-11-06T10:00:00.000000000', '2024-11-06T10:05:00.000000000', '2024-11-06T10:10:00.000000000', '2024-11-06T10:15:00.000000000', '2024-11-06T10:20:00.000000000', '2024-11-06T10:25:00.000000000', '2024-11-06T10:30:00.000000000', '2024-11-06T10:35:00.000000000', '2024-11-06T10:40:00.000000000', '2024-11-06T10:45:00.000000000', '2024-11-06T10:50:00.000000000', '2024-11-06T10:55:00.000000000', '2024-11-06T11:00:00.000000000', '2024-11-06T11:05:00.000000000', '2024-11-06T11:10:00.000000000', '2024-11-06T11:15:00.000000000', '2024-11-06T11:20:00.000000000'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)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]2024-11-06T09:26:16.446499840 .....
- standard_name :
- time
array([['2024-11-06T09:26:16.446499840', '2024-11-06T09:26:16.509499904', '2024-11-06T09:26:16.572000000', ..., '2024-11-06T09:26:16.259000064', '2024-11-06T09:26:16.320499968', '2024-11-06T09:26:16.383500032'], ['2024-11-06T09:31:16.440000000', '2024-11-06T09:31:16.503000064', '2024-11-06T09:31:16.565499904', ..., '2024-11-06T09:31:16.252999936', '2024-11-06T09:31:16.315000064', '2024-11-06T09:31:16.376999936'], ['2024-11-06T09:36:17.034500096', '2024-11-06T09:36:17.098000128', '2024-11-06T09:36:17.159999744', ..., '2024-11-06T09:36:16.845999872', '2024-11-06T09:36:16.908000000', '2024-11-06T09:36:16.971000320'], ..., ['2024-11-06T11:11:17.059500288', '2024-11-06T11:11:17.123000064', '2024-11-06T11:11:17.184999936', ..., '2024-11-06T11:11:16.871000064', '2024-11-06T11:11:16.933000192', '2024-11-06T11:11:16.996499968'], ['2024-11-06T11:16:16.444499968', '2024-11-06T11:16:16.508000000', '2024-11-06T11:16:16.570000128', ..., '2024-11-06T11:16:16.256000000', '2024-11-06T11:16:16.317999872', '2024-11-06T11:16:16.380999936'], ['2024-11-06T11:21:17.054500096', '2024-11-06T11:21:17.117000192', '2024-11-06T11:21:17.179500032', ..., '2024-11-06T11:21:16.866000128', '2024-11-06T11:21:16.928999936', '2024-11-06T11:21:16.991000064']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.087 3.262 ... -1.562e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]]) - y(azimuth, range)float64124.6 373.8 ... 1.787e+05 1.79e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]]) - z(azimuth, range)float64194.9 214.5 ... 1.614e+04 1.617e+04
- standard_name :
- height_above_ground
- units :
- meters
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 ]]) - gr(azimuth, range)float64124.6 373.8 ... 1.787e+05 1.79e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 111MB Dimensions: (volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_2- volume_time: 24
- azimuth: 360
- range: 720
- volume_time(volume_time)datetime64[ns]2024-11-06T09:25:00 ... 2024-11-...
array(['2024-11-06T09:25:00.000000000', '2024-11-06T09:30:00.000000000', '2024-11-06T09:35:00.000000000', '2024-11-06T09:40:00.000000000', '2024-11-06T09:45:00.000000000', '2024-11-06T09:50:00.000000000', '2024-11-06T09:55:00.000000000', '2024-11-06T10:00:00.000000000', '2024-11-06T10:05:00.000000000', '2024-11-06T10:10:00.000000000', '2024-11-06T10:15:00.000000000', '2024-11-06T10:20:00.000000000', '2024-11-06T10:25:00.000000000', '2024-11-06T10:30:00.000000000', '2024-11-06T10:35:00.000000000', '2024-11-06T10:40:00.000000000', '2024-11-06T10:45:00.000000000', '2024-11-06T10:50:00.000000000', '2024-11-06T10:55:00.000000000', '2024-11-06T11:00:00.000000000', '2024-11-06T11:05:00.000000000', '2024-11-06T11:10:00.000000000', '2024-11-06T11:15:00.000000000', '2024-11-06T11:20:00.000000000'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)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]2024-11-06T09:26:38.948999936 .....
- standard_name :
- time
array([['2024-11-06T09:26:38.948999936', '2024-11-06T09:26:39.012000000', '2024-11-06T09:26:39.075000064', ..., '2024-11-06T09:26:38.760000000', '2024-11-06T09:26:38.822500096', '2024-11-06T09:26:38.884999936'], ['2024-11-06T09:31:38.942500096', '2024-11-06T09:31:39.006000128', '2024-11-06T09:31:39.067999744', ..., '2024-11-06T09:31:38.755000064', '2024-11-06T09:31:38.816999936', '2024-11-06T09:31:38.880000000'], ['2024-11-06T09:36:39.537499904', '2024-11-06T09:36:39.600000000', '2024-11-06T09:36:39.661499904', ..., '2024-11-06T09:36:39.348999936', '2024-11-06T09:36:39.411000064', '2024-11-06T09:36:39.473499904'], ..., ['2024-11-06T11:11:39.561500160', '2024-11-06T11:11:39.624999936', '2024-11-06T11:11:39.686999808', ..., '2024-11-06T11:11:39.374000128', '2024-11-06T11:11:39.435999744', '2024-11-06T11:11:39.498000128'], ['2024-11-06T11:16:38.947000064', '2024-11-06T11:16:39.009499904', '2024-11-06T11:16:39.071000064', ..., '2024-11-06T11:16:38.757999872', '2024-11-06T11:16:38.820499968', '2024-11-06T11:16:38.883500032'], ['2024-11-06T11:21:39.557000192', '2024-11-06T11:21:39.619000064', '2024-11-06T11:21:39.681499904', ..., '2024-11-06T11:21:39.368499968', '2024-11-06T11:21:39.431000064', '2024-11-06T11:21:39.492999936']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.089 3.266 ... -1.564e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]]) - y(azimuth, range)float64124.8 374.3 ... 1.79e+05 1.793e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]]) - z(azimuth, range)float64192.7 208.0 ... 1.302e+04 1.304e+04
- standard_name :
- height_above_ground
- units :
- meters
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]]) - gr(azimuth, range)float64124.8 374.3 ... 1.79e+05 1.793e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 111MB Dimensions: (volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_3- volume_time: 24
- azimuth: 360
- range: 720
- volume_time(volume_time)datetime64[ns]2024-11-06T09:25:00 ... 2024-11-...
array(['2024-11-06T09:25:00.000000000', '2024-11-06T09:30:00.000000000', '2024-11-06T09:35:00.000000000', '2024-11-06T09:40:00.000000000', '2024-11-06T09:45:00.000000000', '2024-11-06T09:50:00.000000000', '2024-11-06T09:55:00.000000000', '2024-11-06T10:00:00.000000000', '2024-11-06T10:05:00.000000000', '2024-11-06T10:10:00.000000000', '2024-11-06T10:15:00.000000000', '2024-11-06T10:20:00.000000000', '2024-11-06T10:25:00.000000000', '2024-11-06T10:30:00.000000000', '2024-11-06T10:35:00.000000000', '2024-11-06T10:40:00.000000000', '2024-11-06T10:45:00.000000000', '2024-11-06T10:50:00.000000000', '2024-11-06T10:55:00.000000000', '2024-11-06T11:00:00.000000000', '2024-11-06T11:05:00.000000000', '2024-11-06T11:10:00.000000000', '2024-11-06T11:15:00.000000000', '2024-11-06T11:20:00.000000000'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)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]2024-11-06T09:27:01.451500032 .....
- standard_name :
- time
array([['2024-11-06T09:27:01.451500032', '2024-11-06T09:27:01.514999808', '2024-11-06T09:27:01.577000192', ..., '2024-11-06T09:27:01.263000064', '2024-11-06T09:27:01.324999936', '2024-11-06T09:27:01.388000000'], ['2024-11-06T09:32:01.445000192', '2024-11-06T09:32:01.508000000', '2024-11-06T09:32:01.571000064', ..., '2024-11-06T09:32:01.256000000', '2024-11-06T09:32:01.318500096', '2024-11-06T09:32:01.380999936'], ['2024-11-06T09:37:02.039500032', '2024-11-06T09:37:02.101999872', '2024-11-06T09:37:02.164499968', ..., '2024-11-06T09:37:01.850999808', '2024-11-06T09:37:01.914000128', '2024-11-06T09:37:01.975500032'], ..., ['2024-11-06T11:12:02.064000256', '2024-11-06T11:12:02.126999808', '2024-11-06T11:12:02.189000192', ..., '2024-11-06T11:12:01.875000064', '2024-11-06T11:12:01.937499904', '2024-11-06T11:12:02.000499968'], ['2024-11-06T11:17:01.449500160', '2024-11-06T11:17:01.512999936', '2024-11-06T11:17:01.574999808', ..., '2024-11-06T11:17:01.260999936', '2024-11-06T11:17:01.323000064', '2024-11-06T11:17:01.385499904'], ['2024-11-06T11:22:02.059500288', '2024-11-06T11:22:02.123000064', '2024-11-06T11:22:02.184499968', ..., '2024-11-06T11:22:01.869999872', '2024-11-06T11:22:01.932499968', '2024-11-06T11:22:01.995500032']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.09 3.269 ... -1.567e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]]) - y(azimuth, range)float64124.9 374.6 ... 1.793e+05 1.795e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]]) - z(azimuth, range)float64190.5 201.4 ... 9.862e+03 9.878e+03
- standard_name :
- height_above_ground
- units :
- meters
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 ]]) - gr(azimuth, range)float64124.9 374.6 ... 1.793e+05 1.795e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 302MB Dimensions: (volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 elevation (volume_time, azimuth) float64 69kB 1.494 1.494 ... 1.494 time (volume_time, azimuth) datetime64[ns] 69kB 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... y (volume_time, azimuth, range) float64 50MB 124.9 ... 1... z (volume_time, azimuth, range) float64 50MB 188.4 ... 6... gr (volume_time, azimuth, range) float64 50MB 125.0 ... 1... 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 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_4- volume_time: 24
- azimuth: 360
- range: 720
- volume_time(volume_time)datetime64[ns]2024-11-06T09:25:00 ... 2024-11-...
array(['2024-11-06T09:25:00.000000000', '2024-11-06T09:30:00.000000000', '2024-11-06T09:35:00.000000000', '2024-11-06T09:40:00.000000000', '2024-11-06T09:45:00.000000000', '2024-11-06T09:50:00.000000000', '2024-11-06T09:55:00.000000000', '2024-11-06T10:00:00.000000000', '2024-11-06T10:05:00.000000000', '2024-11-06T10:10:00.000000000', '2024-11-06T10:15:00.000000000', '2024-11-06T10:20:00.000000000', '2024-11-06T10:25:00.000000000', '2024-11-06T10:30:00.000000000', '2024-11-06T10:35:00.000000000', '2024-11-06T10:40:00.000000000', '2024-11-06T10:45:00.000000000', '2024-11-06T10:50:00.000000000', '2024-11-06T10:55:00.000000000', '2024-11-06T11:00:00.000000000', '2024-11-06T11:05:00.000000000', '2024-11-06T11:10:00.000000000', '2024-11-06T11:15:00.000000000', '2024-11-06T11:20:00.000000000'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float641.494 1.494 1.494 ... 1.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.4831543 , 1.4831543 , 1.4831543 , ..., 1.4831543 , 1.4831543 , 1.4831543 ], [1.4831543 , 1.4831543 , 1.4831543 , ..., 1.4831543 , 1.4831543 , 1.4831543 ], ..., [1.4831543 , 1.4831543 , 1.4831543 , ..., 1.4831543 , 1.4831543 , 1.4831543 ], [1.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]2024-11-06T09:27:23.953999872 .....
- standard_name :
- time
array([['2024-11-06T09:27:23.953999872', '2024-11-06T09:27:24.016999936', '2024-11-06T09:27:24.079500032', ..., '2024-11-06T09:27:23.764999936', '2024-11-06T09:27:23.827000064', '2024-11-06T09:27:23.890500096'], ['2024-11-06T09:32:23.947000064', '2024-11-06T09:32:24.010499840', '2024-11-06T09:32:24.072999936', ..., '2024-11-06T09:32:23.757999872', '2024-11-06T09:32:23.820499968', '2024-11-06T09:32:23.883500032'], ['2024-11-06T09:37:24.541500160', '2024-11-06T09:37:24.604000000', '2024-11-06T09:37:24.666500096', ..., '2024-11-06T09:37:24.353499904', '2024-11-06T09:37:24.416000000', '2024-11-06T09:37:24.478000128'], ..., ['2024-11-06T11:12:24.566500096', '2024-11-06T11:12:24.630000128', '2024-11-06T11:12:24.692000000', ..., '2024-11-06T11:12:24.378000128', '2024-11-06T11:12:24.440000000', '2024-11-06T11:12:24.502999808'], ['2024-11-06T11:17:23.951500032', '2024-11-06T11:17:24.014499840', '2024-11-06T11:17:24.076000256', ..., '2024-11-06T11:17:23.763000064', '2024-11-06T11:17:23.824999936', '2024-11-06T11:17:23.888499968'], ['2024-11-06T11:22:24.561500160', '2024-11-06T11:22:24.624999936', '2024-11-06T11:22:24.686999808', ..., '2024-11-06T11:22:24.373000192', '2024-11-06T11:22:24.435000064', '2024-11-06T11:22:24.498000128']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(volume_time, azimuth, range)float641.09 3.271 ... -1.568e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]], [[ 1.09042729e+00, 3.27127937e+00, 5.45212813e+00, ..., 1.56367584e+03, 1.56585334e+03, 1.56803083e+03], [ 3.27094972e+00, 9.81284166e+00, 1.63547236e+01, ..., 4.69055120e+03, 4.69708303e+03, 4.70361484e+03], [ 5.45047578e+00, 1.63514149e+01, 2.72523373e+01, ..., 7.81599778e+03, 7.82688195e+03, 7.83776609e+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]], [[ 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]]]) - y(volume_time, azimuth, range)float64124.9 374.8 ... 1.794e+05 1.797e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]], [[1.24950591e+02, 3.74851488e+02, 6.24752002e+02, ..., 1.79179504e+05, 1.79429020e+05, 1.79678536e+05], [1.24912530e+02, 3.74737304e+02, 6.24561697e+02, ..., 1.79124924e+05, 1.79374364e+05, 1.79623804e+05], [1.24836419e+02, 3.74508972e+02, 6.24181144e+02, ..., 1.79015781e+05, 1.79265069e+05, 1.79514357e+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]], [[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]]]) - z(volume_time, azimuth, range)float64188.4 194.9 ... 6.767e+03 6.779e+03
- standard_name :
- height_above_ground
- units :
- meters
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]], [[ 188.34629928, 194.82441727, 201.3098945 , ..., 6720.93036025, 6732.67952777, 6744.43603331], [ 188.34629928, 194.82441727, 201.3098945 , ..., 6720.93036025, 6732.67952777, 6744.43603331], [ 188.34629928, 194.82441727, 201.3098945 , ..., 6720.93036025, 6732.67952777, 6744.43603331], ... [ 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], ..., [ 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]]]) - gr(volume_time, azimuth, range)float64125.0 374.9 ... 1.794e+05 1.797e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]], [[1.24955349e+02, 3.74865761e+02, 6.24775792e+02, ..., 1.79186326e+05, 1.79435852e+05, 1.79685378e+05], [1.24955349e+02, 3.74865761e+02, 6.24775792e+02, ..., 1.79186326e+05, 1.79435852e+05, 1.79685378e+05], [1.24955349e+02, 3.74865761e+02, 6.24775792e+02, ..., 1.79186326e+05, 1.79435852e+05, 1.79685378e+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], [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]]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 111MB Dimensions: (volume_time: 24, azimuth: 360, range: 720) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 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 VRADH (volume_time, azimuth, range) float64 50MB -128.0 ... ...sweep_5- volume_time: 24
- azimuth: 360
- range: 720
- volume_time(volume_time)datetime64[ns]2024-11-06T09:25:00 ... 2024-11-...
array(['2024-11-06T09:25:00.000000000', '2024-11-06T09:30:00.000000000', '2024-11-06T09:35:00.000000000', '2024-11-06T09:40:00.000000000', '2024-11-06T09:45:00.000000000', '2024-11-06T09:50:00.000000000', '2024-11-06T09:55:00.000000000', '2024-11-06T10:00:00.000000000', '2024-11-06T10:05:00.000000000', '2024-11-06T10:10:00.000000000', '2024-11-06T10:15:00.000000000', '2024-11-06T10:20:00.000000000', '2024-11-06T10:25:00.000000000', '2024-11-06T10:30:00.000000000', '2024-11-06T10:35:00.000000000', '2024-11-06T10:40:00.000000000', '2024-11-06T10:45:00.000000000', '2024-11-06T10:50:00.000000000', '2024-11-06T10:55:00.000000000', '2024-11-06T11:00:00.000000000', '2024-11-06T11:05:00.000000000', '2024-11-06T11:10:00.000000000', '2024-11-06T11:15:00.000000000', '2024-11-06T11:20:00.000000000'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)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]2024-11-06T09:27:51.940000 ... 2...
- standard_name :
- time
array([['2024-11-06T09:27:51.940000000', '2024-11-06T09:27:52.024000256', '2024-11-06T09:27:52.106999808', ..., '2024-11-06T09:27:51.688499968', '2024-11-06T09:27:51.772499968', '2024-11-06T09:27:51.855500032'], ['2024-11-06T09:32:51.896500224', '2024-11-06T09:32:51.980499968', '2024-11-06T09:32:52.064499968', ..., '2024-11-06T09:32:51.645999872', '2024-11-06T09:32:51.729499904', '2024-11-06T09:32:51.813499904'], ['2024-11-06T09:37:52.506500096', '2024-11-06T09:37:52.590499840', '2024-11-06T09:37:52.673500160', ..., '2024-11-06T09:37:52.255499776', '2024-11-06T09:37:52.338500096', '2024-11-06T09:37:52.422500096'], ..., ['2024-11-06T11:12:52.575500032', '2024-11-06T11:12:52.658999808', '2024-11-06T11:12:52.742499840', ..., '2024-11-06T11:12:52.324000000', '2024-11-06T11:12:52.407000064', '2024-11-06T11:12:52.490500096'], ['2024-11-06T11:17:51.869999872', '2024-11-06T11:17:51.953999872', '2024-11-06T11:17:52.037499904', ..., '2024-11-06T11:17:51.619000064', '2024-11-06T11:17:51.702499840', '2024-11-06T11:17:51.786500096'], ['2024-11-06T11:22:52.534500096', '2024-11-06T11:22:52.618000128', '2024-11-06T11:22:52.701499904', ..., '2024-11-06T11:22:52.283000064', '2024-11-06T11:22:52.366499840', '2024-11-06T11:22:52.450000128']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.091 3.272 ... -1.569e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]]) - y(azimuth, range)float64125.0 375.0 ... 1.795e+05 1.798e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]]) - z(azimuth, range)float64186.2 188.3 ... 3.601e+03 3.608e+03
- standard_name :
- height_above_ground
- units :
- meters
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]]) - gr(azimuth, range)float64125.0 375.0 ... 1.796e+05 1.798e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]]) - 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]]) - 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]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 77MB Dimensions: (volume_time: 24, azimuth: 360, range: 496) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 2kB 125.0 375.0 ... 1.236e+05 1.239e+05 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 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 VRADH (volume_time, azimuth, range) float64 34MB -128.0 ... ...sweep_6- volume_time: 24
- azimuth: 360
- range: 496
- volume_time(volume_time)datetime64[ns]2024-11-06T09:25:00 ... 2024-11-...
array(['2024-11-06T09:25:00.000000000', '2024-11-06T09:30:00.000000000', '2024-11-06T09:35:00.000000000', '2024-11-06T09:40:00.000000000', '2024-11-06T09:45:00.000000000', '2024-11-06T09:50:00.000000000', '2024-11-06T09:55:00.000000000', '2024-11-06T10:00:00.000000000', '2024-11-06T10:05:00.000000000', '2024-11-06T10:10:00.000000000', '2024-11-06T10:15:00.000000000', '2024-11-06T10:20:00.000000000', '2024-11-06T10:25:00.000000000', '2024-11-06T10:30:00.000000000', '2024-11-06T10:35:00.000000000', '2024-11-06T10:40:00.000000000', '2024-11-06T10:45:00.000000000', '2024-11-06T10:50:00.000000000', '2024-11-06T10:55:00.000000000', '2024-11-06T11:00:00.000000000', '2024-11-06T11:05:00.000000000', '2024-11-06T11:10:00.000000000', '2024-11-06T11:15:00.000000000', '2024-11-06T11:20:00.000000000'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 1.236e+05 1.239e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 123375., 123625., 123875.], dtype=float32) - azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)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]2024-11-06T09:28:14.967500032 .....
- standard_name :
- time
array([['2024-11-06T09:28:14.967500032', '2024-11-06T09:28:15.023500032', '2024-11-06T09:28:15.079000064', ..., '2024-11-06T09:28:14.800499968', '2024-11-06T09:28:14.856000000', '2024-11-06T09:28:14.911500032'], ['2024-11-06T09:33:14.956499968', '2024-11-06T09:33:15.012499968', '2024-11-06T09:33:15.067500032', ..., '2024-11-06T09:33:14.788999936', '2024-11-06T09:33:14.844499968', '2024-11-06T09:33:14.900499712'], ['2024-11-06T09:38:15.515500032', '2024-11-06T09:38:15.571500032', '2024-11-06T09:38:15.626500096', ..., '2024-11-06T09:38:15.348000000', '2024-11-06T09:38:15.402500096', '2024-11-06T09:38:15.459499776'], ..., ['2024-11-06T11:13:15.563500032', '2024-11-06T11:13:15.619500288', '2024-11-06T11:13:15.675000064', ..., '2024-11-06T11:13:15.395500288', '2024-11-06T11:13:15.452000256', '2024-11-06T11:13:15.507500288'], ['2024-11-06T11:18:14.908000000', '2024-11-06T11:18:14.964499968', '2024-11-06T11:18:15.020000000', ..., '2024-11-06T11:18:14.740499968', '2024-11-06T11:18:14.796000000', '2024-11-06T11:18:14.851500032'], ['2024-11-06T11:23:15.517000192', '2024-11-06T11:23:15.572999936', '2024-11-06T11:23:15.628499968', ..., '2024-11-06T11:23:15.348999936', '2024-11-06T11:23:15.404499968', '2024-11-06T11:23:15.460499968']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.08 3.241 ... -1.068e+03
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]]) - y(azimuth, range)float64123.8 371.3 ... 1.222e+05 1.224e+05
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]]) - z(azimuth, range)float64202.5 237.2 ... 1.824e+04 1.828e+04
- standard_name :
- height_above_ground
- units :
- meters
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]]) - gr(azimuth, range)float64123.8 371.4 ... 1.222e+05 1.224e+05
- standard_name :
- distance_from_radar
- units :
- meters
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]]) - 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]]) - 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.]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- 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]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 37MB Dimensions: (volume_time: 24, azimuth: 360, range: 240) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 elevation (azimuth) float64 3kB 12.0 12.0 12.0 ... 12.0 12.0 12.0 time (volume_time, azimuth) datetime64[ns] 69kB 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... y (azimuth, range) float64 691kB 122.3 366.8 ... 5.848e+04 z (azimuth, range) float64 691kB 211.1 263.1 ... 1.283e+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 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 VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...sweep_7- volume_time: 24
- azimuth: 360
- range: 240
- volume_time(volume_time)datetime64[ns]2024-11-06T09:25:00 ... 2024-11-...
array(['2024-11-06T09:25:00.000000000', '2024-11-06T09:30:00.000000000', '2024-11-06T09:35:00.000000000', '2024-11-06T09:40:00.000000000', '2024-11-06T09:45:00.000000000', '2024-11-06T09:50:00.000000000', '2024-11-06T09:55:00.000000000', '2024-11-06T10:00:00.000000000', '2024-11-06T10:05:00.000000000', '2024-11-06T10:10:00.000000000', '2024-11-06T10:15:00.000000000', '2024-11-06T10:20:00.000000000', '2024-11-06T10:25:00.000000000', '2024-11-06T10:30:00.000000000', '2024-11-06T10:35:00.000000000', '2024-11-06T10:40:00.000000000', '2024-11-06T10:45:00.000000000', '2024-11-06T10:50:00.000000000', '2024-11-06T10:55:00.000000000', '2024-11-06T11:00:00.000000000', '2024-11-06T11:05:00.000000000', '2024-11-06T11:10:00.000000000', '2024-11-06T11:15:00.000000000', '2024-11-06T11:20:00.000000000'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)float6412.0 12.0 12.0 ... 12.0 12.0 12.0
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, ... 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031, 11.99707031]) - time(volume_time, azimuth)datetime64[ns]2024-11-06T09:28:30.100500224 .....
- standard_name :
- time
array([['2024-11-06T09:28:30.100500224', '2024-11-06T09:28:30.134500096', '2024-11-06T09:28:30.167500032', ..., '2024-11-06T09:28:30.000000000', '2024-11-06T09:28:30.033499904', '2024-11-06T09:28:30.066499840'], ['2024-11-06T09:33:30.115000064', '2024-11-06T09:33:30.148499968', '2024-11-06T09:33:30.181999872', ..., '2024-11-06T09:33:30.014499840', '2024-11-06T09:33:30.047499776', '2024-11-06T09:33:30.081500160'], ['2024-11-06T09:38:30.632999936', '2024-11-06T09:38:30.666500096', '2024-11-06T09:38:30.700000000', ..., '2024-11-06T09:38:30.532999936', '2024-11-06T09:38:30.565999872', '2024-11-06T09:38:30.599500032'], ..., ['2024-11-06T11:13:30.665499904', '2024-11-06T11:13:30.698999808', '2024-11-06T11:13:30.732499968', ..., '2024-11-06T11:13:30.564999936', '2024-11-06T11:13:30.598500096', '2024-11-06T11:13:30.631500032'], ['2024-11-06T11:18:30.049999872', '2024-11-06T11:18:30.083500032', '2024-11-06T11:18:30.117000192', ..., '2024-11-06T11:18:29.949500160', '2024-11-06T11:18:29.983000064', '2024-11-06T11:18:30.016499968'], ['2024-11-06T11:23:30.613999872', '2024-11-06T11:23:30.648000000', '2024-11-06T11:23:30.681499904', ..., '2024-11-06T11:23:30.513499904', '2024-11-06T11:23:30.546499840', '2024-11-06T11:23:30.580499968']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.067 3.201 5.335 ... -508.2 -510.3
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 1.06696503e+00, 3.20087548e+00, 5.33475980e+00, ..., 5.06066131e+02, 5.08193762e+02, 5.10321366e+02], [ 3.20057007e+00, 9.60165142e+00, 1.60026544e+01, ..., 1.51804424e+03, 1.52442649e+03, 1.53080865e+03], [ 5.33320019e+00, 1.59995026e+01, 2.66656744e+01, ..., 2.52955994e+03, 2.54019485e+03, 2.55082963e+03], ..., [-5.33320019e+00, -1.59995026e+01, -2.66656744e+01, ..., -2.52955994e+03, -2.54019485e+03, -2.55082963e+03], [-3.20057007e+00, -9.60165142e+00, -1.60026544e+01, ..., -1.51804424e+03, -1.52442649e+03, -1.53080865e+03], [-1.06696503e+00, -3.20087548e+00, -5.33475980e+00, ..., -5.06066131e+02, -5.08193762e+02, -5.10321366e+02]]) - y(azimuth, range)float64122.3 366.8 ... 5.823e+04 5.848e+04
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[ 122.26208213, 366.78400039, 611.3029237 , ..., 57989.43482545, 58233.23718887, 58477.036475 ], [ 122.22483991, 366.67227443, 611.11671491, ..., 57971.77068184, 58215.4987807 , 58459.22380321], [ 122.15036683, 366.44885654, 610.74435404, ..., 57936.4477753 , 58180.02736766, 58423.60388554], ..., [ 122.15036683, 366.44885654, 610.74435404, ..., 57936.4477753 , 58180.02736766, 58423.60388554], [ 122.22483991, 366.67227443, 611.11671491, ..., 57971.77068184, 58215.4987807 , 58459.22380321], [ 122.26208213, 366.78400039, 611.3029237 , ..., 57989.43482545, 58233.23718887, 58477.036475 ]]) - z(azimuth, range)float64211.1 263.1 ... 1.278e+04 1.283e+04
- standard_name :
- height_above_ground
- units :
- meters
array([[ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473], [ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473], [ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473], ..., [ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473], [ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473], [ 211.09359015, 263.0660549 , 315.04556548, ..., 12725.32578615, 12778.96446019, 12832.61014473]]) - gr(azimuth, range)float64122.3 366.8 ... 5.824e+04 5.848e+04
- standard_name :
- distance_from_radar
- units :
- meters
array([[ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615], [ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615], [ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615], ..., [ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615], [ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615], [ 122.26673767, 366.79796693, 611.32620113, ..., 57991.64296952, 58235.45461654, 58479.26318615]]) - 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]]) - 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.]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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 -1.668 -9.889 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
array([[[-64.00292982, -1.66804511, -9.88912456, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -2.7784475 , -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [ -0.62795843, 1.41998688, -18.24204599, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ... [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 37MB Dimensions: (volume_time: 24, azimuth: 360, range: 240) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04 * azimuth (azimuth) float64 3kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 elevation (azimuth) float64 3kB 16.98 16.98 16.98 ... 16.98 16.98 time (volume_time, azimuth) datetime64[ns] 69kB 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... y (azimuth, range) float64 691kB 119.5 358.6 ... 5.714e+04 z (azimuth, range) float64 691kB 221.6 294.7 ... 1.787e+04 gr (azimuth, range) float64 691kB 119.5 358.6 ... 5.714e+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 crs_wkt int64 8B 0 Data variables: DBZH (volume_time, azimuth, range) float64 17MB -2.433 ... ... 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 VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...sweep_8- volume_time: 24
- azimuth: 360
- range: 240
- volume_time(volume_time)datetime64[ns]2024-11-06T09:25:00 ... 2024-11-...
array(['2024-11-06T09:25:00.000000000', '2024-11-06T09:30:00.000000000', '2024-11-06T09:35:00.000000000', '2024-11-06T09:40:00.000000000', '2024-11-06T09:45:00.000000000', '2024-11-06T09:50:00.000000000', '2024-11-06T09:55:00.000000000', '2024-11-06T10:00:00.000000000', '2024-11-06T10:05:00.000000000', '2024-11-06T10:10:00.000000000', '2024-11-06T10:15:00.000000000', '2024-11-06T10:20:00.000000000', '2024-11-06T10:25:00.000000000', '2024-11-06T10:30:00.000000000', '2024-11-06T10:35:00.000000000', '2024-11-06T10:40:00.000000000', '2024-11-06T10:45:00.000000000', '2024-11-06T10:50:00.000000000', '2024-11-06T10:55:00.000000000', '2024-11-06T11:00:00.000000000', '2024-11-06T11:05:00.000000000', '2024-11-06T11:10:00.000000000', '2024-11-06T11:15:00.000000000', '2024-11-06T11:20:00.000000000'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)float6416.98 16.98 16.98 ... 16.98 16.98
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, ... 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328, 16.98486328]) - time(volume_time, azimuth)datetime64[ns]2024-11-06T09:28:42.101500160 .....
- standard_name :
- time
array([['2024-11-06T09:28:42.101500160', '2024-11-06T09:28:42.135500032', '2024-11-06T09:28:42.168499968', ..., '2024-11-06T09:28:42.001499904', '2024-11-06T09:28:42.034500096', '2024-11-06T09:28:42.067500032'], ['2024-11-06T09:33:42.116000000', '2024-11-06T09:33:42.150000128', '2024-11-06T09:33:42.183000064', ..., '2024-11-06T09:33:42.016000000', '2024-11-06T09:33:42.048999936', '2024-11-06T09:33:42.082500096'], ['2024-11-06T09:38:42.634000128', '2024-11-06T09:38:42.668000000', '2024-11-06T09:38:42.700999936', ..., '2024-11-06T09:38:42.533999872', '2024-11-06T09:38:42.566999808', '2024-11-06T09:38:42.600500224'], ..., ['2024-11-06T11:13:42.666500096', '2024-11-06T11:13:42.700499968', '2024-11-06T11:13:42.733499904', ..., '2024-11-06T11:13:42.566499840', '2024-11-06T11:13:42.599500032', '2024-11-06T11:13:42.632499968'], ['2024-11-06T11:18:42.051000064', '2024-11-06T11:18:42.084499968', '2024-11-06T11:18:42.118500096', ..., '2024-11-06T11:18:41.950500096', '2024-11-06T11:18:41.984000000', '2024-11-06T11:18:42.017499904'], ['2024-11-06T11:23:42.615500032', '2024-11-06T11:23:42.648999936', '2024-11-06T11:23:42.682499840', ..., '2024-11-06T11:23:42.514499840', '2024-11-06T11:23:42.547999744', '2024-11-06T11:23:42.581500160']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float641.043 3.13 5.216 ... -496.6 -498.7
- standard_name :
- east_west_distance_from_radar
- units :
- meters
array([[ 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], ..., [-5.21446324e+00, -1.56432551e+01, -2.60718675e+01, ..., -2.47179238e+03, -2.48217830e+03, -2.49256404e+03], [-3.12931343e+00, -9.38785951e+00, -1.56462979e+01, ..., -1.48337667e+03, -1.48960948e+03, -1.49584219e+03], [-1.04321040e+00, -3.12960427e+00, -5.21596223e+00, ..., -4.94509099e+02, -4.96586916e+02, -4.98664697e+02]]) - y(azimuth, range)float64119.5 358.6 ... 5.69e+04 5.714e+04
- standard_name :
- north_south_distance_from_radar
- units :
- meters
array([[ 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], ..., [ 119.43084358, 358.28944753, 597.1439403 , ..., 56613.35318108, 56851.2298785 , 57089.10240108], [ 119.50365862, 358.50789076, 597.50800921, ..., 56647.86941844, 56885.89114541, 57123.90869497], [ 119.54007168, 358.61712901, 597.6900714 , ..., 56665.13016602, 56903.2244188 , 57141.31449291]]) - z(azimuth, range)float64221.6 294.7 ... 1.779e+04 1.787e+04
- standard_name :
- height_above_ground
- units :
- meters
array([[ 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], ..., [ 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]]) - gr(azimuth, range)float64119.5 358.6 ... 5.691e+04 5.714e+04
- standard_name :
- distance_from_radar
- units :
- meters
array([[ 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], ..., [ 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]]) - 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]]) - 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.]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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-2.433 -9.538 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
array([[[ -2.43272855, -9.53754597, -4.3371126 , ..., -64.00292982, -64.00292982, -64.00292982], [ -1.90829048, -0.9619581 , -16.43141623, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, 0.08691804, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -2.86634215, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [ -3.22085056, -0.9619581 , -9.7455633 , ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -3.0772893 , -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ... [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
<xarray.DatasetView> Size: 101MB Dimensions: (volume_time: 24, azimuth: 360, range: 240) Coordinates: (12/16) * volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ... * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04 * 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 2024-11-06T... sweep_mode object 8B 'azimuth_surveillance' ... ... 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 crs_wkt int64 8B 0 Data variables: DBZH (volume_time, azimuth, range) float64 17MB -3.382 ... ... 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 VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...sweep_9- volume_time: 24
- azimuth: 360
- range: 240
- volume_time(volume_time)datetime64[ns]2024-11-06T09:25:00 ... 2024-11-...
array(['2024-11-06T09:25:00.000000000', '2024-11-06T09:30:00.000000000', '2024-11-06T09:35:00.000000000', '2024-11-06T09:40:00.000000000', '2024-11-06T09:45:00.000000000', '2024-11-06T09:50:00.000000000', '2024-11-06T09:55:00.000000000', '2024-11-06T10:00:00.000000000', '2024-11-06T10:05:00.000000000', '2024-11-06T10:10:00.000000000', '2024-11-06T10:15:00.000000000', '2024-11-06T10:20:00.000000000', '2024-11-06T10:25:00.000000000', '2024-11-06T10:30:00.000000000', '2024-11-06T10:35:00.000000000', '2024-11-06T10:40:00.000000000', '2024-11-06T10:45:00.000000000', '2024-11-06T10:50:00.000000000', '2024-11-06T10:55:00.000000000', '2024-11-06T11:00:00.000000000', '2024-11-06T11:05:00.000000000', '2024-11-06T11:10:00.000000000', '2024-11-06T11:15:00.000000000', '2024-11-06T11:20:00.000000000'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float6424.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]]) - time(volume_time, azimuth)datetime64[ns]2024-11-06T09:28:54.102499840 .....
- standard_name :
- time
array([['2024-11-06T09:28:54.102499840', '2024-11-06T09:28:54.136499968', '2024-11-06T09:28:54.169500160', ..., '2024-11-06T09:28:54.002500096', '2024-11-06T09:28:54.035500032', '2024-11-06T09:28:54.068999936'], ['2024-11-06T09:33:54.117500160', '2024-11-06T09:33:54.151000064', '2024-11-06T09:33:54.184499968', ..., '2024-11-06T09:33:54.016999936', '2024-11-06T09:33:54.050499840', '2024-11-06T09:33:54.083500032'], ['2024-11-06T09:38:54.635500032', '2024-11-06T09:38:54.669500160', '2024-11-06T09:38:54.702500096', ..., '2024-11-06T09:38:54.535000064', '2024-11-06T09:38:54.568499968', '2024-11-06T09:38:54.601500160'], ..., ['2024-11-06T11:13:54.667500032', '2024-11-06T11:13:54.701499904', '2024-11-06T11:13:54.734499840', ..., '2024-11-06T11:13:54.567500032', '2024-11-06T11:13:54.600500224', '2024-11-06T11:13:54.634000128'], ['2024-11-06T11:18:54.052000000', '2024-11-06T11:18:54.085499904', '2024-11-06T11:18:54.119500032', ..., '2024-11-06T11:18:53.952000256', '2024-11-06T11:18:53.985500160', '2024-11-06T11:18:54.018500096'], ['2024-11-06T11:23:54.617000192', '2024-11-06T11:23:54.650000128', '2024-11-06T11:23:54.683500032', ..., '2024-11-06T11:23:54.516000000', '2024-11-06T11:23:54.549499904', '2024-11-06T11:23:54.583000064']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(volume_time, azimuth, range)float640.9888 2.966 ... -470.3 -472.2
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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], ... [-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], ..., [-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]]]) - y(volume_time, azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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 ], ... [ 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 ], ..., [ 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]]]) - z(volume_time, azimuth, range)float64237.9 343.4 ... 2.553e+04 2.564e+04
- standard_name :
- height_above_ground
- units :
- meters
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], ... [ 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]]]) - gr(volume_time, azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- standard_name :
- distance_from_radar
- units :
- meters
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], ... [ 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]]]) - 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]]) - 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.]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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-3.382 -4.654 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
array([[[ -3.38199075, -4.65353333, -18.29185296, ..., -64.00292982, -64.00292982, -64.00292982], [ -3.68962202, -3.15932431, -5.73463751, ..., -64.00292982, -64.00292982, -64.00292982], [ -2.78430714, -3.39956968, -14.2047518 , ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -16.2907848 , ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -2.58800909, -20.31050005, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ... [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -16.81815269, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
[19]:
swp = vol["sweep_0"].isel(volume_time=0).ds
swp.sweep_fixed_angle.values
[19]:
array(5.49865723)
[20]:
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#
[21]:
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#
[22]:
vol0 = vol.isel(volume_time=0)
swp = vol0["sweep_9"].ds
[23]:
import cartopy
import cartopy.crs as ccrs
import cartopy.feature as cfeature
map_trans = ccrs.AzimuthalEquidistant(
central_latitude=swp.latitude.values,
central_longitude=swp.longitude.values,
)
[24]:
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 >
[25]:
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)
[25]:
<cartopy.mpl.gridliner.Gridliner at 0x7f4a38819e80>
[26]:
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()
[26]:
<cartopy.mpl.gridliner.Gridliner at 0x7f4a3a30b4a0>
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.
[27]:
vol["sweep_9"].isel(volume_time=0).ds.DBZH
[27]:
<xarray.DataArray 'DBZH' (azimuth: 360, range: 240)> Size: 691kB
array([[ -3.38199075, -4.65353333, -18.29185296, ..., -64.00292982,
-64.00292982, -64.00292982],
[ -3.68962202, -3.15932431, -5.73463751, ..., -64.00292982,
-64.00292982, -64.00292982],
[ -2.78430714, -3.39956968, -14.2047518 , ..., -64.00292982,
-64.00292982, -64.00292982],
...,
[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982,
-64.00292982, -64.00292982],
[-64.00292982, -64.00292982, -16.2907848 , ..., -64.00292982,
-64.00292982, -64.00292982],
[-64.00292982, -2.58800909, -20.31050005, ..., -64.00292982,
-64.00292982, -64.00292982]])
Coordinates: (12/16)
volume_time datetime64[ns] 8B 2024-11-06T09:25:00
* range (range) float32 960B 125.0 375.0 625.0 ... 5.962e+04 5.988e+04
* 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 2024-11-06T09:28:54.102499840 ....
sweep_mode object 8B 'azimuth_surveillance'
... ...
y (azimuth, range) float64 691kB 113.3 339.9 ... 5.411e+04
z (azimuth, range) float64 691kB 237.9 343.4 ... 2.564e+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
crs_wkt int64 8B 0
Attributes:
_Undetect: 0.0
units: dBZ
standard_name: radar_equivalent_reflectivity_factor_h
long_name: Equivalent reflectivity factor H- azimuth: 360
- range: 240
- -3.382 -4.654 -18.29 -64.0 -64.0 ... -64.0 -64.0 -64.0 -64.0 -64.0
array([[ -3.38199075, -4.65353333, -18.29185296, ..., -64.00292982, -64.00292982, -64.00292982], [ -3.68962202, -3.15932431, -5.73463751, ..., -64.00292982, -64.00292982, -64.00292982], [ -2.78430714, -3.39956968, -14.2047518 , ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -16.2907848 , ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -2.58800909, -20.31050005, ..., -64.00292982, -64.00292982, -64.00292982]]) - volume_time()datetime64[ns]2024-11-06T09:25:00
array('2024-11-06T09:25:00.000000000', dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(azimuth)float6424.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]2024-11-06T09:28:54.102499840 .....
- standard_name :
- time
array(['2024-11-06T09:28:54.102499840', '2024-11-06T09:28:54.136499968', '2024-11-06T09:28:54.169500160', '2024-11-06T09:28:54.203500032', '2024-11-06T09:28:54.236499968', '2024-11-06T09:28:54.269499904', '2024-11-06T09:28:54.303000064', '2024-11-06T09:28:54.336499968', '2024-11-06T09:28:54.369499904', '2024-11-06T09:28:54.402999808', '2024-11-06T09:28:54.436499968', '2024-11-06T09:28:54.469500160', '2024-11-06T09:28:54.502500096', '2024-11-06T09:28:54.535500032', '2024-11-06T09:28:54.569499904', '2024-11-06T09:28:54.602499840', '2024-11-06T09:28:54.636499968', '2024-11-06T09:28:54.669500160', '2024-11-06T09:28:54.702500096', '2024-11-06T09:28:54.736000000', '2024-11-06T09:28:54.769499904', '2024-11-06T09:28:54.802500096', '2024-11-06T09:28:54.835500032', '2024-11-06T09:28:54.869499904', '2024-11-06T09:28:54.902499840', '2024-11-06T09:28:54.935999744', '2024-11-06T09:28:54.969500160', '2024-11-06T09:28:55.002500096', '2024-11-06T09:28:55.035500032', '2024-11-06T09:28:55.068999936', '2024-11-06T09:28:55.102499840', '2024-11-06T09:28:55.135500032', '2024-11-06T09:28:55.168499968', '2024-11-06T09:28:55.202500096', '2024-11-06T09:28:55.235500032', '2024-11-06T09:28:55.268499968', '2024-11-06T09:28:55.302500096', '2024-11-06T09:28:55.335500032', '2024-11-06T09:28:55.368499968', '2024-11-06T09:28:55.401999872', ... '2024-11-06T09:28:52.835500032', '2024-11-06T09:28:52.868999936', '2024-11-06T09:28:52.902499840', '2024-11-06T09:28:52.935500032', '2024-11-06T09:28:52.968999936', '2024-11-06T09:28:53.002500096', '2024-11-06T09:28:53.035500032', '2024-11-06T09:28:53.068499968', '2024-11-06T09:28:53.101999872', '2024-11-06T09:28:53.135500032', '2024-11-06T09:28:53.168499968', '2024-11-06T09:28:53.202500096', '2024-11-06T09:28:53.235500032', '2024-11-06T09:28:53.268499968', '2024-11-06T09:28:53.302500096', '2024-11-06T09:28:53.335000064', '2024-11-06T09:28:53.368499968', '2024-11-06T09:28:53.401499904', '2024-11-06T09:28:53.435500032', '2024-11-06T09:28:53.468999936', '2024-11-06T09:28:53.502500096', '2024-11-06T09:28:53.535500032', '2024-11-06T09:28:53.568999936', '2024-11-06T09:28:53.602499840', '2024-11-06T09:28:53.635500032', '2024-11-06T09:28:53.668499968', '2024-11-06T09:28:53.701499904', '2024-11-06T09:28:53.735500032', '2024-11-06T09:28:53.768999936', '2024-11-06T09:28:53.802000128', '2024-11-06T09:28:53.835500032', '2024-11-06T09:28:53.868499968', '2024-11-06T09:28:53.902499840', '2024-11-06T09:28:53.935500032', '2024-11-06T09:28:53.968999936', '2024-11-06T09:28:54.002500096', '2024-11-06T09:28:54.035500032', '2024-11-06T09:28:54.068999936'], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(azimuth, range)float640.9888 2.966 ... -470.3 -472.2
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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]]) - y(azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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]]) - z(azimuth, range)float64237.9 343.4 ... 2.553e+04 2.564e+04
- standard_name :
- height_above_ground
- units :
- meters
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]]) - gr(azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- standard_name :
- distance_from_radar
- units :
- meters
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]]) - 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]]) - 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.]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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)
- rangePandasIndex
PandasIndex(Index([ 125.0, 375.0, 625.0, 875.0, 1125.0, 1375.0, 1625.0, 1875.0, 2125.0, 2375.0, ... 57625.0, 57875.0, 58125.0, 58375.0, 58625.0, 58875.0, 59125.0, 59375.0, 59625.0, 59875.0], dtype='float32', name='range', length=240)) - azimuthPandasIndex
PandasIndex(Index([ 0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5, ... 350.5, 351.5, 352.5, 353.5, 354.5, 355.5, 356.5, 357.5, 358.5, 359.5], dtype='float64', name='azimuth', length=360))
- _Undetect :
- 0.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
[28]:
vol["sweep_9"].isel(volume_time=0).ds.sweep_mode
[28]:
<xarray.DataArray 'sweep_mode' ()> Size: 8B
array('azimuth_surveillance', dtype=object)
Coordinates:
volume_time datetime64[ns] 8B 2024-11-06T09:25:00
sweep_mode object 8B 'azimuth_surveillance'
longitude float64 8B 6.967
latitude float64 8B 51.41
altitude float64 8B 185.1
crs_wkt int64 8B 0- 'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - volume_time()datetime64[ns]2024-11-06T09:25:00
array('2024-11-06T09:25:00.000000000', dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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#
[29]:
ts = vol["sweep_9"]
ts
[29]:
<xarray.DatasetView> Size: 101MB
Dimensions: (sweep: 10, volume_time: 24, azimuth: 360, range: 240)
Coordinates: (12/16)
* volume_time (volume_time) datetime64[ns] 192B 2024-11-06T09:25:00 ...
* range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04
* 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 2024-11-06T...
sweep_mode object 8B 'azimuth_surveillance'
... ...
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
crs_wkt int64 8B 0
Dimensions without coordinates: sweep
Data variables:
DBZH (volume_time, azimuth, range) float64 17MB -3.382 ... ...
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
VRADH (volume_time, azimuth, range) float64 17MB -128.0 ... ...- sweep: 10
- volume_time: 24
- azimuth: 360
- range: 240
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(azimuth)float640.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5])
- elevation(volume_time, azimuth)float6424.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]]) - time(volume_time, azimuth)datetime64[ns]2024-11-06T09:28:54.102499840 .....
- standard_name :
- time
array([['2024-11-06T09:28:54.102499840', '2024-11-06T09:28:54.136499968', '2024-11-06T09:28:54.169500160', ..., '2024-11-06T09:28:54.002500096', '2024-11-06T09:28:54.035500032', '2024-11-06T09:28:54.068999936'], ['2024-11-06T09:33:54.117500160', '2024-11-06T09:33:54.151000064', '2024-11-06T09:33:54.184499968', ..., '2024-11-06T09:33:54.016999936', '2024-11-06T09:33:54.050499840', '2024-11-06T09:33:54.083500032'], ['2024-11-06T09:38:54.635500032', '2024-11-06T09:38:54.669500160', '2024-11-06T09:38:54.702500096', ..., '2024-11-06T09:38:54.535000064', '2024-11-06T09:38:54.568499968', '2024-11-06T09:38:54.601500160'], ..., ['2024-11-06T11:13:54.667500032', '2024-11-06T11:13:54.701499904', '2024-11-06T11:13:54.734499840', ..., '2024-11-06T11:13:54.567500032', '2024-11-06T11:13:54.600500224', '2024-11-06T11:13:54.634000128'], ['2024-11-06T11:18:54.052000000', '2024-11-06T11:18:54.085499904', '2024-11-06T11:18:54.119500032', ..., '2024-11-06T11:18:53.952000256', '2024-11-06T11:18:53.985500160', '2024-11-06T11:18:54.018500096'], ['2024-11-06T11:23:54.617000192', '2024-11-06T11:23:54.650000128', '2024-11-06T11:23:54.683500032', ..., '2024-11-06T11:23:54.516000000', '2024-11-06T11:23:54.549499904', '2024-11-06T11:23:54.583000064']], dtype='datetime64[ns]') - sweep_mode()object'azimuth_surveillance'
array('azimuth_surveillance', dtype=object) - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- x(volume_time, azimuth, range)float640.9888 2.966 ... -470.3 -472.2
- standard_name :
- east_west_distance_from_radar
- units :
- meters
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], ... [-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], ..., [-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]]]) - y(volume_time, azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- standard_name :
- north_south_distance_from_radar
- units :
- meters
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 ], ... [ 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 ], ..., [ 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]]]) - z(volume_time, azimuth, range)float64237.9 343.4 ... 2.553e+04 2.564e+04
- standard_name :
- height_above_ground
- units :
- meters
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], ... [ 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]]]) - gr(volume_time, azimuth, range)float64113.3 339.9 ... 5.389e+04 5.411e+04
- standard_name :
- distance_from_radar
- units :
- meters
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], ... [ 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]]]) - 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]]) - 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.]], dtype=float32) - crs_wkt()int640
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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]2024-11-06T09:25:00 ... 2024-11-...
array(['2024-11-06T09:25:00.000000000', '2024-11-06T09:30:00.000000000', '2024-11-06T09:35:00.000000000', '2024-11-06T09:40:00.000000000', '2024-11-06T09:45:00.000000000', '2024-11-06T09:50:00.000000000', '2024-11-06T09:55:00.000000000', '2024-11-06T10:00:00.000000000', '2024-11-06T10:05:00.000000000', '2024-11-06T10:10:00.000000000', '2024-11-06T10:15:00.000000000', '2024-11-06T10:20:00.000000000', '2024-11-06T10:25:00.000000000', '2024-11-06T10:30:00.000000000', '2024-11-06T10:35:00.000000000', '2024-11-06T10:40:00.000000000', '2024-11-06T10:45:00.000000000', '2024-11-06T10:50:00.000000000', '2024-11-06T10:55:00.000000000', '2024-11-06T11:00:00.000000000', '2024-11-06T11:05:00.000000000', '2024-11-06T11:10:00.000000000', '2024-11-06T11:15:00.000000000', '2024-11-06T11:20:00.000000000'], dtype='datetime64[ns]')
- DBZH(volume_time, azimuth, range)float64-3.382 -4.654 ... -64.0 -64.0
- _Undetect :
- 0.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
array([[[ -3.38199075, -4.65353333, -18.29185296, ..., -64.00292982, -64.00292982, -64.00292982], [ -3.68962202, -3.15932431, -5.73463751, ..., -64.00292982, -64.00292982, -64.00292982], [ -2.78430714, -3.39956968, -14.2047518 , ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -16.2907848 , ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -2.58800909, -20.31050005, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ... [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -16.81815269, ..., -64.00292982, -64.00292982, -64.00292982]], [[-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], ..., [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982], [-64.00292982, -64.00292982, -64.00292982, ..., -64.00292982, -64.00292982, -64.00292982]]]) - 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]) - VRADH(volume_time, azimuth, range)float64-128.0 -128.0 ... -128.0 -128.0
- _Undetect :
- 0.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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.]]])
[30]:
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)
[30]:
(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.
[31]:
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.
[32]:
xd.io.to_cfradial2(vol0, "dwd_cfradial2.nc")
Import again#
[33]:
vol1 = xd.io.open_odim_datatree("dwd_odim.h5")
display(vol1)
<xarray.DatasetView> Size: 392B
Dimensions: (sweep: 10)
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 '2024-11-06T09:25:35Z'
time_coverage_end <U20 80B '2024-11-06T09:29:01Z'
longitude float64 8B 6.967
altitude float64 8B 185.1
latitude float64 8B 51.41
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<xarray.DatasetView> Size: 4MB Dimensions: (sweep: 10, azimuth: 360, range: 720) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2024-11-06T09:25:53.66947... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 longitude float64 8B ... latitude float64 8B ... altitude float64 8B ... * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 Dimensions without coordinates: sweep 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 ...sweep_0- sweep: 10
- azimuth: 360
- range: 720
- 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]2024-11-06T09:25:53.669475072 .....
- standard_name :
- time
array(['2024-11-06T09:25:53.669475072', '2024-11-06T09:25:53.730586368', '2024-11-06T09:25:53.791697408', ..., '2024-11-06T09:25:53.486141440', '2024-11-06T09:25:53.547252736', '2024-11-06T09:25:53.608363776'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
[259200 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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]
<xarray.DatasetView> Size: 4MB Dimensions: (sweep: 10, azimuth: 360, range: 720) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2024-11-06T09:26:16.11947... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 longitude float64 8B ... latitude float64 8B ... altitude float64 8B ... * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 Dimensions without coordinates: sweep 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 ...sweep_1- sweep: 10
- azimuth: 360
- range: 720
- 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]2024-11-06T09:26:16.119474176 .....
- standard_name :
- time
array(['2024-11-06T09:26:16.119474176', '2024-11-06T09:26:16.180585472', '2024-11-06T09:26:16.241696512', ..., '2024-11-06T09:26:15.936140544', '2024-11-06T09:26:15.997251840', '2024-11-06T09:26:16.058362880'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
[259200 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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]
<xarray.DatasetView> Size: 4MB Dimensions: (sweep: 10, azimuth: 360, range: 720) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2024-11-06T09:26:38.56947... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 longitude float64 8B ... latitude float64 8B ... altitude float64 8B ... * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 Dimensions without coordinates: sweep 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 ...sweep_2- sweep: 10
- azimuth: 360
- range: 720
- 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]2024-11-06T09:26:38.569473280 .....
- standard_name :
- time
array(['2024-11-06T09:26:38.569473280', '2024-11-06T09:26:38.630584576', '2024-11-06T09:26:38.691695616', ..., '2024-11-06T09:26:38.386139648', '2024-11-06T09:26:38.447250944', '2024-11-06T09:26:38.508361984'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
[259200 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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]
<xarray.DatasetView> Size: 4MB Dimensions: (sweep: 10, azimuth: 360, range: 720) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2024-11-06T09:27:01.72913... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 longitude float64 8B ... latitude float64 8B ... altitude float64 8B ... * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 Dimensions without coordinates: sweep 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 ...sweep_3- sweep: 10
- azimuth: 360
- range: 720
- 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]2024-11-06T09:27:01.729138944 .....
- standard_name :
- time
array(['2024-11-06T09:27:01.729138944', '2024-11-06T09:27:01.793027584', '2024-11-06T09:27:01.856916480', ..., '2024-11-06T09:27:01.537472512', '2024-11-06T09:27:01.601361152', '2024-11-06T09:27:01.665250048'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
[259200 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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]
<xarray.DatasetView> Size: 4MB Dimensions: (sweep: 10, azimuth: 360, range: 720) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2024-11-06T09:27:24.15413... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 longitude float64 8B ... latitude float64 8B ... altitude float64 8B ... * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 Dimensions without coordinates: sweep 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 ...sweep_4- sweep: 10
- azimuth: 360
- range: 720
- 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]2024-11-06T09:27:24.154139648 .....
- standard_name :
- time
array(['2024-11-06T09:27:24.154139648', '2024-11-06T09:27:24.218028544', '2024-11-06T09:27:24.281917440', ..., '2024-11-06T09:27:23.962473472', '2024-11-06T09:27:24.026362112', '2024-11-06T09:27:24.090251008'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
[259200 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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]
<xarray.DatasetView> Size: 4MB Dimensions: (sweep: 10, azimuth: 360, range: 720) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2024-11-06T09:27:52.37497... * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 longitude float64 8B ... latitude float64 8B ... altitude float64 8B ... * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 Dimensions without coordinates: sweep 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 ...sweep_5- sweep: 10
- azimuth: 360
- range: 720
- 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]2024-11-06T09:27:52.374979840 .....
- standard_name :
- time
array(['2024-11-06T09:27:52.374979840', '2024-11-06T09:27:52.458312960', '2024-11-06T09:27:52.541646336', ..., '2024-11-06T09:27:52.124979968', '2024-11-06T09:27:52.208313344', '2024-11-06T09:27:52.291646464'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
[259200 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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]
<xarray.DatasetView> Size: 3MB Dimensions: (sweep: 10, azimuth: 360, range: 496) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2024-11-06T09:28:14.80556... * range (range) float32 2kB 125.0 375.0 ... 1.236e+05 1.239e+05 longitude float64 8B ... latitude float64 8B ... altitude float64 8B ... * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 Dimensions without coordinates: sweep 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 ...sweep_6- sweep: 10
- azimuth: 360
- range: 496
- 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]2024-11-06T09:28:14.805561600 .....
- standard_name :
- time
array(['2024-11-06T09:28:14.805561600', '2024-11-06T09:28:14.861117184', '2024-11-06T09:28:14.916672768', ..., '2024-11-06T09:28:14.638894848', '2024-11-06T09:28:14.694450432', '2024-11-06T09:28:14.750006016'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 1.236e+05 1.239e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 123375., 123625., 123875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
[178560 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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]
<xarray.DatasetView> Size: 1MB Dimensions: (sweep: 10, azimuth: 360, range: 240) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2024-11-06T09:28:30.51666... * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04 longitude float64 8B ... latitude float64 8B ... altitude float64 8B ... * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 Dimensions without coordinates: sweep 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 ...sweep_7- sweep: 10
- azimuth: 360
- range: 240
- 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]2024-11-06T09:28:30.516660480 .....
- standard_name :
- time
array(['2024-11-06T09:28:30.516660480', '2024-11-06T09:28:30.549993728', '2024-11-06T09:28:30.583326976', ..., '2024-11-06T09:28:30.416660480', '2024-11-06T09:28:30.449993728', '2024-11-06T09:28:30.483327232'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
[86400 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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]
<xarray.DatasetView> Size: 1MB Dimensions: (sweep: 10, azimuth: 360, range: 240) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2024-11-06T09:28:42.31666... * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04 longitude float64 8B ... latitude float64 8B ... altitude float64 8B ... * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 Dimensions without coordinates: sweep 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 ...sweep_8- sweep: 10
- azimuth: 360
- range: 240
- 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]2024-11-06T09:28:42.316661504 .....
- standard_name :
- time
array(['2024-11-06T09:28:42.316661504', '2024-11-06T09:28:42.349995008', '2024-11-06T09:28:42.383328256', ..., '2024-11-06T09:28:42.216661760', '2024-11-06T09:28:42.249995008', '2024-11-06T09:28:42.283328256'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
[86400 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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]
<xarray.DatasetView> Size: 1MB Dimensions: (sweep: 10, azimuth: 360, range: 240) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2024-11-06T09:28:53.81666... * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04 longitude float64 8B ... latitude float64 8B ... altitude float64 8B ... * azimuth (azimuth) float32 1kB 0.5 1.5 2.5 ... 357.5 358.5 359.5 Dimensions without coordinates: sweep 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 ...sweep_9- sweep: 10
- azimuth: 360
- range: 240
- 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]2024-11-06T09:28:53.816663040 .....
- standard_name :
- time
array(['2024-11-06T09:28:53.816663040', '2024-11-06T09:28:53.849996288', '2024-11-06T09:28:53.883329536', ..., '2024-11-06T09:28:53.716663040', '2024-11-06T09:28:53.749996544', '2024-11-06T09:28:53.783329792'], dtype='datetime64[ns]') - range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()float64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=float64]
- azimuth(azimuth)float320.5 1.5 2.5 ... 357.5 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.5, 1.5, 2.5, ..., 357.5, 358.5, 359.5], dtype=float32)
- DBZH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- dBZ
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
[86400 values with dtype=float64]
- VRADH(azimuth, range)float64...
- _Undetect :
- 65535.0
- units :
- meters per seconds
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_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]
<xarray.DatasetView> Size: 24B Dimensions: (sweep: 10) Coordinates: longitude float64 8B 6.967 latitude float64 8B 51.41 altitude float64 8B 185.1 Dimensions without coordinates: sweep Data variables: *empty*radar_parameters- sweep: 10
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
<xarray.DatasetView> Size: 24B Dimensions: (sweep: 10) Coordinates: longitude float64 8B 6.967 latitude float64 8B 51.41 altitude float64 8B 185.1 Dimensions without coordinates: sweep Data variables: *empty*georeferencing_correction- sweep: 10
- longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
<xarray.DatasetView> Size: 0B Dimensions: (sweep: 10) Dimensions without coordinates: sweep Data variables: *empty*radar_calibration- sweep: 10
- sweep: 10
- 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'2024-11-06T09:25:35Z'
array('2024-11-06T09:25:35Z', dtype='<U20') - time_coverage_end()<U20'2024-11-06T09:29:01Z'
array('2024-11-06T09:29:01Z', dtype='<U20') - longitude()float646.967
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(6.967111)
- altitude()float64185.1
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(185.11)
- latitude()float6451.41
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(51.405649)
- 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
[34]:
vol2 = xr.open_datatree("dwd_cfradial2.nc")
display(vol2)
<xarray.DatasetView> Size: 488B
Dimensions: (sweep: 10)
Coordinates:
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 ...
longitude float64 8B ...
altitude float64 8B ...
crs_wkt int64 8B ...
latitude float64 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<xarray.DatasetView> Size: 4MB Dimensions: (sweep: 10, time: 360, range: 720) Coordinates: * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 azimuth (time) float64 3kB ... elevation (time) float64 3kB ... * time (time) datetime64[ns] 3kB 2024-11-06T09:25:34.880000 .... sweep_mode <U20 80B ... Dimensions without coordinates: sweep 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 ...sweep_0- sweep: 10
- time: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2024-11-06T09:25:34.880000 ... 2...
- standard_name :
- time
array(['2024-11-06T09:25:34.880000000', '2024-11-06T09:25:34.943000064', '2024-11-06T09:25:35.004499968', ..., '2024-11-06T09:25:57.194000128', '2024-11-06T09:25:57.256499968', '2024-11-06T09:25:57.319000064'], dtype='datetime64[ns]') - sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[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...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[259200 values with dtype=float64]
<xarray.DatasetView> Size: 4MB Dimensions: (sweep: 10, time: 360, range: 720) Coordinates: * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 azimuth (time) float64 3kB ... elevation (time) float64 3kB ... * time (time) datetime64[ns] 3kB 2024-11-06T09:25:57.944000 .... sweep_mode <U20 80B ... Dimensions without coordinates: sweep 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 ...sweep_1- sweep: 10
- time: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2024-11-06T09:25:57.944000 ... 2...
- standard_name :
- time
array(['2024-11-06T09:25:57.944000000', '2024-11-06T09:25:58.006500096', '2024-11-06T09:25:58.068999936', ..., '2024-11-06T09:26:20.259000064', '2024-11-06T09:26:20.321499904', '2024-11-06T09:26:20.384499968'], dtype='datetime64[ns]') - sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[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...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[259200 values with dtype=float64]
<xarray.DatasetView> Size: 4MB Dimensions: (sweep: 10, time: 360, range: 720) Coordinates: * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 azimuth (time) float64 3kB ... elevation (time) float64 3kB ... * time (time) datetime64[ns] 3kB 2024-11-06T09:26:21.008000 .... sweep_mode <U20 80B ... Dimensions without coordinates: sweep 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 ...sweep_2- sweep: 10
- time: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2024-11-06T09:26:21.008000 ... 2...
- standard_name :
- time
array(['2024-11-06T09:26:21.008000000', '2024-11-06T09:26:21.070499840', '2024-11-06T09:26:21.133500160', ..., '2024-11-06T09:26:43.324000000', '2024-11-06T09:26:43.386000128', '2024-11-06T09:26:43.448000000'], dtype='datetime64[ns]') - sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[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...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[259200 values with dtype=float64]
<xarray.DatasetView> Size: 4MB Dimensions: (sweep: 10, time: 360, range: 720) Coordinates: * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 azimuth (time) float64 3kB ... elevation (time) float64 3kB ... * time (time) datetime64[ns] 3kB 2024-11-06T09:26:44.13500006... sweep_mode <U20 80B ... Dimensions without coordinates: sweep 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 ...sweep_3- sweep: 10
- time: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2024-11-06T09:26:44.135000064 .....
- standard_name :
- time
array(['2024-11-06T09:26:44.135000064', '2024-11-06T09:26:44.197499904', '2024-11-06T09:26:44.260499968', ..., '2024-11-06T09:27:06.450500096', '2024-11-06T09:27:06.513999872', '2024-11-06T09:27:06.575000064'], dtype='datetime64[ns]') - sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[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...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[259200 values with dtype=float64]
<xarray.DatasetView> Size: 4MB Dimensions: (sweep: 10, time: 360, range: 720) Coordinates: * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 azimuth (time) float64 3kB ... elevation (time) float64 3kB ... * time (time) datetime64[ns] 3kB 2024-11-06T09:27:07.19999974... sweep_mode <U20 80B ... Dimensions without coordinates: sweep 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 ...sweep_4- sweep: 10
- time: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2024-11-06T09:27:07.199999744 .....
- standard_name :
- time
array(['2024-11-06T09:27:07.199999744', '2024-11-06T09:27:07.262000128', '2024-11-06T09:27:07.324499968', ..., '2024-11-06T09:27:29.513999872', '2024-11-06T09:27:29.577000192', '2024-11-06T09:27:29.639999744'], dtype='datetime64[ns]') - sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[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...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[259200 values with dtype=float64]
<xarray.DatasetView> Size: 4MB Dimensions: (sweep: 10, time: 360, range: 720) Coordinates: * range (range) float32 3kB 125.0 375.0 ... 1.796e+05 1.799e+05 azimuth (time) float64 3kB ... elevation (time) float64 3kB ... * time (time) datetime64[ns] 3kB 2024-11-06T09:27:30.60150016... sweep_mode <U20 80B ... Dimensions without coordinates: sweep 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 ...sweep_5- sweep: 10
- time: 360
- range: 720
- range(range)float32125.0 375.0 ... 1.796e+05 1.799e+05
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([1.25000e+02, 3.75000e+02, 6.25000e+02, ..., 1.79375e+05, 1.79625e+05, 1.79875e+05], dtype=float32) - azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2024-11-06T09:27:30.601500160 .....
- standard_name :
- time
array(['2024-11-06T09:27:30.601500160', '2024-11-06T09:27:30.684999936', '2024-11-06T09:27:30.768000000', ..., '2024-11-06T09:28:00.354499840', '2024-11-06T09:28:00.438000128', '2024-11-06T09:28:00.521500160'], dtype='datetime64[ns]') - sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[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...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[259200 values with dtype=float64]
<xarray.DatasetView> Size: 3MB Dimensions: (sweep: 10, time: 360, range: 496) Coordinates: * range (range) float32 2kB 125.0 375.0 ... 1.236e+05 1.239e+05 azimuth (time) float64 3kB ... elevation (time) float64 3kB ... * time (time) datetime64[ns] 3kB 2024-11-06T09:28:02.18750003... sweep_mode <U20 80B ... Dimensions without coordinates: sweep 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 ...sweep_6- sweep: 10
- time: 360
- range: 496
- range(range)float32125.0 375.0 ... 1.236e+05 1.239e+05
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 123375., 123625., 123875.], dtype=float32) - azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2024-11-06T09:28:02.187500032 .....
- standard_name :
- time
array(['2024-11-06T09:28:02.187500032', '2024-11-06T09:28:02.241499904', '2024-11-06T09:28:02.297999872', ..., '2024-11-06T09:28:22.022500096', '2024-11-06T09:28:22.078000128', '2024-11-06T09:28:22.133500160'], dtype='datetime64[ns]') - sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[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...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[178560 values with dtype=float64]
<xarray.DatasetView> Size: 1MB Dimensions: (sweep: 10, time: 360, range: 240) Coordinates: * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04 azimuth (time) float64 3kB ... elevation (time) float64 3kB ... * time (time) datetime64[ns] 3kB 2024-11-06T09:28:23.59900006... sweep_mode <U20 80B ... Dimensions without coordinates: sweep 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_7- sweep: 10
- time: 360
- range: 240
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2024-11-06T09:28:23.599000064 .....
- standard_name :
- time
array(['2024-11-06T09:28:23.599000064', '2024-11-06T09:28:23.632000000', '2024-11-06T09:28:23.664999936', ..., '2024-11-06T09:28:35.499500032', '2024-11-06T09:28:35.533499904', '2024-11-06T09:28:35.566499840'], dtype='datetime64[ns]') - sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[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...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[86400 values with dtype=float64]
<xarray.DatasetView> Size: 1MB Dimensions: (sweep: 10, time: 360, range: 240) Coordinates: * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04 azimuth (time) float64 3kB ... elevation (time) float64 3kB ... * time (time) datetime64[ns] 3kB 2024-11-06T09:28:36.79950003... sweep_mode <U20 80B ... Dimensions without coordinates: sweep 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_8- sweep: 10
- time: 360
- range: 240
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2024-11-06T09:28:36.799500032 .....
- standard_name :
- time
array(['2024-11-06T09:28:36.799500032', '2024-11-06T09:28:36.832499968', '2024-11-06T09:28:36.865999872', ..., '2024-11-06T09:28:48.701499904', '2024-11-06T09:28:48.734499840', '2024-11-06T09:28:48.767500032'], dtype='datetime64[ns]') - sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[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...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[86400 values with dtype=float64]
<xarray.DatasetView> Size: 1MB Dimensions: (sweep: 10, time: 360, range: 240) Coordinates: * range (range) float32 960B 125.0 375.0 ... 5.962e+04 5.988e+04 azimuth (time) float64 3kB ... elevation (time) float64 3kB ... * time (time) datetime64[ns] 3kB 2024-11-06T09:28:50.30150016... sweep_mode <U20 80B ... Dimensions without coordinates: sweep 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_9- sweep: 10
- time: 360
- range: 240
- range(range)float32125.0 375.0 ... 5.962e+04 5.988e+04
- long_name :
- range_to_measurement_volume
- meters_between_gates :
- 250.0
- axis :
- radial_range_coordinate
- standard_name :
- projection_range_coordinate
- spacing_is_constant :
- true
- units :
- meters
- meters_to_center_of_first_gate :
- 125.0
array([ 125., 375., 625., ..., 59375., 59625., 59875.], dtype=float32)
- azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[360 values with dtype=float64]
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(time)datetime64[ns]2024-11-06T09:28:50.301500160 .....
- standard_name :
- time
array(['2024-11-06T09:28:50.301500160', '2024-11-06T09:28:50.334500096', '2024-11-06T09:28:50.368000000', ..., '2024-11-06T09:29:02.202500096', '2024-11-06T09:29:02.235500032', '2024-11-06T09:29:02.269499904'], dtype='datetime64[ns]') - sweep_mode()<U20...
[1 values with dtype=<U20]
- DBZH(time, range)float64...
- long_name :
- Equivalent reflectivity factor H
- standard_name :
- radar_equivalent_reflectivity_factor_h
- units :
- dBZ
- _Undetect :
- 0.0
[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...
- long_name :
- Radial velocity of scatterers away from instrument H
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- units :
- meters per seconds
- _Undetect :
- 0.0
[86400 values with dtype=float64]
- sweep: 10
- volume_time()datetime64[ns]...
[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]
- 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]
- crs_wkt()int64...
- crs_wkt :
- PROJCRS["unknown",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 :
- unknown
- 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]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- 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