NEXRAD Level 2#
[1]:
import cmweather # noqa
import xarray as xr
from open_radar_data import DATASETS
import xradar as xd
Download#
Fetching NEXRAD Level2 radar data file from open-radar-data repository.
[2]:
filename = "../../../../Downloads/KDMX20200810_154746_V06"
[3]:
filename = DATASETS.fetch("KATX20130717_195021_V06")
Downloading file 'KATX20130717_195021_V06' from 'https://github.com/openradar/open-radar-data/raw/main/data/KATX20130717_195021_V06' to '/home/docs/.cache/open-radar-data'.
xr.open_dataset#
Making use of the xarray nexradlevel2 backend. We also need to provide the group. Note, that we are using CfRadial2 group access pattern.
[4]:
ds = xr.open_dataset(filename, group="sweep_0", engine="nexradlevel2")
display(ds)
<xarray.Dataset> Size: 42MB
Dimensions: (azimuth: 720, range: 1832)
Coordinates:
elevation (azimuth) float64 6kB ...
time (azimuth) datetime64[ns] 6kB ...
* range (range) float32 7kB 2.125e+03 2.375e+03 ... 4.599e+05
longitude float64 8B ...
latitude float64 8B ...
altitude int64 8B ...
* azimuth (azimuth) float64 6kB 0.2582 0.7526 1.272 ... 359.3 359.8
Data variables:
DBZH (azimuth, range) float64 11MB ...
ZDR (azimuth, range) float64 11MB ...
PHIDP (azimuth, range) float64 11MB ...
RHOHV (azimuth, range) float64 11MB ...
sweep_mode <U20 80B ...
sweep_number int64 8B ...
prt_mode <U7 28B ...
follow_mode <U7 28B ...
sweep_fixed_angle float64 8B ...
Attributes:
instrument_name: KATXxarray.Dataset
- azimuth: 720
- range: 1832
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[720 values with dtype=float64]
- time(azimuth)datetime64[ns]...
- standard_name :
- time
[720 values with dtype=datetime64[ns]]
- range(range)float322.125e+03 2.375e+03 ... 4.599e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 459375., 459625., 459875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.2582 0.7526 1.272 ... 359.3 359.8
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([2.581787e-01, 7.525635e-01, 1.271667e+00, ..., 3.587558e+02, 3.592529e+02, 3.597583e+02])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[1319040 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[1319040 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[1319040 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[1319040 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([ 2125.0, 2375.0, 2625.0, 2875.0, 3125.0, 3375.0, 3625.0, 3875.0, 4125.0, 4375.0, ... 457625.0, 457875.0, 458125.0, 458375.0, 458625.0, 458875.0, 459125.0, 459375.0, 459625.0, 459875.0], dtype='float32', name='range', length=1832)) - azimuthPandasIndex
PandasIndex(Index([ 0.2581787109375, 0.7525634765625, 1.27166748046875, 1.73858642578125, 2.24945068359375, 2.77679443359375, 3.24371337890625, 3.7738037109375, 4.25445556640625, 4.77630615234375, ... 355.23468017578125, 355.76202392578125, 356.2371826171875, 356.75628662109375, 357.25067138671875, 357.7642822265625, 358.25042724609375, 358.75579833984375, 359.2529296875, 359.75830078125], dtype='float64', name='azimuth', length=720))
- instrument_name :
- KATX
[5]:
ds
[5]:
<xarray.Dataset> Size: 42MB
Dimensions: (azimuth: 720, range: 1832)
Coordinates:
elevation (azimuth) float64 6kB ...
time (azimuth) datetime64[ns] 6kB ...
* range (range) float32 7kB 2.125e+03 2.375e+03 ... 4.599e+05
longitude float64 8B ...
latitude float64 8B ...
altitude int64 8B ...
* azimuth (azimuth) float64 6kB 0.2582 0.7526 1.272 ... 359.3 359.8
Data variables:
DBZH (azimuth, range) float64 11MB ...
ZDR (azimuth, range) float64 11MB ...
PHIDP (azimuth, range) float64 11MB ...
RHOHV (azimuth, range) float64 11MB ...
sweep_mode <U20 80B ...
sweep_number int64 8B ...
prt_mode <U7 28B ...
follow_mode <U7 28B ...
sweep_fixed_angle float64 8B ...
Attributes:
instrument_name: KATXxarray.Dataset
- azimuth: 720
- range: 1832
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[720 values with dtype=float64]
- time(azimuth)datetime64[ns]...
- standard_name :
- time
[720 values with dtype=datetime64[ns]]
- range(range)float322.125e+03 2.375e+03 ... 4.599e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 459375., 459625., 459875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.2582 0.7526 1.272 ... 359.3 359.8
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([2.581787e-01, 7.525635e-01, 1.271667e+00, ..., 3.587558e+02, 3.592529e+02, 3.597583e+02])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[1319040 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[1319040 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[1319040 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[1319040 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([ 2125.0, 2375.0, 2625.0, 2875.0, 3125.0, 3375.0, 3625.0, 3875.0, 4125.0, 4375.0, ... 457625.0, 457875.0, 458125.0, 458375.0, 458625.0, 458875.0, 459125.0, 459375.0, 459625.0, 459875.0], dtype='float32', name='range', length=1832)) - azimuthPandasIndex
PandasIndex(Index([ 0.2581787109375, 0.7525634765625, 1.27166748046875, 1.73858642578125, 2.24945068359375, 2.77679443359375, 3.24371337890625, 3.7738037109375, 4.25445556640625, 4.77630615234375, ... 355.23468017578125, 355.76202392578125, 356.2371826171875, 356.75628662109375, 357.25067138671875, 357.7642822265625, 358.25042724609375, 358.75579833984375, 359.2529296875, 359.75830078125], dtype='float64', name='azimuth', length=720))
- instrument_name :
- KATX
[6]:
import numpy as np
np.testing.assert_almost_equal(ds.sweep_fixed_angle.values, 0.4833984)
Plot Time vs. Azimuth#
[7]:
ds.azimuth.plot()
[7]:
[<matplotlib.lines.Line2D at 0x7f5c4a695810>]
Plot Range vs. Time#
We need to sort by time and specify the y-coordinate.
[8]:
ds.DBZH.sortby("time").plot(y="time", cmap="HomeyerRainbow")
[8]:
<matplotlib.collections.QuadMesh at 0x7f5c4a2340d0>
Plot Range vs. Azimuth#
[9]:
ds.DBZH.plot(cmap="HomeyerRainbow")
[9]:
<matplotlib.collections.QuadMesh at 0x7f5c421a7b10>
backend_kwargs#
Beside first_dim there are several additional backend_kwargs for the nexradlevel2 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.
[10]:
help(xd.io.NexradLevel2BackendEntrypoint)
Help on class NexradLevel2BackendEntrypoint in module xradar.io.backends.nexrad_level2:
class NexradLevel2BackendEntrypoint(xarray.backends.common.BackendEntrypoint)
| Xarray BackendEntrypoint for NEXRAD Level2 Data
|
| Method resolution order:
| NexradLevel2BackendEntrypoint
| 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, 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 NEXRAD Level2 files in Xarray'
|
| open_dataset_parameters = ('filename_or_obj', 'mask_and_scale', 'decod...
|
| url = 'tbd'
|
| ----------------------------------------------------------------------
| Methods inherited from xarray.backends.common.BackendEntrypoint:
|
| __repr__(self) -> 'str'
| Return repr(self).
|
| guess_can_open(self, filename_or_obj: 'str | os.PathLike[Any] | BufferedIOBase | 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] | BufferedIOBase | AbstractDataStore', **kwargs: 'Any') -> '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] | BufferedIOBase | AbstractDataStore', **kwargs: 'Any') -> '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
[11]:
ds = xr.open_dataset(filename, group="sweep_0", engine="nexradlevel2", first_dim="time")
display(ds)
<xarray.Dataset> Size: 42MB
Dimensions: (time: 720, range: 1832)
Coordinates:
elevation (time) float64 6kB ...
* time (time) datetime64[ns] 6kB 2013-07-17T19:50:21.652000 ....
* range (range) float32 7kB 2.125e+03 2.375e+03 ... 4.599e+05
longitude float64 8B ...
latitude float64 8B ...
altitude int64 8B ...
azimuth (time) float64 6kB ...
Data variables:
DBZH (time, range) float64 11MB ...
ZDR (time, range) float64 11MB ...
PHIDP (time, range) float64 11MB ...
RHOHV (time, range) float64 11MB ...
sweep_mode <U20 80B ...
sweep_number int64 8B ...
prt_mode <U7 28B ...
follow_mode <U7 28B ...
sweep_fixed_angle float64 8B ...
Attributes:
instrument_name: KATXxarray.Dataset
- time: 720
- range: 1832
- elevation(time)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[720 values with dtype=float64]
- time(time)datetime64[ns]2013-07-17T19:50:21.652000 ... 2...
- standard_name :
- time
array(['2013-07-17T19:50:21.652000000', '2013-07-17T19:50:21.676999936', '2013-07-17T19:50:21.702000128', ..., '2013-07-17T19:50:40.732999936', '2013-07-17T19:50:40.755000064', '2013-07-17T19:50:40.783000064'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 4.599e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 459375., 459625., 459875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(time)float64...
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
[720 values with dtype=float64]
- DBZH(time, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[1319040 values with dtype=float64]
- ZDR(time, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[1319040 values with dtype=float64]
- PHIDP(time, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[1319040 values with dtype=float64]
- RHOHV(time, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[1319040 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]
- timePandasIndex
PandasIndex(DatetimeIndex([ '2013-07-17 19:50:21.652000', '2013-07-17 19:50:21.676999936', '2013-07-17 19:50:21.702000128', '2013-07-17 19:50:21.727000064', '2013-07-17 19:50:21.755000064', '2013-07-17 19:50:21.783000064', '2013-07-17 19:50:21.807000064', '2013-07-17 19:50:21.835000064', '2013-07-17 19:50:21.860000', '2013-07-17 19:50:21.888000', ... '2013-07-17 19:50:40.543000064', '2013-07-17 19:50:40.568000', '2013-07-17 19:50:40.596000', '2013-07-17 19:50:40.624000', '2013-07-17 19:50:40.652000', '2013-07-17 19:50:40.680000', '2013-07-17 19:50:40.704999936', '2013-07-17 19:50:40.732999936', '2013-07-17 19:50:40.755000064', '2013-07-17 19:50:40.783000064'], dtype='datetime64[ns]', name='time', length=720, freq=None)) - rangePandasIndex
PandasIndex(Index([ 2125.0, 2375.0, 2625.0, 2875.0, 3125.0, 3375.0, 3625.0, 3875.0, 4125.0, 4375.0, ... 457625.0, 457875.0, 458125.0, 458375.0, 458625.0, 458875.0, 459125.0, 459375.0, 459625.0, 459875.0], dtype='float32', name='range', length=1832))
- instrument_name :
- KATX
open_nexradlevel2_datatree#
The same works analoguous with the datatree loader. But additionally we can provide a sweep string, number or list.
[12]:
help(xd.io.open_nexradlevel2_datatree)
Help on function open_nexradlevel2_datatree in module xradar.io.backends.nexrad_level2:
open_nexradlevel2_datatree(filename_or_obj, **kwargs)
Open NEXRAD Level2 dataset as :py:class:`datatree.DataTree`.
Parameters
----------
filename_or_obj : str, Path, file-like or DataStore
Strings and Path objects are interpreted as a path to a local or remote
radar file
Keyword Arguments
-----------------
sweep : int, list of int, optional
Sweep number(s) to extract, default to first sweep. If None, all sweeps are
extracted into a list.
first_dim : str
Can be ``time`` or ``auto`` first dimension. If set to ``auto``,
first dimension will be either ``azimuth`` or ``elevation`` depending on
type of sweep. Defaults to ``auto``.
reindex_angle : bool or dict
Defaults to False, no reindexing. Given dict should contain the kwargs to
reindex_angle. Only invoked if `decode_coord=True`.
fix_second_angle : bool
If True, fixes erroneous second angle data. Defaults to ``False``.
site_coords : bool
Attach radar site-coordinates to Dataset, defaults to ``True``.
kwargs : dict
Additional kwargs are fed to :py:func:`xarray.open_dataset`.
Returns
-------
dtree: datatree.DataTree
DataTree
[13]:
dtree = xd.io.open_nexradlevel2_datatree(filename, 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 '2013-07-17T19:51:38Z'
time_coverage_end <U20 80B '2013-07-17T19:52:00Z'
longitude float64 8B -122.5
altitude int64 8B 195
latitude float64 8B 48.19
Attributes:
Conventions: None
instrument_name: KATX
version: None
title: None
institution: None
references: None
source: None
history: None
comment: im/exported using xradardatatree.DataTree
- azimuth: 360
- range: 1352
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:51:58.464999936 .....
- standard_name :
- time
array(['2013-07-17T19:51:58.464999936', '2013-07-17T19:51:58.526000128', '2013-07-17T19:51:58.585999872', ..., '2013-07-17T19:51:58.280999936', '2013-07-17T19:51:58.343000064', '2013-07-17T19:51:58.404999936'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 3.399e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 339375., 339625., 339875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.563 1.533 2.469 ... 358.5 359.6
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.563049, 1.532593, 2.469177, ..., 357.528076, 358.503113, 359.563293])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[486720 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
[486720 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
[486720 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[486720 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[486720 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[486720 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 23MB Dimensions: (azimuth: 360, range: 1352) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2013-07-17T19:51:58.46499... * range (range) float32 5kB 2.125e+03 2.375e+03 ... 3.399e+05 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 3kB 0.563 1.533 2.469 ... 358.5 359.6 Data variables: DBZH (azimuth, range) float64 4MB ... VRADH (azimuth, range) float64 4MB ... WRADH (azimuth, range) float64 4MB ... ZDR (azimuth, range) float64 4MB ... PHIDP (azimuth, range) float64 4MB ... RHOHV (azimuth, range) float64 4MB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_0- 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'2013-07-17T19:51:38Z'
array('2013-07-17T19:51:38Z', dtype='<U20') - time_coverage_end()<U20'2013-07-17T19:52:00Z'
array('2013-07-17T19:52:00Z', dtype='<U20') - longitude()float64-122.5
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-122.49569702)
- altitude()int64195
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(195)
- latitude()float6448.19
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(48.19472122)
- Conventions :
- None
- instrument_name :
- KATX
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- None
- history :
- None
- comment :
- im/exported using xradar
Plot Sweep Range vs. Time#
[14]:
dtree["sweep_0"].ds.DBZH.sortby("time").plot(y="time", cmap="HomeyerRainbow")
[14]:
<matplotlib.collections.QuadMesh at 0x7f5c4105a590>
Plot Sweep Range vs. Azimuth#
[15]:
dtree["sweep_0"].ds.DBZH.plot(cmap="HomeyerRainbow")
[15]:
<matplotlib.collections.QuadMesh at 0x7f5c2e047b10>
[16]:
dtree = xd.io.open_nexradlevel2_datatree(filename, 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 '2013-07-17T19:53:05Z'
time_coverage_end <U20 80B '2013-07-17T19:53:25Z'
longitude float64 8B -122.5
altitude int64 8B 195
latitude float64 8B 48.19
Attributes:
Conventions: None
instrument_name: KATX
version: None
title: None
institution: None
references: None
source: None
history: None
comment: im/exported using xradardatatree.DataTree
- azimuth: 360
- range: 704
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:53:19.687000064 .....
- standard_name :
- time
array(['2013-07-17T19:53:19.687000064', '2013-07-17T19:53:19.744999936', '2013-07-17T19:53:19.801999872', ..., '2013-07-17T19:53:19.516999936', '2013-07-17T19:53:19.574000128', '2013-07-17T19:53:19.630000128'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 1.779e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 177375., 177625., 177875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.4999 1.513 2.521 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.499878, 1.513367, 2.521362, ..., 357.536316, 358.511353, 359.505615])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[253440 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
[253440 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
[253440 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[253440 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[253440 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[253440 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 12MB Dimensions: (azimuth: 360, range: 704) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2013-07-17T19:53:19.68700... * range (range) float32 3kB 2.125e+03 2.375e+03 ... 1.779e+05 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 3kB 0.4999 1.513 2.521 ... 358.5 359.5 Data variables: DBZH (azimuth, range) float64 2MB ... VRADH (azimuth, range) float64 2MB ... WRADH (azimuth, range) float64 2MB ... ZDR (azimuth, range) float64 2MB ... PHIDP (azimuth, range) float64 2MB ... RHOHV (azimuth, range) float64 2MB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_0- 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'2013-07-17T19:53:05Z'
array('2013-07-17T19:53:05Z', dtype='<U20') - time_coverage_end()<U20'2013-07-17T19:53:25Z'
array('2013-07-17T19:53:25Z', dtype='<U20') - longitude()float64-122.5
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-122.49569702)
- altitude()int64195
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(195)
- latitude()float6448.19
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(48.19472122)
- Conventions :
- None
- instrument_name :
- KATX
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- None
- history :
- None
- comment :
- im/exported using xradar
[17]:
dtree = xd.io.open_nexradlevel2_datatree(filename, 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 '2013-07-17T19:50:21Z'
time_coverage_end <U20 80B '2013-07-17T19:53:25Z'
longitude float64 8B -122.5
altitude int64 8B 195
latitude float64 8B 48.19
Attributes:
Conventions: None
instrument_name: KATX
version: None
title: None
institution: None
references: None
source: None
history: None
comment: im/exported using xradardatatree.DataTree
- azimuth: 720
- range: 1832
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[720 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:50:22.179000064 .....
- standard_name :
- time
array(['2013-07-17T19:50:22.179000064', '2013-07-17T19:50:22.207000064', '2013-07-17T19:50:22.235000064', ..., '2013-07-17T19:50:22.097999872', '2013-07-17T19:50:22.126000128', '2013-07-17T19:50:22.153999872'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 4.599e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 459375., 459625., 459875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.2582 0.7526 1.272 ... 359.3 359.8
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([2.581787e-01, 7.525635e-01, 1.271667e+00, ..., 3.587558e+02, 3.592529e+02, 3.597583e+02])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[1319040 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[1319040 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[1319040 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[1319040 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 42MB Dimensions: (azimuth: 720, range: 1832) Coordinates: elevation (azimuth) float64 6kB ... time (azimuth) datetime64[ns] 6kB 2013-07-17T19:50:22.17900... * range (range) float32 7kB 2.125e+03 2.375e+03 ... 4.599e+05 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 6kB 0.2582 0.7526 1.272 ... 359.3 359.8 Data variables: DBZH (azimuth, range) float64 11MB ... ZDR (azimuth, range) float64 11MB ... PHIDP (azimuth, range) float64 11MB ... RHOHV (azimuth, range) float64 11MB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_0- azimuth: 720
- range: 1192
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[720 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:50:41.340999936 .....
- standard_name :
- time
array(['2013-07-17T19:50:41.340999936', '2013-07-17T19:50:41.371000064', '2013-07-17T19:50:41.392999936', ..., '2013-07-17T19:50:41.262000128', '2013-07-17T19:50:41.288000000', '2013-07-17T19:50:41.315000064'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 2.999e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 299375., 299625., 299875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.2499 0.7938 1.252 ... 359.2 359.8
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([2.499390e-01, 7.937622e-01, 1.252441e+00, ..., 3.587448e+02, 3.592474e+02, 3.597583e+02])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[858240 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
[858240 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
[858240 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 21MB Dimensions: (azimuth: 720, range: 1192) Coordinates: elevation (azimuth) float64 6kB ... time (azimuth) datetime64[ns] 6kB 2013-07-17T19:50:41.34099... * range (range) float32 5kB 2.125e+03 2.375e+03 ... 2.999e+05 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 6kB 0.2499 0.7938 1.252 ... 359.2 359.8 Data variables: DBZH (azimuth, range) float64 7MB ... VRADH (azimuth, range) float64 7MB ... WRADH (azimuth, range) float64 7MB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_1- azimuth: 360
- range: 704
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:53:19.687000064 .....
- standard_name :
- time
array(['2013-07-17T19:53:19.687000064', '2013-07-17T19:53:19.744999936', '2013-07-17T19:53:19.801999872', ..., '2013-07-17T19:53:19.516999936', '2013-07-17T19:53:19.574000128', '2013-07-17T19:53:19.630000128'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 1.779e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 177375., 177625., 177875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.4999 1.513 2.521 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.499878, 1.513367, 2.521362, ..., 357.536316, 358.511353, 359.505615])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[253440 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
[253440 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
[253440 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[253440 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[253440 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[253440 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 12MB Dimensions: (azimuth: 360, range: 704) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2013-07-17T19:53:19.68700... * range (range) float32 3kB 2.125e+03 2.375e+03 ... 1.779e+05 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 3kB 0.4999 1.513 2.521 ... 358.5 359.5 Data variables: DBZH (azimuth, range) float64 2MB ... VRADH (azimuth, range) float64 2MB ... WRADH (azimuth, range) float64 2MB ... ZDR (azimuth, range) float64 2MB ... PHIDP (azimuth, range) float64 2MB ... RHOHV (azimuth, range) float64 2MB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_2- 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'2013-07-17T19:50:21Z'
array('2013-07-17T19:50:21Z', dtype='<U20') - time_coverage_end()<U20'2013-07-17T19:53:25Z'
array('2013-07-17T19:53:25Z', dtype='<U20') - longitude()float64-122.5
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-122.49569702)
- altitude()int64195
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(195)
- latitude()float6448.19
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(48.19472122)
- Conventions :
- None
- instrument_name :
- KATX
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- None
- history :
- None
- comment :
- im/exported using xradar
[18]:
dtree["sweep_0"]["sweep_fixed_angle"].values
[18]:
array(0.48339844)
[19]:
dtree["sweep_1"]["sweep_fixed_angle"].values
[19]:
array(0.48339844)
[20]:
dtree = xd.io.open_nexradlevel2_datatree(
filename,
)
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 '2013-07-17T19:50:21Z'
time_coverage_end <U20 80B '2013-07-17T19:55:11Z'
longitude float64 8B -122.5
altitude int64 8B 195
latitude float64 8B 48.19
Attributes:
Conventions: None
instrument_name: KATX
version: None
title: None
institution: None
references: None
source: None
history: None
comment: im/exported using xradardatatree.DataTree
- azimuth: 720
- range: 1832
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[720 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:50:22.179000064 .....
- standard_name :
- time
array(['2013-07-17T19:50:22.179000064', '2013-07-17T19:50:22.207000064', '2013-07-17T19:50:22.235000064', ..., '2013-07-17T19:50:22.097999872', '2013-07-17T19:50:22.126000128', '2013-07-17T19:50:22.153999872'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 4.599e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 459375., 459625., 459875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.2582 0.7526 1.272 ... 359.3 359.8
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([2.581787e-01, 7.525635e-01, 1.271667e+00, ..., 3.587558e+02, 3.592529e+02, 3.597583e+02])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[1319040 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[1319040 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[1319040 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[1319040 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 42MB Dimensions: (azimuth: 720, range: 1832) Coordinates: elevation (azimuth) float64 6kB ... time (azimuth) datetime64[ns] 6kB 2013-07-17T19:50:22.17900... * range (range) float32 7kB 2.125e+03 2.375e+03 ... 4.599e+05 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 6kB 0.2582 0.7526 1.272 ... 359.3 359.8 Data variables: DBZH (azimuth, range) float64 11MB ... ZDR (azimuth, range) float64 11MB ... PHIDP (azimuth, range) float64 11MB ... RHOHV (azimuth, range) float64 11MB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_0- azimuth: 720
- range: 1192
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[720 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:50:41.340999936 .....
- standard_name :
- time
array(['2013-07-17T19:50:41.340999936', '2013-07-17T19:50:41.371000064', '2013-07-17T19:50:41.392999936', ..., '2013-07-17T19:50:41.262000128', '2013-07-17T19:50:41.288000000', '2013-07-17T19:50:41.315000064'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 2.999e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 299375., 299625., 299875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.2499 0.7938 1.252 ... 359.2 359.8
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([2.499390e-01, 7.937622e-01, 1.252441e+00, ..., 3.587448e+02, 3.592474e+02, 3.597583e+02])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[858240 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
[858240 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
[858240 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 21MB Dimensions: (azimuth: 720, range: 1192) Coordinates: elevation (azimuth) float64 6kB ... time (azimuth) datetime64[ns] 6kB 2013-07-17T19:50:41.34099... * range (range) float32 5kB 2.125e+03 2.375e+03 ... 2.999e+05 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 6kB 0.2499 0.7938 1.252 ... 359.2 359.8 Data variables: DBZH (azimuth, range) float64 7MB ... VRADH (azimuth, range) float64 7MB ... WRADH (azimuth, range) float64 7MB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_1- azimuth: 720
- range: 1676
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[720 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:51:18.016999936 .....
- standard_name :
- time
array(['2013-07-17T19:51:18.016999936', '2013-07-17T19:51:18.041999872', '2013-07-17T19:51:18.067000064', ..., '2013-07-17T19:51:17.943000064', '2013-07-17T19:51:17.968000000', '2013-07-17T19:51:17.996000000'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 4.209e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 420375., 420625., 420875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.2554 0.7553 1.241 ... 359.3 359.8
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([2.554321e-01, 7.553101e-01, 1.241455e+00, ..., 3.587448e+02, 3.592722e+02, 3.597638e+02])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[1206720 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[1206720 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[1206720 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[1206720 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 39MB Dimensions: (azimuth: 720, range: 1676) Coordinates: elevation (azimuth) float64 6kB ... time (azimuth) datetime64[ns] 6kB 2013-07-17T19:51:18.01699... * range (range) float32 7kB 2.125e+03 2.375e+03 ... 4.209e+05 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 6kB 0.2554 0.7553 1.241 ... 359.3 359.8 Data variables: DBZH (azimuth, range) float64 10MB ... ZDR (azimuth, range) float64 10MB ... PHIDP (azimuth, range) float64 10MB ... RHOHV (azimuth, range) float64 10MB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_2- azimuth: 720
- range: 1192
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[720 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:51:36.593999872 .....
- standard_name :
- time
array(['2013-07-17T19:51:36.593999872', '2013-07-17T19:51:36.619000064', '2013-07-17T19:51:36.644000000', ..., '2013-07-17T19:51:36.516999936', '2013-07-17T19:51:36.542000128', '2013-07-17T19:51:36.568000000'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 2.999e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 299375., 299625., 299875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.2527 0.7526 1.247 ... 359.2 359.8
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([2.526855e-01, 7.525635e-01, 1.246948e+00, ..., 3.587503e+02, 3.592474e+02, 3.597528e+02])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[858240 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
[858240 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
[858240 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 21MB Dimensions: (azimuth: 720, range: 1192) Coordinates: elevation (azimuth) float64 6kB ... time (azimuth) datetime64[ns] 6kB 2013-07-17T19:51:36.59399... * range (range) float32 5kB 2.125e+03 2.375e+03 ... 2.999e+05 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 6kB 0.2527 0.7526 1.247 ... 359.2 359.8 Data variables: DBZH (azimuth, range) float64 7MB ... VRADH (azimuth, range) float64 7MB ... WRADH (azimuth, range) float64 7MB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_3- azimuth: 360
- range: 1352
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:51:58.464999936 .....
- standard_name :
- time
array(['2013-07-17T19:51:58.464999936', '2013-07-17T19:51:58.526000128', '2013-07-17T19:51:58.585999872', ..., '2013-07-17T19:51:58.280999936', '2013-07-17T19:51:58.343000064', '2013-07-17T19:51:58.404999936'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 3.399e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 339375., 339625., 339875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.563 1.533 2.469 ... 358.5 359.6
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.563049, 1.532593, 2.469177, ..., 357.528076, 358.503113, 359.563293])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[486720 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
[486720 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
[486720 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[486720 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[486720 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[486720 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 23MB Dimensions: (azimuth: 360, range: 1352) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2013-07-17T19:51:58.46499... * range (range) float32 5kB 2.125e+03 2.375e+03 ... 3.399e+05 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 3kB 0.563 1.533 2.469 ... 358.5 359.6 Data variables: DBZH (azimuth, range) float64 4MB ... VRADH (azimuth, range) float64 4MB ... WRADH (azimuth, range) float64 4MB ... ZDR (azimuth, range) float64 4MB ... PHIDP (azimuth, range) float64 4MB ... RHOHV (azimuth, range) float64 4MB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_4- azimuth: 360
- range: 1112
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:52:18.792000 ... 2...
- standard_name :
- time
array(['2013-07-17T19:52:18.792000000', '2013-07-17T19:52:18.847000064', '2013-07-17T19:52:18.902000128', ..., '2013-07-17T19:52:18.624000000', '2013-07-17T19:52:18.680000000', '2013-07-17T19:52:18.736000000'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 2.799e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 279375., 279625., 279875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.5273 1.522 2.527 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.527344, 1.521606, 2.526855, ..., 357.470398, 358.4729 , 359.497375])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[400320 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
[400320 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
[400320 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[400320 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[400320 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[400320 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 19MB Dimensions: (azimuth: 360, range: 1112) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2013-07-17T19:52:18.79200... * range (range) float32 4kB 2.125e+03 2.375e+03 ... 2.799e+05 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 3kB 0.5273 1.522 2.527 ... 358.5 359.5 Data variables: DBZH (azimuth, range) float64 3MB ... VRADH (azimuth, range) float64 3MB ... WRADH (azimuth, range) float64 3MB ... ZDR (azimuth, range) float64 3MB ... PHIDP (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: instrument_name: KATXsweep_5- azimuth: 360
- range: 940
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:52:38.798000128 .....
- standard_name :
- time
array(['2013-07-17T19:52:38.798000128', '2013-07-17T19:52:38.852999936', '2013-07-17T19:52:38.908999936', ..., '2013-07-17T19:52:38.631000064', '2013-07-17T19:52:38.688000000', '2013-07-17T19:52:38.742000128'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 2.369e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 236375., 236625., 236875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.5164 1.513 2.486 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.516357, 1.513367, 2.485657, ..., 357.478638, 358.516846, 359.522095])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[338400 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
[338400 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
[338400 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[338400 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[338400 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[338400 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 16MB Dimensions: (azimuth: 360, range: 940) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2013-07-17T19:52:38.79800... * range (range) float32 4kB 2.125e+03 2.375e+03 ... 2.369e+05 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 3kB 0.5164 1.513 2.486 ... 358.5 359.5 Data variables: DBZH (azimuth, range) float64 3MB ... VRADH (azimuth, range) float64 3MB ... WRADH (azimuth, range) float64 3MB ... ZDR (azimuth, range) float64 3MB ... PHIDP (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: instrument_name: KATXsweep_6- azimuth: 360
- range: 800
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:52:59.190000128 .....
- standard_name :
- time
array(['2013-07-17T19:52:59.190000128', '2013-07-17T19:52:59.247000064', '2013-07-17T19:52:59.303000064', ..., '2013-07-17T19:52:59.019000064', '2013-07-17T19:52:59.076999936', '2013-07-17T19:52:59.134000128'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 2.019e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 201375., 201625., 201875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.5081 1.516 2.497 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.508118, 1.516113, 2.496643, ..., 357.50061 , 358.514099, 359.522095])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[288000 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
[288000 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
[288000 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[288000 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[288000 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[288000 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 14MB Dimensions: (azimuth: 360, range: 800) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2013-07-17T19:52:59.19000... * range (range) float32 3kB 2.125e+03 2.375e+03 ... 2.019e+05 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 3kB 0.5081 1.516 2.497 ... 358.5 359.5 Data variables: DBZH (azimuth, range) float64 2MB ... VRADH (azimuth, range) float64 2MB ... WRADH (azimuth, range) float64 2MB ... ZDR (azimuth, range) float64 2MB ... PHIDP (azimuth, range) float64 2MB ... RHOHV (azimuth, range) float64 2MB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_7- azimuth: 360
- range: 704
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:53:19.687000064 .....
- standard_name :
- time
array(['2013-07-17T19:53:19.687000064', '2013-07-17T19:53:19.744999936', '2013-07-17T19:53:19.801999872', ..., '2013-07-17T19:53:19.516999936', '2013-07-17T19:53:19.574000128', '2013-07-17T19:53:19.630000128'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 1.779e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 177375., 177625., 177875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.4999 1.513 2.521 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.499878, 1.513367, 2.521362, ..., 357.536316, 358.511353, 359.505615])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[253440 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
[253440 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
[253440 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[253440 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[253440 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[253440 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 12MB Dimensions: (azimuth: 360, range: 704) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2013-07-17T19:53:19.68700... * range (range) float32 3kB 2.125e+03 2.375e+03 ... 1.779e+05 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 3kB 0.4999 1.513 2.521 ... 358.5 359.5 Data variables: DBZH (azimuth, range) float64 2MB ... VRADH (azimuth, range) float64 2MB ... WRADH (azimuth, range) float64 2MB ... ZDR (azimuth, range) float64 2MB ... PHIDP (azimuth, range) float64 2MB ... RHOHV (azimuth, range) float64 2MB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_8- azimuth: 360
- range: 540
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:53:35.984999936 .....
- standard_name :
- time
array(['2013-07-17T19:53:35.984999936', '2013-07-17T19:53:36.025999872', '2013-07-17T19:53:36.064999936', ..., '2013-07-17T19:53:35.868000000', '2013-07-17T19:53:35.905999872', '2013-07-17T19:53:35.944999936'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 1.369e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 136375., 136625., 136875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.4971 1.505 2.505 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.497131, 1.505127, 2.504883, ..., 357.530823, 358.500366, 359.491882])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[194400 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
[194400 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
[194400 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[194400 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[194400 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[194400 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 9MB Dimensions: (azimuth: 360, range: 540) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2013-07-17T19:53:35.98499... * range (range) float32 2kB 2.125e+03 2.375e+03 ... 1.369e+05 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 3kB 0.4971 1.505 2.505 ... 358.5 359.5 Data variables: DBZH (azimuth, range) float64 2MB ... VRADH (azimuth, range) float64 2MB ... WRADH (azimuth, range) float64 2MB ... ZDR (azimuth, range) float64 2MB ... PHIDP (azimuth, range) float64 2MB ... RHOHV (azimuth, range) float64 2MB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_9- azimuth: 360
- range: 500
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:53:50.112000 ... 2...
- standard_name :
- time
array(['2013-07-17T19:53:50.112000000', '2013-07-17T19:53:50.148999936', '2013-07-17T19:53:50.191000064', ..., '2013-07-17T19:53:49.993999872', '2013-07-17T19:53:50.033999872', '2013-07-17T19:53:50.072999936'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 1.269e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 126375., 126625., 126875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.4944 1.502 2.527 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.494385, 1.50238 , 2.526855, ..., 357.492371, 358.503113, 359.500122])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[180000 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
[180000 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
[180000 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[180000 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[180000 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[180000 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 9MB Dimensions: (azimuth: 360, range: 500) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2013-07-17T19:53:50.11200... * range (range) float32 2kB 2.125e+03 2.375e+03 ... 1.269e+05 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 3kB 0.4944 1.502 2.527 ... 358.5 359.5 Data variables: DBZH (azimuth, range) float64 1MB ... VRADH (azimuth, range) float64 1MB ... WRADH (azimuth, range) float64 1MB ... ZDR (azimuth, range) float64 1MB ... PHIDP (azimuth, range) float64 1MB ... RHOHV (azimuth, range) float64 1MB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_10- azimuth: 360
- range: 460
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:54:04.177999872 .....
- standard_name :
- time
array(['2013-07-17T19:54:04.177999872', '2013-07-17T19:54:04.216999936', '2013-07-17T19:54:04.256999936', ..., '2013-07-17T19:54:04.060999936', '2013-07-17T19:54:04.097999872', '2013-07-17T19:54:04.136999936'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 1.169e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 116375., 116625., 116875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.5246 1.497 2.499 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.524597, 1.496887, 2.49939 , ..., 357.497864, 358.494873, 359.497375])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[165600 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
[165600 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
[165600 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[165600 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[165600 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[165600 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 8MB Dimensions: (azimuth: 360, range: 460) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2013-07-17T19:54:04.17799... * range (range) float32 2kB 2.125e+03 2.375e+03 ... 1.169e+05 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 3kB 0.5246 1.497 2.499 ... 358.5 359.5 Data variables: DBZH (azimuth, range) float64 1MB ... VRADH (azimuth, range) float64 1MB ... WRADH (azimuth, range) float64 1MB ... ZDR (azimuth, range) float64 1MB ... PHIDP (azimuth, range) float64 1MB ... RHOHV (azimuth, range) float64 1MB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_11- azimuth: 360
- range: 388
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:54:18.232000 ... 2...
- standard_name :
- time
array(['2013-07-17T19:54:18.232000000', '2013-07-17T19:54:18.268999936', '2013-07-17T19:54:18.308000000', ..., '2013-07-17T19:54:18.113999872', '2013-07-17T19:54:18.152000000', '2013-07-17T19:54:18.192000000'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 9.888e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 98375., 98625., 98875.], dtype=float32)
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.5081 1.494 2.508 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.508118, 1.494141, 2.507629, ..., 357.50885 , 358.505859, 359.511108])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[139680 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
[139680 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
[139680 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[139680 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[139680 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[139680 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 7MB Dimensions: (azimuth: 360, range: 388) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2013-07-17T19:54:18.23200... * range (range) float32 2kB 2.125e+03 2.375e+03 ... 9.888e+04 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 3kB 0.5081 1.494 2.508 ... 358.5 359.5 Data variables: DBZH (azimuth, range) float64 1MB ... VRADH (azimuth, range) float64 1MB ... WRADH (azimuth, range) float64 1MB ... ZDR (azimuth, range) float64 1MB ... PHIDP (azimuth, range) float64 1MB ... RHOHV (azimuth, range) float64 1MB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_12- azimuth: 360
- range: 332
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:54:32.260000 ... 2...
- standard_name :
- time
array(['2013-07-17T19:54:32.260000000', '2013-07-17T19:54:32.299000064', '2013-07-17T19:54:32.339000064', ..., '2013-07-17T19:54:32.143000064', '2013-07-17T19:54:32.182000128', '2013-07-17T19:54:32.223000064'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 8.488e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 84375., 84625., 84875.], dtype=float32)
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.5026 1.502 2.502 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.502625, 1.50238 , 2.502136, ..., 357.497864, 358.503113, 359.513855])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[119520 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
[119520 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
[119520 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[119520 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[119520 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[119520 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 6MB Dimensions: (azimuth: 360, range: 332) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2013-07-17T19:54:32.26000... * range (range) float32 1kB 2.125e+03 2.375e+03 ... 8.488e+04 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 3kB 0.5026 1.502 2.502 ... 358.5 359.5 Data variables: DBZH (azimuth, range) float64 956kB ... VRADH (azimuth, range) float64 956kB ... WRADH (azimuth, range) float64 956kB ... ZDR (azimuth, range) float64 956kB ... PHIDP (azimuth, range) float64 956kB ... RHOHV (azimuth, range) float64 956kB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_13- azimuth: 360
- range: 280
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:54:46.262000128 .....
- standard_name :
- time
array(['2013-07-17T19:54:46.262000128', '2013-07-17T19:54:46.300999936', '2013-07-17T19:54:46.337999872', ..., '2013-07-17T19:54:46.144999936', '2013-07-17T19:54:46.184000000', '2013-07-17T19:54:46.224999936'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 7.188e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 71375., 71625., 71875.], dtype=float32)
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.4916 1.491 2.494 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.491638, 1.491394, 2.493896, ..., 357.50061 , 358.492126, 359.505615])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[100800 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
[100800 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
[100800 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[100800 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[100800 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[100800 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]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 5MB Dimensions: (azimuth: 360, range: 280) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2013-07-17T19:54:46.26200... * range (range) float32 1kB 2.125e+03 2.375e+03 ... 7.188e+04 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 3kB 0.4916 1.491 2.494 ... 358.5 359.5 Data variables: DBZH (azimuth, range) float64 806kB ... VRADH (azimuth, range) float64 806kB ... WRADH (azimuth, range) float64 806kB ... ZDR (azimuth, range) float64 806kB ... PHIDP (azimuth, range) float64 806kB ... RHOHV (azimuth, range) float64 806kB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_14- azimuth: 360
- range: 240
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[360 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:55:00.215000064 .....
- standard_name :
- time
array(['2013-07-17T19:55:00.215000064', '2013-07-17T19:55:00.251000064', '2013-07-17T19:55:00.291000064', ..., '2013-07-17T19:55:00.100999936', '2013-07-17T19:55:00.140999936', '2013-07-17T19:55:00.176000000'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 6.188e+04
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 61375., 61625., 61875.], dtype=float32)
- longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.5054 1.5 2.505 ... 358.5 359.5
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([ 0.505371, 1.499634, 2.504883, ..., 357.530823, 358.514099, 359.508362])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[86400 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
[86400 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
[86400 values with dtype=float64]
- ZDR(azimuth, range)float64...
- standard_name :
- radar_differential_reflectivity_hv
- long_name :
- Log differential reflectivity H/V
- units :
- dB
[86400 values with dtype=float64]
- PHIDP(azimuth, range)float64...
- standard_name :
- radar_differential_phase_hv
- long_name :
- Differential phase HV
- units :
- degrees
[86400 values with dtype=float64]
- RHOHV(azimuth, range)float64...
- standard_name :
- radar_correlation_coefficient_hv
- long_name :
- Correlation coefficient HV
- units :
- unitless
[86400 values with dtype=float64]
- sweep_mode()<U20...
[1 values with dtype=<U20]
- sweep_number()int64...
[1 values with dtype=int64]
- prt_mode()<U7...
[1 values with dtype=<U7]
- follow_mode()<U7...
[1 values with dtype=<U7]
- sweep_fixed_angle()float64...
[1 values with dtype=float64]
- instrument_name :
- KATX
<xarray.DatasetView> Size: 4MB Dimensions: (azimuth: 360, range: 240) Coordinates: elevation (azimuth) float64 3kB ... time (azimuth) datetime64[ns] 3kB 2013-07-17T19:55:00.21500... * range (range) float32 960B 2.125e+03 2.375e+03 ... 6.188e+04 longitude float64 8B ... latitude float64 8B ... altitude int64 8B ... * azimuth (azimuth) float64 3kB 0.5054 1.5 2.505 ... 358.5 359.5 Data variables: DBZH (azimuth, range) float64 691kB ... VRADH (azimuth, range) float64 691kB ... WRADH (azimuth, range) float64 691kB ... ZDR (azimuth, range) float64 691kB ... PHIDP (azimuth, range) float64 691kB ... RHOHV (azimuth, range) float64 691kB ... sweep_mode <U20 80B ... sweep_number int64 8B ... prt_mode <U7 28B ... follow_mode <U7 28B ... sweep_fixed_angle float64 8B ... Attributes: instrument_name: KATXsweep_15- 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'2013-07-17T19:50:21Z'
array('2013-07-17T19:50:21Z', dtype='<U20') - time_coverage_end()<U20'2013-07-17T19:55:11Z'
array('2013-07-17T19:55:11Z', dtype='<U20') - longitude()float64-122.5
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
array(-122.49569702)
- altitude()int64195
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
array(195)
- latitude()float6448.19
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
array(48.19472122)
- Conventions :
- None
- instrument_name :
- KATX
- version :
- None
- title :
- None
- institution :
- None
- references :
- None
- source :
- None
- history :
- None
- comment :
- im/exported using xradar
[21]:
dtree["sweep_1"]
[21]:
<xarray.DatasetView> Size: 21MB
Dimensions: (azimuth: 720, range: 1192)
Coordinates:
elevation (azimuth) float64 6kB ...
time (azimuth) datetime64[ns] 6kB 2013-07-17T19:50:41.34099...
* range (range) float32 5kB 2.125e+03 2.375e+03 ... 2.999e+05
longitude float64 8B ...
latitude float64 8B ...
altitude int64 8B ...
* azimuth (azimuth) float64 6kB 0.2499 0.7938 1.252 ... 359.2 359.8
Data variables:
DBZH (azimuth, range) float64 7MB ...
VRADH (azimuth, range) float64 7MB ...
WRADH (azimuth, range) float64 7MB ...
sweep_mode <U20 80B ...
sweep_number int64 8B ...
prt_mode <U7 28B ...
follow_mode <U7 28B ...
sweep_fixed_angle float64 8B ...
Attributes:
instrument_name: KATXdatatree.DataTree
- azimuth: 720
- range: 1192
- elevation(azimuth)float64...
- standard_name :
- ray_elevation_angle
- long_name :
- elevation_angle_from_horizontal_plane
- units :
- degrees
- axis :
- radial_elevation_coordinate
[720 values with dtype=float64]
- time(azimuth)datetime64[ns]2013-07-17T19:50:41.340999936 .....
- standard_name :
- time
array(['2013-07-17T19:50:41.340999936', '2013-07-17T19:50:41.371000064', '2013-07-17T19:50:41.392999936', ..., '2013-07-17T19:50:41.262000128', '2013-07-17T19:50:41.288000000', '2013-07-17T19:50:41.315000064'], dtype='datetime64[ns]') - range(range)float322.125e+03 2.375e+03 ... 2.999e+05
- units :
- meters
- standard_name :
- projection_range_coordinate
- long_name :
- range_to_measurement_volume
- axis :
- radial_range_coordinate
- meters_between_gates :
- 250.0
- spacing_is_constant :
- true
- meters_to_center_of_first_gate :
- 2125.0
array([ 2125., 2375., 2625., ..., 299375., 299625., 299875.], dtype=float32) - longitude()float64...
- long_name :
- longitude
- units :
- degrees_east
- standard_name :
- longitude
[1 values with dtype=float64]
- latitude()float64...
- long_name :
- latitude
- units :
- degrees_north
- positive :
- up
- standard_name :
- latitude
[1 values with dtype=float64]
- altitude()int64...
- long_name :
- altitude
- units :
- meters
- standard_name :
- altitude
[1 values with dtype=int64]
- azimuth(azimuth)float640.2499 0.7938 1.252 ... 359.2 359.8
- standard_name :
- ray_azimuth_angle
- long_name :
- azimuth_angle_from_true_north
- units :
- degrees
- axis :
- radial_azimuth_coordinate
array([2.499390e-01, 7.937622e-01, 1.252441e+00, ..., 3.587448e+02, 3.592474e+02, 3.597583e+02])
- DBZH(azimuth, range)float64...
- standard_name :
- radar_equivalent_reflectivity_factor_h
- long_name :
- Equivalent reflectivity factor H
- units :
- dBZ
[858240 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
[858240 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
[858240 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]
- instrument_name :
- KATX
[ ]: