Build-in WRF-python#

The WRF-python Package is that a collection of diagnostic and interpolation routines for use with output from the Weather Research and Forecasting (WRF-ARW) Model.

The easyclimate package offers a streamlined and user-friendly interface designed to simplify access to the functionalities of wrf-python, a powerful tool for working with Weather Research and Forecasting (WRF) model data. One of the key advantages of easyclimate is its straightforward installation process, which eliminates many of the complexities typically associated with setting up scientific computing environments. Additionally, easyclimate ensures compatibility with newer versions of numpy, a fundamental library for numerical computations in Python. This compatibility not only enhances performance but also allows users to leverage the latest features and optimizations available in modern numpy releases. By combining ease of use, seamless installation, and up-to-date dependencies, easyclimate provides an efficient and accessible solution for researchers and developers working with WRF model data.

This build-in package provides over 30 diagnostic calculations, several interpolation routines, and utilities to help with plotting via cartopy. The functionality is similar to what is provided by the NCL WRF package.

Hint

For more information, please visit wrf-python official document.

Introduction#

The API for wrf-python can be summarized as a variable computation/extraction routine, several interpolation routines, and a few plotting helper utilities. The API is kept as simple as possible to help minimize the learning curve for new programmers, students, and scientists. In the future, we plan to extend xarray for programmers desiring a more object oriented API, but this remains a work in progress.

The five most commonly used routines can be summarized as:

  • easyclimate.wrf.getvar() - Extracts WRF-ARW NetCDF variables and computes diagnostic variables that WRF does not compute (e.g. storm relative helicity). This is the routine that you will use most often.

  • easyclimate.wrf.interplevel() - Interpolates a three-dimensional field to a horizontal plane at a specified level using simple (fast) linear interpolation (e.g. 850 hPa temperature).

  • easyclimate.wrf.vertcross() - Interpolates a three-dimensional field to a vertical plane through a user-specified horizontal line (i.e. a cross section).

  • easyclimate.wrf.interpline() - Interpolates a two-dimensional field to a user-specified line.

  • easyclimate.wrf.vinterp() - Interpolates a three-dimensional field to user-specified ‘surface’ levels (e.g. theta-e levels). This is a smarter, albeit slower, version of easyclimate.wrf.interplevel().

Basic Usage#

Computing Diagnostic Variables#

The primary use for the easyclimate.wrf.getvar() function is to return diagnostic variables that require a calculation, since WRF does not produce these variables natively. These diagnostics include CAPE, storm relative helicity, omega, sea level pressure, etc. A table of all available diagnostics can be found here: Table of Available Diagnostics.

In the example below, sea level pressure is calculated and printed.

from __future__ import print_function

import easyclimate as ecl
import xarray as xr

data = xr.open_dataset("wrfout_d01_2022-05-01_00_00_00.nc4")
ncfile = ecl.wrf.transfer_xarray2nctype(data)
# Or open it directly
ncfile = ecl.wrf.open_wrf_data("wrfout_d01_2022-05-01_00_00_00.nc4")

# Get the Sea Level Pressure
slp = ecl.wrf.getvar(ncfile, "slp")
slp
<xarray.DataArray 'slp' (south_north: 60, west_east: 73)> Size: 35kB
array([[1011.46000615, 1011.63726358, 1011.82356007, ..., 1018.01468635,
        1018.01002362, 1017.93415749],
       [1011.55088246, 1011.74310296, 1011.89100664, ..., 1018.26002352,
        1018.28603265, 1018.27778269],
       [1011.60991314, 1011.78118891, 1011.92507819, ..., 1018.52775255,
        1018.56400209, 1018.59153334],
       ...,
       [ 997.47147947,  997.89904303,  998.26630806, ..., 1017.20732968,
        1016.77528498, 1016.31044983],
       [ 997.47182284,  997.869462  ,  998.1721946 , ..., 1016.99906168,
        1016.56467618, 1016.10082895],
       [ 997.7387025 ,  997.76645855,  997.86687249, ..., 1016.80072082,
        1016.34132467, 1015.8835534 ]])
Coordinates:
    XLONG    (south_north, west_east) float32 18kB -93.65 -93.35 ... -66.0
    XLAT     (south_north, west_east) float32 18kB 28.17 28.16 ... 39.74 39.63
    XTIME    float32 4B 0.0
    Time     datetime64[ns] 8B 2022-05-01
Dimensions without coordinates: south_north, west_east
Attributes:
    FieldType:     104
    MemoryOrder:   XY
    description:   sea level pressure
    units:         hPa
    stagger:
    coordinates:   XLONG XLAT XTIME
    cell_methods:  Time: mean
    projection:    LambertConformal(stand_lon=-98.0, moad_cen_lat=34.83001708...


Extracting WRF NetCDF Variables#

In addition to computing diagnostic variables (see Computing Diagnostic Variables), the easyclimate.wrf.getvar() function can be used to extract regular WRF-ARW output NetCDF variables.

p = ecl.wrf.getvar(ncfile, "P")
p
<xarray.DataArray 'P' (bottom_top: 49, south_north: 60, west_east: 73)> Size: 858kB
array([[[ 1.13248438e+03,  1.15017188e+03,  1.16862500e+03, ...,
          1.78602344e+03,  1.78571094e+03,  1.77840625e+03],
        [ 1.14169531e+03,  1.16087500e+03,  1.17555469e+03, ...,
          1.81086719e+03,  1.81354688e+03,  1.81292969e+03],
        [ 1.14765625e+03,  1.16475000e+03,  1.17904688e+03, ...,
          1.83773438e+03,  1.84145312e+03,  1.84432812e+03],
        ...,
        [-2.65679688e+02, -2.18328125e+02, -1.76750000e+02, ...,
          1.71485156e+03,  1.67159375e+03,  1.62507031e+03],
        [-2.57757812e+02, -2.13289062e+02, -1.77898438e+02, ...,
          1.69441406e+03,  1.65089844e+03,  1.60449219e+03],
        [-2.26492188e+02, -2.16054688e+02, -1.99664062e+02, ...,
          1.67500000e+03,  1.62890625e+03,  1.58309375e+03]],

       [[ 1.11663281e+03,  1.13432031e+03,  1.15264062e+03, ...,
          1.76750000e+03,  1.76713281e+03,  1.76000000e+03],
        [ 1.12586719e+03,  1.14502344e+03,  1.15961719e+03, ...,
          1.79234375e+03,  1.79512500e+03,  1.79469531e+03],
        [ 1.13175000e+03,  1.14884375e+03,  1.16302344e+03, ...,
          1.81952344e+03,  1.82326562e+03,  1.82621094e+03],
...
          2.44140625e-03,  9.76562500e-04, -2.44140625e-03],
        [-5.85937500e-03,  1.46484375e-03,  6.34765625e-03, ...,
         -2.44140625e-03,  9.76562500e-04, -2.92968750e-03],
        [-6.83593750e-03, -2.92968750e-03, -4.88281250e-04, ...,
         -9.76562500e-04, -6.83593750e-03, -4.88281250e-03]],

       [[ 2.44140625e-03, -1.95312500e-03,  1.46484375e-03, ...,
          6.83593750e-03,  0.00000000e+00, -4.88281250e-03],
        [ 3.41796875e-03,  3.90625000e-03,  5.85937500e-03, ...,
         -1.95312500e-03, -1.95312500e-03,  0.00000000e+00],
        [-9.76562500e-04, -1.95312500e-03,  5.37109375e-03, ...,
          8.78906250e-03,  3.41796875e-03, -3.90625000e-03],
        ...,
        [ 0.00000000e+00, -5.37109375e-03, -3.90625000e-03, ...,
          2.92968750e-03, -5.37109375e-03,  7.81250000e-03],
        [-1.95312500e-03,  4.39453125e-03,  6.34765625e-03, ...,
          7.81250000e-03, -4.88281250e-03,  1.46484375e-03],
        [-9.76562500e-04, -4.88281250e-04,  9.27734375e-03, ...,
         -9.76562500e-04,  6.83593750e-03,  2.92968750e-03]]],
      dtype=float32)
Coordinates:
    XLONG    (south_north, west_east) float32 18kB -93.65 -93.35 ... -66.0
    XLAT     (south_north, west_east) float32 18kB 28.17 28.16 ... 39.74 39.63
    XTIME    float32 4B 0.0
    Time     datetime64[ns] 8B 2022-05-01
Dimensions without coordinates: bottom_top, south_north, west_east
Attributes:
    FieldType:     104
    MemoryOrder:   XYZ
    description:   perturbation pressure
    units:         Pa
    stagger:
    coordinates:   XLONG XLAT XTIME
    cell_methods:  Time: mean
    projection:    LambertConformal(stand_lon=-98.0, moad_cen_lat=34.83001708...


Disabling xarray and metadata#

Sometimes you just want a regular numpy array and don’t care about metadata. This is often the case when you are working with compiled extensions. Metadata can be disabled in one of two ways.

  1. disable xarray completely

  2. set the meta function parameter to False.

The example below illustrates both.

# Disable xarray completely
ecl.wrf.disable_xarray()
p_no_meta = ecl.wrf.getvar(ncfile, "P")
print (type(p_no_meta))
ecl.wrf.enable_xarray()

# Disable by using the meta parameter
p_no_meta = ecl.wrf.getvar(ncfile, "P", meta=False)
print (type(p_no_meta))
<class 'numpy.ma.MaskedArray'>
<class 'numpy.ma.MaskedArray'>

Extracting a Numpy Array from a DataArray#

If you need to convert an xarray.DataArray to a numpy.ndarray, wrf-python provides the easyclimate.wrf.to_np() function for this purpose. Although an xarray.DataArary object already contains the xarray.DataArray.values attribute to extract the Numpy array, there is a problem when working with compiled extensions. The behavior for xarray (and pandas) is to convert missing/fill values to NaN, which may cause crashes when working with compiled extensions. Also, some existing code may be designed to work with numpy.ma.MaskedArray, and numpy arrays with NaN may not work with it.

The easyclimate.wrf.to_np() function does the following:

  1. If no missing/fill values are used, easyclimate.wrf.to_np() simply returns the xarray.DataArray.values attribute.

  2. If missing/fill values are used, then easyclimate.wrf.to_np() replaces the NaN values with the _FillValue found in the xarray.DataArray.attrs attribute (required) and a numpy.ma.MaskedArray is returned.

# Get the 3D CAPE, which contains missing values
cape_3d = ecl.wrf.getvar(ncfile, "cape_3d")

# Since there are missing values, this should return a MaskedArray
cape_3d_ndarray = ecl.wrf.to_np(cape_3d)

print(type(cape_3d_ndarray))
<class 'numpy.ma.MaskedArray'>

Interpolation Routines#

Interpolating to a Horizontal Level#

The easyclimate.wrf.interplevel() function is used to interpolate a 3D field to a specific horizontal level, usually pressure or height.

# Extract the Geopotential Height and Pressure (hPa) fields
z = ecl.wrf.getvar(ncfile, "z")
p = ecl.wrf.getvar(ncfile, "pressure")

# Compute the 500 MB Geopotential Height
ht_500mb = ecl.wrf.interplevel(z, p, 500.)
ht_500mb
<xarray.DataArray 'height_interp' (south_north: 60, west_east: 73)> Size: 35kB
array([[5816.16995852, 5815.85398396, 5815.38443631, ..., 5813.86960232,
        5815.03705472, 5816.34427048],
       [5815.18486674, 5814.79195797, 5814.33602784, ..., 5812.15585499,
        5813.33402798, 5814.54373621],
       [5814.1266081 , 5813.7142433 , 5813.23753304, ..., 5810.50540851,
        5811.64680101, 5812.73091555],
       ...,
       [5497.20171828, 5505.18505131, 5514.33347528, ..., 5475.83192931,
        5469.48197838, 5462.36173368],
       [5499.3762303 , 5507.18832819, 5516.47551756, ..., 5469.22903129,
        5462.86850236, 5455.20000156],
       [5502.86785521, 5512.25061208, 5519.17222701, ..., 5463.32945335,
        5456.12849419, 5449.29184596]])
Coordinates:
    XLONG    (south_north, west_east) float32 18kB -93.65 -93.35 ... -66.0
    XLAT     (south_north, west_east) float32 18kB 28.17 28.16 ... 39.74 39.63
    XTIME    float32 4B 0.0
    Time     datetime64[ns] 8B 2022-05-01
    level    float64 8B 500.0
Dimensions without coordinates: south_north, west_east
Attributes:
    FieldType:      104
    units:          m
    stagger:
    coordinates:    XLONG XLAT XTIME
    cell_methods:   Time: mean
    projection:     LambertConformal(stand_lon=-98.0, moad_cen_lat=34.8300170...
    missing_value:  9.969209968386869e+36
    _FillValue:     9.969209968386869e+36
    vert_units:     hPa


Vertical Cross Sections#

The easyclimate.wrf.vertcross() function is used to create vertical cross sections. To define a cross section, a start point and an end point needs to be specified. Alternatively, a pivot point and an angle may be used. The start point, end point, and pivot point are specified using a easyclimate.wrf.CoordPair object, and coordinates can either be in grid (x,y) coordinates or (latitude,longitude) coordinates. When using (latitude,longitude) coordinates, a NetCDF file object or a easyclimate.wrf.WrfProj object must be provided.

The vertical levels can also be specified using the levels parameter. If not specified, then approximately 100 levels will be chosen in 1% increments.

Example: Using Start Point and End Point#

# Get the geopotential height (m) and pressure (hPa).
z = ecl.wrf.getvar(ncfile, "z")
p = ecl.wrf.getvar(ncfile, "pressure")

# Define a start point and end point in grid coordinates
start_point = ecl.wrf.CoordPair(x=0, y=(z.shape[-2]-1)//2)
end_point = ecl.wrf.CoordPair(x=-1, y=(z.shape[-2]-1)//2)

# Calculate the vertical cross section.  By setting latlon to True, this
# also calculates the latitude and longitude coordinates along the cross
# section line and adds them to the 'xy_loc' metadata to help with plotting.
p_vert = ecl.wrf.vertcross(p, z, start_point=start_point, end_point=end_point, latlon=True)
p_vert
<xarray.DataArray 'pressure_cross' (vertical: 100, cross_line_idx: 73)> Size: 58kB
array([[         nan,          nan,          nan, ...,          nan,
                 nan,          nan],
       [         nan,          nan,          nan, ..., 997.79898623,
        997.76861869, 997.75815374],
       [         nan, 962.49733323, 962.21027961, ..., 974.20880509,
        974.17908027, 974.16629034],
       ...,
       [ 57.7142777 ,  57.7072477 ,  57.66969451, ...,  57.45796397,
         57.47304142,  57.51096537],
       [ 55.88825922,  55.88097662,  55.84347662, ...,  55.65542879,
         55.6699792 ,  55.7084015 ],
       [ 54.06224074,  54.05470555,  54.01725872, ...,  53.85289361,
         53.86691699,  53.90583763]])
Coordinates:
    XTIME     float32 4B 0.0
    Time      datetime64[ns] 8B 2022-05-01
    xy_loc    (cross_line_idx) object 584B CoordPair(x=0.0, y=29.0, lat=36.04...
  * vertical  (vertical) float64 800B 0.0 203.1 406.3 ... 1.991e+04 2.011e+04
Dimensions without coordinates: cross_line_idx
Attributes:
    FieldType:      104
    description:    pressure
    units:          hPa
    stagger:
    coordinates:    XLONG XLAT XTIME
    cell_methods:   Time: mean
    projection:     LambertConformal(stand_lon=-98.0, moad_cen_lat=34.8300170...
    _FillValue:     9.969209968386869e+36
    missing_value:  9.969209968386869e+36
    orientation:    (0.0, 29.0) to (72.0, 29.0)


Example: Using Pivot Point and Angle#

# Get the geopotential height (m) and pressure (hPa).
z = ecl.wrf.getvar(ncfile, "z")
p = ecl.wrf.getvar(ncfile, "pressure")

# Define a pivot point and angle in grid coordinates, with the
# pivot point being the center of the grid.
pivot_point = ecl.wrf.CoordPair(x=(z.shape[-1]-1)//2, y=(z.shape[-2]-1)//2)
angle = 90.0

# Calculate the vertical cross section.  By setting latlon to True, this
# also calculates the latitude and longitude coordinates along the line
# and adds them to the metadata to help with plotting labels.
p_vert = ecl.wrf.vertcross(p, z, pivot_point=pivot_point, angle=angle, latlon=True)
p_vert
<xarray.DataArray 'pressure_cross' (vertical: 100, cross_line_idx: 73)> Size: 58kB
array([[         nan,          nan,          nan, ...,          nan,
                 nan,          nan],
       [         nan,          nan,          nan, ..., 997.79898623,
        997.76861869, 997.75815374],
       [         nan, 962.49733323, 962.21027961, ..., 974.20880509,
        974.17908027, 974.16629034],
       ...,
       [ 57.7142777 ,  57.7072477 ,  57.66969451, ...,  57.45796397,
         57.47304142,  57.51096537],
       [ 55.88825922,  55.88097662,  55.84347662, ...,  55.65542879,
         55.6699792 ,  55.7084015 ],
       [ 54.06224074,  54.05470555,  54.01725872, ...,  53.85289361,
         53.86691699,  53.90583763]])
Coordinates:
    XTIME     float32 4B 0.0
    Time      datetime64[ns] 8B 2022-05-01
    xy_loc    (cross_line_idx) object 584B CoordPair(x=0.0, y=29.0, lat=36.04...
  * vertical  (vertical) float64 800B 0.0 203.1 406.3 ... 1.991e+04 2.011e+04
Dimensions without coordinates: cross_line_idx
Attributes:
    FieldType:      104
    description:    pressure
    units:          hPa
    stagger:
    coordinates:    XLONG XLAT XTIME
    cell_methods:   Time: mean
    projection:     LambertConformal(stand_lon=-98.0, moad_cen_lat=34.8300170...
    _FillValue:     9.969209968386869e+36
    missing_value:  9.969209968386869e+36
    orientation:    (0.0, 29.0) to (72.0, 29.0) ; center=CoordPair(x=36, y=29...


Example: Using Lat/Lon Coordinates#

# Get the geopotential height (m) and pressure (hPa).
z = ecl.wrf.getvar(ncfile, "z")
p = ecl.wrf.getvar(ncfile, "pressure")
lats = ecl.wrf.getvar(ncfile, "lat")
lons = ecl.wrf.getvar(ncfile, "lon")

# Making the same horizontal line, but with lats/lons
start_lat = lats[(lats.shape[-2]-1)//2, 0]
end_lat = lats[(lats.shape[-2]-1)//2, -1]
start_lon = lons[(lats.shape[-2]-1)//2, 0]
end_lon = lons[(lats.shape[-2]-1)//2, -1]

# Cross section line using start_point and end_point.
start_point = ecl.wrf.CoordPair(lat=start_lat, lon=start_lon)
end_point = ecl.wrf.CoordPair(lat=end_lat, lon=end_lon)

# When using lat/lon coordinates, you must supply a WRF netcdf file object,
# or a projection object with the lower left latitude and lower left
# longitude points.
p_vert = ecl.wrf.vertcross(p, z, wrfin=ncfile, start_point=start_point, end_point=end_point, latlon=True)
p_vert
<xarray.DataArray 'pressure_cross' (vertical: 100, cross_line_idx: 73)> Size: 58kB
array([[         nan,          nan,          nan, ...,          nan,
                 nan,          nan],
       [         nan,          nan,          nan, ..., 997.79898623,
        997.76861869, 997.75815374],
       [         nan, 962.49733323, 962.21027961, ..., 974.20880509,
        974.17908027, 974.16629034],
       ...,
       [ 57.7142777 ,  57.7072477 ,  57.66969451, ...,  57.45796397,
         57.47304142,  57.51096537],
       [ 55.88825922,  55.88097662,  55.84347662, ...,  55.65542879,
         55.6699792 ,  55.7084015 ],
       [ 54.06224074,  54.05470555,  54.01725872, ...,  53.85289361,
         53.86691699,  53.90583763]])
Coordinates:
    XTIME     float32 4B 0.0
    Time      datetime64[ns] 8B 2022-05-01
    xy_loc    (cross_line_idx) object 584B CoordPair(x=0.0, y=29.0, lat=36.04...
  * vertical  (vertical) float64 800B 0.0 203.1 406.3 ... 1.991e+04 2.011e+04
Dimensions without coordinates: cross_line_idx
Attributes:
    FieldType:      104
    description:    pressure
    units:          hPa
    stagger:
    coordinates:    XLONG XLAT XTIME
    cell_methods:   Time: mean
    projection:     LambertConformal(stand_lon=-98.0, moad_cen_lat=34.8300170...
    _FillValue:     9.969209968386869e+36
    missing_value:  9.969209968386869e+36
    orientation:    (0.0, 29.0) to (72.0, 29.0)


Example: Using Specified Vertical Levels#

# Get the geopotential height (m) and pressure (hPa).
z = ecl.wrf.getvar(ncfile, "z")
p = ecl.wrf.getvar(ncfile, "pressure")
lats = ecl.wrf.getvar(ncfile, "lat")
lons = ecl.wrf.getvar(ncfile, "lon")

# Making the same horizontal line, but with lats/lons
start_lat = lats[(lats.shape[-2]-1)//2, 0]
end_lat = lats[(lats.shape[-2]-1)//2, -1]
start_lon = lons[(lats.shape[-2]-1)//2, 0]
end_lon = lons[(lats.shape[-2]-1)//2, -1]

# Pressure using start_point and end_point.  These were obtained using
start_point = ecl.wrf.CoordPair(lat=start_lat, lon=start_lon)
end_point = ecl.wrf.CoordPair(lat=end_lat, lon=end_lon)

# Specify vertical levels
levels = [1000., 2000., 3000.]

# Calculate the cross section
p_vert = ecl.wrf.vertcross(p, z, wrfin=ncfile, levels=levels, start_point=start_point, end_point=end_point, latlon=True)
p_vert
<xarray.DataArray 'pressure_cross' (vertical: 3, cross_line_idx: 73)> Size: 2kB
array([[898.07992812, 897.88617058, 897.72867152, 897.76328738,
        897.65799694, 897.54745307, 897.5419582 , 897.72662036,
        897.98136082, 898.1502723 , 898.3966403 , 898.76209592,
        899.23288314, 899.56267488, 899.86087196, 900.17452591,
        900.34839953, 900.48764512, 900.73952521, 901.08974211,
        901.44128562, 901.77709373, 902.12104649, 902.49557534,
        902.84619927, 903.23668516, 903.46359174, 903.69594491,
        904.2248023 , 904.67006817, 904.93174844, 904.67372245,
        904.97399925, 905.20523674, 905.39627962, 905.54007862,
        905.71556335, 905.88934735, 906.07348615, 906.25732588,
        906.48606323, 906.5850104 , 906.62408638, 906.66648884,
        906.68717259, 906.73029807, 906.79995717, 906.94921289,
        907.05581457, 907.13034302, 907.15834503, 907.17980665,
        907.19894395, 907.2318072 , 907.25772632, 907.27071305,
        907.2983111 , 907.31217377, 907.30961514, 907.3919675 ,
        907.47259103, 907.51008051, 907.49241478, 907.47951192,
        907.49047492, 907.5191264 , 907.53783541, 907.55795476,
        907.57153233, 907.5544207 , 907.52843161, 907.49761941,
        907.4774657 ],
       [796.58551126, 796.65615669, 796.73400225, 796.86652512,
...
        803.46419435],
       [705.26227882, 705.39906513, 705.55512087, 705.76396506,
        706.07591768, 706.38805712, 706.51589807, 706.81958744,
        707.12685413, 707.27840192, 707.41809951, 707.63788855,
        707.92495285, 708.06282623, 708.23971094, 708.49174859,
        708.85331507, 709.12652196, 709.31413313, 709.47054735,
        709.57287388, 709.6716966 , 709.91619914, 710.14066245,
        710.32564867, 710.61033937, 710.8007645 , 710.83598753,
        711.07061199, 711.27837755, 711.34274093, 711.4443354 ,
        711.45440014, 711.5914212 , 711.63243013, 711.65691195,
        711.7102348 , 711.73069517, 711.76321512, 711.81272896,
        711.79871927, 711.66112976, 711.53386569, 711.49268801,
        711.44327543, 711.40275113, 711.39376761, 711.41446019,
        711.37992829, 711.3462933 , 711.33821876, 711.32996132,
        711.30332107, 711.24869358, 711.19424078, 711.13135738,
        711.0338058 , 710.9459731 , 710.84941602, 710.75578237,
        710.64250202, 710.51414413, 710.39358375, 710.27751461,
        710.22144322, 710.1454372 , 710.04495897, 709.97777797,
        709.94049681, 709.90920755, 709.86910365, 709.82424269,
        709.79132223]])
Coordinates:
    XTIME     float32 4B 0.0
    Time      datetime64[ns] 8B 2022-05-01
    xy_loc    (cross_line_idx) object 584B CoordPair(x=0.0, y=29.0, lat=36.04...
  * vertical  (vertical) float64 24B 1e+03 2e+03 3e+03
Dimensions without coordinates: cross_line_idx
Attributes:
    FieldType:      104
    description:    pressure
    units:          hPa
    stagger:
    coordinates:    XLONG XLAT XTIME
    cell_methods:   Time: mean
    projection:     LambertConformal(stand_lon=-98.0, moad_cen_lat=34.8300170...
    _FillValue:     9.969209968386869e+36
    missing_value:  9.969209968386869e+36
    orientation:    (0.0, 29.0) to (72.0, 29.0)


Interpolating Two-Dimensional Fields to a Line#

Two-dimensional fields can be interpolated along a line, in a manner similar to the vertical cross section (see Vertical Cross Sections), using the easyclimate.wrf.interpline() function. To define the line to interpolate along, a start point and an end point needs to be specified. Alternatively, a pivot point and an angle may be used. The start point, end point, and pivot point are specified using a easyclimate.wrf.CoordPair object, and coordinates can either be in grid (x,y) coordinates or (latitude,longitude) coordinates. When using (latitude,longitude) coordinates, a NetCDF file object or a easyclimate.wrf.WrfProj object must also be provided.

Example: Using Start Point and End Point#

# Get the 2m temperature
t2 = ecl.wrf.getvar(ncfile, "T2")

# Create a south-north line in the center of the domain using
# start point and end point
start_point = ecl.wrf.CoordPair(x=(t2.shape[-1]-1)//2, y=0)
end_point = ecl.wrf.CoordPair(x=(t2.shape[-1]-1)//2, y=-1)

# Calculate the vertical cross section.  By setting latlon to True, this
# also calculates the latitude and longitude coordinates along the line
# and adds them to the metadata to help with plotting labels.
t2_line = ecl.wrf.interpline(t2, start_point=start_point, end_point=end_point, latlon=True)
t2_line
<xarray.DataArray 'T2_line' (line_idx: 60)> Size: 240B
array([295.71414, 294.51666, 293.63885, 294.49463, 295.51175, 294.82706,
       294.45483, 295.36792, 296.25006, 296.93707, 297.0724 , 296.63156,
       296.10333, 295.62393, 295.4205 , 295.38675, 295.2459 , 294.94162,
       294.89157, 294.82114, 294.47046, 294.313  , 294.30466, 294.3102 ,
       294.11957, 294.0474 , 294.66336, 294.63898, 293.5313 , 293.29712,
       293.62476, 293.05078, 291.7317 , 290.0305 , 288.55884, 287.83405,
       287.20172, 285.8932 , 284.9696 , 284.6893 , 284.39368, 284.33182,
       284.08365, 283.50616, 284.49176, 285.72345, 285.88074, 285.76346,
       285.6454 , 285.69485, 285.562  , 285.268  , 284.8192 , 284.19534,
       283.3102 , 282.122  , 281.09415, 280.58118, 280.2454 , 281.0796 ],
      dtype=float32)
Coordinates:
    XTIME    float32 4B 0.0
    Time     datetime64[ns] 8B 2022-05-01
    xy_loc   (line_idx) object 480B CoordPair(x=36.0, y=0.0, lat=27.003803253...
Dimensions without coordinates: line_idx
Attributes:
    FieldType:     104
    description:   TEMP at 2 M
    units:         K
    stagger:
    coordinates:   XLONG XLAT XTIME
    cell_methods:  Time: mean
    projection:    LambertConformal(stand_lon=-98.0, moad_cen_lat=34.83001708...
    orientation:   (36.0, 0.0) to (36.0, 59.0)


Example: Using Pivot Point and Angle#

# Get the 2m temperature
t2 = ecl.wrf.getvar(ncfile, "T2")

# Create a south-north line using pivot point and angle
pivot_point = ecl.wrf.CoordPair((t2.shape[-1]-1)//2, (t2.shape[-2]-1)//2)
angle = 0.0

# Calculate the vertical cross section.  By setting latlon to True, this
# also calculates the latitude and longitude coordinates along the line
# and adds them to the metadata to help with plotting labels.
t2_line = ecl.wrf.interpline(t2, pivot_point=pivot_point, angle=angle, latlon=True)
t2_line
<xarray.DataArray 'T2_line' (line_idx: 60)> Size: 240B
array([295.71414, 294.51666, 293.63885, 294.49463, 295.51175, 294.82706,
       294.45483, 295.36792, 296.25006, 296.93707, 297.0724 , 296.63156,
       296.10333, 295.62393, 295.4205 , 295.38675, 295.2459 , 294.94162,
       294.89157, 294.82114, 294.47046, 294.313  , 294.30466, 294.3102 ,
       294.11957, 294.0474 , 294.66336, 294.63898, 293.5313 , 293.29712,
       293.62476, 293.05078, 291.7317 , 290.0305 , 288.55884, 287.83405,
       287.20172, 285.8932 , 284.9696 , 284.6893 , 284.39368, 284.33182,
       284.08365, 283.50616, 284.49176, 285.72345, 285.88074, 285.76346,
       285.6454 , 285.69485, 285.562  , 285.268  , 284.8192 , 284.19534,
       283.3102 , 282.122  , 281.09415, 280.58118, 280.2454 , 281.0796 ],
      dtype=float32)
Coordinates:
    XTIME    float32 4B 0.0
    Time     datetime64[ns] 8B 2022-05-01
    xy_loc   (line_idx) object 480B CoordPair(x=36.0, y=0.0, lat=27.003803253...
Dimensions without coordinates: line_idx
Attributes:
    FieldType:     104
    description:   TEMP at 2 M
    units:         K
    stagger:
    coordinates:   XLONG XLAT XTIME
    cell_methods:  Time: mean
    projection:    LambertConformal(stand_lon=-98.0, moad_cen_lat=34.83001708...
    orientation:   (36.0, 0.0) to (36.0, 59.0) ; center=CoordPair(x=36, y=29)...


Example: Using Lat/Lon Coordinates#

t2 = ecl.wrf.getvar(ncfile, "T2")
lats = ecl.wrf.getvar(ncfile, "lat")
lons = ecl.wrf.getvar(ncfile, "lon")

# Select the latitude,longitude points for a vertical line through
# the center of the domain.
start_lat = lats[0, (lats.shape[-1]-1)//2]
end_lat = lats[-1, (lats.shape[-1]-1)//2]
start_lon = lons[0, (lons.shape[-1]-1)//2]
end_lon = lons[-1, (lons.shape[-1]-1)//2]

# Create the CoordPairs
start_point = ecl.wrf.CoordPair(lat=start_lat, lon=start_lon)
end_point = ecl.wrf.CoordPair(lat=end_lat, lon=end_lon)

# Calculate the interpolated line.  To use latitude and longitude points,
# you must supply a WRF NetCDF file object, or a projection object along
# with the lower left latitude and lower left longitude points.
# Also, by setting latlon to True, this routine will
# also calculate the latitude and longitude coordinates along the line
# and adds them to the metadata to help with plotting labels.
t2_line = ecl.wrf.interpline(t2, wrfin=ncfile, start_point=start_point, end_point=end_point, latlon=True)
t2_line
<xarray.DataArray 'T2_line' (line_idx: 60)> Size: 240B
array([295.71414, 294.51666, 293.63885, 294.49463, 295.51175, 294.82706,
       294.45483, 295.36792, 296.25006, 296.93707, 297.0724 , 296.63156,
       296.10333, 295.62393, 295.4205 , 295.38675, 295.2459 , 294.94162,
       294.89157, 294.82114, 294.47046, 294.313  , 294.30466, 294.3102 ,
       294.11957, 294.0474 , 294.66336, 294.63898, 293.5313 , 293.29712,
       293.62476, 293.05078, 291.7317 , 290.0305 , 288.55884, 287.83405,
       287.20172, 285.8932 , 284.9696 , 284.6893 , 284.39368, 284.33182,
       284.08365, 283.50616, 284.49176, 285.72345, 285.88074, 285.76346,
       285.6454 , 285.69485, 285.562  , 285.268  , 284.8192 , 284.19534,
       283.3102 , 282.122  , 281.09415, 280.58118, 280.2454 , 281.0796 ],
      dtype=float32)
Coordinates:
    XTIME    float32 4B 0.0
    Time     datetime64[ns] 8B 2022-05-01
    xy_loc   (line_idx) object 480B CoordPair(x=36.0, y=0.0, lat=27.003803253...
Dimensions without coordinates: line_idx
Attributes:
    FieldType:     104
    description:   TEMP at 2 M
    units:         K
    stagger:
    coordinates:   XLONG XLAT XTIME
    cell_methods:  Time: mean
    projection:    LambertConformal(stand_lon=-98.0, moad_cen_lat=34.83001708...
    orientation:   (36.0, 0.0) to (36.0, 59.0)


Interpolating a 3D Field to a Surface Type#

The easyclimate.wrf.vinterp() is used to interpolate a field to a type of surface. The available surfaces are pressure, geopotential height, theta, and theta-e. The surface levels to interpolate also need to be specified.

tk = ecl.wrf.getvar(ncfile, "tk")
# Interpolate tk to theta-e levels
interp_levels = [200, 300, 500, 1000]

interp_field = ecl.wrf.vinterp(
    ncfile,
    field=tk,
    vert_coord="eth",
    interp_levels=interp_levels,
    extrapolate=True,
    field_type="tk",
    log_p=True
)
interp_field
<xarray.DataArray 'temp' (interp_level: 4, south_north: 60, west_east: 73)> Size: 70kB
array([[[297.54953, 297.53058, 297.54697, ..., 296.67938, 296.55463,
         296.4511 ],
        [297.33557, 297.31244, 297.32477, ..., 296.38715, 296.3717 ,
         296.2764 ],
        [297.1878 , 297.1488 , 297.16544, ..., 296.363  , 296.27084,
         296.19016],
        ...,
        [283.48657, 284.5068 , 285.52747, ..., 282.64218, 282.9947 ,
         283.3533 ],
        [284.15216, 284.32285, 285.4249 , ..., 282.22034, 282.56287,
         282.89423],
        [283.85916, 284.04562, 284.47736, ..., 281.72296, 282.13306,
         282.47513]],

       [[297.54953, 297.53058, 297.54697, ..., 296.67938, 296.55463,
         296.4511 ],
        [297.33557, 297.31244, 297.32477, ..., 296.38715, 296.3717 ,
         296.2764 ],
        [297.1878 , 297.1488 , 297.16544, ..., 296.363  , 296.27084,
         296.19016],
...
        [214.86827, 214.57558, 214.35558, ..., 216.74313, 216.71124,
         216.7128 ],
        [215.06996, 214.83278, 214.62753, ..., 216.62202, 216.61575,
         216.71782],
        [215.08018, 215.1189 , 214.75656, ..., 216.44672, 216.59042,
         216.7513 ]],

       [[211.65308, 211.5041 , 211.47368, ..., 212.56154, 212.22661,
         211.86113],
        [211.92107, 211.76006, 211.57521, ..., 213.02075, 212.66872,
         212.22868],
        [211.98714, 211.82405, 211.7214 , ..., 213.38391, 213.08772,
         212.71912],
        ...,
        [214.86827, 214.57558, 214.35558, ..., 216.77684, 216.74187,
         216.74802],
        [215.06996, 214.83278, 214.62753, ..., 216.63692, 216.63034,
         216.7396 ],
        [215.08018, 215.1189 , 214.75656, ..., 216.45117, 216.59512,
         216.75645]]], dtype=float32)
Coordinates:
    XLONG         (south_north, west_east) float32 18kB -93.65 -93.35 ... -66.0
    XLAT          (south_north, west_east) float32 18kB 28.17 28.16 ... 39.63
    XTIME         float32 4B 0.0
    Time          datetime64[ns] 8B 2022-05-01
  * interp_level  (interp_level) int64 32B 200 300 500 1000
Dimensions without coordinates: south_north, west_east
Attributes:
    FieldType:         104
    MemoryOrder:       XYZ
    description:       temperature
    units:             K
    stagger:
    coordinates:       XLONG XLAT XTIME
    cell_methods:      Time: mean
    projection:        LambertConformal(stand_lon=-98.0, moad_cen_lat=34.8300...
    _FillValue:        1e+20
    missing_value:     1e+20
    vert_interp_type:  eth


Lat/Lon ↔️ XY Routines#

wrf-python includes a set of routines for converting back and forth between latitude,longitude space and x,y space. The methods are easyclimate.wrf.xy_to_ll(), easyclimate.wrf.xy_to_ll_proj(), easyclimate.wrf.ll_to_xy(), easyclimate.wrf.ll_to_xy_proj(). The latitude, longitude, x, and y parameters to these methods can contain sequences if multiple points are desired to be converted.

Example: With Single Coordinates#

lat_lon = ecl.wrf.xy_to_ll(ncfile, 400, 200)
lat_lon
<xarray.DataArray 'latlon' (lat_lon: 2)> Size: 16B
array([-7.67688721, 15.61729527])
Coordinates:
    xy_coord  object 8B CoordPair(x=400, y=200)
  * lat_lon   (lat_lon) <U3 24B 'lat' 'lon'


x_y = ecl.wrf.ll_to_xy(ncfile, lat_lon[0], lat_lon[1])
x_y
<xarray.DataArray 'xy' (x_y: 2)> Size: 16B
array([400, 200])
Coordinates:
    latlon_coord  object 8B CoordPair(lat=-7.676887208229687, lon=15.61729527...
  * x_y           (x_y) <U1 8B 'x' 'y'


Example: With Multiple Coordinates#

lat_lon = ecl.wrf.xy_to_ll(ncfile, [400,105], [200,205])
lat_lon
<xarray.DataArray 'latlon' (lat_lon: 2, idx: 2)> Size: 32B
array([[-7.67688721, 64.13620575],
       [15.61729527, -8.66633786]])
Coordinates:
    xy_coord  (idx) object 16B CoordPair(x=400, y=200) CoordPair(x=105, y=205)
  * lat_lon   (lat_lon) <U3 24B 'lat' 'lon'
Dimensions without coordinates: idx


x_y = ecl.wrf.ll_to_xy(ncfile, lat_lon[0,:], lat_lon[1,:])
x_y
<xarray.DataArray 'xy' (x_y: 2, idx: 2)> Size: 32B
array([[400, 105],
       [200, 205]])
Coordinates:
    latlon_coord  (idx) object 16B CoordPair(lat=-7.676887208229687, lon=15.6...
  * x_y           (x_y) <U1 8B 'x' 'y'
Dimensions without coordinates: idx


Mapping Helper Routines#

wrf-python includes several routines to assist with plotting, primarily for obtaining the mapping object used for cartopy, basemap, and PyNGL. For all three plotting systems, the mapping object can be determined directly from a variable when using xarray, or can be obtained from the WRF output file(s) if xarray is turned off.

Also included are utilities for extracting the geographic boundaries directly from xarray variables. This can be useful in situations where you only want to work with subsets (slices) of a large domain, but don’t want to define the map projection over the subset region.

Example: Using a Variable with Cartopy


In this example, we’re going to extract the cartopy mapping object from a diagnostic variable (slp), the lat,lon coordinates, and the geographic boundaries. Next, we’re going to take a subset of the diagnostic variable and extract the geographic boundaries. Some of the variables will be printed for demonstration.

# Use SLP for the example variable
slp = ecl.wrf.getvar(ncfile, "slp")

# Get the cartopy mapping object
cart_proj = ecl.wrf.get_cartopy(slp)
print (cart_proj)

# Get the latitude and longitude coordinate.  This is usually needed for plotting.
lats, lons = ecl.wrf.latlon_coords(slp)

# Get the geobounds for the SLP variable
bounds = ecl.wrf.geo_bounds(slp)
print (bounds)

# Get the geographic boundaries for a subset of the domain
slp_subset = slp[30:50, 40:70]
slp_subset_bounds = ecl.wrf.geo_bounds(slp_subset)
print (slp_subset_bounds)
+proj=lcc +a=6370000.0 +b=6370000.0 +nadgrids=@null +lon_0=-98.0 +lat_0=34.830017 +x_0=0.0 +y_0=0.0 +lat_1=30.0 +lat_2=60.0 +no_defs +type=crs
GeoBounds(CoordPair(lat=28.171279907226562, lon=-93.64892578125), CoordPair(lat=39.632320404052734, lon=-66.00164794921875))
GeoBounds(CoordPair(lat=34.72391891479492, lon=-79.68817138671875), CoordPair(lat=37.374691009521484, lon=-68.31838989257812))

Example: Using WRF Output Files with Cartopy#

In this example, the cartopy mapping object and geographic boundaries will be extracted directly from the netcdf variable.

# Get the cartopy mapping object from the netcdf file
cart_proj = ecl.wrf.get_cartopy(wrfin=ncfile)
print (cart_proj)

# Get the geobounds from the netcdf file (by default, uses XLAT, XLONG)
# You can supply a variable name to get the staggered boundaries
bounds = ecl.wrf.geo_bounds(wrfin=ncfile)
print (bounds)
+proj=lcc +a=6370000.0 +b=6370000.0 +nadgrids=@null +lon_0=-98.0 +lat_0=34.830017 +x_0=0.0 +y_0=0.0 +lat_1=30.0 +lat_2=60.0 +no_defs +type=crs
GeoBounds(CoordPair(lat=28.171279907226562, lon=-93.64892578125), CoordPair(lat=39.632320404052734, lon=-66.00164794921875))

Using OpenMP#

Beginning in version 1.1, the Fortran computational routines in wrf-python make use of OpenMP directives. OpenMP enables the calculations to use multiple CPU cores, which can improve performance. In order to use OpenMP features, wrf-python has to be compiled with OpenMP enabled (most pre-built binary installations will have this enabled).

The Fortran computational routines have all been built using runtime scheduling, instead of compile time scheduling, so that the user can choose the scheduler type within their Python application. By default, the scheduling type is set to easyclimate.wrf.OMP_SCHED_STATIC using only 1 CPU core, so wrf-python will behave similarly to the non-OpenMP built versions. For the most part, the difference between the scheduling types is minimal, with the exception being the easyclimate.wrf.OMP_SCHED_DYNAMIC scheduler that is much slower due to the additional overhead associated with it. For new users, using the default scheduler should be sufficient.

Verifying that OpenMP is Enabled#

To take advantage of the performance improvements offered by OpenMP, wrf-python needs to have been compiled with OpenMP features enabled. The example below shows how you can determine if OpenMP is enabled in your build of wrf-python.

from easyclimate.wrf import omp_enabled
print(omp_enabled())
True

Determining the Number of Available Processors#

The example below shows how you can get the maximum number of processors that are available on your system.

from easyclimate.wrf import omp_get_num_procs
print(omp_get_num_procs())
4

Specifying the Number of Threads#

To enable multicore support via OpenMP, specifying the maximum number of OpenMP threads (i.e. CPU cores) is the only step that you need to take.

In the example below, easyclimate.wrf.omp_set_num_threads() is used to set the maximum number of threads to use, and easyclimate.wrf.omp_get_max_threads() is used to retrieve (and print) the maximum number of threads used.

Note

Although there is an OpenMP routine named easyclimate.wrf.omp_get_num_threads(), this routine will always return 1 when called from the sequential part of the program. Use easyclimate.wrf.omp_get_max_threads() to return the value set by easyclimate.wrf.omp_set_num_threads().

from easyclimate.wrf import omp_set_num_threads, omp_get_max_threads
omp_set_num_threads(4)
print (omp_get_max_threads())
4

Setting a Different Scheduler Type#

When an OpenMP directive is encountered in the Fortran code, a scheduler is used to determine how the work is divided among the threads. All of the Fortran routines are compiled to use a ‘runtime’ scheduler, which indicates that the scheduler type (from the four listed below) is to be chosen at runtime (i.e. inside a Python script)

By default, the scheduler chosen is the easyclimate.wrf.OMP_SCHED_STATIC scheduler, which should be sufficient for most users. However, OpenMP and wrf-python include the following options for the scheduler type:

  • easyclimate.wrf.OMP_SCHED_STATIC

  • easyclimate.wrf.OMP_SCHED_DYNAMIC

  • easyclimate.wrf.OMP_SCHED_GUIDED

  • easyclimate.wrf.OMP_SCHED_AUTO

Refer to the OpenMP Specification (PDF file). for more information about these scheduler types. In local testing, easyclimate.wrf.OMP_SCHED_GUIDED produced the best results, but differences between easyclimate.wrf.OMP_SCHED_STATIC, easyclimate.wrf.OMP_SCHED_GUIDED, and easyclimate.wrf.OMP_SCHED_AUTO were minor. However, easyclimate.wrf.OMP_SCHED_DYNAMIC produced noticeably slower results due to the overhead of using a dynamic scheduler.

When setting a scheduler type, the easyclimate.wrf.omp_set_schedule() takes two arguments. The first is the scheduler type (one from the list above), and the second optional argument is a modifier, which is usually referred as the chunk size. If the modifier/chunk_size is set to 0, then the OpenMP default implementation is used. For easyclimate.wrf.OMP_SCHED_AUTO, the modifier is ignored.

If you are new to OpenMP and all this sounds confusing, don’t worry about setting a scheduler type. The default static scheduler will be good enough.

In the example below, the scheduler type is set to easyclimate.wrf.OMP_SCHED_GUIDED and uses the default chunk size of 0. The scheduler type is then read back using easyclimate.wrf.omp_get_schedule() and printed.

from easyclimate.wrf import omp_set_schedule, omp_get_schedule, OMP_SCHED_GUIDED

omp_set_schedule(OMP_SCHED_GUIDED, 0)
sched, modifier = omp_get_schedule()
print(sched, modifier)
3 1

Notice that the printed scheduler type (sched variable) is set to a value of 3, which is the actual integer constant value for the easyclimate.wrf.OMP_SCHED_GUIDED scheduler type. The modifier is returned as a value of 1, which is different than the 0 that was supplied to the easyclimate.wrf.omp_set_schedule() routine. This is because the 0 tells OpenMP to use its own default value for the scheduler, which is 1 for this type of scheduler.

Table of Available Diagnostics#

Variable Name

Description

Available Units

Additional Keyword Arguments

avo

Absolute Vorticity

10-5 s-1

eth/theta_e

Equivalent Potential Temperature

K

degC

degF

units (str) : Set to desired units. Default is ‘K’.

cape_2d

2D CAPE (MCAPE/MCIN/LCL/LFC)

J kg-1 ; J kg-1 ; m ; m

missing (float): Fill value for output only

cape_3d

3D CAPE and CIN

J kg-1

missing (float): Fill value for output only

ctt

Cloud Top Temperature

degC

K

degF

fill_nocloud (boolean): Set to True to use fill values for cloud free regions rather than surface temperature. Default is False.

missing (float): The fill value to use when fill_nocloud is True.

opt_thresh (float): The optical depth required to trigger the cloud top temperature calculation. Default is 1.0.

units (str) : Set to desired units. Default is ‘degC’.

cloudfrac

Cloud Fraction

%

vert_type (str): The vertical coordinate type for the cloud thresholds. Must be ‘height_agl’, ‘height_msl’, or ‘pres’. Default is ‘height_agl’.

low_thresh (float): The low cloud threshold (meters for ‘height_agl’ and ‘height_msl’, pascals for ‘pres’). Default is 300 m (97000 Pa)

mid_thresh (float): The mid cloud threshold (meters for ‘height_agl’ and ‘height_msl’, pascals for ‘pres’). Default is 2000 m (80000 Pa)

high_thresh (float): The high cloud threshold (meters for ‘height_agl’ and ‘height_msl’, pascals for ‘pres’). Default is 6000 m (45000 Pa)

dbz

Reflectivity

dBZ

do_variant (boolean): Set to True to enable variant calculation. Default is False.

do_liqskin (boolean): Set to True to enable liquid skin calculation. Default is False.

mdbz

Maximum Reflectivity

dBZ

do_variant (boolean): Set to True to enable variant calculation. Default is False.

do_liqskin (boolean): Set to True to enable liquid skin calculation. Default is False.

geopt/geopotential

Geopotential for the Mass Grid

m2 s-2

geopt_stag

Geopotential for the Vertically Staggered Grid

m2 s-2

helicity

Storm Relative Helicity

m2 s-2

top (float): The top level for the calculation in meters. Default is 3000.0.

lat

Latitude

decimal degrees

lon

Longitude

decimal degrees

omg/omega

Omega

Pa s-1

p/pres

Full Model Pressure

(in specified units)

Pa

hPa

mb

torr

mmhg

atm

units (str) : Set to desired units. Default is ‘Pa’.

pressure

Full Model Pressure (hPa)

hPa

pvo

Potential Vorticity

PVU

pw

Precipitable Water

kg m-2

rh

Relative Humidity

%

rh2

2m Relative Humidity

%

slp

Sea Level Pressure

hPa

hPa

mb

torr

mmhg

atm

units (str) : Set to desired units. Default is ‘hPa’.

T2

2m Temperature

K

ter

Model Terrain Height

m

km

dm

ft

mi

units (str) : Set to desired units. Default is ‘m’.

td2

2m Dew Point Temperature

degC

K

degF

units (str) : Set to desired units. Default is ‘degC’.

td

Dew Point Temperature

degC

K

degF

units (str) : Set to desired units. Default is ‘degC’.

tc

Temperature in Celsius

degC

th/theta

Potential Temperature

K

degC

degF

units (str) : Set to desired units. Default is ‘K’.

temp

Temperature (in specified units)

K

degC

degF

units (str) : Set to desired units. Default is ‘K’.

tk

Temperature in Kelvin

K

times

Times in the File or Sequence

xtimes

XTIME Coordinate

(if applicable)

minutes since

start of

model run

tv

Virtual Temperature

K

degC

degF

units (str) : Set to desired units. Default is ‘K’.

twb

Wet Bulb Temperature

K

degC

degF

units (str) : Set to desired units. Default is ‘K’.

updraft_helicity

Updraft Helicity

m2 s-2

bottom (float): The bottom level for the calculation in meters. Default is 2000.0.

top (float): The top level for the calculation in meters. Default is 5000.0.

ua

U-component of Wind on Mass Points

m s-1

km h-1

mi h-1

kt

ft s-1

units (str) : Set to desired units. Default is ‘m s-1’.

va

V-component of Wind on Mass Points

m s-1

km h-1

mi h-1

kt

ft s-1

units (str) : Set to desired units. Default is ‘m s-1’.

wa

W-component of Wind on Mass Points

m s-1

km h-1

mi h-1

kt

ft s-1

units (str) : Set to desired units. Default is ‘m s-1’.

uvmet10

10 m U and V Components of Wind

Rotated to Earth Coordinates

m s-1

km h-1

mi h-1

kt

ft s-1

units (str) : Set to desired units. Default is ‘m s-1’.

uvmet

U and V Components of Wind

Rotated to Earth Coordinates

m s-1

km h-1

mi h-1

kt

ft s-1

units (str) : Set to desired units. Default is ‘m s-1’.

wspd_wdir

Wind Speed and Direction (wind_from_direction)

in Grid Coordinates

m s-1

km h-1

mi h-1

kt

ft s-1

units (str) : Set to desired units. Default is ‘m s-1’.

wspd_wdir10

10m Wind Speed and Direction (wind_from_direction)

in Grid Coordinates

m s-1

km h-1

mi h-1

kt

ft s-1

units (str) : Set to desired units. Default is ‘m s-1’.

uvmet_wspd_wdir

Wind Speed and Direction (wind_from_direction)

Rotated to Earth Coordinates

m s-1

km h-1

mi h-1

kt

ft s-1

units (str) : Set to desired units. Default is ‘m s-1’.

uvmet10_wspd_wdir

10m Wind Speed and Direction (wind_from_direction)

Rotated to Earth Coordinates

m s-1

km h-1

mi h-1

kt

ft s-1

units (str) : Set to desired units. Default is ‘m s-1’.

z/height

Model Height for Mass Grid

m

km

dm

ft

mi

msl (boolean): Set to False to return AGL values. True is for MSL. Default is True.

units (str) : Set to desired units. Default is ‘m’.

height_agl

Model Height for Mass Grid (AGL)

m

km

dm

ft

mi

units (str) : Set to desired units. Default is ‘m’.

zstag

Model Height for Vertically Staggered Grid

m

km

dm

ft

mi

msl (boolean): Set to False to return AGL values. True is for MSL. Default is True.

units (str) : Set to desired units. Default is ‘m’.

Table of Subproduct Diagnostics#

Some diagnostics (e.g. cape_2d) include multiple products in its output. These products have been broken out in to individual diagnostics to help those utilities that are unable to work with multiple outputs. These individual diagnostics can be requested like any other diagnostic using easyclimate.wrf.getvar(). These are summarized in the table below.

Variable Name

Calculated From

Description

Available Units

Additional Keyword Arguments

mcape

cape_2d

2D Max CAPE

J kg-1

missing (float): Fill value for output only

mcin

cape_2d

2D Max CIN

J kg-1

missing (float): Fill value for output only

lcl

cape_2d

2D Lifted Condensation Level

J kg-1

missing (float): Fill value for output only

lfc

cape_2d

2D Level of Free Convection

J kg-1

missing (float): Fill value for output only

cape3d_only

cape_3d

3D CAPE

J kg-1

missing (float): Fill value for output only

cin3d_only

cape_3d

3D CIN

J kg-1

missing (float): Fill value for output only

low_cloudfrac

cloudfrac

Cloud Fraction for Low Clouds

%

vert_type (str): The vertical coordinate type for the cloud thresholds. Must be ‘height_agl’, ‘height_msl’, or ‘pres’. Default is ‘height_agl’.

low_thresh (float): The low cloud threshold (meters for ‘height_agl’ and ‘height_msl’, pascals for ‘pres’). Default is 300 m (97000 Pa)

mid_thresh (float): The mid cloud threshold (meters for ‘height_agl’ and ‘height_msl’, pascals for ‘pres’). Default is 2000 m (80000 Pa)

high_thresh (float): The high cloud threshold (meters for ‘height_agl’ and ‘height_msl’, pascals for ‘pres’). Default is 6000 m (45000 Pa)

mid_cloudfrac

cloudfrac

Cloud Fraction for Mid Clouds

%

vert_type (str): The vertical coordinate type for the cloud thresholds. Must be ‘height_agl’, ‘height_msl’, or ‘pres’. Default is ‘height_agl’.

low_thresh (float): The low cloud threshold (meters for ‘height_agl’ and ‘height_msl’, pascals for ‘pres’). Default is 300 m (97000 Pa)

mid_thresh (float): The mid cloud threshold (meters for ‘height_agl’ and ‘height_msl’, pascals for ‘pres’). Default is 2000 m (80000 Pa)

high_thresh (float): The high cloud threshold (meters for ‘height_agl’ and ‘height_msl’, pascals for ‘pres’). Default is 6000 m (45000 Pa)

high_cloudfrac

cloudfrac

Cloud Fraction for High Clouds

%

vert_type (str): The vertical coordinate type for the cloud thresholds. Must be ‘height_agl’, ‘height_msl’, or ‘pres’. Default is ‘height_agl’.

low_thresh (float): The low cloud threshold (meters for ‘height_agl’ and ‘height_msl’, pascals for ‘pres’). Default is 300 m (97000 Pa)

mid_thresh (float): The mid cloud threshold (meters for ‘height_agl’ and ‘height_msl’, pascals for ‘pres’). Default is 2000 m (80000 Pa)

high_thresh (float): The high cloud threshold (meters for ‘height_agl’ and ‘height_msl’, pascals for ‘pres’). Default is 6000 m (45000 Pa)

uvmet_wspd

uvmet_wspd_wdir

Wind Speed

Rotated to Earth Coordinates

m s-1

km h-1

mi h-1

kt

ft s-1

units (str) : Set to desired units. Default is ‘m s-1’.

uvmet_wdir

uvmet_wspd_wdir

Wind Direction (wind_from_direction)

Rotated to Earth Coordinates

m s-1

km h-1

mi h-1

kt

ft s-1

units (str) : Set to desired units. Default is ‘m s-1’.

uvmet10_wspd

uvmet10_wspd_wdir

10m Wind Speed

Rotated to Earth Coordinates

m s-1

km h-1

mi h-1

kt

ft s-1

units (str) : Set to desired units. Default is ‘m s-1’.

uvmet10_wdir

uvmet10_wspd_wdir

10m Wind Direction (wind_from_direction)

Rotated to Earth Coordinates

m s-1

km h-1

mi h-1

kt

ft s-1

units (str) : Set to desired units. Default is ‘m s-1’.

wspd

wspd_wdir

Wind Speed

in Grid Coordinates

m s-1

km h-1

mi h-1

kt

ft s-1

units (str) : Set to desired units. Default is ‘m s-1’.

wdir

wspd_wdir

Wind Direction (wind_from_direction)

in Grid Coordinates

m s-1

km h-1

mi h-1

kt

ft s-1

units (str) : Set to desired units. Default is ‘m s-1’.

wspd10

wspd_wdir10

10m Wind Speed

in Grid Coordinates

m s-1

km h-1

mi h-1

kt

ft s-1

units (str) : Set to desired units. Default is ‘m s-1’.

wdir10

wspd_wdir10

10m Wind Direction (wind_from_direction)

in Grid Coordinates

m s-1

km h-1

mi h-1

kt

ft s-1

units (str) : Set to desired units. Default is ‘m s-1’.

Total running time of the script: (0 minutes 0.765 seconds)