Universal Format (UF)#
[1]:
import cmweather # noqa
import xarray as xr
from open_radar_data import DATASETS
import xradar as xd
Download#
Fetching Universal Format radar data file from open-radar-data repository.
[2]:
import atexit
from pathlib import Path
from tempfile import TemporaryDirectory
tmpdir_obj = TemporaryDirectory()
atexit.register(tmpdir_obj.cleanup) # remove even if you forget
tmpdir = Path(tmpdir_obj.name)
def get_temp_file(fname):
import gzip
import shutil
fnamei = Path(DATASETS.fetch(fname))
fnameo = tmpdir / fnamei.stem
with gzip.open(fnamei) as fin:
with open(fnameo, "wb") as fout:
shutil.copyfileobj(fin, fout)
return fnameo
fname = get_temp_file("20110427_164233_rvp8-rel_v001_SUR.uf.gz")
Downloading file '20110427_164233_rvp8-rel_v001_SUR.uf.gz' from 'https://github.com/openradar/open-radar-data/raw/main/data/20110427_164233_rvp8-rel_v001_SUR.uf.gz' to '/home/docs/.cache/open-radar-data'.
xr.open_dataset#
Making use of the xarray uf backend. We also need to provide the group. Note, that we are using CfRadial2 group access pattern.
[3]:
ds = xr.open_dataset(fname, group="sweep_0", engine="uf")
display(ds)
<xarray.Dataset> Size: 23MB
Dimensions: (azimuth: 318, range: 997)
Coordinates:
* azimuth (azimuth) float64 3kB 22.88 23.88 24.91 ... 338.9 339.9
elevation (azimuth) float64 3kB ...
* range (range) float32 4kB -436.5 -311.5 ... 1.239e+05 1.241e+05
time (azimuth) datetime64[us] 3kB ...
longitude float64 8B ...
latitude float64 8B ...
altitude int64 8B ...
Data variables: (12/14)
DBZH (azimuth, range) float64 3MB ...
DBTH (azimuth, range) float64 3MB ...
VRADH (azimuth, range) float64 3MB ...
WRADH (azimuth, range) float64 3MB ...
ZDR (azimuth, range) float64 3MB ...
KDP (azimuth, range) float64 3MB ...
... ...
RHOHV (azimuth, range) float64 3MB ...
sweep_mode <U20 80B ...
sweep_number int64 8B ...
prt_mode <U7 28B ...
follow_mode <U7 28B ...
sweep_fixed_angle float64 8B ...
Attributes:
source: Sigmet/UF
site_name: MAX
instrument_name: rvp8-rel
comment: Sigmet Ixarray.Dataset
- azimuth: 318
- range: 997
- azimuth(azimuth)float6422.88 23.88 24.91 ... 338.9 339.9
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 22.875 , 23.875 , 24.90625, ..., 337.875 , 338.90625, 339.875 ], shape=(318,)) - elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[318 values with dtype=float64]
- range(range)float32-436.5 -311.5 ... 1.241e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 125.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- -436.5
array([ -436.5, -311.5, -186.5, ..., 123813.5, 123938.5, 124063.5], shape=(997,), dtype=float32) - time(azimuth)datetime64[us]...
- units :
- microseconds since 2011-04-27T16:42:33Z
- standard_name :
- time
[318 values with dtype=datetime64[us]]
- 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()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[317046 values with dtype=float64]
- DBTH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Total power H (uncorrected reflectivity)
- units :
- dBZ
[317046 values with dtype=float64]
- VRADH(azimuth, range)float64...
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
[317046 values with dtype=float64]
- WRADH(azimuth, range)float64...
- standard_name :
- radar_doppler_spectrum_width_h
- long_name :
- Doppler spectrum width H
- units :
- meters per seconds
[317046 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[317046 values with dtype=float64]
- KDP(azimuth, range)float64...
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Specific differential phase HV
- units :
- degrees per kilometer
[317046 values with dtype=float64]
- UPHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[317046 values with dtype=float64]
- SQIH(azimuth, range)float64...
- standard_name :
- signal_quality_index_h
- long_name :
- Signal Quality H
- units :
- unitless
[317046 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[317046 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]
- azimuthPandasIndex
PandasIndex(Index([ 22.875, 23.875, 24.90625, 25.875, 26.90625, 27.875, 28.90625, 29.875, 30.859375, 31.875, ... 330.90625, 331.890625, 332.859375, 333.875, 334.828125, 335.859375, 336.875, 337.875, 338.90625, 339.875], dtype='float64', name='azimuth', length=318)) - rangePandasIndex
PandasIndex(Index([ -436.5, -311.5, -186.5, -61.5, 63.5, 188.5, 313.5, 438.5, 563.5, 688.5, ... 122938.5, 123063.5, 123188.5, 123313.5, 123438.5, 123563.5, 123688.5, 123813.5, 123938.5, 124063.5], dtype='float32', name='range', length=997))
- source :
- Sigmet/UF
- site_name :
- MAX
- instrument_name :
- rvp8-rel
- comment :
- Sigmet I
[4]:
import numpy as np
np.testing.assert_almost_equal(ds.sweep_fixed_angle.values, 0.703125)
Plot Time vs. Azimuth#
[5]:
ds.azimuth.plot()
[5]:
[<matplotlib.lines.Line2D at 0x75189b5eccd0>]
Plot Range vs. Time#
We need to sort by time and specify the y-coordinate.
[6]:
ds.DBZH.sortby("time").plot(y="time", cmap="HomeyerRainbow")
[6]:
<matplotlib.collections.QuadMesh at 0x75189b4101a0>
Plot Range vs. Azimuth#
[7]:
ds.DBZH.plot(cmap="HomeyerRainbow")
[7]:
<matplotlib.collections.QuadMesh at 0x75189b369450>
backend_kwargs#
Beside first_dim there are several additional backend_kwargs for the uf backend, which handle different aspects of angle alignment. This comes into play, when azimuth and/or elevation arrays are not evenly spacend and other issues.
[8]:
help(xd.io.UFBackendEntrypoint)
Help on class UFBackendEntrypoint in module xradar.io.backends.uf:
class UFBackendEntrypoint(xarray.backends.common.BackendEntrypoint)
| Xarray BackendEntrypoint for Universal Format (UF) data.
|
| Method resolution order:
| UFBackendEntrypoint
| xarray.backends.common.BackendEntrypoint
| builtins.object
|
| Methods defined here:
|
| open_dataset(
| self,
| filename_or_obj,
| *,
| mask_and_scale=True,
| decode_times=True,
| concat_characters=True,
| decode_coords=True,
| drop_variables=None,
| use_cftime=None,
| decode_timedelta=None,
| group=None,
| lock=None,
| first_dim='auto',
| reindex_angle=False,
| fix_second_angle=False,
| site_coords=True,
| optional=True
| )
| Backend open_dataset method used by Xarray in :py:func:`~xarray.open_dataset`.
|
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| __annotations__ = {}
|
| description = 'Open Universal Format (UF) files in Xarray'
|
| open_dataset_parameters = ('filename_or_obj', 'mask_and_scale', 'decod...
|
| url = 'https://xradar.rtfd.io/latest/io.html#uf-data-i-o'
|
| ----------------------------------------------------------------------
| Methods inherited from xarray.backends.common.BackendEntrypoint:
|
| __repr__(self) -> 'str'
| Return repr(self).
|
| guess_can_open(
| self,
| filename_or_obj: 'str | os.PathLike[Any] | ReadBuffer | AbstractDataStore'
| ) -> 'bool'
| Backend open_dataset method used by Xarray in :py:func:`~xarray.open_dataset`.
|
| open_datatree(
| self,
| filename_or_obj: 'str | os.PathLike[Any] | ReadBuffer | AbstractDataStore',
| *,
| drop_variables: 'str | Iterable[str] | None' = None
| ) -> 'DataTree'
| Backend open_datatree method used by Xarray in :py:func:`~xarray.open_datatree`.
|
| open_groups_as_dict(
| self,
| filename_or_obj: 'str | os.PathLike[Any] | ReadBuffer | AbstractDataStore',
| *,
| drop_variables: 'str | Iterable[str] | None' = None
| ) -> 'dict[str, Dataset]'
| Opens a dictionary mapping from group names to Datasets.
|
| Called by :py:func:`~xarray.open_groups`.
| This function exists to provide a universal way to open all groups in a file,
| before applying any additional consistency checks or requirements necessary
| to create a `DataTree` object (typically done using :py:meth:`~xarray.DataTree.from_dict`).
|
| ----------------------------------------------------------------------
| Data descriptors inherited from xarray.backends.common.BackendEntrypoint:
|
| __dict__
| dictionary for instance variables
|
| __weakref__
| list of weak references to the object
[9]:
ds = xr.open_dataset(fname, group="sweep_0", engine="uf", first_dim="time")
display(ds)
<xarray.Dataset> Size: 23MB
Dimensions: (time: 318, range: 997)
Coordinates:
azimuth (time) float64 3kB ...
elevation (time) float64 3kB ...
* range (range) float32 4kB -436.5 -311.5 ... 1.239e+05 1.241e+05
* time (time) datetime64[us] 3kB 2011-04-27T16:42:32.749970 ....
longitude float64 8B ...
latitude float64 8B ...
altitude int64 8B ...
Data variables: (12/14)
DBZH (time, range) float64 3MB ...
DBTH (time, range) float64 3MB ...
VRADH (time, range) float64 3MB ...
WRADH (time, range) float64 3MB ...
ZDR (time, range) float64 3MB ...
KDP (time, range) float64 3MB ...
... ...
RHOHV (time, range) float64 3MB ...
sweep_mode <U20 80B ...
sweep_number int64 8B ...
prt_mode <U7 28B ...
follow_mode <U7 28B ...
sweep_fixed_angle float64 8B ...
Attributes:
source: Sigmet/UF
site_name: MAX
instrument_name: rvp8-rel
comment: Sigmet Ixarray.Dataset
- time: 318
- range: 997
- azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[318 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
[318 values with dtype=float64]
- range(range)float32-436.5 -311.5 ... 1.241e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 125.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- -436.5
array([ -436.5, -311.5, -186.5, ..., 123813.5, 123938.5, 124063.5], shape=(997,), dtype=float32) - time(time)datetime64[us]2011-04-27T16:42:32.749970 ... 2...
- units :
- microseconds since 2011-04-27T16:42:33Z
- standard_name :
- time
array(['2011-04-27T16:42:32.749970', '2011-04-27T16:42:32.751862', '2011-04-27T16:42:32.753876', ..., '2011-04-27T16:42:33.365142', '2011-04-27T16:42:33.367156', '2011-04-27T16:42:33.369110'], shape=(318,), dtype='datetime64[us]') - 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()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- DBZH(time, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[317046 values with dtype=float64]
- DBTH(time, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Total power H (uncorrected reflectivity)
- units :
- dBZ
[317046 values with dtype=float64]
- VRADH(time, range)float64...
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
[317046 values with dtype=float64]
- WRADH(time, range)float64...
- standard_name :
- radar_doppler_spectrum_width_h
- long_name :
- Doppler spectrum width H
- units :
- meters per seconds
[317046 values with dtype=float64]
- ZDR(time, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[317046 values with dtype=float64]
- KDP(time, range)float64...
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Specific differential phase HV
- units :
- degrees per kilometer
[317046 values with dtype=float64]
- UPHIDP(time, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[317046 values with dtype=float64]
- SQIH(time, range)float64...
- standard_name :
- signal_quality_index_h
- long_name :
- Signal Quality H
- units :
- unitless
[317046 values with dtype=float64]
- RHOHV(time, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[317046 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]
- rangePandasIndex
PandasIndex(Index([ -436.5, -311.5, -186.5, -61.5, 63.5, 188.5, 313.5, 438.5, 563.5, 688.5, ... 122938.5, 123063.5, 123188.5, 123313.5, 123438.5, 123563.5, 123688.5, 123813.5, 123938.5, 124063.5], dtype='float32', name='range', length=997)) - timePandasIndex
PandasIndex(DatetimeIndex(['2011-04-27 16:42:32.749970', '2011-04-27 16:42:32.751862', '2011-04-27 16:42:32.753876', '2011-04-27 16:42:32.755829', '2011-04-27 16:42:32.757813', '2011-04-27 16:42:32.759827', '2011-04-27 16:42:32.761689', '2011-04-27 16:42:32.763672', '2011-04-27 16:42:32.765564', '2011-04-27 16:42:32.767487', ... '2011-04-27 16:42:33.351531', '2011-04-27 16:42:33.353515', '2011-04-27 16:42:33.355438', '2011-04-27 16:42:33.357330', '2011-04-27 16:42:33.359344', '2011-04-27 16:42:33.361236', '2011-04-27 16:42:33.363250', '2011-04-27 16:42:33.365142', '2011-04-27 16:42:33.367156', '2011-04-27 16:42:33.369110'], dtype='datetime64[us]', name='time', length=318, freq=None))
- source :
- Sigmet/UF
- site_name :
- MAX
- instrument_name :
- rvp8-rel
- comment :
- Sigmet I
open_uf_datatree#
The same works analoguous with the datatree loader. But additionally we can provide a sweep string, number or list.
[10]:
help(xd.io.open_uf_datatree)
Help on function open_uf_datatree in module xradar.io.backends.uf:
open_uf_datatree(
filename_or_obj,
mask_and_scale=True,
decode_times=True,
concat_characters=True,
decode_coords=True,
drop_variables=None,
use_cftime=None,
decode_timedelta=None,
sweep=None,
first_dim='auto',
reindex_angle=False,
fix_second_angle=False,
site_coords=True,
optional=True,
lock=None,
**kwargs
)
Open a Universal Format (UF) dataset as :py:class:`xarray.DataTree`.
This function loads UF radar data into a DataTree structure, which
organizes radar sweeps as separate nodes. Provides options for decoding time
and applying various transformations to the data.
Parameters
----------
filename_or_obj : str, Path, file-like, or DataStore
The path or file-like object representing the radar file.
Path-like objects are interpreted as local or remote paths.
mask_and_scale : bool, optional
If True, replaces values in the dataset that match `_FillValue` with NaN
and applies scale and offset adjustments. Default is True.
decode_times : bool, optional
If True, decodes time variables according to CF conventions. Default is True.
concat_characters : bool, optional
If True, concatenates character arrays along the last dimension, forming
string arrays. Default is True.
decode_coords : bool, optional
If True, decodes the "coordinates" attribute to identify coordinates in the
resulting dataset. Default is True.
drop_variables : str or list of str, optional
Specifies variables to exclude from the dataset. Useful for removing problematic
or inconsistent variables. Default is None.
use_cftime : bool, optional
If True, uses cftime objects to represent time variables; if False, uses
`np.datetime64` objects. If None, chooses the best format automatically.
Default is None.
decode_timedelta : bool, optional
If True, decodes variables with units of time (e.g., seconds, minutes) into
timedelta objects. If False, leaves them as numeric values. Default is None.
sweep : int or list of int, optional
Sweep numbers to extract from the dataset. If None, extracts all sweeps into
a list. Default is the first sweep.
first_dim : {"time", "auto"}, optional
Defines the first dimension for each sweep. If "time," uses time as the
first dimension. If "auto," determines the first dimension based on the sweep
type (azimuth or elevation). Default is "auto."
reindex_angle : bool or dict, optional
Controls angle reindexing. If True or a dictionary, applies reindexing with
specified settings (if given). Only used if `decode_coords=True`. Default is False.
fix_second_angle : bool, optional
If True, corrects errors in the second angle data, such as misaligned
elevation or azimuth values. Default is False.
site_coords : bool, optional
Attaches radar site coordinates to the dataset if True. Default is True.
optional : bool, optional
If True, suppresses errors for optional dataset attributes, making them
optional instead of required. Default is True.
kwargs : dict
Additional keyword arguments passed to `xarray.open_dataset`.
Returns
-------
dtree : xarray.DataTree
An `xarray.DataTree` representing the radar data organized by sweeps.
[11]:
dtree = xd.io.open_uf_datatree(fname, sweep=4)
display(dtree)
<xarray.DatasetView> Size: 232B
Dimensions: ()
Data variables:
volume_number int64 8B 0
platform_type <U5 20B 'fixed'
instrument_type <U5 20B 'radar'
time_coverage_start <U20 80B '2011-04-27T16:43:51Z'
time_coverage_end <U20 80B '2011-04-27T16:43:52Z'
longitude float64 8B -86.47
altitude int64 8B 226
latitude float64 8B 34.93
Attributes:
Conventions: None
instrument_name: rvp8-rel
version: None
title: None
institution: None
references: None
source: Sigmet/UF
history: None
comment: Sigmet I
site_name: MAXxarray.DataTree
<xarray.DatasetView> Size: 23MB Dimensions: (azimuth: 318, range: 997) Coordinates: * azimuth (azimuth) float64 3kB 22.86 23.86 24.88 ... 338.9 339.9 elevation (azimuth) float64 3kB 3.688 3.766 3.812 ... 3.891 3.859 range (range) float32 4kB -436.5 -311.5 ... 1.239e+05 1.241e+05 time (azimuth) datetime64[us] 3kB 2011-04-27T16:43:52 ... 2... longitude float64 8B -86.47 latitude float64 8B 34.93 altitude int64 8B 226 Data variables: (12/14) DBZH (azimuth, range) float64 3MB ... DBTH (azimuth, range) float64 3MB ... VRADH (azimuth, range) float64 3MB ... WRADH (azimuth, range) float64 3MB ... ZDR (azimuth, range) float64 3MB ... KDP (azimuth, range) float64 3MB ... ... ... RHOHV (azimuth, range) float64 3MB ... sweep_mode <U20 80B 'azimuth_surveillance' sweep_number int64 8B 4 prt_mode <U7 28B 'not_set' follow_mode <U7 28B 'not_set' sweep_fixed_angle float64 8B 3.797sweep_4- azimuth: 318
- range: 997
- azimuth(azimuth)float6422.86 23.86 24.88 ... 338.9 339.9
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 22.859375, 23.859375, 24.875 , ..., 337.875 , 338.859375, 339.859375], shape=(318,)) - elevation(azimuth)float643.688 3.766 3.812 ... 3.891 3.859
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([3.6875 , 3.765625, 3.8125 , 3.859375, 3.875 , 3.875 , 3.859375, 3.84375 , 3.84375 , 3.84375 , 3.84375 , 3.8125 , 3.78125 , 3.75 , 3.703125, 3.703125, 3.703125, 3.71875 , 3.71875 , 3.671875, 3.625 , 3.578125, 3.546875, 3.5 , 3.5 , 3.53125 , 3.515625, 3.53125 , 3.515625, 3.5 , 3.484375, 3.453125, 3.453125, 3.4375 , 3.4375 , 3.4375 , 3.421875, 3.40625 , 3.359375, 3.34375 , 3.328125, 3.328125, 3.328125, 3.390625, 3.4375 , 3.5 , 3.5625 , 3.640625, 3.703125, 3.78125 , 3.828125, 3.90625 , 3.953125, 4. , 3.96875 , 3.9375 , 3.90625 , 3.875 , 3.859375, 3.84375 , 3.828125, 3.828125, 3.78125 , 3.75 , 3.734375, 3.71875 , 3.6875 , 3.671875, 3.640625, 3.640625, 3.640625, 3.625 , 3.625 , 3.609375, 3.578125, 3.5625 , 3.546875, 3.53125 , 3.53125 , 3.515625, 3.484375, 3.46875 , 3.46875 , 3.484375, 3.5 , 3.5 , 3.5 , 3.484375, 3.46875 , 3.4375 , 3.453125, 3.453125, 3.4375 , 3.40625 , 3.390625, 3.359375, 3.34375 , 3.328125, 3.328125, 3.328125, 3.375 , 3.421875, 3.515625, 3.625 , 3.671875, 3.71875 , 3.78125 , 3.8125 , 3.84375 , 3.859375, 3.859375, 3.859375, 3.859375, 3.859375, 3.875 , 3.875 , 3.84375 , 3.828125, 3.796875, 3.78125 , ... 3.4375 , 3.4375 , 3.421875, 3.40625 , 3.375 , 3.34375 , 3.328125, 3.3125 , 3.296875, 3.328125, 3.34375 , 3.40625 , 3.5 , 3.578125, 3.625 , 3.71875 , 3.78125 , 3.84375 , 3.875 , 3.890625, 3.890625, 3.921875, 3.859375, 3.84375 , 3.84375 , 3.84375 , 3.84375 , 3.828125, 3.796875, 3.78125 , 3.75 , 3.734375, 3.71875 , 3.6875 , 3.671875, 3.65625 , 3.640625, 3.625 , 3.609375, 3.59375 , 3.59375 , 3.59375 , 3.578125, 3.546875, 3.546875, 3.546875, 3.53125 , 3.515625, 3.5 , 3.46875 , 3.453125, 3.4375 , 3.421875, 3.40625 , 3.375 , 3.34375 , 3.34375 , 3.34375 , 3.390625, 3.4375 , 3.5 , 3.515625, 3.59375 , 3.640625, 3.71875 , 3.75 , 3.828125, 3.84375 , 3.875 , 3.84375 , 3.875 , 3.828125, 3.828125, 3.8125 , 3.78125 , 3.765625, 3.75 , 3.734375, 3.703125, 3.671875, 3.65625 , 3.640625, 3.625 , 3.59375 , 3.5625 , 3.546875, 3.546875, 3.515625, 3.515625, 3.515625, 3.53125 , 3.5 , 3.46875 , 3.4375 , 3.40625 , 3.40625 , 3.390625, 3.375 , 3.359375, 3.34375 , 3.328125, 3.328125, 3.3125 , 3.375 , 3.421875, 3.484375, 3.546875, 3.59375 , 3.625 , 3.671875, 3.734375, 3.78125 , 3.828125, 3.859375, 3.859375, 3.84375 , 3.875 , 3.90625 , 3.890625, 3.859375]) - range(range)float32-436.5 -311.5 ... 1.241e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 125.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- -436.5
array([-4.365000e+02, -3.115000e+02, -1.865000e+02, -6.150000e+01, 6.350000e+01, 1.885000e+02, 3.135000e+02, 4.385000e+02, 5.635000e+02, 6.885000e+02, 8.135000e+02, 9.385000e+02, 1.063500e+03, 1.188500e+03, 1.313500e+03, 1.438500e+03, 1.563500e+03, 1.688500e+03, 1.813500e+03, 1.938500e+03, 2.063500e+03, 2.188500e+03, 2.313500e+03, 2.438500e+03, 2.563500e+03, 2.688500e+03, 2.813500e+03, 2.938500e+03, 3.063500e+03, 3.188500e+03, 3.313500e+03, 3.438500e+03, 3.563500e+03, 3.688500e+03, 3.813500e+03, 3.938500e+03, 4.063500e+03, 4.188500e+03, 4.313500e+03, 4.438500e+03, 4.563500e+03, 4.688500e+03, 4.813500e+03, 4.938500e+03, 5.063500e+03, 5.188500e+03, 5.313500e+03, 5.438500e+03, 5.563500e+03, 5.688500e+03, 5.813500e+03, 5.938500e+03, 6.063500e+03, 6.188500e+03, 6.313500e+03, 6.438500e+03, 6.563500e+03, 6.688500e+03, 6.813500e+03, 6.938500e+03, 7.063500e+03, 7.188500e+03, 7.313500e+03, 7.438500e+03, 7.563500e+03, 7.688500e+03, 7.813500e+03, 7.938500e+03, 8.063500e+03, 8.188500e+03, 8.313500e+03, 8.438500e+03, 8.563500e+03, 8.688500e+03, 8.813500e+03, 8.938500e+03, 9.063500e+03, 9.188500e+03, 9.313500e+03, 9.438500e+03, ... 1.145635e+05, 1.146885e+05, 1.148135e+05, 1.149385e+05, 1.150635e+05, 1.151885e+05, 1.153135e+05, 1.154385e+05, 1.155635e+05, 1.156885e+05, 1.158135e+05, 1.159385e+05, 1.160635e+05, 1.161885e+05, 1.163135e+05, 1.164385e+05, 1.165635e+05, 1.166885e+05, 1.168135e+05, 1.169385e+05, 1.170635e+05, 1.171885e+05, 1.173135e+05, 1.174385e+05, 1.175635e+05, 1.176885e+05, 1.178135e+05, 1.179385e+05, 1.180635e+05, 1.181885e+05, 1.183135e+05, 1.184385e+05, 1.185635e+05, 1.186885e+05, 1.188135e+05, 1.189385e+05, 1.190635e+05, 1.191885e+05, 1.193135e+05, 1.194385e+05, 1.195635e+05, 1.196885e+05, 1.198135e+05, 1.199385e+05, 1.200635e+05, 1.201885e+05, 1.203135e+05, 1.204385e+05, 1.205635e+05, 1.206885e+05, 1.208135e+05, 1.209385e+05, 1.210635e+05, 1.211885e+05, 1.213135e+05, 1.214385e+05, 1.215635e+05, 1.216885e+05, 1.218135e+05, 1.219385e+05, 1.220635e+05, 1.221885e+05, 1.223135e+05, 1.224385e+05, 1.225635e+05, 1.226885e+05, 1.228135e+05, 1.229385e+05, 1.230635e+05, 1.231885e+05, 1.233135e+05, 1.234385e+05, 1.235635e+05, 1.236885e+05, 1.238135e+05, 1.239385e+05, 1.240635e+05], dtype=float32) - time(azimuth)datetime64[us]2011-04-27T16:43:52 ... 2011-04-...
- units :
- microseconds since 2011-04-27T16:43:52Z
- standard_name :
- time
array(['2011-04-27T16:43:52.000000', '2011-04-27T16:43:51.998047', '2011-04-27T16:43:51.996064', '2011-04-27T16:43:51.994111', '2011-04-27T16:43:51.992127', '2011-04-27T16:43:51.990204', '2011-04-27T16:43:51.988160', '2011-04-27T16:43:51.986298', '2011-04-27T16:43:51.984406', '2011-04-27T16:43:51.982483', '2011-04-27T16:43:51.980439', '2011-04-27T16:43:51.978547', '2011-04-27T16:43:51.976532', '2011-04-27T16:43:51.974579', '2011-04-27T16:43:51.972626', '2011-04-27T16:43:51.970734', '2011-04-27T16:43:51.968750', '2011-04-27T16:43:51.966828', '2011-04-27T16:43:51.964875', '2011-04-27T16:43:51.962800', '2011-04-27T16:43:51.960907', '2011-04-27T16:43:51.958893', '2011-04-27T16:43:51.956910', '2011-04-27T16:43:51.955048', '2011-04-27T16:43:51.953156', '2011-04-27T16:43:51.951264', '2011-04-27T16:43:51.949341', '2011-04-27T16:43:51.947266', '2011-04-27T16:43:51.945313', '2011-04-27T16:43:51.943360', '2011-04-27T16:43:51.941407', '2011-04-27T16:43:51.939454', '2011-04-27T16:43:51.937500', '2011-04-27T16:43:51.935547', '2011-04-27T16:43:51.933625', '2011-04-27T16:43:51.931641', '2011-04-27T16:43:51.929627', '2011-04-27T16:43:51.927674', '2011-04-27T16:43:51.925751', '2011-04-27T16:43:51.923798', ... '2011-04-27T16:43:51.453156', '2011-04-27T16:43:51.451203', '2011-04-27T16:43:51.449219', '2011-04-27T16:43:51.447266', '2011-04-27T16:43:51.445374', '2011-04-27T16:43:51.443421', '2011-04-27T16:43:51.441407', '2011-04-27T16:43:51.439484', '2011-04-27T16:43:51.437500', '2011-04-27T16:43:51.435456', '2011-04-27T16:43:51.433594', '2011-04-27T16:43:51.431580', '2011-04-27T16:43:51.429688', '2011-04-27T16:43:51.427704', '2011-04-27T16:43:51.425751', '2011-04-27T16:43:51.423798', '2011-04-27T16:43:51.421845', '2011-04-27T16:43:51.419892', '2011-04-27T16:43:51.417908', '2011-04-27T16:43:51.415925', '2011-04-27T16:43:51.413941', '2011-04-27T16:43:51.412079', '2011-04-27T16:43:51.410096', '2011-04-27T16:43:51.408173', '2011-04-27T16:43:51.406189', '2011-04-27T16:43:51.404236', '2011-04-27T16:43:51.402283', '2011-04-27T16:43:51.400361', '2011-04-27T16:43:51.398407', '2011-04-27T16:43:51.396424', '2011-04-27T16:43:51.394532', '2011-04-27T16:43:51.392548', '2011-04-27T16:43:51.390656', '2011-04-27T16:43:51.388672', '2011-04-27T16:43:51.386719', '2011-04-27T16:43:51.384736', '2011-04-27T16:43:51.382813', '2011-04-27T16:43:51.380860'], dtype='datetime64[us]') - longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[317046 values with dtype=float64]
- DBTH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Total power H (uncorrected reflectivity)
- units :
- dBZ
[317046 values with dtype=float64]
- VRADH(azimuth, range)float64...
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
[317046 values with dtype=float64]
- WRADH(azimuth, range)float64...
- standard_name :
- radar_doppler_spectrum_width_h
- long_name :
- Doppler spectrum width H
- units :
- meters per seconds
[317046 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[317046 values with dtype=float64]
- KDP(azimuth, range)float64...
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Specific differential phase HV
- units :
- degrees per kilometer
[317046 values with dtype=float64]
- UPHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[317046 values with dtype=float64]
- SQIH(azimuth, range)float64...
- standard_name :
- signal_quality_index_h
- long_name :
- Signal Quality H
- units :
- unitless
[317046 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[317046 values with dtype=float64]
- sweep_mode()<U20'azimuth_surveillance'
array('azimuth_surveillance', dtype='<U20') - sweep_number()int644
array(4)
- prt_mode()<U7'not_set'
array('not_set', dtype='<U7') - follow_mode()<U7'not_set'
array('not_set', dtype='<U7') - sweep_fixed_angle()float643.797
array(3.796875)
<xarray.DatasetView> Size: 24B Dimensions: () Coordinates: longitude float64 8B -86.47 latitude float64 8B 34.93 altitude int64 8B 226 Data variables: *empty*radar_parameters- longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
<xarray.DatasetView> Size: 24B Dimensions: () Coordinates: longitude float64 8B -86.47 latitude float64 8B 34.93 altitude int64 8B 226 Data variables: *empty*georeferencing_correction- longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
<xarray.DatasetView> Size: 0B Dimensions: () Data variables: *empty*radar_calibration- 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'2011-04-27T16:43:51Z'
array('2011-04-27T16:43:51Z', dtype='<U20') - time_coverage_end()<U20'2011-04-27T16:43:52Z'
array('2011-04-27T16:43:52Z', dtype='<U20') - longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- Conventions :
- None
- instrument_name :
- rvp8-rel
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- Sigmet/UF
- history :
- None
- comment :
- Sigmet I
- site_name :
- MAX
Plot Sweep Range vs. Time#
[12]:
dtree["sweep_4"].ds.DBZH.sortby("time").plot(y="time", cmap="HomeyerRainbow")
[12]:
<matplotlib.collections.QuadMesh at 0x751893187ed0>
Plot Sweep Range vs. Azimuth#
[13]:
dtree["sweep_4"].ds.DBZH.plot(cmap="HomeyerRainbow")
[13]:
<matplotlib.collections.QuadMesh at 0x75188094d090>
[14]:
dtree = xd.io.open_uf_datatree(fname, sweep="sweep_8")
display(dtree)
<xarray.DatasetView> Size: 232B
Dimensions: ()
Data variables:
volume_number int64 8B 0
platform_type <U5 20B 'fixed'
instrument_type <U5 20B 'radar'
time_coverage_start <U20 80B '2011-04-27T16:45:10Z'
time_coverage_end <U20 80B '2011-04-27T16:45:11Z'
longitude float64 8B -86.47
altitude int64 8B 226
latitude float64 8B 34.93
Attributes:
Conventions: None
instrument_name: rvp8-rel
version: None
title: None
institution: None
references: None
source: Sigmet/UF
history: None
comment: Sigmet I
site_name: MAXxarray.DataTree
<xarray.DatasetView> Size: 22MB Dimensions: (azimuth: 329, range: 919) Coordinates: * azimuth (azimuth) float64 3kB 0.875 1.875 21.88 ... 358.9 359.9 elevation (azimuth) float64 3kB 10.09 10.05 9.688 ... 10.14 10.12 range (range) float32 4kB -436.5 -311.5 ... 1.142e+05 1.143e+05 time (azimuth) datetime64[us] 3kB 2011-04-27T16:45:11.34954... longitude float64 8B -86.47 latitude float64 8B 34.93 altitude int64 8B 226 Data variables: (12/14) DBZH (azimuth, range) float64 2MB ... DBTH (azimuth, range) float64 2MB ... VRADH (azimuth, range) float64 2MB ... WRADH (azimuth, range) float64 2MB ... ZDR (azimuth, range) float64 2MB ... KDP (azimuth, range) float64 2MB ... ... ... RHOHV (azimuth, range) float64 2MB ... sweep_mode <U20 80B 'azimuth_surveillance' sweep_number int64 8B 8 prt_mode <U7 28B 'not_set' follow_mode <U7 28B 'not_set' sweep_fixed_angle float64 8B 10.0sweep_8- azimuth: 329
- range: 919
- azimuth(azimuth)float640.875 1.875 21.88 ... 358.9 359.9
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.875 , 1.875 , 21.875 , ..., 357.859375, 358.859375, 359.859375], shape=(329,)) - elevation(azimuth)float6410.09 10.05 9.688 ... 10.14 10.12
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([10.09375 , 10.046875, 9.6875 , 9.671875, 9.640625, 9.609375, 9.578125, 9.5625 , 9.546875, 9.546875, 9.53125 , 9.546875, 9.53125 , 9.546875, 9.578125, 9.671875, 9.78125 , 9.859375, 9.9375 , 9.984375, 10.03125 , 10.03125 , 10.078125, 10.0625 , 10.078125, 10.0625 , 10.03125 , 10.046875, 10.046875, 10.03125 , 10.03125 , 10.015625, 9.984375, 9.953125, 9.953125, 9.953125, 9.953125, 9.921875, 9.890625, 9.859375, 9.890625, 9.90625 , 9.90625 , 9.921875, 9.875 , 9.828125, 9.796875, 9.78125 , 9.765625, 9.75 , 9.734375, 9.734375, 9.75 , 9.75 , 9.765625, 9.734375, 9.71875 , 9.6875 , 9.640625, 9.609375, 9.59375 , 9.59375 , 9.578125, 9.578125, 9.578125, 9.578125, 9.59375 , 9.5625 , 9.5625 , 9.53125 , 9.515625, 9.515625, 9.546875, 9.65625 , 9.734375, 9.828125, 9.875 , 9.984375, 10.03125 , 10.078125, 10.109375, 10.15625 , 10.15625 , 10.140625, 10.109375, 10.0625 , 10.0625 , 10.078125, 10.078125, 10.078125, 10.078125, 10.0625 , 10.03125 , 10.015625, 9.984375, 9.96875 , 9.9375 , 9.921875, 9.90625 , 9.921875, 9.9375 , 9.921875, 9.90625 , 9.875 , 9.859375, 9.84375 , 9.828125, 9.84375 , 9.859375, 9.875 , 9.875 , 9.859375, 9.84375 , 9.8125 , 9.78125 , 9.734375, 9.71875 , 9.703125, 9.734375, 9.71875 , ... 9.828125, 9.8125 , 9.8125 , 9.8125 , 9.828125, 9.8125 , 9.8125 , 9.796875, 9.78125 , 9.765625, 9.75 , 9.75 , 9.71875 , 9.703125, 9.6875 , 9.671875, 9.65625 , 9.640625, 9.625 , 9.609375, 9.59375 , 9.578125, 9.5625 , 9.5625 , 9.5625 , 9.546875, 9.53125 , 9.53125 , 9.5625 , 9.609375, 9.703125, 9.859375, 9.890625, 9.96875 , 10.015625, 10.0625 , 10.078125, 10.09375 , 10.09375 , 10.09375 , 10.078125, 10.03125 , 10.046875, 10.015625, 10. , 9.984375, 9.953125, 9.90625 , 9.890625, 9.875 , 9.828125, 9.78125 , 9.765625, 9.75 , 9.75 , 9.78125 , 9.796875, 9.8125 , 9.8125 , 9.78125 , 9.734375, 9.703125, 9.671875, 9.640625, 9.609375, 9.609375, 9.609375, 9.59375 , 9.5625 , 9.546875, 9.515625, 9.515625, 9.5 , 9.5625 , 9.625 , 9.6875 , 9.71875 , 9.796875, 9.875 , 9.96875 , 10.015625, 10.0625 , 10.0625 , 10.046875, 10.0625 , 10.078125, 10.0625 , 10.078125, 10.03125 , 10. , 9.96875 , 9.953125, 9.90625 , 9.890625, 9.859375, 9.84375 , 9.84375 , 9.828125, 9.8125 , 9.765625, 9.71875 , 9.6875 , 9.671875, 9.671875, 9.671875, 9.65625 , 9.640625, 9.625 , 9.609375, 9.59375 , 9.578125, 9.984375, 10.03125 , 10.0625 , 10.09375 , 10.125 , 10.15625 , 10.140625, 10.125 ]) - range(range)float32-436.5 -311.5 ... 1.143e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 125.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- -436.5
array([-4.365000e+02, -3.115000e+02, -1.865000e+02, -6.150000e+01, 6.350000e+01, 1.885000e+02, 3.135000e+02, 4.385000e+02, 5.635000e+02, 6.885000e+02, 8.135000e+02, 9.385000e+02, 1.063500e+03, 1.188500e+03, 1.313500e+03, 1.438500e+03, 1.563500e+03, 1.688500e+03, 1.813500e+03, 1.938500e+03, 2.063500e+03, 2.188500e+03, 2.313500e+03, 2.438500e+03, 2.563500e+03, 2.688500e+03, 2.813500e+03, 2.938500e+03, 3.063500e+03, 3.188500e+03, 3.313500e+03, 3.438500e+03, 3.563500e+03, 3.688500e+03, 3.813500e+03, 3.938500e+03, 4.063500e+03, 4.188500e+03, 4.313500e+03, 4.438500e+03, 4.563500e+03, 4.688500e+03, 4.813500e+03, 4.938500e+03, 5.063500e+03, 5.188500e+03, 5.313500e+03, 5.438500e+03, 5.563500e+03, 5.688500e+03, 5.813500e+03, 5.938500e+03, 6.063500e+03, 6.188500e+03, 6.313500e+03, 6.438500e+03, 6.563500e+03, 6.688500e+03, 6.813500e+03, 6.938500e+03, 7.063500e+03, 7.188500e+03, 7.313500e+03, 7.438500e+03, 7.563500e+03, 7.688500e+03, 7.813500e+03, 7.938500e+03, 8.063500e+03, 8.188500e+03, 8.313500e+03, 8.438500e+03, 8.563500e+03, 8.688500e+03, 8.813500e+03, 8.938500e+03, 9.063500e+03, 9.188500e+03, 9.313500e+03, 9.438500e+03, ... 1.045635e+05, 1.046885e+05, 1.048135e+05, 1.049385e+05, 1.050635e+05, 1.051885e+05, 1.053135e+05, 1.054385e+05, 1.055635e+05, 1.056885e+05, 1.058135e+05, 1.059385e+05, 1.060635e+05, 1.061885e+05, 1.063135e+05, 1.064385e+05, 1.065635e+05, 1.066885e+05, 1.068135e+05, 1.069385e+05, 1.070635e+05, 1.071885e+05, 1.073135e+05, 1.074385e+05, 1.075635e+05, 1.076885e+05, 1.078135e+05, 1.079385e+05, 1.080635e+05, 1.081885e+05, 1.083135e+05, 1.084385e+05, 1.085635e+05, 1.086885e+05, 1.088135e+05, 1.089385e+05, 1.090635e+05, 1.091885e+05, 1.093135e+05, 1.094385e+05, 1.095635e+05, 1.096885e+05, 1.098135e+05, 1.099385e+05, 1.100635e+05, 1.101885e+05, 1.103135e+05, 1.104385e+05, 1.105635e+05, 1.106885e+05, 1.108135e+05, 1.109385e+05, 1.110635e+05, 1.111885e+05, 1.113135e+05, 1.114385e+05, 1.115635e+05, 1.116885e+05, 1.118135e+05, 1.119385e+05, 1.120635e+05, 1.121885e+05, 1.123135e+05, 1.124385e+05, 1.125635e+05, 1.126885e+05, 1.128135e+05, 1.129385e+05, 1.130635e+05, 1.131885e+05, 1.133135e+05, 1.134385e+05, 1.135635e+05, 1.136885e+05, 1.138135e+05, 1.139385e+05, 1.140635e+05, 1.141885e+05, 1.143135e+05], dtype=float32) - time(azimuth)datetime64[us]2011-04-27T16:45:11.349548 ... 2...
- units :
- microseconds since 2011-04-27T16:45:11Z
- standard_name :
- time
array(['2011-04-27T16:45:11.349548', '2011-04-27T16:45:11.347595', '2011-04-27T16:45:11.308532', '2011-04-27T16:45:11.306549', '2011-04-27T16:45:11.304626', '2011-04-27T16:45:11.302612', '2011-04-27T16:45:11.300689', '2011-04-27T16:45:11.298767', '2011-04-27T16:45:11.296783', '2011-04-27T16:45:11.294830', '2011-04-27T16:45:11.292907', '2011-04-27T16:45:11.290893', '2011-04-27T16:45:11.289001', '2011-04-27T16:45:11.287078', '2011-04-27T16:45:11.285064', '2011-04-27T16:45:11.283294', '2011-04-27T16:45:11.281219', '2011-04-27T16:45:11.279266', '2011-04-27T16:45:11.277313', '2011-04-27T16:45:11.275299', '2011-04-27T16:45:11.273345', '2011-04-27T16:45:11.271392', '2011-04-27T16:45:11.269470', '2011-04-27T16:45:11.267517', '2011-04-27T16:45:11.265563', '2011-04-27T16:45:11.263610', '2011-04-27T16:45:11.261657', '2011-04-27T16:45:11.259765', '2011-04-27T16:45:11.257751', '2011-04-27T16:45:11.255889', '2011-04-27T16:45:11.253967', '2011-04-27T16:45:11.251922', '2011-04-27T16:45:11.250000', '2011-04-27T16:45:11.248046', '2011-04-27T16:45:11.246124', '2011-04-27T16:45:11.244110', '2011-04-27T16:45:11.242156', '2011-04-27T16:45:11.240234', '2011-04-27T16:45:11.238128', '2011-04-27T16:45:11.236267', ... '2011-04-27T16:45:10.746094', '2011-04-27T16:45:10.744141', '2011-04-27T16:45:10.742127', '2011-04-27T16:45:10.740204', '2011-04-27T16:45:10.738190', '2011-04-27T16:45:10.736298', '2011-04-27T16:45:10.734253', '2011-04-27T16:45:10.732300', '2011-04-27T16:45:10.730408', '2011-04-27T16:45:10.728394', '2011-04-27T16:45:10.726471', '2011-04-27T16:45:10.724518', '2011-04-27T16:45:10.722657', '2011-04-27T16:45:10.720734', '2011-04-27T16:45:10.718689', '2011-04-27T16:45:10.716797', '2011-04-27T16:45:10.714783', '2011-04-27T16:45:10.712769', '2011-04-27T16:45:10.710877', '2011-04-27T16:45:10.708924', '2011-04-27T16:45:10.706971', '2011-04-27T16:45:10.705018', '2011-04-27T16:45:10.703064', '2011-04-27T16:45:10.701111', '2011-04-27T16:45:10.699158', '2011-04-27T16:45:10.697236', '2011-04-27T16:45:10.695282', '2011-04-27T16:45:10.693329', '2011-04-27T16:45:10.691346', '2011-04-27T16:45:10.689393', '2011-04-27T16:45:10.687439', '2011-04-27T16:45:10.662171', '2011-04-27T16:45:10.660157', '2011-04-27T16:45:10.658173', '2011-04-27T16:45:10.656250', '2011-04-27T16:45:10.654267', '2011-04-27T16:45:10.652314', '2011-04-27T16:45:10.650361', '2011-04-27T16:45:10.648407'], dtype='datetime64[us]') - longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[302351 values with dtype=float64]
- DBTH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Total power H (uncorrected reflectivity)
- units :
- dBZ
[302351 values with dtype=float64]
- VRADH(azimuth, range)float64...
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
[302351 values with dtype=float64]
- WRADH(azimuth, range)float64...
- standard_name :
- radar_doppler_spectrum_width_h
- long_name :
- Doppler spectrum width H
- units :
- meters per seconds
[302351 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[302351 values with dtype=float64]
- KDP(azimuth, range)float64...
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Specific differential phase HV
- units :
- degrees per kilometer
[302351 values with dtype=float64]
- UPHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[302351 values with dtype=float64]
- SQIH(azimuth, range)float64...
- standard_name :
- signal_quality_index_h
- long_name :
- Signal Quality H
- units :
- unitless
[302351 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[302351 values with dtype=float64]
- sweep_mode()<U20'azimuth_surveillance'
array('azimuth_surveillance', dtype='<U20') - sweep_number()int648
array(8)
- prt_mode()<U7'not_set'
array('not_set', dtype='<U7') - follow_mode()<U7'not_set'
array('not_set', dtype='<U7') - sweep_fixed_angle()float6410.0
array(10.)
<xarray.DatasetView> Size: 24B Dimensions: () Coordinates: longitude float64 8B -86.47 latitude float64 8B 34.93 altitude int64 8B 226 Data variables: *empty*radar_parameters- longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
<xarray.DatasetView> Size: 24B Dimensions: () Coordinates: longitude float64 8B -86.47 latitude float64 8B 34.93 altitude int64 8B 226 Data variables: *empty*georeferencing_correction- longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
<xarray.DatasetView> Size: 0B Dimensions: () Data variables: *empty*radar_calibration- 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'2011-04-27T16:45:10Z'
array('2011-04-27T16:45:10Z', dtype='<U20') - time_coverage_end()<U20'2011-04-27T16:45:11Z'
array('2011-04-27T16:45:11Z', dtype='<U20') - longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- Conventions :
- None
- instrument_name :
- rvp8-rel
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- Sigmet/UF
- history :
- None
- comment :
- Sigmet I
- site_name :
- MAX
[15]:
dtree = xd.io.open_uf_datatree(fname, sweep=[0, 1, 8])
display(dtree)
<xarray.DatasetView> Size: 232B
Dimensions: ()
Data variables:
volume_number int64 8B 0
platform_type <U5 20B 'fixed'
instrument_type <U5 20B 'radar'
time_coverage_start <U20 80B '2011-04-27T16:42:32Z'
time_coverage_end <U20 80B '2011-04-27T16:45:11Z'
longitude float64 8B -86.47
altitude int64 8B 226
latitude float64 8B 34.93
Attributes:
Conventions: None
instrument_name: rvp8-rel
version: None
title: None
institution: None
references: None
source: Sigmet/UF
history: None
comment: Sigmet I
site_name: MAXxarray.DataTree
<xarray.DatasetView> Size: 23MB Dimensions: (azimuth: 318, range: 997) Coordinates: * azimuth (azimuth) float64 3kB 22.88 23.88 24.91 ... 338.9 339.9 elevation (azimuth) float64 3kB 0.25 0.25 0.25 ... 0.2656 0.25 range (range) float32 4kB -436.5 -311.5 ... 1.239e+05 1.241e+05 time (azimuth) datetime64[us] 3kB 2011-04-27T16:42:33.36911... longitude float64 8B -86.47 latitude float64 8B 34.93 altitude int64 8B 226 Data variables: (12/14) DBZH (azimuth, range) float64 3MB ... DBTH (azimuth, range) float64 3MB ... VRADH (azimuth, range) float64 3MB ... WRADH (azimuth, range) float64 3MB ... ZDR (azimuth, range) float64 3MB ... KDP (azimuth, range) float64 3MB ... ... ... RHOHV (azimuth, range) float64 3MB ... sweep_mode <U20 80B 'azimuth_surveillance' sweep_number int64 8B 0 prt_mode <U7 28B 'not_set' follow_mode <U7 28B 'not_set' sweep_fixed_angle float64 8B 0.7031sweep_0- azimuth: 318
- range: 997
- azimuth(azimuth)float6422.88 23.88 24.91 ... 338.9 339.9
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 22.875 , 23.875 , 24.90625, ..., 337.875 , 338.90625, 339.875 ], shape=(318,)) - elevation(azimuth)float640.25 0.25 0.25 ... 0.2656 0.25
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([0.25 , 0.25 , 0.25 , 0.265625, 0.3125 , 0.359375, 0.40625 , 0.453125, 0.5 , 0.5625 , 0.640625, 0.671875, 0.734375, 0.78125 , 0.78125 , 0.78125 , 0.765625, 0.75 , 0.734375, 0.703125, 0.71875 , 0.640625, 0.609375, 0.546875, 0.484375, 0.46875 , 0.453125, 0.4375 , 0.4375 , 0.4375 , 0.453125, 0.453125, 0.4375 , 0.421875, 0.421875, 0.40625 , 0.390625, 0.390625, 0.359375, 0.34375 , 0.328125, 0.328125, 0.328125, 0.328125, 0.328125, 0.3125 , 0.3125 , 0.265625, 0.25 , 0.234375, 0.234375, 0.296875, 0.359375, 0.421875, 0.453125, 0.53125 , 0.59375 , 0.671875, 0.71875 , 0.75 , 0.765625, 0.765625, 0.75 , 0.734375, 0.703125, 0.6875 , 0.65625 , 0.640625, 0.609375, 0.609375, 0.609375, 0.59375 , 0.59375 , 0.59375 , 0.59375 , 0.5625 , 0.515625, 0.484375, 0.4375 , 0.421875, 0.40625 , 0.390625, 0.375 , 0.359375, 0.359375, 0.375 , 0.359375, 0.375 , 0.359375, 0.328125, 0.3125 , 0.28125 , 0.265625, 0.25 , 0.25 , 0.25 , 0.28125 , 0.3125 , 0.328125, 0.40625 , 0.546875, 0.578125, 0.6875 , 0.734375, 0.78125 , 0.796875, 0.796875, 0.78125 , 0.75 , 0.71875 , 0.6875 , 0.65625 , 0.65625 , 0.59375 , 0.546875, 0.53125 , 0.515625, 0.515625, 0.5 , 0.515625, ... 0.71875 , 0.703125, 0.6875 , 0.671875, 0.65625 , 0.65625 , 0.65625 , 0.640625, 0.625 , 0.609375, 0.578125, 0.5625 , 0.546875, 0.53125 , 0.53125 , 0.515625, 0.515625, 0.53125 , 0.515625, 0.5 , 0.484375, 0.453125, 0.4375 , 0.421875, 0.40625 , 0.390625, 0.375 , 0.375 , 0.375 , 0.359375, 0.34375 , 0.34375 , 0.328125, 0.328125, 0.328125, 0.328125, 0.328125, 0.28125 , 0.25 , 0.234375, 0.21875 , 0.203125, 0.1875 , 0.171875, 0.203125, 0.34375 , 0.453125, 0.546875, 0.671875, 0.703125, 0.734375, 0.75 , 0.765625, 0.75 , 0.78125 , 0.703125, 0.703125, 0.640625, 0.609375, 0.578125, 0.53125 , 0.546875, 0.546875, 0.53125 , 0.53125 , 0.515625, 0.46875 , 0.421875, 0.390625, 0.34375 , 0.328125, 0.328125, 0.328125, 0.328125, 0.3125 , 0.3125 , 0.296875, 0.296875, 0.296875, 0.296875, 0.265625, 0.21875 , 0.21875 , 0.234375, 0.28125 , 0.34375 , 0.421875, 0.515625, 0.5625 , 0.640625, 0.65625 , 0.703125, 0.671875, 0.671875, 0.65625 , 0.640625, 0.625 , 0.578125, 0.546875, 0.546875, 0.515625, 0.515625, 0.515625, 0.515625, 0.5 , 0.484375, 0.453125, 0.421875, 0.40625 , 0.390625, 0.375 , 0.359375, 0.3125 , 0.265625, 0.265625, 0.28125 , 0.265625, 0.265625, 0.265625, 0.25 ]) - range(range)float32-436.5 -311.5 ... 1.241e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 125.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- -436.5
array([-4.365000e+02, -3.115000e+02, -1.865000e+02, -6.150000e+01, 6.350000e+01, 1.885000e+02, 3.135000e+02, 4.385000e+02, 5.635000e+02, 6.885000e+02, 8.135000e+02, 9.385000e+02, 1.063500e+03, 1.188500e+03, 1.313500e+03, 1.438500e+03, 1.563500e+03, 1.688500e+03, 1.813500e+03, 1.938500e+03, 2.063500e+03, 2.188500e+03, 2.313500e+03, 2.438500e+03, 2.563500e+03, 2.688500e+03, 2.813500e+03, 2.938500e+03, 3.063500e+03, 3.188500e+03, 3.313500e+03, 3.438500e+03, 3.563500e+03, 3.688500e+03, 3.813500e+03, 3.938500e+03, 4.063500e+03, 4.188500e+03, 4.313500e+03, 4.438500e+03, 4.563500e+03, 4.688500e+03, 4.813500e+03, 4.938500e+03, 5.063500e+03, 5.188500e+03, 5.313500e+03, 5.438500e+03, 5.563500e+03, 5.688500e+03, 5.813500e+03, 5.938500e+03, 6.063500e+03, 6.188500e+03, 6.313500e+03, 6.438500e+03, 6.563500e+03, 6.688500e+03, 6.813500e+03, 6.938500e+03, 7.063500e+03, 7.188500e+03, 7.313500e+03, 7.438500e+03, 7.563500e+03, 7.688500e+03, 7.813500e+03, 7.938500e+03, 8.063500e+03, 8.188500e+03, 8.313500e+03, 8.438500e+03, 8.563500e+03, 8.688500e+03, 8.813500e+03, 8.938500e+03, 9.063500e+03, 9.188500e+03, 9.313500e+03, 9.438500e+03, ... 1.145635e+05, 1.146885e+05, 1.148135e+05, 1.149385e+05, 1.150635e+05, 1.151885e+05, 1.153135e+05, 1.154385e+05, 1.155635e+05, 1.156885e+05, 1.158135e+05, 1.159385e+05, 1.160635e+05, 1.161885e+05, 1.163135e+05, 1.164385e+05, 1.165635e+05, 1.166885e+05, 1.168135e+05, 1.169385e+05, 1.170635e+05, 1.171885e+05, 1.173135e+05, 1.174385e+05, 1.175635e+05, 1.176885e+05, 1.178135e+05, 1.179385e+05, 1.180635e+05, 1.181885e+05, 1.183135e+05, 1.184385e+05, 1.185635e+05, 1.186885e+05, 1.188135e+05, 1.189385e+05, 1.190635e+05, 1.191885e+05, 1.193135e+05, 1.194385e+05, 1.195635e+05, 1.196885e+05, 1.198135e+05, 1.199385e+05, 1.200635e+05, 1.201885e+05, 1.203135e+05, 1.204385e+05, 1.205635e+05, 1.206885e+05, 1.208135e+05, 1.209385e+05, 1.210635e+05, 1.211885e+05, 1.213135e+05, 1.214385e+05, 1.215635e+05, 1.216885e+05, 1.218135e+05, 1.219385e+05, 1.220635e+05, 1.221885e+05, 1.223135e+05, 1.224385e+05, 1.225635e+05, 1.226885e+05, 1.228135e+05, 1.229385e+05, 1.230635e+05, 1.231885e+05, 1.233135e+05, 1.234385e+05, 1.235635e+05, 1.236885e+05, 1.238135e+05, 1.239385e+05, 1.240635e+05], dtype=float32) - time(azimuth)datetime64[us]2011-04-27T16:42:33.369110 ... 2...
- units :
- microseconds since 2011-04-27T16:42:33Z
- standard_name :
- time
array(['2011-04-27T16:42:33.369110', '2011-04-27T16:42:33.367156', '2011-04-27T16:42:33.365142', '2011-04-27T16:42:33.363250', '2011-04-27T16:42:33.361236', '2011-04-27T16:42:33.359344', '2011-04-27T16:42:33.357330', '2011-04-27T16:42:33.355438', '2011-04-27T16:42:33.353515', '2011-04-27T16:42:33.351531', '2011-04-27T16:42:33.349487', '2011-04-27T16:42:33.347747', '2011-04-27T16:42:33.345733', '2011-04-27T16:42:33.343811', '2011-04-27T16:42:33.341796', '2011-04-27T16:42:33.339813', '2011-04-27T16:42:33.337890', '2011-04-27T16:42:33.335937', '2011-04-27T16:42:33.333984', '2011-04-27T16:42:33.332031', '2011-04-27T16:42:33.330078', '2011-04-27T16:42:33.328063', '2011-04-27T16:42:33.326141', '2011-04-27T16:42:33.324096', '2011-04-27T16:42:33.322204', '2011-04-27T16:42:33.320251', '2011-04-27T16:42:33.318420', '2011-04-27T16:42:33.316375', '2011-04-27T16:42:33.314575', '2011-04-27T16:42:33.312530', '2011-04-27T16:42:33.310546', '2011-04-27T16:42:33.308593', '2011-04-27T16:42:33.306610', '2011-04-27T16:42:33.304687', '2011-04-27T16:42:33.302764', '2011-04-27T16:42:33.300811', '2011-04-27T16:42:33.298828', '2011-04-27T16:42:33.296875', '2011-04-27T16:42:33.294891', '2011-04-27T16:42:33.292938', ... '2011-04-27T16:42:32.822358', '2011-04-27T16:42:32.820313', '2011-04-27T16:42:32.818360', '2011-04-27T16:42:32.816407', '2011-04-27T16:42:32.814332', '2011-04-27T16:42:32.812439', '2011-04-27T16:42:32.810608', '2011-04-27T16:42:32.808594', '2011-04-27T16:42:32.806641', '2011-04-27T16:42:32.804688', '2011-04-27T16:42:32.802613', '2011-04-27T16:42:32.800782', '2011-04-27T16:42:32.798737', '2011-04-27T16:42:32.796814', '2011-04-27T16:42:32.794953', '2011-04-27T16:42:32.792939', '2011-04-27T16:42:32.790986', '2011-04-27T16:42:32.789002', '2011-04-27T16:42:32.787018', '2011-04-27T16:42:32.785096', '2011-04-27T16:42:32.783173', '2011-04-27T16:42:32.781189', '2011-04-27T16:42:32.779206', '2011-04-27T16:42:32.777283', '2011-04-27T16:42:32.775361', '2011-04-27T16:42:32.773377', '2011-04-27T16:42:32.771424', '2011-04-27T16:42:32.769471', '2011-04-27T16:42:32.767487', '2011-04-27T16:42:32.765564', '2011-04-27T16:42:32.763672', '2011-04-27T16:42:32.761689', '2011-04-27T16:42:32.759827', '2011-04-27T16:42:32.757813', '2011-04-27T16:42:32.755829', '2011-04-27T16:42:32.753876', '2011-04-27T16:42:32.751862', '2011-04-27T16:42:32.749970'], dtype='datetime64[us]') - longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[317046 values with dtype=float64]
- DBTH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Total power H (uncorrected reflectivity)
- units :
- dBZ
[317046 values with dtype=float64]
- VRADH(azimuth, range)float64...
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
[317046 values with dtype=float64]
- WRADH(azimuth, range)float64...
- standard_name :
- radar_doppler_spectrum_width_h
- long_name :
- Doppler spectrum width H
- units :
- meters per seconds
[317046 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[317046 values with dtype=float64]
- KDP(azimuth, range)float64...
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Specific differential phase HV
- units :
- degrees per kilometer
[317046 values with dtype=float64]
- UPHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[317046 values with dtype=float64]
- SQIH(azimuth, range)float64...
- standard_name :
- signal_quality_index_h
- long_name :
- Signal Quality H
- units :
- unitless
[317046 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[317046 values with dtype=float64]
- sweep_mode()<U20'azimuth_surveillance'
array('azimuth_surveillance', dtype='<U20') - sweep_number()int640
array(0)
- prt_mode()<U7'not_set'
array('not_set', dtype='<U7') - follow_mode()<U7'not_set'
array('not_set', dtype='<U7') - sweep_fixed_angle()float640.7031
array(0.703125)
<xarray.DatasetView> Size: 23MB Dimensions: (azimuth: 319, range: 997) Coordinates: * azimuth (azimuth) float64 3kB 21.88 22.86 23.89 ... 338.9 339.9 elevation (azimuth) float64 3kB 1.0 1.0 0.9688 ... 0.8906 0.8906 range (range) float32 4kB -436.5 -311.5 ... 1.239e+05 1.241e+05 time (azimuth) datetime64[us] 3kB 2011-04-27T16:42:53.45895... longitude float64 8B -86.47 latitude float64 8B 34.93 altitude int64 8B 226 Data variables: (12/14) DBZH (azimuth, range) float64 3MB ... DBTH (azimuth, range) float64 3MB ... VRADH (azimuth, range) float64 3MB ... WRADH (azimuth, range) float64 3MB ... ZDR (azimuth, range) float64 3MB ... KDP (azimuth, range) float64 3MB ... ... ... RHOHV (azimuth, range) float64 3MB ... sweep_mode <U20 80B 'azimuth_surveillance' sweep_number int64 8B 1 prt_mode <U7 28B 'not_set' follow_mode <U7 28B 'not_set' sweep_fixed_angle float64 8B 1.297sweep_1- azimuth: 319
- range: 997
- azimuth(azimuth)float6421.88 22.86 23.89 ... 338.9 339.9
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 21.875 , 22.859375, 23.890625, ..., 337.875 , 338.875 , 339.859375], shape=(319,)) - elevation(azimuth)float641.0 1.0 0.9688 ... 0.8906 0.8906
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([1. , 1. , 0.96875 , 0.953125, 0.890625, 0.875 , 0.84375 , 0.828125, 0.8125 , 0.8125 , 0.828125, 0.875 , 1. , 1.078125, 1.15625 , 1.21875 , 1.3125 , 1.34375 , 1.359375, 1.375 , 1.375 , 1.375 , 1.375 , 1.328125, 1.265625, 1.234375, 1.203125, 1.1875 , 1.171875, 1.15625 , 1.140625, 1.125 , 1.125 , 1.125 , 1.09375 , 1.0625 , 1.046875, 1.015625, 1.015625, 1.03125 , 1.03125 , 1.046875, 1.03125 , 1.03125 , 1.015625, 1.015625, 0.984375, 0.96875 , 0.9375 , 0.921875, 0.921875, 0.921875, 0.9375 , 0.921875, 0.890625, 0.890625, 0.875 , 0.875 , 0.859375, 0.84375 , 0.84375 , 0.828125, 0.84375 , 0.875 , 0.921875, 0.984375, 1.078125, 1.15625 , 1.21875 , 1.265625, 1.328125, 1.390625, 1.421875, 1.453125, 1.5 , 1.484375, 1.46875 , 1.421875, 1.390625, 1.390625, 1.375 , 1.359375, 1.34375 , 1.328125, 1.3125 , 1.28125 , 1.265625, 1.21875 , 1.203125, 1.171875, 1.171875, 1.1875 , 1.203125, 1.203125, 1.1875 , 1.1875 , 1.15625 , 1.109375, 1.09375 , 1.125 , 1.109375, 1.15625 , 1.15625 , 1.171875, 1.171875, 1.15625 , 1.171875, 1.1875 , 1.15625 , 1.125 , 1.125 , 1.15625 , 1.15625 , 1.203125, 1.203125, 1.1875 , 1.1875 , 1.1875 , 1.15625 , 1.140625, ... 1.171875, 1.15625 , 1.15625 , 1.140625, 1.171875, 1.203125, 1.203125, 1.203125, 1.1875 , 1.203125, 1.171875, 1.15625 , 1.15625 , 1.140625, 1.140625, 1.140625, 1.125 , 1.15625 , 1.1875 , 1.1875 , 1.1875 , 1.1875 , 1.1875 , 1.15625 , 1.15625 , 1.140625, 1.140625, 1.140625, 1.15625 , 1.1875 , 1.1875 , 0.84375 , 0.84375 , 0.828125, 0.859375, 0.890625, 0.9375 , 0.9375 , 1. , 1.09375 , 1.203125, 1.265625, 1.3125 , 1.34375 , 1.375 , 1.390625, 1.421875, 1.40625 , 1.375 , 1.34375 , 1.296875, 1.25 , 1.234375, 1.203125, 1.1875 , 1.1875 , 1.171875, 1.15625 , 1.140625, 1.125 , 1.09375 , 1.046875, 1.046875, 1.046875, 1.046875, 1.03125 , 1. , 0.984375, 0.9375 , 0.90625 , 0.890625, 0.875 , 0.90625 , 0.890625, 0.90625 , 0.890625, 0.875 , 0.859375, 0.859375, 0.890625, 0.890625, 1. , 1.015625, 1.140625, 1.21875 , 1.25 , 1.296875, 1.34375 , 1.359375, 1.375 , 1.359375, 1.328125, 1.3125 , 1.28125 , 1.28125 , 1.28125 , 1.28125 , 1.25 , 1.25 , 1.203125, 1.15625 , 1.09375 , 1.0625 , 1.046875, 1.046875, 1.046875, 1.046875, 1.046875, 1.046875, 1.03125 , 1.015625, 0.953125, 0.9375 , 0.890625, 0.890625]) - range(range)float32-436.5 -311.5 ... 1.241e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 125.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- -436.5
array([-4.365000e+02, -3.115000e+02, -1.865000e+02, -6.150000e+01, 6.350000e+01, 1.885000e+02, 3.135000e+02, 4.385000e+02, 5.635000e+02, 6.885000e+02, 8.135000e+02, 9.385000e+02, 1.063500e+03, 1.188500e+03, 1.313500e+03, 1.438500e+03, 1.563500e+03, 1.688500e+03, 1.813500e+03, 1.938500e+03, 2.063500e+03, 2.188500e+03, 2.313500e+03, 2.438500e+03, 2.563500e+03, 2.688500e+03, 2.813500e+03, 2.938500e+03, 3.063500e+03, 3.188500e+03, 3.313500e+03, 3.438500e+03, 3.563500e+03, 3.688500e+03, 3.813500e+03, 3.938500e+03, 4.063500e+03, 4.188500e+03, 4.313500e+03, 4.438500e+03, 4.563500e+03, 4.688500e+03, 4.813500e+03, 4.938500e+03, 5.063500e+03, 5.188500e+03, 5.313500e+03, 5.438500e+03, 5.563500e+03, 5.688500e+03, 5.813500e+03, 5.938500e+03, 6.063500e+03, 6.188500e+03, 6.313500e+03, 6.438500e+03, 6.563500e+03, 6.688500e+03, 6.813500e+03, 6.938500e+03, 7.063500e+03, 7.188500e+03, 7.313500e+03, 7.438500e+03, 7.563500e+03, 7.688500e+03, 7.813500e+03, 7.938500e+03, 8.063500e+03, 8.188500e+03, 8.313500e+03, 8.438500e+03, 8.563500e+03, 8.688500e+03, 8.813500e+03, 8.938500e+03, 9.063500e+03, 9.188500e+03, 9.313500e+03, 9.438500e+03, ... 1.145635e+05, 1.146885e+05, 1.148135e+05, 1.149385e+05, 1.150635e+05, 1.151885e+05, 1.153135e+05, 1.154385e+05, 1.155635e+05, 1.156885e+05, 1.158135e+05, 1.159385e+05, 1.160635e+05, 1.161885e+05, 1.163135e+05, 1.164385e+05, 1.165635e+05, 1.166885e+05, 1.168135e+05, 1.169385e+05, 1.170635e+05, 1.171885e+05, 1.173135e+05, 1.174385e+05, 1.175635e+05, 1.176885e+05, 1.178135e+05, 1.179385e+05, 1.180635e+05, 1.181885e+05, 1.183135e+05, 1.184385e+05, 1.185635e+05, 1.186885e+05, 1.188135e+05, 1.189385e+05, 1.190635e+05, 1.191885e+05, 1.193135e+05, 1.194385e+05, 1.195635e+05, 1.196885e+05, 1.198135e+05, 1.199385e+05, 1.200635e+05, 1.201885e+05, 1.203135e+05, 1.204385e+05, 1.205635e+05, 1.206885e+05, 1.208135e+05, 1.209385e+05, 1.210635e+05, 1.211885e+05, 1.213135e+05, 1.214385e+05, 1.215635e+05, 1.216885e+05, 1.218135e+05, 1.219385e+05, 1.220635e+05, 1.221885e+05, 1.223135e+05, 1.224385e+05, 1.225635e+05, 1.226885e+05, 1.228135e+05, 1.229385e+05, 1.230635e+05, 1.231885e+05, 1.233135e+05, 1.234385e+05, 1.235635e+05, 1.236885e+05, 1.238135e+05, 1.239385e+05, 1.240635e+05], dtype=float32) - time(azimuth)datetime64[us]2011-04-27T16:42:53.458953 ... 2...
- units :
- microseconds since 2011-04-27T16:42:53Z
- standard_name :
- time
array(['2011-04-27T16:42:53.458953', '2011-04-27T16:42:53.457031', '2011-04-27T16:42:53.455017', '2011-04-27T16:42:53.453033', '2011-04-27T16:42:53.451080', '2011-04-27T16:42:53.449127', '2011-04-27T16:42:53.447235', '2011-04-27T16:42:53.445251', '2011-04-27T16:42:53.443298', '2011-04-27T16:42:53.441375', '2011-04-27T16:42:53.439392', '2011-04-27T16:42:53.437469', '2011-04-27T16:42:53.435607', '2011-04-27T16:42:53.433563', '2011-04-27T16:42:53.431701', '2011-04-27T16:42:53.429779', '2011-04-27T16:42:53.427734', '2011-04-27T16:42:53.425750', '2011-04-27T16:42:53.423828', '2011-04-27T16:42:53.421813', '2011-04-27T16:42:53.419891', '2011-04-27T16:42:53.417968', '2011-04-27T16:42:53.415985', '2011-04-27T16:42:53.414031', '2011-04-27T16:42:53.412109', '2011-04-27T16:42:53.410156', '2011-04-27T16:42:53.408172', '2011-04-27T16:42:53.406250', '2011-04-27T16:42:53.404296', '2011-04-27T16:42:53.402435', '2011-04-27T16:42:53.400451', '2011-04-27T16:42:53.398437', '2011-04-27T16:42:53.396514', '2011-04-27T16:42:53.394561', '2011-04-27T16:42:53.392547', '2011-04-27T16:42:53.390625', '2011-04-27T16:42:53.388580', '2011-04-27T16:42:53.386718', '2011-04-27T16:42:53.384735', '2011-04-27T16:42:53.382781', ... '2011-04-27T16:42:52.912079', '2011-04-27T16:42:52.910218', '2011-04-27T16:42:52.908204', '2011-04-27T16:42:52.906159', '2011-04-27T16:42:52.904206', '2011-04-27T16:42:52.902375', '2011-04-27T16:42:52.900422', '2011-04-27T16:42:52.898499', '2011-04-27T16:42:52.896485', '2011-04-27T16:42:52.894501', '2011-04-27T16:42:52.892518', '2011-04-27T16:42:52.890625', '2011-04-27T16:42:52.888581', '2011-04-27T16:42:52.886689', '2011-04-27T16:42:52.884705', '2011-04-27T16:42:52.882782', '2011-04-27T16:42:52.880768', '2011-04-27T16:42:52.878846', '2011-04-27T16:42:52.876893', '2011-04-27T16:42:52.874970', '2011-04-27T16:42:52.873047', '2011-04-27T16:42:52.871094', '2011-04-27T16:42:52.869141', '2011-04-27T16:42:52.867188', '2011-04-27T16:42:52.865113', '2011-04-27T16:42:52.863221', '2011-04-27T16:42:52.861298', '2011-04-27T16:42:52.859314', '2011-04-27T16:42:52.857392', '2011-04-27T16:42:52.855439', '2011-04-27T16:42:52.853425', '2011-04-27T16:42:52.851532', '2011-04-27T16:42:52.849579', '2011-04-27T16:42:52.847596', '2011-04-27T16:42:52.845612', '2011-04-27T16:42:52.843689', '2011-04-27T16:42:52.841767', '2011-04-27T16:42:52.839814', '2011-04-27T16:42:52.837891'], dtype='datetime64[us]') - longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[318043 values with dtype=float64]
- DBTH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Total power H (uncorrected reflectivity)
- units :
- dBZ
[318043 values with dtype=float64]
- VRADH(azimuth, range)float64...
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
[318043 values with dtype=float64]
- WRADH(azimuth, range)float64...
- standard_name :
- radar_doppler_spectrum_width_h
- long_name :
- Doppler spectrum width H
- units :
- meters per seconds
[318043 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[318043 values with dtype=float64]
- KDP(azimuth, range)float64...
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Specific differential phase HV
- units :
- degrees per kilometer
[318043 values with dtype=float64]
- UPHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[318043 values with dtype=float64]
- SQIH(azimuth, range)float64...
- standard_name :
- signal_quality_index_h
- long_name :
- Signal Quality H
- units :
- unitless
[318043 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[318043 values with dtype=float64]
- sweep_mode()<U20'azimuth_surveillance'
array('azimuth_surveillance', dtype='<U20') - sweep_number()int641
array(1)
- prt_mode()<U7'not_set'
array('not_set', dtype='<U7') - follow_mode()<U7'not_set'
array('not_set', dtype='<U7') - sweep_fixed_angle()float641.297
array(1.296875)
<xarray.DatasetView> Size: 22MB Dimensions: (azimuth: 329, range: 919) Coordinates: * azimuth (azimuth) float64 3kB 0.875 1.875 21.88 ... 358.9 359.9 elevation (azimuth) float64 3kB 10.09 10.05 9.688 ... 10.14 10.12 range (range) float32 4kB -436.5 -311.5 ... 1.142e+05 1.143e+05 time (azimuth) datetime64[us] 3kB 2011-04-27T16:45:11.34954... longitude float64 8B -86.47 latitude float64 8B 34.93 altitude int64 8B 226 Data variables: (12/14) DBZH (azimuth, range) float64 2MB ... DBTH (azimuth, range) float64 2MB ... VRADH (azimuth, range) float64 2MB ... WRADH (azimuth, range) float64 2MB ... ZDR (azimuth, range) float64 2MB ... KDP (azimuth, range) float64 2MB ... ... ... RHOHV (azimuth, range) float64 2MB ... sweep_mode <U20 80B 'azimuth_surveillance' sweep_number int64 8B 8 prt_mode <U7 28B 'not_set' follow_mode <U7 28B 'not_set' sweep_fixed_angle float64 8B 10.0sweep_8- azimuth: 329
- range: 919
- azimuth(azimuth)float640.875 1.875 21.88 ... 358.9 359.9
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.875 , 1.875 , 21.875 , ..., 357.859375, 358.859375, 359.859375], shape=(329,)) - elevation(azimuth)float6410.09 10.05 9.688 ... 10.14 10.12
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([10.09375 , 10.046875, 9.6875 , 9.671875, 9.640625, 9.609375, 9.578125, 9.5625 , 9.546875, 9.546875, 9.53125 , 9.546875, 9.53125 , 9.546875, 9.578125, 9.671875, 9.78125 , 9.859375, 9.9375 , 9.984375, 10.03125 , 10.03125 , 10.078125, 10.0625 , 10.078125, 10.0625 , 10.03125 , 10.046875, 10.046875, 10.03125 , 10.03125 , 10.015625, 9.984375, 9.953125, 9.953125, 9.953125, 9.953125, 9.921875, 9.890625, 9.859375, 9.890625, 9.90625 , 9.90625 , 9.921875, 9.875 , 9.828125, 9.796875, 9.78125 , 9.765625, 9.75 , 9.734375, 9.734375, 9.75 , 9.75 , 9.765625, 9.734375, 9.71875 , 9.6875 , 9.640625, 9.609375, 9.59375 , 9.59375 , 9.578125, 9.578125, 9.578125, 9.578125, 9.59375 , 9.5625 , 9.5625 , 9.53125 , 9.515625, 9.515625, 9.546875, 9.65625 , 9.734375, 9.828125, 9.875 , 9.984375, 10.03125 , 10.078125, 10.109375, 10.15625 , 10.15625 , 10.140625, 10.109375, 10.0625 , 10.0625 , 10.078125, 10.078125, 10.078125, 10.078125, 10.0625 , 10.03125 , 10.015625, 9.984375, 9.96875 , 9.9375 , 9.921875, 9.90625 , 9.921875, 9.9375 , 9.921875, 9.90625 , 9.875 , 9.859375, 9.84375 , 9.828125, 9.84375 , 9.859375, 9.875 , 9.875 , 9.859375, 9.84375 , 9.8125 , 9.78125 , 9.734375, 9.71875 , 9.703125, 9.734375, 9.71875 , ... 9.828125, 9.8125 , 9.8125 , 9.8125 , 9.828125, 9.8125 , 9.8125 , 9.796875, 9.78125 , 9.765625, 9.75 , 9.75 , 9.71875 , 9.703125, 9.6875 , 9.671875, 9.65625 , 9.640625, 9.625 , 9.609375, 9.59375 , 9.578125, 9.5625 , 9.5625 , 9.5625 , 9.546875, 9.53125 , 9.53125 , 9.5625 , 9.609375, 9.703125, 9.859375, 9.890625, 9.96875 , 10.015625, 10.0625 , 10.078125, 10.09375 , 10.09375 , 10.09375 , 10.078125, 10.03125 , 10.046875, 10.015625, 10. , 9.984375, 9.953125, 9.90625 , 9.890625, 9.875 , 9.828125, 9.78125 , 9.765625, 9.75 , 9.75 , 9.78125 , 9.796875, 9.8125 , 9.8125 , 9.78125 , 9.734375, 9.703125, 9.671875, 9.640625, 9.609375, 9.609375, 9.609375, 9.59375 , 9.5625 , 9.546875, 9.515625, 9.515625, 9.5 , 9.5625 , 9.625 , 9.6875 , 9.71875 , 9.796875, 9.875 , 9.96875 , 10.015625, 10.0625 , 10.0625 , 10.046875, 10.0625 , 10.078125, 10.0625 , 10.078125, 10.03125 , 10. , 9.96875 , 9.953125, 9.90625 , 9.890625, 9.859375, 9.84375 , 9.84375 , 9.828125, 9.8125 , 9.765625, 9.71875 , 9.6875 , 9.671875, 9.671875, 9.671875, 9.65625 , 9.640625, 9.625 , 9.609375, 9.59375 , 9.578125, 9.984375, 10.03125 , 10.0625 , 10.09375 , 10.125 , 10.15625 , 10.140625, 10.125 ]) - range(range)float32-436.5 -311.5 ... 1.143e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 125.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- -436.5
array([-4.365000e+02, -3.115000e+02, -1.865000e+02, -6.150000e+01, 6.350000e+01, 1.885000e+02, 3.135000e+02, 4.385000e+02, 5.635000e+02, 6.885000e+02, 8.135000e+02, 9.385000e+02, 1.063500e+03, 1.188500e+03, 1.313500e+03, 1.438500e+03, 1.563500e+03, 1.688500e+03, 1.813500e+03, 1.938500e+03, 2.063500e+03, 2.188500e+03, 2.313500e+03, 2.438500e+03, 2.563500e+03, 2.688500e+03, 2.813500e+03, 2.938500e+03, 3.063500e+03, 3.188500e+03, 3.313500e+03, 3.438500e+03, 3.563500e+03, 3.688500e+03, 3.813500e+03, 3.938500e+03, 4.063500e+03, 4.188500e+03, 4.313500e+03, 4.438500e+03, 4.563500e+03, 4.688500e+03, 4.813500e+03, 4.938500e+03, 5.063500e+03, 5.188500e+03, 5.313500e+03, 5.438500e+03, 5.563500e+03, 5.688500e+03, 5.813500e+03, 5.938500e+03, 6.063500e+03, 6.188500e+03, 6.313500e+03, 6.438500e+03, 6.563500e+03, 6.688500e+03, 6.813500e+03, 6.938500e+03, 7.063500e+03, 7.188500e+03, 7.313500e+03, 7.438500e+03, 7.563500e+03, 7.688500e+03, 7.813500e+03, 7.938500e+03, 8.063500e+03, 8.188500e+03, 8.313500e+03, 8.438500e+03, 8.563500e+03, 8.688500e+03, 8.813500e+03, 8.938500e+03, 9.063500e+03, 9.188500e+03, 9.313500e+03, 9.438500e+03, ... 1.045635e+05, 1.046885e+05, 1.048135e+05, 1.049385e+05, 1.050635e+05, 1.051885e+05, 1.053135e+05, 1.054385e+05, 1.055635e+05, 1.056885e+05, 1.058135e+05, 1.059385e+05, 1.060635e+05, 1.061885e+05, 1.063135e+05, 1.064385e+05, 1.065635e+05, 1.066885e+05, 1.068135e+05, 1.069385e+05, 1.070635e+05, 1.071885e+05, 1.073135e+05, 1.074385e+05, 1.075635e+05, 1.076885e+05, 1.078135e+05, 1.079385e+05, 1.080635e+05, 1.081885e+05, 1.083135e+05, 1.084385e+05, 1.085635e+05, 1.086885e+05, 1.088135e+05, 1.089385e+05, 1.090635e+05, 1.091885e+05, 1.093135e+05, 1.094385e+05, 1.095635e+05, 1.096885e+05, 1.098135e+05, 1.099385e+05, 1.100635e+05, 1.101885e+05, 1.103135e+05, 1.104385e+05, 1.105635e+05, 1.106885e+05, 1.108135e+05, 1.109385e+05, 1.110635e+05, 1.111885e+05, 1.113135e+05, 1.114385e+05, 1.115635e+05, 1.116885e+05, 1.118135e+05, 1.119385e+05, 1.120635e+05, 1.121885e+05, 1.123135e+05, 1.124385e+05, 1.125635e+05, 1.126885e+05, 1.128135e+05, 1.129385e+05, 1.130635e+05, 1.131885e+05, 1.133135e+05, 1.134385e+05, 1.135635e+05, 1.136885e+05, 1.138135e+05, 1.139385e+05, 1.140635e+05, 1.141885e+05, 1.143135e+05], dtype=float32) - time(azimuth)datetime64[us]2011-04-27T16:45:11.349548 ... 2...
- units :
- microseconds since 2011-04-27T16:45:11Z
- standard_name :
- time
array(['2011-04-27T16:45:11.349548', '2011-04-27T16:45:11.347595', '2011-04-27T16:45:11.308532', '2011-04-27T16:45:11.306549', '2011-04-27T16:45:11.304626', '2011-04-27T16:45:11.302612', '2011-04-27T16:45:11.300689', '2011-04-27T16:45:11.298767', '2011-04-27T16:45:11.296783', '2011-04-27T16:45:11.294830', '2011-04-27T16:45:11.292907', '2011-04-27T16:45:11.290893', '2011-04-27T16:45:11.289001', '2011-04-27T16:45:11.287078', '2011-04-27T16:45:11.285064', '2011-04-27T16:45:11.283294', '2011-04-27T16:45:11.281219', '2011-04-27T16:45:11.279266', '2011-04-27T16:45:11.277313', '2011-04-27T16:45:11.275299', '2011-04-27T16:45:11.273345', '2011-04-27T16:45:11.271392', '2011-04-27T16:45:11.269470', '2011-04-27T16:45:11.267517', '2011-04-27T16:45:11.265563', '2011-04-27T16:45:11.263610', '2011-04-27T16:45:11.261657', '2011-04-27T16:45:11.259765', '2011-04-27T16:45:11.257751', '2011-04-27T16:45:11.255889', '2011-04-27T16:45:11.253967', '2011-04-27T16:45:11.251922', '2011-04-27T16:45:11.250000', '2011-04-27T16:45:11.248046', '2011-04-27T16:45:11.246124', '2011-04-27T16:45:11.244110', '2011-04-27T16:45:11.242156', '2011-04-27T16:45:11.240234', '2011-04-27T16:45:11.238128', '2011-04-27T16:45:11.236267', ... '2011-04-27T16:45:10.746094', '2011-04-27T16:45:10.744141', '2011-04-27T16:45:10.742127', '2011-04-27T16:45:10.740204', '2011-04-27T16:45:10.738190', '2011-04-27T16:45:10.736298', '2011-04-27T16:45:10.734253', '2011-04-27T16:45:10.732300', '2011-04-27T16:45:10.730408', '2011-04-27T16:45:10.728394', '2011-04-27T16:45:10.726471', '2011-04-27T16:45:10.724518', '2011-04-27T16:45:10.722657', '2011-04-27T16:45:10.720734', '2011-04-27T16:45:10.718689', '2011-04-27T16:45:10.716797', '2011-04-27T16:45:10.714783', '2011-04-27T16:45:10.712769', '2011-04-27T16:45:10.710877', '2011-04-27T16:45:10.708924', '2011-04-27T16:45:10.706971', '2011-04-27T16:45:10.705018', '2011-04-27T16:45:10.703064', '2011-04-27T16:45:10.701111', '2011-04-27T16:45:10.699158', '2011-04-27T16:45:10.697236', '2011-04-27T16:45:10.695282', '2011-04-27T16:45:10.693329', '2011-04-27T16:45:10.691346', '2011-04-27T16:45:10.689393', '2011-04-27T16:45:10.687439', '2011-04-27T16:45:10.662171', '2011-04-27T16:45:10.660157', '2011-04-27T16:45:10.658173', '2011-04-27T16:45:10.656250', '2011-04-27T16:45:10.654267', '2011-04-27T16:45:10.652314', '2011-04-27T16:45:10.650361', '2011-04-27T16:45:10.648407'], dtype='datetime64[us]') - longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[302351 values with dtype=float64]
- DBTH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Total power H (uncorrected reflectivity)
- units :
- dBZ
[302351 values with dtype=float64]
- VRADH(azimuth, range)float64...
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
[302351 values with dtype=float64]
- WRADH(azimuth, range)float64...
- standard_name :
- radar_doppler_spectrum_width_h
- long_name :
- Doppler spectrum width H
- units :
- meters per seconds
[302351 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[302351 values with dtype=float64]
- KDP(azimuth, range)float64...
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Specific differential phase HV
- units :
- degrees per kilometer
[302351 values with dtype=float64]
- UPHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[302351 values with dtype=float64]
- SQIH(azimuth, range)float64...
- standard_name :
- signal_quality_index_h
- long_name :
- Signal Quality H
- units :
- unitless
[302351 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[302351 values with dtype=float64]
- sweep_mode()<U20'azimuth_surveillance'
array('azimuth_surveillance', dtype='<U20') - sweep_number()int648
array(8)
- prt_mode()<U7'not_set'
array('not_set', dtype='<U7') - follow_mode()<U7'not_set'
array('not_set', dtype='<U7') - sweep_fixed_angle()float6410.0
array(10.)
<xarray.DatasetView> Size: 24B Dimensions: () Coordinates: longitude float64 8B -86.47 latitude float64 8B 34.93 altitude int64 8B 226 Data variables: *empty*radar_parameters- longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
<xarray.DatasetView> Size: 24B Dimensions: () Coordinates: longitude float64 8B -86.47 latitude float64 8B 34.93 altitude int64 8B 226 Data variables: *empty*georeferencing_correction- longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
<xarray.DatasetView> Size: 0B Dimensions: () Data variables: *empty*radar_calibration- 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'2011-04-27T16:42:32Z'
array('2011-04-27T16:42:32Z', dtype='<U20') - time_coverage_end()<U20'2011-04-27T16:45:11Z'
array('2011-04-27T16:45:11Z', dtype='<U20') - longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- Conventions :
- None
- instrument_name :
- rvp8-rel
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- Sigmet/UF
- history :
- None
- comment :
- Sigmet I
- site_name :
- MAX
[16]:
dtree["sweep_0"]["sweep_fixed_angle"].values
[16]:
array(0.703125)
[17]:
dtree["sweep_8"]["sweep_fixed_angle"].values
[17]:
array(10.)
[18]:
dtree = xd.io.open_uf_datatree(fname)
display(dtree)
<xarray.DatasetView> Size: 232B
Dimensions: ()
Data variables:
volume_number int64 8B 0
platform_type <U5 20B 'fixed'
instrument_type <U5 20B 'radar'
time_coverage_start <U20 80B '2011-04-27T16:42:32Z'
time_coverage_end <U20 80B '2011-04-27T16:46:50Z'
longitude float64 8B -86.47
altitude int64 8B 226
latitude float64 8B 34.93
Attributes:
Conventions: None
instrument_name: rvp8-rel
version: None
title: None
institution: None
references: None
source: Sigmet/UF
history: None
comment: Sigmet I
site_name: MAXxarray.DataTree
- (6/17)
<xarray.DatasetView> Size: 23MB Dimensions: (azimuth: 318, range: 997) Coordinates: * azimuth (azimuth) float64 3kB 22.88 23.88 24.91 ... 338.9 339.9 elevation (azimuth) float64 3kB 0.25 0.25 0.25 ... 0.2656 0.25 range (range) float32 4kB -436.5 -311.5 ... 1.239e+05 1.241e+05 time (azimuth) datetime64[us] 3kB 2011-04-27T16:42:33.36911... longitude float64 8B -86.47 latitude float64 8B 34.93 altitude int64 8B 226 Data variables: (12/14) DBZH (azimuth, range) float64 3MB ... DBTH (azimuth, range) float64 3MB ... VRADH (azimuth, range) float64 3MB ... WRADH (azimuth, range) float64 3MB ... ZDR (azimuth, range) float64 3MB ... KDP (azimuth, range) float64 3MB ... ... ... RHOHV (azimuth, range) float64 3MB ... sweep_mode <U20 80B 'azimuth_surveillance' sweep_number int64 8B 0 prt_mode <U7 28B 'not_set' follow_mode <U7 28B 'not_set' sweep_fixed_angle float64 8B 0.7031sweep_0- azimuth: 318
- range: 997
- azimuth(azimuth)float6422.88 23.88 24.91 ... 338.9 339.9
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 22.875 , 23.875 , 24.90625, ..., 337.875 , 338.90625, 339.875 ], shape=(318,)) - elevation(azimuth)float640.25 0.25 0.25 ... 0.2656 0.25
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([0.25 , 0.25 , 0.25 , 0.265625, 0.3125 , 0.359375, 0.40625 , 0.453125, 0.5 , 0.5625 , 0.640625, 0.671875, 0.734375, 0.78125 , 0.78125 , 0.78125 , 0.765625, 0.75 , 0.734375, 0.703125, 0.71875 , 0.640625, 0.609375, 0.546875, 0.484375, 0.46875 , 0.453125, 0.4375 , 0.4375 , 0.4375 , 0.453125, 0.453125, 0.4375 , 0.421875, 0.421875, 0.40625 , 0.390625, 0.390625, 0.359375, 0.34375 , 0.328125, 0.328125, 0.328125, 0.328125, 0.328125, 0.3125 , 0.3125 , 0.265625, 0.25 , 0.234375, 0.234375, 0.296875, 0.359375, 0.421875, 0.453125, 0.53125 , 0.59375 , 0.671875, 0.71875 , 0.75 , 0.765625, 0.765625, 0.75 , 0.734375, 0.703125, 0.6875 , 0.65625 , 0.640625, 0.609375, 0.609375, 0.609375, 0.59375 , 0.59375 , 0.59375 , 0.59375 , 0.5625 , 0.515625, 0.484375, 0.4375 , 0.421875, 0.40625 , 0.390625, 0.375 , 0.359375, 0.359375, 0.375 , 0.359375, 0.375 , 0.359375, 0.328125, 0.3125 , 0.28125 , 0.265625, 0.25 , 0.25 , 0.25 , 0.28125 , 0.3125 , 0.328125, 0.40625 , 0.546875, 0.578125, 0.6875 , 0.734375, 0.78125 , 0.796875, 0.796875, 0.78125 , 0.75 , 0.71875 , 0.6875 , 0.65625 , 0.65625 , 0.59375 , 0.546875, 0.53125 , 0.515625, 0.515625, 0.5 , 0.515625, ... 0.71875 , 0.703125, 0.6875 , 0.671875, 0.65625 , 0.65625 , 0.65625 , 0.640625, 0.625 , 0.609375, 0.578125, 0.5625 , 0.546875, 0.53125 , 0.53125 , 0.515625, 0.515625, 0.53125 , 0.515625, 0.5 , 0.484375, 0.453125, 0.4375 , 0.421875, 0.40625 , 0.390625, 0.375 , 0.375 , 0.375 , 0.359375, 0.34375 , 0.34375 , 0.328125, 0.328125, 0.328125, 0.328125, 0.328125, 0.28125 , 0.25 , 0.234375, 0.21875 , 0.203125, 0.1875 , 0.171875, 0.203125, 0.34375 , 0.453125, 0.546875, 0.671875, 0.703125, 0.734375, 0.75 , 0.765625, 0.75 , 0.78125 , 0.703125, 0.703125, 0.640625, 0.609375, 0.578125, 0.53125 , 0.546875, 0.546875, 0.53125 , 0.53125 , 0.515625, 0.46875 , 0.421875, 0.390625, 0.34375 , 0.328125, 0.328125, 0.328125, 0.328125, 0.3125 , 0.3125 , 0.296875, 0.296875, 0.296875, 0.296875, 0.265625, 0.21875 , 0.21875 , 0.234375, 0.28125 , 0.34375 , 0.421875, 0.515625, 0.5625 , 0.640625, 0.65625 , 0.703125, 0.671875, 0.671875, 0.65625 , 0.640625, 0.625 , 0.578125, 0.546875, 0.546875, 0.515625, 0.515625, 0.515625, 0.515625, 0.5 , 0.484375, 0.453125, 0.421875, 0.40625 , 0.390625, 0.375 , 0.359375, 0.3125 , 0.265625, 0.265625, 0.28125 , 0.265625, 0.265625, 0.265625, 0.25 ]) - range(range)float32-436.5 -311.5 ... 1.241e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 125.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- -436.5
array([-4.365000e+02, -3.115000e+02, -1.865000e+02, -6.150000e+01, 6.350000e+01, 1.885000e+02, 3.135000e+02, 4.385000e+02, 5.635000e+02, 6.885000e+02, 8.135000e+02, 9.385000e+02, 1.063500e+03, 1.188500e+03, 1.313500e+03, 1.438500e+03, 1.563500e+03, 1.688500e+03, 1.813500e+03, 1.938500e+03, 2.063500e+03, 2.188500e+03, 2.313500e+03, 2.438500e+03, 2.563500e+03, 2.688500e+03, 2.813500e+03, 2.938500e+03, 3.063500e+03, 3.188500e+03, 3.313500e+03, 3.438500e+03, 3.563500e+03, 3.688500e+03, 3.813500e+03, 3.938500e+03, 4.063500e+03, 4.188500e+03, 4.313500e+03, 4.438500e+03, 4.563500e+03, 4.688500e+03, 4.813500e+03, 4.938500e+03, 5.063500e+03, 5.188500e+03, 5.313500e+03, 5.438500e+03, 5.563500e+03, 5.688500e+03, 5.813500e+03, 5.938500e+03, 6.063500e+03, 6.188500e+03, 6.313500e+03, 6.438500e+03, 6.563500e+03, 6.688500e+03, 6.813500e+03, 6.938500e+03, 7.063500e+03, 7.188500e+03, 7.313500e+03, 7.438500e+03, 7.563500e+03, 7.688500e+03, 7.813500e+03, 7.938500e+03, 8.063500e+03, 8.188500e+03, 8.313500e+03, 8.438500e+03, 8.563500e+03, 8.688500e+03, 8.813500e+03, 8.938500e+03, 9.063500e+03, 9.188500e+03, 9.313500e+03, 9.438500e+03, ... 1.145635e+05, 1.146885e+05, 1.148135e+05, 1.149385e+05, 1.150635e+05, 1.151885e+05, 1.153135e+05, 1.154385e+05, 1.155635e+05, 1.156885e+05, 1.158135e+05, 1.159385e+05, 1.160635e+05, 1.161885e+05, 1.163135e+05, 1.164385e+05, 1.165635e+05, 1.166885e+05, 1.168135e+05, 1.169385e+05, 1.170635e+05, 1.171885e+05, 1.173135e+05, 1.174385e+05, 1.175635e+05, 1.176885e+05, 1.178135e+05, 1.179385e+05, 1.180635e+05, 1.181885e+05, 1.183135e+05, 1.184385e+05, 1.185635e+05, 1.186885e+05, 1.188135e+05, 1.189385e+05, 1.190635e+05, 1.191885e+05, 1.193135e+05, 1.194385e+05, 1.195635e+05, 1.196885e+05, 1.198135e+05, 1.199385e+05, 1.200635e+05, 1.201885e+05, 1.203135e+05, 1.204385e+05, 1.205635e+05, 1.206885e+05, 1.208135e+05, 1.209385e+05, 1.210635e+05, 1.211885e+05, 1.213135e+05, 1.214385e+05, 1.215635e+05, 1.216885e+05, 1.218135e+05, 1.219385e+05, 1.220635e+05, 1.221885e+05, 1.223135e+05, 1.224385e+05, 1.225635e+05, 1.226885e+05, 1.228135e+05, 1.229385e+05, 1.230635e+05, 1.231885e+05, 1.233135e+05, 1.234385e+05, 1.235635e+05, 1.236885e+05, 1.238135e+05, 1.239385e+05, 1.240635e+05], dtype=float32) - time(azimuth)datetime64[us]2011-04-27T16:42:33.369110 ... 2...
- units :
- microseconds since 2011-04-27T16:42:33Z
- standard_name :
- time
array(['2011-04-27T16:42:33.369110', '2011-04-27T16:42:33.367156', '2011-04-27T16:42:33.365142', '2011-04-27T16:42:33.363250', '2011-04-27T16:42:33.361236', '2011-04-27T16:42:33.359344', '2011-04-27T16:42:33.357330', '2011-04-27T16:42:33.355438', '2011-04-27T16:42:33.353515', '2011-04-27T16:42:33.351531', '2011-04-27T16:42:33.349487', '2011-04-27T16:42:33.347747', '2011-04-27T16:42:33.345733', '2011-04-27T16:42:33.343811', '2011-04-27T16:42:33.341796', '2011-04-27T16:42:33.339813', '2011-04-27T16:42:33.337890', '2011-04-27T16:42:33.335937', '2011-04-27T16:42:33.333984', '2011-04-27T16:42:33.332031', '2011-04-27T16:42:33.330078', '2011-04-27T16:42:33.328063', '2011-04-27T16:42:33.326141', '2011-04-27T16:42:33.324096', '2011-04-27T16:42:33.322204', '2011-04-27T16:42:33.320251', '2011-04-27T16:42:33.318420', '2011-04-27T16:42:33.316375', '2011-04-27T16:42:33.314575', '2011-04-27T16:42:33.312530', '2011-04-27T16:42:33.310546', '2011-04-27T16:42:33.308593', '2011-04-27T16:42:33.306610', '2011-04-27T16:42:33.304687', '2011-04-27T16:42:33.302764', '2011-04-27T16:42:33.300811', '2011-04-27T16:42:33.298828', '2011-04-27T16:42:33.296875', '2011-04-27T16:42:33.294891', '2011-04-27T16:42:33.292938', ... '2011-04-27T16:42:32.822358', '2011-04-27T16:42:32.820313', '2011-04-27T16:42:32.818360', '2011-04-27T16:42:32.816407', '2011-04-27T16:42:32.814332', '2011-04-27T16:42:32.812439', '2011-04-27T16:42:32.810608', '2011-04-27T16:42:32.808594', '2011-04-27T16:42:32.806641', '2011-04-27T16:42:32.804688', '2011-04-27T16:42:32.802613', '2011-04-27T16:42:32.800782', '2011-04-27T16:42:32.798737', '2011-04-27T16:42:32.796814', '2011-04-27T16:42:32.794953', '2011-04-27T16:42:32.792939', '2011-04-27T16:42:32.790986', '2011-04-27T16:42:32.789002', '2011-04-27T16:42:32.787018', '2011-04-27T16:42:32.785096', '2011-04-27T16:42:32.783173', '2011-04-27T16:42:32.781189', '2011-04-27T16:42:32.779206', '2011-04-27T16:42:32.777283', '2011-04-27T16:42:32.775361', '2011-04-27T16:42:32.773377', '2011-04-27T16:42:32.771424', '2011-04-27T16:42:32.769471', '2011-04-27T16:42:32.767487', '2011-04-27T16:42:32.765564', '2011-04-27T16:42:32.763672', '2011-04-27T16:42:32.761689', '2011-04-27T16:42:32.759827', '2011-04-27T16:42:32.757813', '2011-04-27T16:42:32.755829', '2011-04-27T16:42:32.753876', '2011-04-27T16:42:32.751862', '2011-04-27T16:42:32.749970'], dtype='datetime64[us]') - longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[317046 values with dtype=float64]
- DBTH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Total power H (uncorrected reflectivity)
- units :
- dBZ
[317046 values with dtype=float64]
- VRADH(azimuth, range)float64...
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
[317046 values with dtype=float64]
- WRADH(azimuth, range)float64...
- standard_name :
- radar_doppler_spectrum_width_h
- long_name :
- Doppler spectrum width H
- units :
- meters per seconds
[317046 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[317046 values with dtype=float64]
- KDP(azimuth, range)float64...
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Specific differential phase HV
- units :
- degrees per kilometer
[317046 values with dtype=float64]
- UPHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[317046 values with dtype=float64]
- SQIH(azimuth, range)float64...
- standard_name :
- signal_quality_index_h
- long_name :
- Signal Quality H
- units :
- unitless
[317046 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[317046 values with dtype=float64]
- sweep_mode()<U20'azimuth_surveillance'
array('azimuth_surveillance', dtype='<U20') - sweep_number()int640
array(0)
- prt_mode()<U7'not_set'
array('not_set', dtype='<U7') - follow_mode()<U7'not_set'
array('not_set', dtype='<U7') - sweep_fixed_angle()float640.7031
array(0.703125)
<xarray.DatasetView> Size: 23MB Dimensions: (azimuth: 319, range: 997) Coordinates: * azimuth (azimuth) float64 3kB 21.88 22.86 23.89 ... 338.9 339.9 elevation (azimuth) float64 3kB 1.0 1.0 0.9688 ... 0.8906 0.8906 range (range) float32 4kB -436.5 -311.5 ... 1.239e+05 1.241e+05 time (azimuth) datetime64[us] 3kB 2011-04-27T16:42:53.45895... longitude float64 8B -86.47 latitude float64 8B 34.93 altitude int64 8B 226 Data variables: (12/14) DBZH (azimuth, range) float64 3MB ... DBTH (azimuth, range) float64 3MB ... VRADH (azimuth, range) float64 3MB ... WRADH (azimuth, range) float64 3MB ... ZDR (azimuth, range) float64 3MB ... KDP (azimuth, range) float64 3MB ... ... ... RHOHV (azimuth, range) float64 3MB ... sweep_mode <U20 80B 'azimuth_surveillance' sweep_number int64 8B 1 prt_mode <U7 28B 'not_set' follow_mode <U7 28B 'not_set' sweep_fixed_angle float64 8B 1.297sweep_1- azimuth: 319
- range: 997
- azimuth(azimuth)float6421.88 22.86 23.89 ... 338.9 339.9
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 21.875 , 22.859375, 23.890625, ..., 337.875 , 338.875 , 339.859375], shape=(319,)) - elevation(azimuth)float641.0 1.0 0.9688 ... 0.8906 0.8906
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([1. , 1. , 0.96875 , 0.953125, 0.890625, 0.875 , 0.84375 , 0.828125, 0.8125 , 0.8125 , 0.828125, 0.875 , 1. , 1.078125, 1.15625 , 1.21875 , 1.3125 , 1.34375 , 1.359375, 1.375 , 1.375 , 1.375 , 1.375 , 1.328125, 1.265625, 1.234375, 1.203125, 1.1875 , 1.171875, 1.15625 , 1.140625, 1.125 , 1.125 , 1.125 , 1.09375 , 1.0625 , 1.046875, 1.015625, 1.015625, 1.03125 , 1.03125 , 1.046875, 1.03125 , 1.03125 , 1.015625, 1.015625, 0.984375, 0.96875 , 0.9375 , 0.921875, 0.921875, 0.921875, 0.9375 , 0.921875, 0.890625, 0.890625, 0.875 , 0.875 , 0.859375, 0.84375 , 0.84375 , 0.828125, 0.84375 , 0.875 , 0.921875, 0.984375, 1.078125, 1.15625 , 1.21875 , 1.265625, 1.328125, 1.390625, 1.421875, 1.453125, 1.5 , 1.484375, 1.46875 , 1.421875, 1.390625, 1.390625, 1.375 , 1.359375, 1.34375 , 1.328125, 1.3125 , 1.28125 , 1.265625, 1.21875 , 1.203125, 1.171875, 1.171875, 1.1875 , 1.203125, 1.203125, 1.1875 , 1.1875 , 1.15625 , 1.109375, 1.09375 , 1.125 , 1.109375, 1.15625 , 1.15625 , 1.171875, 1.171875, 1.15625 , 1.171875, 1.1875 , 1.15625 , 1.125 , 1.125 , 1.15625 , 1.15625 , 1.203125, 1.203125, 1.1875 , 1.1875 , 1.1875 , 1.15625 , 1.140625, ... 1.171875, 1.15625 , 1.15625 , 1.140625, 1.171875, 1.203125, 1.203125, 1.203125, 1.1875 , 1.203125, 1.171875, 1.15625 , 1.15625 , 1.140625, 1.140625, 1.140625, 1.125 , 1.15625 , 1.1875 , 1.1875 , 1.1875 , 1.1875 , 1.1875 , 1.15625 , 1.15625 , 1.140625, 1.140625, 1.140625, 1.15625 , 1.1875 , 1.1875 , 0.84375 , 0.84375 , 0.828125, 0.859375, 0.890625, 0.9375 , 0.9375 , 1. , 1.09375 , 1.203125, 1.265625, 1.3125 , 1.34375 , 1.375 , 1.390625, 1.421875, 1.40625 , 1.375 , 1.34375 , 1.296875, 1.25 , 1.234375, 1.203125, 1.1875 , 1.1875 , 1.171875, 1.15625 , 1.140625, 1.125 , 1.09375 , 1.046875, 1.046875, 1.046875, 1.046875, 1.03125 , 1. , 0.984375, 0.9375 , 0.90625 , 0.890625, 0.875 , 0.90625 , 0.890625, 0.90625 , 0.890625, 0.875 , 0.859375, 0.859375, 0.890625, 0.890625, 1. , 1.015625, 1.140625, 1.21875 , 1.25 , 1.296875, 1.34375 , 1.359375, 1.375 , 1.359375, 1.328125, 1.3125 , 1.28125 , 1.28125 , 1.28125 , 1.28125 , 1.25 , 1.25 , 1.203125, 1.15625 , 1.09375 , 1.0625 , 1.046875, 1.046875, 1.046875, 1.046875, 1.046875, 1.046875, 1.03125 , 1.015625, 0.953125, 0.9375 , 0.890625, 0.890625]) - range(range)float32-436.5 -311.5 ... 1.241e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 125.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- -436.5
array([-4.365000e+02, -3.115000e+02, -1.865000e+02, -6.150000e+01, 6.350000e+01, 1.885000e+02, 3.135000e+02, 4.385000e+02, 5.635000e+02, 6.885000e+02, 8.135000e+02, 9.385000e+02, 1.063500e+03, 1.188500e+03, 1.313500e+03, 1.438500e+03, 1.563500e+03, 1.688500e+03, 1.813500e+03, 1.938500e+03, 2.063500e+03, 2.188500e+03, 2.313500e+03, 2.438500e+03, 2.563500e+03, 2.688500e+03, 2.813500e+03, 2.938500e+03, 3.063500e+03, 3.188500e+03, 3.313500e+03, 3.438500e+03, 3.563500e+03, 3.688500e+03, 3.813500e+03, 3.938500e+03, 4.063500e+03, 4.188500e+03, 4.313500e+03, 4.438500e+03, 4.563500e+03, 4.688500e+03, 4.813500e+03, 4.938500e+03, 5.063500e+03, 5.188500e+03, 5.313500e+03, 5.438500e+03, 5.563500e+03, 5.688500e+03, 5.813500e+03, 5.938500e+03, 6.063500e+03, 6.188500e+03, 6.313500e+03, 6.438500e+03, 6.563500e+03, 6.688500e+03, 6.813500e+03, 6.938500e+03, 7.063500e+03, 7.188500e+03, 7.313500e+03, 7.438500e+03, 7.563500e+03, 7.688500e+03, 7.813500e+03, 7.938500e+03, 8.063500e+03, 8.188500e+03, 8.313500e+03, 8.438500e+03, 8.563500e+03, 8.688500e+03, 8.813500e+03, 8.938500e+03, 9.063500e+03, 9.188500e+03, 9.313500e+03, 9.438500e+03, ... 1.145635e+05, 1.146885e+05, 1.148135e+05, 1.149385e+05, 1.150635e+05, 1.151885e+05, 1.153135e+05, 1.154385e+05, 1.155635e+05, 1.156885e+05, 1.158135e+05, 1.159385e+05, 1.160635e+05, 1.161885e+05, 1.163135e+05, 1.164385e+05, 1.165635e+05, 1.166885e+05, 1.168135e+05, 1.169385e+05, 1.170635e+05, 1.171885e+05, 1.173135e+05, 1.174385e+05, 1.175635e+05, 1.176885e+05, 1.178135e+05, 1.179385e+05, 1.180635e+05, 1.181885e+05, 1.183135e+05, 1.184385e+05, 1.185635e+05, 1.186885e+05, 1.188135e+05, 1.189385e+05, 1.190635e+05, 1.191885e+05, 1.193135e+05, 1.194385e+05, 1.195635e+05, 1.196885e+05, 1.198135e+05, 1.199385e+05, 1.200635e+05, 1.201885e+05, 1.203135e+05, 1.204385e+05, 1.205635e+05, 1.206885e+05, 1.208135e+05, 1.209385e+05, 1.210635e+05, 1.211885e+05, 1.213135e+05, 1.214385e+05, 1.215635e+05, 1.216885e+05, 1.218135e+05, 1.219385e+05, 1.220635e+05, 1.221885e+05, 1.223135e+05, 1.224385e+05, 1.225635e+05, 1.226885e+05, 1.228135e+05, 1.229385e+05, 1.230635e+05, 1.231885e+05, 1.233135e+05, 1.234385e+05, 1.235635e+05, 1.236885e+05, 1.238135e+05, 1.239385e+05, 1.240635e+05], dtype=float32) - time(azimuth)datetime64[us]2011-04-27T16:42:53.458953 ... 2...
- units :
- microseconds since 2011-04-27T16:42:53Z
- standard_name :
- time
array(['2011-04-27T16:42:53.458953', '2011-04-27T16:42:53.457031', '2011-04-27T16:42:53.455017', '2011-04-27T16:42:53.453033', '2011-04-27T16:42:53.451080', '2011-04-27T16:42:53.449127', '2011-04-27T16:42:53.447235', '2011-04-27T16:42:53.445251', '2011-04-27T16:42:53.443298', '2011-04-27T16:42:53.441375', '2011-04-27T16:42:53.439392', '2011-04-27T16:42:53.437469', '2011-04-27T16:42:53.435607', '2011-04-27T16:42:53.433563', '2011-04-27T16:42:53.431701', '2011-04-27T16:42:53.429779', '2011-04-27T16:42:53.427734', '2011-04-27T16:42:53.425750', '2011-04-27T16:42:53.423828', '2011-04-27T16:42:53.421813', '2011-04-27T16:42:53.419891', '2011-04-27T16:42:53.417968', '2011-04-27T16:42:53.415985', '2011-04-27T16:42:53.414031', '2011-04-27T16:42:53.412109', '2011-04-27T16:42:53.410156', '2011-04-27T16:42:53.408172', '2011-04-27T16:42:53.406250', '2011-04-27T16:42:53.404296', '2011-04-27T16:42:53.402435', '2011-04-27T16:42:53.400451', '2011-04-27T16:42:53.398437', '2011-04-27T16:42:53.396514', '2011-04-27T16:42:53.394561', '2011-04-27T16:42:53.392547', '2011-04-27T16:42:53.390625', '2011-04-27T16:42:53.388580', '2011-04-27T16:42:53.386718', '2011-04-27T16:42:53.384735', '2011-04-27T16:42:53.382781', ... '2011-04-27T16:42:52.912079', '2011-04-27T16:42:52.910218', '2011-04-27T16:42:52.908204', '2011-04-27T16:42:52.906159', '2011-04-27T16:42:52.904206', '2011-04-27T16:42:52.902375', '2011-04-27T16:42:52.900422', '2011-04-27T16:42:52.898499', '2011-04-27T16:42:52.896485', '2011-04-27T16:42:52.894501', '2011-04-27T16:42:52.892518', '2011-04-27T16:42:52.890625', '2011-04-27T16:42:52.888581', '2011-04-27T16:42:52.886689', '2011-04-27T16:42:52.884705', '2011-04-27T16:42:52.882782', '2011-04-27T16:42:52.880768', '2011-04-27T16:42:52.878846', '2011-04-27T16:42:52.876893', '2011-04-27T16:42:52.874970', '2011-04-27T16:42:52.873047', '2011-04-27T16:42:52.871094', '2011-04-27T16:42:52.869141', '2011-04-27T16:42:52.867188', '2011-04-27T16:42:52.865113', '2011-04-27T16:42:52.863221', '2011-04-27T16:42:52.861298', '2011-04-27T16:42:52.859314', '2011-04-27T16:42:52.857392', '2011-04-27T16:42:52.855439', '2011-04-27T16:42:52.853425', '2011-04-27T16:42:52.851532', '2011-04-27T16:42:52.849579', '2011-04-27T16:42:52.847596', '2011-04-27T16:42:52.845612', '2011-04-27T16:42:52.843689', '2011-04-27T16:42:52.841767', '2011-04-27T16:42:52.839814', '2011-04-27T16:42:52.837891'], dtype='datetime64[us]') - longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[318043 values with dtype=float64]
- DBTH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Total power H (uncorrected reflectivity)
- units :
- dBZ
[318043 values with dtype=float64]
- VRADH(azimuth, range)float64...
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
[318043 values with dtype=float64]
- WRADH(azimuth, range)float64...
- standard_name :
- radar_doppler_spectrum_width_h
- long_name :
- Doppler spectrum width H
- units :
- meters per seconds
[318043 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[318043 values with dtype=float64]
- KDP(azimuth, range)float64...
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Specific differential phase HV
- units :
- degrees per kilometer
[318043 values with dtype=float64]
- UPHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[318043 values with dtype=float64]
- SQIH(azimuth, range)float64...
- standard_name :
- signal_quality_index_h
- long_name :
- Signal Quality H
- units :
- unitless
[318043 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[318043 values with dtype=float64]
- sweep_mode()<U20'azimuth_surveillance'
array('azimuth_surveillance', dtype='<U20') - sweep_number()int641
array(1)
- prt_mode()<U7'not_set'
array('not_set', dtype='<U7') - follow_mode()<U7'not_set'
array('not_set', dtype='<U7') - sweep_fixed_angle()float641.297
array(1.296875)
<xarray.DatasetView> Size: 23MB Dimensions: (azimuth: 319, range: 997) Coordinates: * azimuth (azimuth) float64 3kB 21.88 22.88 23.89 ... 338.9 339.9 elevation (azimuth) float64 3kB 1.594 1.578 1.578 ... 1.562 1.547 range (range) float32 4kB -436.5 -311.5 ... 1.239e+05 1.241e+05 time (azimuth) datetime64[us] 3kB 2011-04-27T16:43:13.54489... longitude float64 8B -86.47 latitude float64 8B 34.93 altitude int64 8B 226 Data variables: (12/14) DBZH (azimuth, range) float64 3MB ... DBTH (azimuth, range) float64 3MB ... VRADH (azimuth, range) float64 3MB ... WRADH (azimuth, range) float64 3MB ... ZDR (azimuth, range) float64 3MB ... KDP (azimuth, range) float64 3MB ... ... ... RHOHV (azimuth, range) float64 3MB ... sweep_mode <U20 80B 'azimuth_surveillance' sweep_number int64 8B 2 prt_mode <U7 28B 'not_set' follow_mode <U7 28B 'not_set' sweep_fixed_angle float64 8B 2.0sweep_2- azimuth: 319
- range: 997
- azimuth(azimuth)float6421.88 22.88 23.89 ... 338.9 339.9
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 21.875 , 22.875 , 23.890625, ..., 337.890625, 338.875 , 339.890625], shape=(319,)) - elevation(azimuth)float641.594 1.578 1.578 ... 1.562 1.547
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([1.59375 , 1.578125, 1.578125, 1.578125, 1.578125, 1.578125, 1.578125, 1.625 , 1.6875 , 1.765625, 1.828125, 1.90625 , 1.96875 , 2. , 2.015625, 2.03125 , 2.0625 , 2.046875, 2.0625 , 2.0625 , 2.046875, 2.015625, 1.984375, 1.9375 , 1.890625, 1.859375, 1.828125, 1.78125 , 1.78125 , 1.765625, 1.78125 , 1.75 , 1.765625, 1.765625, 1.734375, 1.71875 , 1.6875 , 1.671875, 1.671875, 1.65625 , 1.671875, 1.640625, 1.609375, 1.59375 , 1.578125, 1.59375 , 1.609375, 1.59375 , 1.5625 , 1.546875, 1.515625, 1.546875, 1.578125, 1.625 , 1.640625, 1.765625, 1.84375 , 1.890625, 1.953125, 2.015625, 2.046875, 2.09375 , 2.09375 , 2.0625 , 2.09375 , 2.078125, 2.046875, 2. , 2. , 1.984375, 1.953125, 1.9375 , 1.90625 , 1.890625, 1.875 , 1.875 , 1.859375, 1.828125, 1.796875, 1.765625, 1.78125 , 1.796875, 1.78125 , 1.765625, 1.75 , 1.75 , 1.734375, 1.71875 , 1.71875 , 1.6875 , 1.671875, 1.671875, 1.6875 , 1.6875 , 1.6875 , 1.671875, 1.640625, 1.625 , 1.59375 , 1.578125, 1.5625 , 1.546875, 1.546875, 1.546875, 1.546875, 1.53125 , 1.59375 , 1.671875, 1.78125 , 1.90625 , 1.953125, 2.015625, 2.046875, 2.09375 , 2.109375, 2.109375, 2.109375, 2.078125, 2.0625 , 2.0625 , ... 1.59375 , 1.65625 , 1.671875, 1.703125, 1.78125 , 1.875 , 1.953125, 2.03125 , 2.078125, 2.078125, 2.109375, 2.109375, 2.09375 , 2.078125, 2.046875, 2.015625, 2. , 1.984375, 1.953125, 1.921875, 1.890625, 1.859375, 1.890625, 1.875 , 1.90625 , 1.875 , 1.828125, 1.8125 , 1.796875, 1.796875, 1.796875, 1.78125 , 1.765625, 1.75 , 1.71875 , 1.671875, 1.625 , 1.609375, 1.609375, 1.640625, 1.6875 , 1.65625 , 1.609375, 1.578125, 1.546875, 1.53125 , 1.515625, 1.578125, 1.640625, 1.71875 , 1.796875, 1.828125, 1.859375, 1.90625 , 1.9375 , 1.96875 , 2. , 2.046875, 2.03125 , 2.015625, 2.015625, 2.015625, 2. , 2.015625, 2. , 1.96875 , 1.921875, 1.90625 , 1.875 , 1.859375, 1.84375 , 1.796875, 1.75 , 1.71875 , 1.671875, 1.609375, 1.609375, 1.546875, 1.484375, 1.46875 , 1.4375 , 1.515625, 1.5 , 1.65625 , 1.6875 , 1.78125 , 1.859375, 1.953125, 2.03125 , 2.078125, 2.125 , 2.109375, 2.09375 , 2.046875, 2.03125 , 2.015625, 2. , 1.96875 , 1.96875 , 1.90625 , 1.890625, 1.796875, 1.765625, 1.734375, 1.71875 , 1.71875 , 1.703125, 1.6875 , 1.671875, 1.671875, 1.65625 , 1.625 , 1.609375, 1.5625 , 1.546875]) - range(range)float32-436.5 -311.5 ... 1.241e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 125.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- -436.5
array([-4.365000e+02, -3.115000e+02, -1.865000e+02, -6.150000e+01, 6.350000e+01, 1.885000e+02, 3.135000e+02, 4.385000e+02, 5.635000e+02, 6.885000e+02, 8.135000e+02, 9.385000e+02, 1.063500e+03, 1.188500e+03, 1.313500e+03, 1.438500e+03, 1.563500e+03, 1.688500e+03, 1.813500e+03, 1.938500e+03, 2.063500e+03, 2.188500e+03, 2.313500e+03, 2.438500e+03, 2.563500e+03, 2.688500e+03, 2.813500e+03, 2.938500e+03, 3.063500e+03, 3.188500e+03, 3.313500e+03, 3.438500e+03, 3.563500e+03, 3.688500e+03, 3.813500e+03, 3.938500e+03, 4.063500e+03, 4.188500e+03, 4.313500e+03, 4.438500e+03, 4.563500e+03, 4.688500e+03, 4.813500e+03, 4.938500e+03, 5.063500e+03, 5.188500e+03, 5.313500e+03, 5.438500e+03, 5.563500e+03, 5.688500e+03, 5.813500e+03, 5.938500e+03, 6.063500e+03, 6.188500e+03, 6.313500e+03, 6.438500e+03, 6.563500e+03, 6.688500e+03, 6.813500e+03, 6.938500e+03, 7.063500e+03, 7.188500e+03, 7.313500e+03, 7.438500e+03, 7.563500e+03, 7.688500e+03, 7.813500e+03, 7.938500e+03, 8.063500e+03, 8.188500e+03, 8.313500e+03, 8.438500e+03, 8.563500e+03, 8.688500e+03, 8.813500e+03, 8.938500e+03, 9.063500e+03, 9.188500e+03, 9.313500e+03, 9.438500e+03, ... 1.145635e+05, 1.146885e+05, 1.148135e+05, 1.149385e+05, 1.150635e+05, 1.151885e+05, 1.153135e+05, 1.154385e+05, 1.155635e+05, 1.156885e+05, 1.158135e+05, 1.159385e+05, 1.160635e+05, 1.161885e+05, 1.163135e+05, 1.164385e+05, 1.165635e+05, 1.166885e+05, 1.168135e+05, 1.169385e+05, 1.170635e+05, 1.171885e+05, 1.173135e+05, 1.174385e+05, 1.175635e+05, 1.176885e+05, 1.178135e+05, 1.179385e+05, 1.180635e+05, 1.181885e+05, 1.183135e+05, 1.184385e+05, 1.185635e+05, 1.186885e+05, 1.188135e+05, 1.189385e+05, 1.190635e+05, 1.191885e+05, 1.193135e+05, 1.194385e+05, 1.195635e+05, 1.196885e+05, 1.198135e+05, 1.199385e+05, 1.200635e+05, 1.201885e+05, 1.203135e+05, 1.204385e+05, 1.205635e+05, 1.206885e+05, 1.208135e+05, 1.209385e+05, 1.210635e+05, 1.211885e+05, 1.213135e+05, 1.214385e+05, 1.215635e+05, 1.216885e+05, 1.218135e+05, 1.219385e+05, 1.220635e+05, 1.221885e+05, 1.223135e+05, 1.224385e+05, 1.225635e+05, 1.226885e+05, 1.228135e+05, 1.229385e+05, 1.230635e+05, 1.231885e+05, 1.233135e+05, 1.234385e+05, 1.235635e+05, 1.236885e+05, 1.238135e+05, 1.239385e+05, 1.240635e+05], dtype=float32) - time(azimuth)datetime64[us]2011-04-27T16:43:13.544891 ... 2...
- units :
- microseconds since 2011-04-27T16:43:13Z
- standard_name :
- time
array(['2011-04-27T16:43:13.544891', '2011-04-27T16:43:13.542938', '2011-04-27T16:43:13.540954', '2011-04-27T16:43:13.539062', '2011-04-27T16:43:13.537078', '2011-04-27T16:43:13.535064', '2011-04-27T16:43:13.533172', '2011-04-27T16:43:13.531158', '2011-04-27T16:43:13.529266', '2011-04-27T16:43:13.527343', '2011-04-27T16:43:13.525360', '2011-04-27T16:43:13.523468', '2011-04-27T16:43:13.521453', '2011-04-27T16:43:13.519561', '2011-04-27T16:43:13.517547', '2011-04-27T16:43:13.515594', '2011-04-27T16:43:13.513671', '2011-04-27T16:43:13.511718', '2011-04-27T16:43:13.509704', '2011-04-27T16:43:13.507781', '2011-04-27T16:43:13.505798', '2011-04-27T16:43:13.503875', '2011-04-27T16:43:13.501953', '2011-04-27T16:43:13.499969', '2011-04-27T16:43:13.498077', '2011-04-27T16:43:13.496063', '2011-04-27T16:43:13.494171', '2011-04-27T16:43:13.492187', '2011-04-27T16:43:13.490234', '2011-04-27T16:43:13.488250', '2011-04-27T16:43:13.486358', '2011-04-27T16:43:13.484405', '2011-04-27T16:43:13.482452', '2011-04-27T16:43:13.480529', '2011-04-27T16:43:13.478515', '2011-04-27T16:43:13.476562', '2011-04-27T16:43:13.474609', '2011-04-27T16:43:13.472656', '2011-04-27T16:43:13.470703', '2011-04-27T16:43:13.468750', ... '2011-04-27T16:43:12.998078', '2011-04-27T16:43:12.996064', '2011-04-27T16:43:12.994141', '2011-04-27T16:43:12.992127', '2011-04-27T16:43:12.990204', '2011-04-27T16:43:12.988312', '2011-04-27T16:43:12.986359', '2011-04-27T16:43:12.984345', '2011-04-27T16:43:12.982483', '2011-04-27T16:43:12.980469', '2011-04-27T16:43:12.978455', '2011-04-27T16:43:12.976563', '2011-04-27T16:43:12.974671', '2011-04-27T16:43:12.972565', '2011-04-27T16:43:12.970612', '2011-04-27T16:43:12.968750', '2011-04-27T16:43:12.966736', '2011-04-27T16:43:12.964814', '2011-04-27T16:43:12.962830', '2011-04-27T16:43:12.960907', '2011-04-27T16:43:12.958863', '2011-04-27T16:43:12.957001', '2011-04-27T16:43:12.955079', '2011-04-27T16:43:12.953064', '2011-04-27T16:43:12.951111', '2011-04-27T16:43:12.949189', '2011-04-27T16:43:12.947236', '2011-04-27T16:43:12.945252', '2011-04-27T16:43:12.943329', '2011-04-27T16:43:12.941376', '2011-04-27T16:43:12.939393', '2011-04-27T16:43:12.937531', '2011-04-27T16:43:12.935608', '2011-04-27T16:43:12.933564', '2011-04-27T16:43:12.931611', '2011-04-27T16:43:12.929627', '2011-04-27T16:43:12.927674', '2011-04-27T16:43:12.925751', '2011-04-27T16:43:12.923768'], dtype='datetime64[us]') - longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[318043 values with dtype=float64]
- DBTH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Total power H (uncorrected reflectivity)
- units :
- dBZ
[318043 values with dtype=float64]
- VRADH(azimuth, range)float64...
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
[318043 values with dtype=float64]
- WRADH(azimuth, range)float64...
- standard_name :
- radar_doppler_spectrum_width_h
- long_name :
- Doppler spectrum width H
- units :
- meters per seconds
[318043 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[318043 values with dtype=float64]
- KDP(azimuth, range)float64...
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Specific differential phase HV
- units :
- degrees per kilometer
[318043 values with dtype=float64]
- UPHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[318043 values with dtype=float64]
- SQIH(azimuth, range)float64...
- standard_name :
- signal_quality_index_h
- long_name :
- Signal Quality H
- units :
- unitless
[318043 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[318043 values with dtype=float64]
- sweep_mode()<U20'azimuth_surveillance'
array('azimuth_surveillance', dtype='<U20') - sweep_number()int642
array(2)
- prt_mode()<U7'not_set'
array('not_set', dtype='<U7') - follow_mode()<U7'not_set'
array('not_set', dtype='<U7') - sweep_fixed_angle()float642.0
array(2.)
...<xarray.DatasetView> Size: 24B Dimensions: () Coordinates: longitude float64 8B -86.47 latitude float64 8B 34.93 altitude int64 8B 226 Data variables: *empty*radar_parameters- longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
<xarray.DatasetView> Size: 24B Dimensions: () Coordinates: longitude float64 8B -86.47 latitude float64 8B 34.93 altitude int64 8B 226 Data variables: *empty*georeferencing_correction- longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
<xarray.DatasetView> Size: 0B Dimensions: () Data variables: *empty*radar_calibration - 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'2011-04-27T16:42:32Z'
array('2011-04-27T16:42:32Z', dtype='<U20') - time_coverage_end()<U20'2011-04-27T16:46:50Z'
array('2011-04-27T16:46:50Z', dtype='<U20') - longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- Conventions :
- None
- instrument_name :
- rvp8-rel
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- Sigmet/UF
- history :
- None
- comment :
- Sigmet I
- site_name :
- MAX
[19]:
dtree["sweep_1"]
[19]:
<xarray.DatasetView> Size: 23MB
Dimensions: (azimuth: 319, range: 997)
Coordinates:
* azimuth (azimuth) float64 3kB 21.88 22.86 23.89 ... 338.9 339.9
elevation (azimuth) float64 3kB 1.0 1.0 0.9688 ... 0.8906 0.8906
range (range) float32 4kB -436.5 -311.5 ... 1.239e+05 1.241e+05
time (azimuth) datetime64[us] 3kB 2011-04-27T16:42:53.45895...
longitude float64 8B -86.47
latitude float64 8B 34.93
altitude int64 8B 226
Data variables: (12/14)
DBZH (azimuth, range) float64 3MB ...
DBTH (azimuth, range) float64 3MB ...
VRADH (azimuth, range) float64 3MB ...
WRADH (azimuth, range) float64 3MB ...
ZDR (azimuth, range) float64 3MB ...
KDP (azimuth, range) float64 3MB ...
... ...
RHOHV (azimuth, range) float64 3MB ...
sweep_mode <U20 80B 'azimuth_surveillance'
sweep_number int64 8B 1
prt_mode <U7 28B 'not_set'
follow_mode <U7 28B 'not_set'
sweep_fixed_angle float64 8B 1.297xarray.DataTree
- azimuth: 319
- range: 997
- azimuth(azimuth)float6421.88 22.86 23.89 ... 338.9 339.9
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 21.875 , 22.859375, 23.890625, ..., 337.875 , 338.875 , 339.859375], shape=(319,)) - elevation(azimuth)float641.0 1.0 0.9688 ... 0.8906 0.8906
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
array([1. , 1. , 0.96875 , 0.953125, 0.890625, 0.875 , 0.84375 , 0.828125, 0.8125 , 0.8125 , 0.828125, 0.875 , 1. , 1.078125, 1.15625 , 1.21875 , 1.3125 , 1.34375 , 1.359375, 1.375 , 1.375 , 1.375 , 1.375 , 1.328125, 1.265625, 1.234375, 1.203125, 1.1875 , 1.171875, 1.15625 , 1.140625, 1.125 , 1.125 , 1.125 , 1.09375 , 1.0625 , 1.046875, 1.015625, 1.015625, 1.03125 , 1.03125 , 1.046875, 1.03125 , 1.03125 , 1.015625, 1.015625, 0.984375, 0.96875 , 0.9375 , 0.921875, 0.921875, 0.921875, 0.9375 , 0.921875, 0.890625, 0.890625, 0.875 , 0.875 , 0.859375, 0.84375 , 0.84375 , 0.828125, 0.84375 , 0.875 , 0.921875, 0.984375, 1.078125, 1.15625 , 1.21875 , 1.265625, 1.328125, 1.390625, 1.421875, 1.453125, 1.5 , 1.484375, 1.46875 , 1.421875, 1.390625, 1.390625, 1.375 , 1.359375, 1.34375 , 1.328125, 1.3125 , 1.28125 , 1.265625, 1.21875 , 1.203125, 1.171875, 1.171875, 1.1875 , 1.203125, 1.203125, 1.1875 , 1.1875 , 1.15625 , 1.109375, 1.09375 , 1.125 , 1.109375, 1.15625 , 1.15625 , 1.171875, 1.171875, 1.15625 , 1.171875, 1.1875 , 1.15625 , 1.125 , 1.125 , 1.15625 , 1.15625 , 1.203125, 1.203125, 1.1875 , 1.1875 , 1.1875 , 1.15625 , 1.140625, ... 1.171875, 1.15625 , 1.15625 , 1.140625, 1.171875, 1.203125, 1.203125, 1.203125, 1.1875 , 1.203125, 1.171875, 1.15625 , 1.15625 , 1.140625, 1.140625, 1.140625, 1.125 , 1.15625 , 1.1875 , 1.1875 , 1.1875 , 1.1875 , 1.1875 , 1.15625 , 1.15625 , 1.140625, 1.140625, 1.140625, 1.15625 , 1.1875 , 1.1875 , 0.84375 , 0.84375 , 0.828125, 0.859375, 0.890625, 0.9375 , 0.9375 , 1. , 1.09375 , 1.203125, 1.265625, 1.3125 , 1.34375 , 1.375 , 1.390625, 1.421875, 1.40625 , 1.375 , 1.34375 , 1.296875, 1.25 , 1.234375, 1.203125, 1.1875 , 1.1875 , 1.171875, 1.15625 , 1.140625, 1.125 , 1.09375 , 1.046875, 1.046875, 1.046875, 1.046875, 1.03125 , 1. , 0.984375, 0.9375 , 0.90625 , 0.890625, 0.875 , 0.90625 , 0.890625, 0.90625 , 0.890625, 0.875 , 0.859375, 0.859375, 0.890625, 0.890625, 1. , 1.015625, 1.140625, 1.21875 , 1.25 , 1.296875, 1.34375 , 1.359375, 1.375 , 1.359375, 1.328125, 1.3125 , 1.28125 , 1.28125 , 1.28125 , 1.28125 , 1.25 , 1.25 , 1.203125, 1.15625 , 1.09375 , 1.0625 , 1.046875, 1.046875, 1.046875, 1.046875, 1.046875, 1.046875, 1.03125 , 1.015625, 0.953125, 0.9375 , 0.890625, 0.890625]) - range(range)float32-436.5 -311.5 ... 1.241e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 125.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- -436.5
array([-4.365000e+02, -3.115000e+02, -1.865000e+02, -6.150000e+01, 6.350000e+01, 1.885000e+02, 3.135000e+02, 4.385000e+02, 5.635000e+02, 6.885000e+02, 8.135000e+02, 9.385000e+02, 1.063500e+03, 1.188500e+03, 1.313500e+03, 1.438500e+03, 1.563500e+03, 1.688500e+03, 1.813500e+03, 1.938500e+03, 2.063500e+03, 2.188500e+03, 2.313500e+03, 2.438500e+03, 2.563500e+03, 2.688500e+03, 2.813500e+03, 2.938500e+03, 3.063500e+03, 3.188500e+03, 3.313500e+03, 3.438500e+03, 3.563500e+03, 3.688500e+03, 3.813500e+03, 3.938500e+03, 4.063500e+03, 4.188500e+03, 4.313500e+03, 4.438500e+03, 4.563500e+03, 4.688500e+03, 4.813500e+03, 4.938500e+03, 5.063500e+03, 5.188500e+03, 5.313500e+03, 5.438500e+03, 5.563500e+03, 5.688500e+03, 5.813500e+03, 5.938500e+03, 6.063500e+03, 6.188500e+03, 6.313500e+03, 6.438500e+03, 6.563500e+03, 6.688500e+03, 6.813500e+03, 6.938500e+03, 7.063500e+03, 7.188500e+03, 7.313500e+03, 7.438500e+03, 7.563500e+03, 7.688500e+03, 7.813500e+03, 7.938500e+03, 8.063500e+03, 8.188500e+03, 8.313500e+03, 8.438500e+03, 8.563500e+03, 8.688500e+03, 8.813500e+03, 8.938500e+03, 9.063500e+03, 9.188500e+03, 9.313500e+03, 9.438500e+03, ... 1.145635e+05, 1.146885e+05, 1.148135e+05, 1.149385e+05, 1.150635e+05, 1.151885e+05, 1.153135e+05, 1.154385e+05, 1.155635e+05, 1.156885e+05, 1.158135e+05, 1.159385e+05, 1.160635e+05, 1.161885e+05, 1.163135e+05, 1.164385e+05, 1.165635e+05, 1.166885e+05, 1.168135e+05, 1.169385e+05, 1.170635e+05, 1.171885e+05, 1.173135e+05, 1.174385e+05, 1.175635e+05, 1.176885e+05, 1.178135e+05, 1.179385e+05, 1.180635e+05, 1.181885e+05, 1.183135e+05, 1.184385e+05, 1.185635e+05, 1.186885e+05, 1.188135e+05, 1.189385e+05, 1.190635e+05, 1.191885e+05, 1.193135e+05, 1.194385e+05, 1.195635e+05, 1.196885e+05, 1.198135e+05, 1.199385e+05, 1.200635e+05, 1.201885e+05, 1.203135e+05, 1.204385e+05, 1.205635e+05, 1.206885e+05, 1.208135e+05, 1.209385e+05, 1.210635e+05, 1.211885e+05, 1.213135e+05, 1.214385e+05, 1.215635e+05, 1.216885e+05, 1.218135e+05, 1.219385e+05, 1.220635e+05, 1.221885e+05, 1.223135e+05, 1.224385e+05, 1.225635e+05, 1.226885e+05, 1.228135e+05, 1.229385e+05, 1.230635e+05, 1.231885e+05, 1.233135e+05, 1.234385e+05, 1.235635e+05, 1.236885e+05, 1.238135e+05, 1.239385e+05, 1.240635e+05], dtype=float32) - time(azimuth)datetime64[us]2011-04-27T16:42:53.458953 ... 2...
- units :
- microseconds since 2011-04-27T16:42:53Z
- standard_name :
- time
array(['2011-04-27T16:42:53.458953', '2011-04-27T16:42:53.457031', '2011-04-27T16:42:53.455017', '2011-04-27T16:42:53.453033', '2011-04-27T16:42:53.451080', '2011-04-27T16:42:53.449127', '2011-04-27T16:42:53.447235', '2011-04-27T16:42:53.445251', '2011-04-27T16:42:53.443298', '2011-04-27T16:42:53.441375', '2011-04-27T16:42:53.439392', '2011-04-27T16:42:53.437469', '2011-04-27T16:42:53.435607', '2011-04-27T16:42:53.433563', '2011-04-27T16:42:53.431701', '2011-04-27T16:42:53.429779', '2011-04-27T16:42:53.427734', '2011-04-27T16:42:53.425750', '2011-04-27T16:42:53.423828', '2011-04-27T16:42:53.421813', '2011-04-27T16:42:53.419891', '2011-04-27T16:42:53.417968', '2011-04-27T16:42:53.415985', '2011-04-27T16:42:53.414031', '2011-04-27T16:42:53.412109', '2011-04-27T16:42:53.410156', '2011-04-27T16:42:53.408172', '2011-04-27T16:42:53.406250', '2011-04-27T16:42:53.404296', '2011-04-27T16:42:53.402435', '2011-04-27T16:42:53.400451', '2011-04-27T16:42:53.398437', '2011-04-27T16:42:53.396514', '2011-04-27T16:42:53.394561', '2011-04-27T16:42:53.392547', '2011-04-27T16:42:53.390625', '2011-04-27T16:42:53.388580', '2011-04-27T16:42:53.386718', '2011-04-27T16:42:53.384735', '2011-04-27T16:42:53.382781', ... '2011-04-27T16:42:52.912079', '2011-04-27T16:42:52.910218', '2011-04-27T16:42:52.908204', '2011-04-27T16:42:52.906159', '2011-04-27T16:42:52.904206', '2011-04-27T16:42:52.902375', '2011-04-27T16:42:52.900422', '2011-04-27T16:42:52.898499', '2011-04-27T16:42:52.896485', '2011-04-27T16:42:52.894501', '2011-04-27T16:42:52.892518', '2011-04-27T16:42:52.890625', '2011-04-27T16:42:52.888581', '2011-04-27T16:42:52.886689', '2011-04-27T16:42:52.884705', '2011-04-27T16:42:52.882782', '2011-04-27T16:42:52.880768', '2011-04-27T16:42:52.878846', '2011-04-27T16:42:52.876893', '2011-04-27T16:42:52.874970', '2011-04-27T16:42:52.873047', '2011-04-27T16:42:52.871094', '2011-04-27T16:42:52.869141', '2011-04-27T16:42:52.867188', '2011-04-27T16:42:52.865113', '2011-04-27T16:42:52.863221', '2011-04-27T16:42:52.861298', '2011-04-27T16:42:52.859314', '2011-04-27T16:42:52.857392', '2011-04-27T16:42:52.855439', '2011-04-27T16:42:52.853425', '2011-04-27T16:42:52.851532', '2011-04-27T16:42:52.849579', '2011-04-27T16:42:52.847596', '2011-04-27T16:42:52.845612', '2011-04-27T16:42:52.843689', '2011-04-27T16:42:52.841767', '2011-04-27T16:42:52.839814', '2011-04-27T16:42:52.837891'], dtype='datetime64[us]') - longitude()float64-86.47
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-86.46582031)
- latitude()float6434.93
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(34.9318099)
- altitude()int64226
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(226)
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[318043 values with dtype=float64]
- DBTH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Total power H (uncorrected reflectivity)
- units :
- dBZ
[318043 values with dtype=float64]
- VRADH(azimuth, range)float64...
- standard_name :
- radial_velocity_of_scatterers_away_from_instrument_h
- long_name :
- Radial velocity of scatterers away from instrument H
- units :
- meters per seconds
[318043 values with dtype=float64]
- WRADH(azimuth, range)float64...
- standard_name :
- radar_doppler_spectrum_width_h
- long_name :
- Doppler spectrum width H
- units :
- meters per seconds
[318043 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[318043 values with dtype=float64]
- KDP(azimuth, range)float64...
- standard_name :
- radar_specific_differential_phase_hv
- long_name :
- Specific differential phase HV
- units :
- degrees per kilometer
[318043 values with dtype=float64]
- UPHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[318043 values with dtype=float64]
- SQIH(azimuth, range)float64...
- standard_name :
- signal_quality_index_h
- long_name :
- Signal Quality H
- units :
- unitless
[318043 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[318043 values with dtype=float64]
- sweep_mode()<U20'azimuth_surveillance'
array('azimuth_surveillance', dtype='<U20') - sweep_number()int641
array(1)
- prt_mode()<U7'not_set'
array('not_set', dtype='<U7') - follow_mode()<U7'not_set'
array('not_set', dtype='<U7') - sweep_fixed_angle()float641.297
array(1.296875)
clean up#
[20]:
tmpdir_obj.cleanup()