<?xml version="1.0"?>

<!--
####################################################################################################################################

Jazz config file for PECAN

 Direct comments to:
 Nancy Rehak (rehak@ucar.edu)

####################################################################################################################################
-->

<Jazz version="1.0">

<!--
####################################################################################################################################

 XML Tips:

 - XML is comprised of Elements and Attributes, as shown below:

   <Element attribute="value">
     <ChildElement1/>
     <ChildElement2 attribute1="foo" anotherAttribute="bar"/>
   </Element>

 - Do NOT use ampersand, apostrophe, greater-than, less-than, dashes, or exclamation characters for your content!
   These are special XML characters.
 - Element names begin with a capital letter, attribute names with a lowercase.
 - Elements must be terminated with a slash, either inline such as "<Element/>" or with a matching tag such as "<Element></Element>"
 - Attribute values must always be double quoted
 - Comments are bounded by less-than, exclamation, and 2 dashes at the beginning and 2 dashes followed by a greater-than at the end.
   2 dashes (and thus comments) cannot appear anywhere within a comment (which is why I can't show them to you here).
 - Blank lines, whitespace, carriage returns, and comments are completely ignored by the parser.

 Jazz Tips:

 - Configuration elements contain attributes which have meaning to that element (see descriptions of each below).
 - Most configuration elements can be specified on a single line, but you are free to split them on several lines for readability.
 - Some elements may appear more than once in a file (e.g., "Layer," "Colorscale," and "Area"). Others should only appear once.
   The comment for each element will indicate whether that element can be repeated.
 - Some attributes may be left out or their values left empty. In those cases, the default value for that attribute applies.
   These are all indicated in the comments.

####################################################################################################################################
-->

<!--
####################################################################################################################################

 <Layer> element (optional, any number of these allowed).

 Required attributes:

 vis        = whether the layer should be on or off when the application starts
 type       = the datatype of this layer (e.g., MDV, MDVWIND, MDVTOPO, CIDDMAP, SYMPROD)
              This determines which other configuration options, below, are valid
 name       = the name shown in the display


 Optional attributes:

 menuGroup        = the name of a group to add this layer to, defining where the layer shows up in the menus. By default
                    layers are added to a default group based on their type (example: MDV layers are added to GRIDS_MENU).
                    Specifying a different membership or menuGroup="none" overrides the default behavior.
 visibilityGroups = the name of a group that will control the visibility of the layer. By default layers may be added to
                    a group based on their type (example: MDV layers are added to the exclusive GRIDS_VISIBILITY group
                    that maintains a maximum of one visible layer within the group).  Layers are not required to be in a
                    visibility group.

 Notes:
  - Layers are rendered in the same order in which they are defined. First layer is on bottom, last layer on top. However,
    the GUI allows you to change the order by selecting "Configure -> Layer Order" from the menubar.


 Layer Descriptions:

   MDV:
     This is the layer type to use for any MDV grids that don't fall under a more specific category below.

     Attributes:
       field      = the MDV field name to retrieve (required)
       is2D       = true or false (default); if 2D = true, then altitude changes do not cause a reloading of data
       render     = rendering scheme which may be: grid, fillcontours, linecontours, or none (required)
       colorscale = the colorscale to use. May be the name of a colorscale defined in this file
                    or a reference to a remote CIDD (*.colors) or JADE (*.xml) colorscale. (required)
       location   = must be in the form "mdvp::". Mdv files are NOT supported (yet). (required)

     Default menu group is GRIDS_MENU, default visibility group is GRIDS_EXCLUSIVE.


   MDVTOPO:
     This is the layer type to use for MDV topography grids.

     Attributes:
       field      = the short MDV field name to retrieve (required)
       colorscale = the colorscale to use. May be the name of a colorscale defined in this file or a reference to a
                    remote CIDD ("*.colors") or JADE ("*.xml") colorscale (required)
       location   = must be in the form "mdvp::". (required)

     Default menu group is FEATURES_MENU.


   MDVWIND:
     This is the layer type to use for MDV wind grids that are rendered as gridded layers.  This is not a wind/motion
     overlay layer which will need to be added some time in the futurel.

     Attributes:
       isUandV    = true if the following fields will contain U and V vectors or false if speed and direction will be used (required)
       field      = the short MDV field name containing either the U wind vector or the wind speed in knots, depending on the value of "isUandV" (required)
       extraField = the short MDV field name containing the V wind vector or the wind direction in degrees, depending on the value of "isUandV" (required)
       is2D       = true or false (default); if 2D = true, then altitude changes do not cause a reloading of data
       render     = rendering scheme ("grid" for filled grid, "fillcontours" for color-filled contours, or "linecontours" for line contours) (required)
       colorscale = the colorscale to use. May be the name of a colorscale defined in this file or a reference to a
                    remote CIDD (*.colors) or JADE (*.xml) colorscale (required)
       location   = must be in the form "mdvp::". (required)

     Default menu group is GRIDS_MENU, default visibility group is GRIDS_EXCLUSIVE.


   SYMPROD:
     This is the layer type to use for SPDB data that is being rendered using a Symprod server.

     Attributes:
       before     = the amount of time before the currently selected time to look for products (e.g. "75mins" or "1hrs"). (required)
       after      = the amount of time after the currently selected time to look for products (can be "" or "now" to indicate zero offset). (required)
       textOff    = the spacing factor past which to stop rendering text labels.  Defaults to 0.0.
       request    = the methodology to use for requesting the data ("closest", "interval", "latest", "valid" or "firstBefore"). (required)

     Default menu group is FEATURES_MENU.


   CIDDMAP:
     This is the layer type to use for maps in the format used by CIDD and Rview.

     Attributes:
       color                  = the color with which to render the line, as an X11-defined color name, RGB triplet (each value between 0..255)
                                or hex group ("wheat1", "153,153,153", "#ffffcc"). Defaults to black.
       width                  = the width of the line in pixels. Defaults to 1.

     Default menu group is MAPS_MENU.


   RANGE_RINGS:
     This layer type creates an overlay of range rings.  The range rings may be centered on a predefined location or may be centered on
     the origin of the underlying base MDV data layer.  This layer is most useful if the base MDV layer is radar data in a polar or flat
     projection.

     Attributes:
       followData             = flag indicating whether the range rings should follow the data origin.
                                If true, the rings will be centered on the projection origin for the underlying base gridded data field.
                                Note that the range rings will not be displayed if the origin of the data is set to 0.0, 0.0 (which is
                                the case for most lat/lon projections).
                                If false, the rings will always be rendered centered on radarLat, radarLon.
                                Defaults to false.
       radarLat               = the latitude of the radar. Defaults to 0.0.
       radarLon               = the longitude of the radar. Defaults to 0.0.
       color                  = the color with which to render the line, as an X11-defined color name, RGB triplet (each value between 0..255)
                                or hex group ("wheat1", "153,153,153", "#ffffcc") (required).
       width                  = the width of the lines in pixels.  Defaults to 1.
       radiusIncr             = the radius increment of the rings in kilometers.  Rings will be rendered at all integral multiples of this
                                value.  Defaults to 100.
       numRings               = number of rings to render.  Defaults to 4.
       displayAzLines         = flag indicating whether to display azimuth lines ("true" or "false", defaults to false)
       startAz                = the azimuth for the first azimuth line in degrees.  This is also the line along which the range labels will be
                                rendered.  Defaults to 45.0.
       numAzLines             = the number of azimuth lines to display.  Defaults to 8.

     Default menu group is MAPS_MENU.

####################################################################################################################################
-->

<!-- MDVTOPO Layers -->

<Layer vis="off" type="MDVTOPO" name="Terrain" location="mdvp::terrain//front.eol.ucar.edu:8080:pecan/mdv/terrain?use_http=true"
       field="Elevation" render="fillcontours"
       colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/terrain_pecan.colors" />

<!-- Layer vis="off" type="MDVTOPO" name="Terrain" location="mdvp::terrain//front.eol.ucar.edu:8080:front/mdv/terrain?use_http=true"
       field="Elevation" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/terrain_front.colors" /-->

<!-- MDV Layers -->

<!-- WIDE AREA PRODUCTS -->

<Layer vis="off" type="MDV" name="MRMS-DBZ-COMP-2D" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/radarCart/mrms_comp?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="MRMS-DBZ-COMP-2D" />

<Layer vis="off" type="MDV" name="MRMS-ConvStrat" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/conv_strat/mrms?use_http=true"
       field="ConvStrat" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/conv_strat.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="MRMS-ConvStrat" />

<Layer vis="on" type="MDV" name="MRMS-DBZ-COMP-3D" location="mdvp::composite//front.eol.ucar.edu:8080:pecan/mdv/radarCart/mrms_mosaic?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="MRMS-DBZ-COMP-3D" />

<Layer vis="off" type="MDV" name="MRMS-DBZ-3D" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/radarCart/mrms_mosaic?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="MRMS-DBZ-3D" />

<Layer vis="off" type="MDV" name="NCAR-DBZ-COMP-2D" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/radarCart/3D_comp?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="NCAR-DBZ-COMP-2D" />

<Layer vis="off" type="MDV" name="NCAR-DBZ-COMP-3D" location="mdvp::composite//front.eol.ucar.edu:8080:pecan/mdv/radarCart/3D_mosaic?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="NCAR-DBZ-COMP-3D" />

<Layer vis="off" type="MDV" name="NCAR-DBZ-3D" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/radarCart/3D_mosaic?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="NCAR-DBZ-3D" />

<!--Layer vis="off" type="MDV" name="NCAR-ZDR-COMP-3D" location="mdvp::composite//front.eol.ucar.edu:8080:pecan/mdv/radarCart/3D_mosaic?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="NCAR-ZDR-COMP-3D" /-->

<Layer vis="off" type="MDV" name="NCAR-ZDR-3D" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/radarCart/3D_mosaic?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="NCAR-ZDR-3D" />

<!--Layer vis="off" type="MDV" name="NCAR-WIDTH-COMP-3D" location="mdvp::composite//front.eol.ucar.edu:8080:pecan/mdv/radarCart/3D_mosaic?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="NCAR-WIDTH-COMP-3D" /-->

<Layer vis="off" type="MDV" name="NCAR-WIDTH-3D" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/radarCart/3D_mosaic?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="NCAR-WIDTH-3D" />

<Layer vis="off" type="MDV" name="NCAR-LOWPPI-DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/radarCart/lowppi_mosaic?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="NCAR-LOWPPI-DBZ" />

<Layer vis="off" type="MDV" name="NCAR-LOWPPI-DBZ2" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/radarCart/lowppi_mosaic?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz_bragg.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="NCAR-LOWPPI-DBZ-2" />

<Layer vis="off" type="MDV" name="NCAR-LOWPPI-VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/radarCart/lowppi_mosaic?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="NCAR-LOWPPI-VEL" />

<Layer vis="off" type="MDV" name="NCAR-LOWPPI-WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/radarCart/lowppi_mosaic?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="NCAR-LOWPPI-WIDTH" />

<Layer vis="off" type="MDV" name="NCAR-LOWPPI-ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/radarCart/lowppi_mosaic?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="NCAR-LOWPPI-ZDR" />

<!--Layer vis="off" type="MDV" name="LOWPPI PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/radarCart/lowppi_mosaic?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="LOWPPI-PHIDP" /-->

<Layer vis="off" type="MDV" name="NCAR-LOWPPI-RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/radarCart/lowppi_mosaic?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="NCAR-LOWPPI-RHOHV" />

<Layer vis="off" type="MDV" name="NCAR-LOWPPI-RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/radarCart/lowppi_mosaic?use_http=true"
       field="range" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="NCAR-LOWPPI-RANGE" />

<Layer vis="off" type="MDV" name="QPE-RATE" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/qpe_mosaic?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="QPE-RATE" />

<Layer vis="off" type="MDV" name="QPE-1HR-ACCUM" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/qpe_accum_1hr?use_http=true"
       field="ACCUM_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_accum.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="QPE_1HR-ACCUM" />

<Layer vis="off" type="MDV" name="QPE-2HR-ACCUM" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/qpe_accum_2hr?use_http=true"
       field="ACCUM_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_accum.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="QPE-2HR-ACCUM" />

<Layer vis="off" type="MDV" name="QPE-3HR-ACCUM" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/qpe_accum_3hr?use_http=true"
       field="ACCUM_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_accum.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="QPE-3HR-ACCUM" />

<Layer vis="off" type="MDV" name="QPE-DAILY-ACCUM" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/qpe_accum_daily?use_http=true"
       field="ACCUM_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_accum.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="QPE-DAILY-ACCUM" />

<Layer vis="off" type="MDV" name="SURF-Temp" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/surf_interp?use_http=true"
       field="Temp" render="fillcontours" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="SURF-Temp" />

<Layer vis="off" type="MDV" name="SURF-DewPt" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/surf_interp?use_http=true"
       field="DewPoint" render="fillcontours" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="SURF-DewPt" />

<Layer vis="off" type="MDV" name="SURF-Conv" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/surf_interp?use_http=true"
       field="Convergence" render="fillcontours" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/conv.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="SURF-Conv" />

<Layer vis="off" type="MDV" name="Terrain" location="mdvp::terrain//front.eol.ucar.edu:8080:pecan/mdv/terrain?use_http=true"
       field="Elevation" render="fillcontours" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/terrain_pecan.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="Terrain" />

<Layer vis="off" type="MDV" name="RUC-temp" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/ruc?use_http=true"
       field="TMP" render="fillcontours" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="RUC-temp" />

<Layer vis="off" type="MDV" name="RUC-RH" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/ruc?use_http=true"
       field="RH" render="fillcontours" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rh.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="RUC-RH" />

<Layer vis="off" type="MDV" name="RUC-Wspd" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/ruc?use_http=true"
       field="speed" render="fillcontours" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/wind_speed.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="RUC-Wspd" />

<Layer vis="off" type="MDV" name="SAT-VIS" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/sat/goes13_1km?use_http=true"
       field="gvar_ch1" render="fillcontours" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/sat_cloud.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="SAT-VIS" />

<Layer vis="off" type="MDV" name="SAT-IR2" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/sat/goes13_4km?use_http=true"
       field="gvar_ch2" render="fillcontours" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/sat_tempC_toga.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="SAT-IR2" />

<Layer vis="off" type="MDV" name="SAT-IR3" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/sat/goes13_4km?use_http=true"
       field="gvar_ch3" render="fillcontours" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/sat_tempC_2.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="SAT-IR3" />

<Layer vis="off" type="MDV" name="SAT-IR4" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/sat/goes13_4km?use_http=true"
       field="gvar_ch4" render="fillcontours" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/sat_tempC_2.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="SAT-IR4" />

<Layer vis="off" type="MDV" name="SAT-WV" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/sat/goes13_4km?use_http=true"
       field="gvar_ch6" render="fillcontours" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/wv_uwC.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="SAT-WV" />

<!--Layer vis="off" type="MDV" name="MRMS-CONV-DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/conv_strat/mrms?use_http=true"
       field="DbzConv" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz_conv.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="MRMS-CONV-DBZ" /-->

<!--Layer vis="off" type="MDV" name="LTG-RATE" location="mdvp::terrain//front.eol.ucar.edu:8080:pecan/mdv/ltg/nldn?use_http=true"
       field="LtgRate" render="fillcontours" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/ltg_rate_hot.colors"
       menuGroup="WIDE-AREA-GRIDS" menuName="LTG-RATE" /-->

<!-- NEXRAD RADIAL MOMENTS -->

<Layer vis="off" type="MDV" name="NEXR KAMA DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/moments?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KAMA-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KAMA VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/moments?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KAMA-VEL" />

<Layer vis="off" type="MDV" name="NEXR KAMA WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/moments?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KAMA-WIDTH" />

<Layer vis="off" type="MDV" name="NEXR KAMA ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/moments?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KAMA-ZDR" />

<Layer vis="off" type="MDV" name="NEXR KAMA PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/moments?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KAMA-PHIDP" />

<Layer vis="off" type="MDV" name="NEXR KAMA RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/moments?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KAMA-RHOHV" />

<Layer vis="off" type="MDV" name="NEXR KCYS DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/moments?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KCYS-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KCYS VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/moments?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KCYS-VEL" />

<Layer vis="off" type="MDV" name="NEXR KCYS WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/moments?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KCYS-WIDTH" />

<Layer vis="off" type="MDV" name="NEXR KCYS ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/moments?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KCYS-ZDR" />

<Layer vis="off" type="MDV" name="NEXR KCYS PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/moments?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KCYS-PHIDP" />

<Layer vis="off" type="MDV" name="NEXR KCYS RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/moments?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KCYS-RHOHV" />

<Layer vis="off" type="MDV" name="NEXR KDDC DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/moments?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KDDC-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KDDC VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/moments?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KDDC-VEL" />

<Layer vis="off" type="MDV" name="NEXR KDDC WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/moments?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KDDC-WIDTH" />

<Layer vis="off" type="MDV" name="NEXR KDDC ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/moments?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KDDC-ZDR" />

<Layer vis="off" type="MDV" name="NEXR KDDC PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/moments?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KDDC-PHIDP" />

<Layer vis="off" type="MDV" name="NEXR KDDC RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/moments?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KDDC-RHOHV" />

<Layer vis="off" type="MDV" name="NEXR KEAX DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/moments?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KEAX-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KEAX VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/moments?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KEAX-VEL" />

<Layer vis="off" type="MDV" name="NEXR KEAX WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/moments?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KEAX-WIDTH" />

<Layer vis="off" type="MDV" name="NEXR KEAX ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/moments?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KEAX-ZDR" />

<Layer vis="off" type="MDV" name="NEXR KEAX PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/moments?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KEAX-PHIDP" />

<Layer vis="off" type="MDV" name="NEXR KEAX RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/moments?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KEAX-RHOHV" />

<Layer vis="off" type="MDV" name="NEXR KFTG DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/moments?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KFTG-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KFTG VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/moments?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KFTG-VEL" />

<Layer vis="off" type="MDV" name="NEXR KFTG WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/moments?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KFTG-WIDTH" />

<Layer vis="off" type="MDV" name="NEXR KFTG ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/moments?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KFTG-ZDR" />

<Layer vis="off" type="MDV" name="NEXR KFTG PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/moments?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KFTG-PHIDP" />

<Layer vis="off" type="MDV" name="NEXR KFTG RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/moments?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KFTG-RHOHV" />

<Layer vis="off" type="MDV" name="NEXR KGJX DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/moments?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KGJX-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KGJX VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/moments?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KGJX-VEL" />

<Layer vis="off" type="MDV" name="NEXR KGJX WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/moments?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KGJX-WIDTH" />

<Layer vis="off" type="MDV" name="NEXR KGJX ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/moments?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KGJX-ZDR" />

<Layer vis="off" type="MDV" name="NEXR KGJX PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/moments?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KGJX-PHIDP" />

<Layer vis="off" type="MDV" name="NEXR KGJX RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/moments?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KGJX-RHOHV" />

<Layer vis="off" type="MDV" name="NEXR KGLD DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/moments?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KGLD-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KGLD VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/moments?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KGLD-VEL" />

<Layer vis="off" type="MDV" name="NEXR KGLD WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/moments?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KGLD-WIDTH" />

<Layer vis="off" type="MDV" name="NEXR KGLD ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/moments?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KGLD-ZDR" />

<Layer vis="off" type="MDV" name="NEXR KGLD PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/moments?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KGLD-PHIDP" />

<Layer vis="off" type="MDV" name="NEXR KGLD RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/moments?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KGLD-RHOHV" />

<Layer vis="off" type="MDV" name="NEXR KICT DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/moments?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KICT-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KICT VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/moments?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KICT-VEL" />

<Layer vis="off" type="MDV" name="NEXR KICT WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/moments?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KICT-WIDTH" />

<Layer vis="off" type="MDV" name="NEXR KICT ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/moments?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KICT-ZDR" />

<Layer vis="off" type="MDV" name="NEXR KICT PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/moments?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KICT-PHIDP" />

<Layer vis="off" type="MDV" name="NEXR KICT RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/moments?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KICT-RHOHV" />

<Layer vis="off" type="MDV" name="NEXR KINX DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/moments?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KINX-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KINX VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/moments?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KINX-VEL" />

<Layer vis="off" type="MDV" name="NEXR KINX WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/moments?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KINX-WIDTH" />

<Layer vis="off" type="MDV" name="NEXR KINX ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/moments?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KINX-ZDR" />

<Layer vis="off" type="MDV" name="NEXR KINX PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/moments?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KINX-PHIDP" />

<Layer vis="off" type="MDV" name="NEXR KINX RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/moments?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KINX-RHOHV" />

<Layer vis="off" type="MDV" name="NEXR KLNX DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/moments?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KLNX-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KLNX VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/moments?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KLNX-VEL" />

<Layer vis="off" type="MDV" name="NEXR KLNX WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/moments?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KLNX-WIDTH" />

<Layer vis="off" type="MDV" name="NEXR KLNX ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/moments?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KLNX-ZDR" />

<Layer vis="off" type="MDV" name="NEXR KLNX PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/moments?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KLNX-PHIDP" />

<Layer vis="off" type="MDV" name="NEXR KLNX RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/moments?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KLNX-RHOHV" />

<Layer vis="off" type="MDV" name="NEXR KOAX DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/moments?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KOAX-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KOAX VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/moments?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KOAX-VEL" />

<Layer vis="off" type="MDV" name="NEXR KOAX WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/moments?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KOAX-WIDTH" />

<Layer vis="off" type="MDV" name="NEXR KOAX ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/moments?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KOAX-ZDR" />

<Layer vis="off" type="MDV" name="NEXR KOAX PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/moments?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KOAX-PHIDP" />

<Layer vis="off" type="MDV" name="NEXR KOAX RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/moments?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KOAX-RHOHV" />

<Layer vis="off" type="MDV" name="NEXR KPUX DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/moments?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KPUX-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KPUX VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/moments?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KPUX-VEL" />

<Layer vis="off" type="MDV" name="NEXR KPUX WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/moments?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KPUX-WIDTH" />

<Layer vis="off" type="MDV" name="NEXR KPUX ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/moments?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KPUX-ZDR" />

<Layer vis="off" type="MDV" name="NEXR KPUX PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/moments?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KPUX-PHIDP" />

<Layer vis="off" type="MDV" name="NEXR KPUX RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/moments?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KPUX-RHOHV" />

<Layer vis="off" type="MDV" name="NEXR KSGF DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/moments?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KSGF-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KSGF VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/moments?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KSGF-VEL" />

<Layer vis="off" type="MDV" name="NEXR KSGF WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/moments?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KSGF-WIDTH" />

<Layer vis="off" type="MDV" name="NEXR KSGF ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/moments?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KSGF-ZDR" />

<Layer vis="off" type="MDV" name="NEXR KSGF PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/moments?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KSGF-PHIDP" />

<Layer vis="off" type="MDV" name="NEXR KSGF RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/moments?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KSGF-RHOHV" />

<Layer vis="off" type="MDV" name="NEXR KTLX DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/moments?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KTLX-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KTLX VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/moments?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KTLX-VEL" />

<Layer vis="off" type="MDV" name="NEXR KTLX WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/moments?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KTLX-WIDTH" />

<Layer vis="off" type="MDV" name="NEXR KTLX ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/moments?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KTLX-ZDR" />

<Layer vis="off" type="MDV" name="NEXR KTLX PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/moments?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KTLX-PHIDP" />

<Layer vis="off" type="MDV" name="NEXR KTLX RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/moments?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KTLX-RHOHV" />

<Layer vis="off" type="MDV" name="NEXR KTWX DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/moments?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KTWX-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KTWX VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/moments?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KTWX-VEL" />

<Layer vis="off" type="MDV" name="NEXR KTWX WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/moments?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KTWX-WIDTH" />

<Layer vis="off" type="MDV" name="NEXR KTWX ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/moments?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KTWX-ZDR" />

<Layer vis="off" type="MDV" name="NEXR KTWX PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/moments?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KTWX-PHIDP" />

<Layer vis="off" type="MDV" name="NEXR KTWX RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/moments?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KTWX-RHOHV" />

<Layer vis="off" type="MDV" name="NEXR KUEX DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/moments?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KUEX-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KUEX VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/moments?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KUEX-VEL" />

<Layer vis="off" type="MDV" name="NEXR KUEX WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/moments?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KUEX-WIDTH" />

<Layer vis="off" type="MDV" name="NEXR KUEX ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/moments?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KUEX-ZDR" />

<Layer vis="off" type="MDV" name="NEXR KUEX PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/moments?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KUEX-PHIDP" />

<Layer vis="off" type="MDV" name="NEXR KUEX RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/moments?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KUEX-RHOHV" />

<Layer vis="off" type="MDV" name="NEXR KVNX DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/moments?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KVNX-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KVNX VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/moments?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KVNX-VEL" />

<Layer vis="off" type="MDV" name="NEXR KVNX WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/moments?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KVNX-WIDTH" />

<Layer vis="off" type="MDV" name="NEXR KVNX ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/moments?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KVNX-ZDR" />

<Layer vis="off" type="MDV" name="NEXR KVNX PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/moments?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KVNX-PHIDP" />

<Layer vis="off" type="MDV" name="NEXR KVNX RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/moments?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="NEXRAD-MOMENTS" menuName="KVNX-RHOHV" />

<!-- NEXRAD PID PRECIP RATE -->

<Layer vis="off" type="MDV" name="NEXP KAMA KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/partrain?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KAMA-KDP" />

<Layer vis="off" type="MDV" name="NEXP KAMA PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/partrain?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KAMA-PID" />

<Layer vis="off" type="MDV" name="NEXP KAMA PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/partrain?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KAMA-PID-TEMP" />

<Layer vis="off" type="MDV" name="NEXP KAMA RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/partrain?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KAMA-RATE-ZH" />

<Layer vis="off" type="MDV" name="NEXP KAMA RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/partrain?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KAMA-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="NEXP KAMA RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/partrain?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KAMA-RATE-KDP" />

<Layer vis="off" type="MDV" name="NEXP KAMA RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/partrain?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KAMA-RATE-PID" />

<Layer vis="off" type="MDV" name="NEXP KAMA RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/partrain?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KAMA-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="NEXP KCYS KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/partrain?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KCYS-KDP" />

<Layer vis="off" type="MDV" name="NEXP KCYS PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/partrain?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KCYS-PID" />

<Layer vis="off" type="MDV" name="NEXP KCYS PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/partrain?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KCYS-PID-TEMP" />

<Layer vis="off" type="MDV" name="NEXP KCYS RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/partrain?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KCYS-RATE-ZH" />

<Layer vis="off" type="MDV" name="NEXP KCYS RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/partrain?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KCYS-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="NEXP KCYS RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/partrain?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KCYS-RATE-KDP" />

<Layer vis="off" type="MDV" name="NEXP KCYS RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/partrain?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KCYS-RATE-PID" />

<Layer vis="off" type="MDV" name="NEXP KCYS RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/partrain?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KCYS-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="NEXP KDDC KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/partrain?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KDDC-KDP" />

<Layer vis="off" type="MDV" name="NEXP KDDC PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/partrain?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KDDC-PID" />

<Layer vis="off" type="MDV" name="NEXP KDDC PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/partrain?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KDDC-PID-TEMP" />

<Layer vis="off" type="MDV" name="NEXP KDDC RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/partrain?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KDDC-RATE-ZH" />

<Layer vis="off" type="MDV" name="NEXP KDDC RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/partrain?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KDDC-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="NEXP KDDC RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/partrain?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KDDC-RATE-KDP" />

<Layer vis="off" type="MDV" name="NEXP KDDC RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/partrain?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KDDC-RATE-PID" />

<Layer vis="off" type="MDV" name="NEXP KDDC RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/partrain?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KDDC-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="NEXP KEAX KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/partrain?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KEAX-KDP" />

<Layer vis="off" type="MDV" name="NEXP KEAX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/partrain?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KEAX-PID" />

<Layer vis="off" type="MDV" name="NEXP KEAX PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/partrain?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KEAX-PID-TEMP" />

<Layer vis="off" type="MDV" name="NEXP KEAX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/partrain?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KEAX-RATE-ZH" />

<Layer vis="off" type="MDV" name="NEXP KEAX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/partrain?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KEAX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="NEXP KEAX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/partrain?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KEAX-RATE-KDP" />

<Layer vis="off" type="MDV" name="NEXP KEAX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/partrain?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KEAX-RATE-PID" />

<Layer vis="off" type="MDV" name="NEXP KEAX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/partrain?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KEAX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="NEXP KFTG KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/partrain?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KFTG-KDP" />

<Layer vis="off" type="MDV" name="NEXP KFTG PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/partrain?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KFTG-PID" />

<Layer vis="off" type="MDV" name="NEXP KFTG PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/partrain?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KFTG-PID-TEMP" />

<Layer vis="off" type="MDV" name="NEXP KFTG RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/partrain?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KFTG-RATE-ZH" />

<Layer vis="off" type="MDV" name="NEXP KFTG RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/partrain?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KFTG-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="NEXP KFTG RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/partrain?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KFTG-RATE-KDP" />

<Layer vis="off" type="MDV" name="NEXP KFTG RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/partrain?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KFTG-RATE-PID" />

<Layer vis="off" type="MDV" name="NEXP KFTG RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/partrain?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KFTG-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="NEXP KGJX KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/partrain?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KGJX-KDP" />

<Layer vis="off" type="MDV" name="NEXP KGJX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/partrain?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KGJX-PID" />

<Layer vis="off" type="MDV" name="NEXP KGJX PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/partrain?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KGJX-PID-TEMP" />

<Layer vis="off" type="MDV" name="NEXP KGJX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/partrain?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KGJX-RATE-ZH" />

<Layer vis="off" type="MDV" name="NEXP KGJX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/partrain?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KGJX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="NEXP KGJX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/partrain?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KGJX-RATE-KDP" />

<Layer vis="off" type="MDV" name="NEXP KGJX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/partrain?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KGJX-RATE-PID" />

<Layer vis="off" type="MDV" name="NEXP KGJX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/partrain?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KGJX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="NEXP KGLD KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/partrain?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KGLD-KDP" />

<Layer vis="off" type="MDV" name="NEXP KGLD PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/partrain?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KGLD-PID" />

<Layer vis="off" type="MDV" name="NEXP KGLD PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/partrain?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KGLD-PID-TEMP" />

<Layer vis="off" type="MDV" name="NEXP KGLD RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/partrain?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KGLD-RATE-ZH" />

<Layer vis="off" type="MDV" name="NEXP KGLD RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/partrain?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KGLD-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="NEXP KGLD RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/partrain?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KGLD-RATE-KDP" />

<Layer vis="off" type="MDV" name="NEXP KGLD RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/partrain?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KGLD-RATE-PID" />

<Layer vis="off" type="MDV" name="NEXP KGLD RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/partrain?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KGLD-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="NEXP KICT KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/partrain?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KICT-KDP" />

<Layer vis="off" type="MDV" name="NEXP KICT PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/partrain?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KICT-PID" />

<Layer vis="off" type="MDV" name="NEXP KICT PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/partrain?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KICT-PID-TEMP" />

<Layer vis="off" type="MDV" name="NEXP KICT RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/partrain?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KICT-RATE-ZH" />

<Layer vis="off" type="MDV" name="NEXP KICT RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/partrain?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KICT-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="NEXP KICT RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/partrain?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KICT-RATE-KDP" />

<Layer vis="off" type="MDV" name="NEXP KICT RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/partrain?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KICT-RATE-PID" />

<Layer vis="off" type="MDV" name="NEXP KICT RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/partrain?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KICT-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="NEXP KINX KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/partrain?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KINX-KDP" />

<Layer vis="off" type="MDV" name="NEXP KINX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/partrain?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KINX-PID" />

<Layer vis="off" type="MDV" name="NEXP KINX PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/partrain?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KINX-PID-TEMP" />

<Layer vis="off" type="MDV" name="NEXP KINX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/partrain?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KINX-RATE-ZH" />

<Layer vis="off" type="MDV" name="NEXP KINX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/partrain?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KINX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="NEXP KINX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/partrain?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KINX-RATE-KDP" />

<Layer vis="off" type="MDV" name="NEXP KINX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/partrain?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KINX-RATE-PID" />

<Layer vis="off" type="MDV" name="NEXP KINX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/partrain?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KINX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="NEXP KLNX KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/partrain?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KLNX-KDP" />

<Layer vis="off" type="MDV" name="NEXP KLNX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/partrain?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KLNX-PID" />

<Layer vis="off" type="MDV" name="NEXP KLNX PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/partrain?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KLNX-PID-TEMP" />

<Layer vis="off" type="MDV" name="NEXP KLNX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/partrain?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KLNX-RATE-ZH" />

<Layer vis="off" type="MDV" name="NEXP KLNX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/partrain?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KLNX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="NEXP KLNX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/partrain?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KLNX-RATE-KDP" />

<Layer vis="off" type="MDV" name="NEXP KLNX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/partrain?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KLNX-RATE-PID" />

<Layer vis="off" type="MDV" name="NEXP KLNX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/partrain?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KLNX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="NEXP KOAX KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/partrain?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KOAX-KDP" />

<Layer vis="off" type="MDV" name="NEXP KOAX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/partrain?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KOAX-PID" />

<Layer vis="off" type="MDV" name="NEXP KOAX PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/partrain?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KOAX-PID-TEMP" />

<Layer vis="off" type="MDV" name="NEXP KOAX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/partrain?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KOAX-RATE-ZH" />

<Layer vis="off" type="MDV" name="NEXP KOAX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/partrain?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KOAX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="NEXP KOAX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/partrain?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KOAX-RATE-KDP" />

<Layer vis="off" type="MDV" name="NEXP KOAX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/partrain?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KOAX-RATE-PID" />

<Layer vis="off" type="MDV" name="NEXP KOAX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/partrain?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KOAX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="NEXP KPUX KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/partrain?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KPUX-KDP" />

<Layer vis="off" type="MDV" name="NEXP KPUX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/partrain?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KPUX-PID" />

<Layer vis="off" type="MDV" name="NEXP KPUX PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/partrain?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KPUX-PID-TEMP" />

<Layer vis="off" type="MDV" name="NEXP KPUX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/partrain?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KPUX-RATE-ZH" />

<Layer vis="off" type="MDV" name="NEXP KPUX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/partrain?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KPUX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="NEXP KPUX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/partrain?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KPUX-RATE-KDP" />

<Layer vis="off" type="MDV" name="NEXP KPUX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/partrain?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KPUX-RATE-PID" />

<Layer vis="off" type="MDV" name="NEXP KPUX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/partrain?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KPUX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="NEXP KSGF KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/partrain?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KSGF-KDP" />

<Layer vis="off" type="MDV" name="NEXP KSGF PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/partrain?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KSGF-PID" />

<Layer vis="off" type="MDV" name="NEXP KSGF PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/partrain?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KSGF-PID-TEMP" />

<Layer vis="off" type="MDV" name="NEXP KSGF RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/partrain?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KSGF-RATE-ZH" />

<Layer vis="off" type="MDV" name="NEXP KSGF RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/partrain?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KSGF-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="NEXP KSGF RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/partrain?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KSGF-RATE-KDP" />

<Layer vis="off" type="MDV" name="NEXP KSGF RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/partrain?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KSGF-RATE-PID" />

<Layer vis="off" type="MDV" name="NEXP KSGF RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/partrain?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KSGF-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="NEXP KTLX KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/partrain?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KTLX-KDP" />

<Layer vis="off" type="MDV" name="NEXP KTLX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/partrain?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KTLX-PID" />

<Layer vis="off" type="MDV" name="NEXP KTLX PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/partrain?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KTLX-PID-TEMP" />

<Layer vis="off" type="MDV" name="NEXP KTLX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/partrain?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KTLX-RATE-ZH" />

<Layer vis="off" type="MDV" name="NEXP KTLX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/partrain?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KTLX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="NEXP KTLX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/partrain?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KTLX-RATE-KDP" />

<Layer vis="off" type="MDV" name="NEXP KTLX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/partrain?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KTLX-RATE-PID" />

<Layer vis="off" type="MDV" name="NEXP KTLX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/partrain?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KTLX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="NEXP KTWX KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/partrain?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KTWX-KDP" />

<Layer vis="off" type="MDV" name="NEXP KTWX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/partrain?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KTWX-PID" />

<Layer vis="off" type="MDV" name="NEXP KTWX PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/partrain?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KTWX-PID-TEMP" />

<Layer vis="off" type="MDV" name="NEXP KTWX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/partrain?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KTWX-RATE-ZH" />

<Layer vis="off" type="MDV" name="NEXP KTWX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/partrain?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KTWX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="NEXP KTWX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/partrain?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KTWX-RATE-KDP" />

<Layer vis="off" type="MDV" name="NEXP KTWX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/partrain?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KTWX-RATE-PID" />

<Layer vis="off" type="MDV" name="NEXP KTWX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/partrain?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KTWX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="NEXP KUEX KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/partrain?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KUEX-KDP" />

<Layer vis="off" type="MDV" name="NEXP KUEX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/partrain?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KUEX-PID" />

<Layer vis="off" type="MDV" name="NEXP KUEX PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/partrain?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KUEX-PID-TEMP" />

<Layer vis="off" type="MDV" name="NEXP KUEX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/partrain?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KUEX-RATE-ZH" />

<Layer vis="off" type="MDV" name="NEXP KUEX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/partrain?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KUEX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="NEXP KUEX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/partrain?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KUEX-RATE-KDP" />

<Layer vis="off" type="MDV" name="NEXP KUEX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/partrain?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KUEX-RATE-PID" />

<Layer vis="off" type="MDV" name="NEXP KUEX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/partrain?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KUEX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="NEXP KVNX KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/partrain?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KVNX-KDP" />

<Layer vis="off" type="MDV" name="NEXP KVNX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/partrain?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KVNX-PID" />

<Layer vis="off" type="MDV" name="NEXP KVNX PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/partrain?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KVNX-PID-TEMP" />

<Layer vis="off" type="MDV" name="NEXP KVNX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/partrain?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KVNX-RATE-ZH" />

<Layer vis="off" type="MDV" name="NEXP KVNX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/partrain?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KVNX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="NEXP KVNX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/partrain?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KVNX-RATE-KDP" />

<Layer vis="off" type="MDV" name="NEXP KVNX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/partrain?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KVNX-RATE-PID" />

<Layer vis="off" type="MDV" name="NEXP KVNX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/partrain?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-PID-PRECIP" menuName="KVNX-RATE-HYBRID" />

<!-- NEXRAD QPE -->

<Layer vis="off" type="MDV" name="QPER KAMA RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/qpe?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KAMA-RATE-PID" />

<Layer vis="off" type="MDV" name="QPER KAMA RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/qpe?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KAMA-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="QPER KAMA RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/qpe?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KAMA-RATE-ZH" />

<Layer vis="off" type="MDV" name="QPER KAMA RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/qpe?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KAMA-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="QPER KAMA RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/qpe?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KAMA-RATE-KDP" />

<Layer vis="off" type="MDV" name="QPER KAMA PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/qpe?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-QPE" menuName="KAMA-PID" />

<Layer vis="off" type="MDV" name="QPER KAMA HEIGHT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/qpe?use_http=true"
       field="HEIGHT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/qpe_height.colors"
       menuGroup="NEXRAD-QPE" menuName="KAMA-HEIGHT" />

<Layer vis="off" type="MDV" name="QPER KAMA RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kama/qpe?use_http=true"
       field="RANGE" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="NEXRAD-QPE" menuName="KAMA-RANGE" />

<Layer vis="off" type="MDV" name="QPER KCYS RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/qpe?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KCYS-RATE-PID" />

<Layer vis="off" type="MDV" name="QPER KCYS RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/qpe?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KCYS-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="QPER KCYS RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/qpe?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KCYS-RATE-ZH" />

<Layer vis="off" type="MDV" name="QPER KCYS RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/qpe?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KCYS-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="QPER KCYS RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/qpe?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KCYS-RATE-KDP" />

<Layer vis="off" type="MDV" name="QPER KCYS PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/qpe?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-QPE" menuName="KCYS-PID" />

<Layer vis="off" type="MDV" name="QPER KCYS HEIGHT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/qpe?use_http=true"
       field="HEIGHT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/qpe_height.colors"
       menuGroup="NEXRAD-QPE" menuName="KCYS-HEIGHT" />

<Layer vis="off" type="MDV" name="QPER KCYS RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kcys/qpe?use_http=true"
       field="RANGE" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="NEXRAD-QPE" menuName="KCYS-RANGE" />

<Layer vis="off" type="MDV" name="QPER KDDC RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/qpe?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KDDC-RATE-PID" />

<Layer vis="off" type="MDV" name="QPER KDDC RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/qpe?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KDDC-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="QPER KDDC RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/qpe?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KDDC-RATE-ZH" />

<Layer vis="off" type="MDV" name="QPER KDDC RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/qpe?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KDDC-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="QPER KDDC RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/qpe?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KDDC-RATE-KDP" />

<Layer vis="off" type="MDV" name="QPER KDDC PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/qpe?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-QPE" menuName="KDDC-PID" />

<Layer vis="off" type="MDV" name="QPER KDDC HEIGHT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/qpe?use_http=true"
       field="HEIGHT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/qpe_height.colors"
       menuGroup="NEXRAD-QPE" menuName="KDDC-HEIGHT" />

<Layer vis="off" type="MDV" name="QPER KDDC RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kddc/qpe?use_http=true"
       field="RANGE" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="NEXRAD-QPE" menuName="KDDC-RANGE" />

<Layer vis="off" type="MDV" name="QPER KEAX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/qpe?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KEAX-RATE-PID" />

<Layer vis="off" type="MDV" name="QPER KEAX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/qpe?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KEAX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="QPER KEAX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/qpe?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KEAX-RATE-ZH" />

<Layer vis="off" type="MDV" name="QPER KEAX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/qpe?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KEAX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="QPER KEAX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/qpe?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KEAX-RATE-KDP" />

<Layer vis="off" type="MDV" name="QPER KEAX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/qpe?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-QPE" menuName="KEAX-PID" />

<Layer vis="off" type="MDV" name="QPER KEAX HEIGHT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/qpe?use_http=true"
       field="HEIGHT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/qpe_height.colors"
       menuGroup="NEXRAD-QPE" menuName="KEAX-HEIGHT" />

<Layer vis="off" type="MDV" name="QPER KEAX RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/keax/qpe?use_http=true"
       field="RANGE" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="NEXRAD-QPE" menuName="KEAX-RANGE" />

<Layer vis="off" type="MDV" name="QPER KFTG RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/qpe?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KFTG-RATE-PID" />

<Layer vis="off" type="MDV" name="QPER KFTG RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/qpe?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KFTG-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="QPER KFTG RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/qpe?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KFTG-RATE-ZH" />

<Layer vis="off" type="MDV" name="QPER KFTG RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/qpe?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KFTG-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="QPER KFTG RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/qpe?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KFTG-RATE-KDP" />

<Layer vis="off" type="MDV" name="QPER KFTG PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/qpe?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-QPE" menuName="KFTG-PID" />

<Layer vis="off" type="MDV" name="QPER KFTG HEIGHT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/qpe?use_http=true"
       field="HEIGHT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/qpe_height.colors"
       menuGroup="NEXRAD-QPE" menuName="KFTG-HEIGHT" />

<Layer vis="off" type="MDV" name="QPER KFTG RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kftg/qpe?use_http=true"
       field="RANGE" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="NEXRAD-QPE" menuName="KFTG-RANGE" />

<Layer vis="off" type="MDV" name="QPER KGJX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/qpe?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KGJX-RATE-PID" />

<Layer vis="off" type="MDV" name="QPER KGJX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/qpe?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KGJX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="QPER KGJX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/qpe?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KGJX-RATE-ZH" />

<Layer vis="off" type="MDV" name="QPER KGJX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/qpe?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KGJX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="QPER KGJX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/qpe?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KGJX-RATE-KDP" />

<Layer vis="off" type="MDV" name="QPER KGJX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/qpe?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-QPE" menuName="KGJX-PID" />

<Layer vis="off" type="MDV" name="QPER KGJX HEIGHT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/qpe?use_http=true"
       field="HEIGHT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/qpe_height.colors"
       menuGroup="NEXRAD-QPE" menuName="KGJX-HEIGHT" />

<Layer vis="off" type="MDV" name="QPER KGJX RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgjx/qpe?use_http=true"
       field="RANGE" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="NEXRAD-QPE" menuName="KGJX-RANGE" />

<Layer vis="off" type="MDV" name="QPER KGLD RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/qpe?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KGLD-RATE-PID" />

<Layer vis="off" type="MDV" name="QPER KGLD RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/qpe?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KGLD-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="QPER KGLD RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/qpe?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KGLD-RATE-ZH" />

<Layer vis="off" type="MDV" name="QPER KGLD RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/qpe?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KGLD-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="QPER KGLD RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/qpe?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KGLD-RATE-KDP" />

<Layer vis="off" type="MDV" name="QPER KGLD PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/qpe?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-QPE" menuName="KGLD-PID" />

<Layer vis="off" type="MDV" name="QPER KGLD HEIGHT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/qpe?use_http=true"
       field="HEIGHT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/qpe_height.colors"
       menuGroup="NEXRAD-QPE" menuName="KGLD-HEIGHT" />

<Layer vis="off" type="MDV" name="QPER KGLD RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kgld/qpe?use_http=true"
       field="RANGE" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="NEXRAD-QPE" menuName="KGLD-RANGE" />

<Layer vis="off" type="MDV" name="QPER KICT RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/qpe?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KICT-RATE-PID" />

<Layer vis="off" type="MDV" name="QPER KICT RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/qpe?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KICT-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="QPER KICT RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/qpe?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KICT-RATE-ZH" />

<Layer vis="off" type="MDV" name="QPER KICT RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/qpe?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KICT-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="QPER KICT RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/qpe?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KICT-RATE-KDP" />

<Layer vis="off" type="MDV" name="QPER KICT PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/qpe?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-QPE" menuName="KICT-PID" />

<Layer vis="off" type="MDV" name="QPER KICT HEIGHT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/qpe?use_http=true"
       field="HEIGHT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/qpe_height.colors"
       menuGroup="NEXRAD-QPE" menuName="KICT-HEIGHT" />

<Layer vis="off" type="MDV" name="QPER KICT RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kict/qpe?use_http=true"
       field="RANGE" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="NEXRAD-QPE" menuName="KICT-RANGE" />

<Layer vis="off" type="MDV" name="QPER KINX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/qpe?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KINX-RATE-PID" />

<Layer vis="off" type="MDV" name="QPER KINX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/qpe?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KINX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="QPER KINX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/qpe?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KINX-RATE-ZH" />

<Layer vis="off" type="MDV" name="QPER KINX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/qpe?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KINX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="QPER KINX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/qpe?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KINX-RATE-KDP" />

<Layer vis="off" type="MDV" name="QPER KINX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/qpe?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-QPE" menuName="KINX-PID" />

<Layer vis="off" type="MDV" name="QPER KINX HEIGHT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/qpe?use_http=true"
       field="HEIGHT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/qpe_height.colors"
       menuGroup="NEXRAD-QPE" menuName="KINX-HEIGHT" />

<Layer vis="off" type="MDV" name="QPER KINX RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kinx/qpe?use_http=true"
       field="RANGE" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="NEXRAD-QPE" menuName="KINX-RANGE" />

<Layer vis="off" type="MDV" name="QPER KLNX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/qpe?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KLNX-RATE-PID" />

<Layer vis="off" type="MDV" name="QPER KLNX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/qpe?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KLNX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="QPER KLNX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/qpe?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KLNX-RATE-ZH" />

<Layer vis="off" type="MDV" name="QPER KLNX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/qpe?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KLNX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="QPER KLNX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/qpe?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KLNX-RATE-KDP" />

<Layer vis="off" type="MDV" name="QPER KLNX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/qpe?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-QPE" menuName="KLNX-PID" />

<Layer vis="off" type="MDV" name="QPER KLNX HEIGHT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/qpe?use_http=true"
       field="HEIGHT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/qpe_height.colors"
       menuGroup="NEXRAD-QPE" menuName="KLNX-HEIGHT" />

<Layer vis="off" type="MDV" name="QPER KLNX RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/klnx/qpe?use_http=true"
       field="RANGE" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="NEXRAD-QPE" menuName="KLNX-RANGE" />

<Layer vis="off" type="MDV" name="QPER KOAX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/qpe?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KOAX-RATE-PID" />

<Layer vis="off" type="MDV" name="QPER KOAX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/qpe?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KOAX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="QPER KOAX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/qpe?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KOAX-RATE-ZH" />

<Layer vis="off" type="MDV" name="QPER KOAX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/qpe?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KOAX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="QPER KOAX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/qpe?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KOAX-RATE-KDP" />

<Layer vis="off" type="MDV" name="QPER KOAX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/qpe?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-QPE" menuName="KOAX-PID" />

<Layer vis="off" type="MDV" name="QPER KOAX HEIGHT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/qpe?use_http=true"
       field="HEIGHT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/qpe_height.colors"
       menuGroup="NEXRAD-QPE" menuName="KOAX-HEIGHT" />

<Layer vis="off" type="MDV" name="QPER KOAX RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/koax/qpe?use_http=true"
       field="RANGE" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="NEXRAD-QPE" menuName="KOAX-RANGE" />

<Layer vis="off" type="MDV" name="QPER KPUX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/qpe?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KPUX-RATE-PID" />

<Layer vis="off" type="MDV" name="QPER KPUX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/qpe?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KPUX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="QPER KPUX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/qpe?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KPUX-RATE-ZH" />

<Layer vis="off" type="MDV" name="QPER KPUX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/qpe?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KPUX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="QPER KPUX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/qpe?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KPUX-RATE-KDP" />

<Layer vis="off" type="MDV" name="QPER KPUX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/qpe?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-QPE" menuName="KPUX-PID" />

<Layer vis="off" type="MDV" name="QPER KPUX HEIGHT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/qpe?use_http=true"
       field="HEIGHT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/qpe_height.colors"
       menuGroup="NEXRAD-QPE" menuName="KPUX-HEIGHT" />

<Layer vis="off" type="MDV" name="QPER KPUX RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kpux/qpe?use_http=true"
       field="RANGE" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="NEXRAD-QPE" menuName="KPUX-RANGE" />

<Layer vis="off" type="MDV" name="QPER KSGF RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/qpe?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KSGF-RATE-PID" />

<Layer vis="off" type="MDV" name="QPER KSGF RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/qpe?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KSGF-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="QPER KSGF RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/qpe?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KSGF-RATE-ZH" />

<Layer vis="off" type="MDV" name="QPER KSGF RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/qpe?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KSGF-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="QPER KSGF RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/qpe?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KSGF-RATE-KDP" />

<Layer vis="off" type="MDV" name="QPER KSGF PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/qpe?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-QPE" menuName="KSGF-PID" />

<Layer vis="off" type="MDV" name="QPER KSGF HEIGHT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/qpe?use_http=true"
       field="HEIGHT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/qpe_height.colors"
       menuGroup="NEXRAD-QPE" menuName="KSGF-HEIGHT" />

<Layer vis="off" type="MDV" name="QPER KSGF RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ksgf/qpe?use_http=true"
       field="RANGE" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="NEXRAD-QPE" menuName="KSGF-RANGE" />

<Layer vis="off" type="MDV" name="QPER KTLX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/qpe?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KTLX-RATE-PID" />

<Layer vis="off" type="MDV" name="QPER KTLX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/qpe?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KTLX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="QPER KTLX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/qpe?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KTLX-RATE-ZH" />

<Layer vis="off" type="MDV" name="QPER KTLX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/qpe?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KTLX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="QPER KTLX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/qpe?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KTLX-RATE-KDP" />

<Layer vis="off" type="MDV" name="QPER KTLX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/qpe?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-QPE" menuName="KTLX-PID" />

<Layer vis="off" type="MDV" name="QPER KTLX HEIGHT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/qpe?use_http=true"
       field="HEIGHT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/qpe_height.colors"
       menuGroup="NEXRAD-QPE" menuName="KTLX-HEIGHT" />

<Layer vis="off" type="MDV" name="QPER KTLX RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktlx/qpe?use_http=true"
       field="RANGE" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="NEXRAD-QPE" menuName="KTLX-RANGE" />

<Layer vis="off" type="MDV" name="QPER KTWX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/qpe?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KTWX-RATE-PID" />

<Layer vis="off" type="MDV" name="QPER KTWX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/qpe?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KTWX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="QPER KTWX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/qpe?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KTWX-RATE-ZH" />

<Layer vis="off" type="MDV" name="QPER KTWX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/qpe?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KTWX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="QPER KTWX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/qpe?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KTWX-RATE-KDP" />

<Layer vis="off" type="MDV" name="QPER KTWX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/qpe?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-QPE" menuName="KTWX-PID" />

<Layer vis="off" type="MDV" name="QPER KTWX HEIGHT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/qpe?use_http=true"
       field="HEIGHT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/qpe_height.colors"
       menuGroup="NEXRAD-QPE" menuName="KTWX-HEIGHT" />

<Layer vis="off" type="MDV" name="QPER KTWX RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/ktwx/qpe?use_http=true"
       field="RANGE" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="NEXRAD-QPE" menuName="KTWX-RANGE" />

<Layer vis="off" type="MDV" name="QPER KUEX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/qpe?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KUEX-RATE-PID" />

<Layer vis="off" type="MDV" name="QPER KUEX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/qpe?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KUEX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="QPER KUEX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/qpe?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KUEX-RATE-ZH" />

<Layer vis="off" type="MDV" name="QPER KUEX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/qpe?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KUEX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="QPER KUEX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/qpe?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KUEX-RATE-KDP" />

<Layer vis="off" type="MDV" name="QPER KUEX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/qpe?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-QPE" menuName="KUEX-PID" />

<Layer vis="off" type="MDV" name="QPER KUEX HEIGHT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/qpe?use_http=true"
       field="HEIGHT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/qpe_height.colors"
       menuGroup="NEXRAD-QPE" menuName="KUEX-HEIGHT" />

<Layer vis="off" type="MDV" name="QPER KUEX RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kuex/qpe?use_http=true"
       field="RANGE" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="NEXRAD-QPE" menuName="KUEX-RANGE" />

<Layer vis="off" type="MDV" name="QPER KVNX RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/qpe?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KVNX-RATE-PID" />

<Layer vis="off" type="MDV" name="QPER KVNX RATE HYBRID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/qpe?use_http=true"
       field="RATE_HYBRID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KVNX-RATE-HYBRID" />

<Layer vis="off" type="MDV" name="QPER KVNX RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/qpe?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KVNX-RATE-ZH" />

<Layer vis="off" type="MDV" name="QPER KVNX RATE Z ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/qpe?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KVNX-RATE-Z-ZDR" />

<Layer vis="off" type="MDV" name="QPER KVNX RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/qpe?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="NEXRAD-QPE" menuName="KVNX-RATE-KDP" />

<Layer vis="off" type="MDV" name="QPER KVNX PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/qpe?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="NEXRAD-QPE" menuName="KVNX-PID" />

<Layer vis="off" type="MDV" name="QPER KVNX HEIGHT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/qpe?use_http=true"
       field="HEIGHT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/qpe_height.colors"
       menuGroup="NEXRAD-QPE" menuName="KVNX-HEIGHT" />

<Layer vis="off" type="MDV" name="QPER KVNX RANGE" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/kvnx/qpe?use_http=true"
       field="RANGE" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/range_250.colors"
       menuGroup="NEXRAD-QPE" menuName="KVNX-RANGE" />

<!-- SPOL SUR MOMENTS -->

<Layer vis="off" type="MDV" name="SPOL DBZ F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="DBZ_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="DBZ F" />

<Layer vis="off" type="MDV" name="SPOL DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="DBZ" />

<Layer vis="off" type="MDV" name="SPOL VEL F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="VEL_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="VEL F" />

<Layer vis="off" type="MDV" name="SPOL VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="VEL" />

<Layer vis="off" type="MDV" name="SPOL VELALT F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="VEL_ALT_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="VELALT F" />

<Layer vis="off" type="MDV" name="SPOL VELALT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="VEL_ALT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="VELALT" />

<Layer vis="off" type="MDV" name="SPOL VEL HV F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="VEL_HV_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="VEL HV F" />

<Layer vis="off" type="MDV" name="SPOL VEL HV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="VEL_HV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="VEL HV" />

<Layer vis="off" type="MDV" name="SPOL WIDTH F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="WIDTH_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="WIDTH F" />

<Layer vis="off" type="MDV" name="SPOL WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="WIDTH" />

<Layer vis="off" type="MDV" name="SPOL PHIDP F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="PHIDP_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="PHIDP F" />

<Layer vis="off" type="MDV" name="SPOL PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="PHIDP" />

<Layer vis="off" type="MDV" name="SPOL PHIDP0 F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="PHIDP0_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="PHIDP0 F" />

<Layer vis="off" type="MDV" name="SPOL PHIDP0" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="PHIDP0" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="PHIDP0" />

<Layer vis="off" type="MDV" name="SPOL KDP F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="KDP_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="KDP F" />

<Layer vis="off" type="MDV" name="SPOL KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="KDP" />

<Layer vis="off" type="MDV" name="SPOL ZDRM F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="ZDRM_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="ZDRM F" />

<Layer vis="off" type="MDV" name="SPOL ZDRM" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="ZDRM" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="ZDRM" />

<Layer vis="off" type="MDV" name="SPOL ZDR F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="ZDR_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="ZDR F" />

<Layer vis="off" type="MDV" name="SPOL ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="ZDR" />

<Layer vis="off" type="MDV" name="SPOL LDRH F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="LDRH_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/ldr.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="LDRH F" />

<Layer vis="off" type="MDV" name="SPOL LDRH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="LDRH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/ldr.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="LDRH" />

<Layer vis="off" type="MDV" name="SPOL LDRV F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="LDRV_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/ldr.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="LDRV F" />

<Layer vis="off" type="MDV" name="SPOL LDRV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="LDRV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/ldr.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="LDRV" />

<Layer vis="off" type="MDV" name="SPOL RHOHV F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="RHOHV_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="RHOHV F" />

<Layer vis="off" type="MDV" name="SPOL RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="RHOHV" />

<Layer vis="off" type="MDV" name="SPOL RHONNC F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="RHOHV_NNC_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="RHONNC F" />

<Layer vis="off" type="MDV" name="SPOL RHONNC" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="RHOHV_NNC" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="RHONNC" />

<Layer vis="off" type="MDV" name="SPOL CPA" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="CPA" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/cpa.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="CPA" />

<Layer vis="off" type="MDV" name="SPOL NCP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="NCP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/ncp.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="NCP" />

<Layer vis="off" type="MDV" name="SPOL CMD" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="CMD" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/cmd.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="CMD" />

<Layer vis="off" type="MDV" name="SPOL CMD FLAG" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="CMD_FLAG" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/cmd_flag.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="CMD FLAG" />

<Layer vis="off" type="MDV" name="SPOL SNRHC F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="SNRHC_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/snr.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="SNRHC F" />

<Layer vis="off" type="MDV" name="SPOL SNRHC" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="SNRHC" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/snr.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="SNRHC" />

<Layer vis="off" type="MDV" name="SPOL SNRVC F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="SNRVC_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/snr.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="SNRVC F" />

<Layer vis="off" type="MDV" name="SPOL SNRVC" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="SNRVC" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/snr.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="SNRVC" />

<Layer vis="off" type="MDV" name="SPOL SNRHX F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="SNRHX_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/snr.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="SNRHX F" />

<Layer vis="off" type="MDV" name="SPOL SNRHX" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="SNRHX" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/snr.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="SNRHX" />

<Layer vis="off" type="MDV" name="SPOL SNRVX F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="SNRVX_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/snr.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="SNRVX F" />

<Layer vis="off" type="MDV" name="SPOL SNRVX" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="SNRVX" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/snr.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="SNRVX" />

<Layer vis="off" type="MDV" name="SPOL DBMHC F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="DBMHC_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbmlow.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="DBMHC F" />

<Layer vis="off" type="MDV" name="SPOL DBMHC" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="DBMHC" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbmlow.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="DBMHC" />

<Layer vis="off" type="MDV" name="SPOL DBMVC F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="DBMVC_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbmlow.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="DBMVC F" />

<Layer vis="off" type="MDV" name="SPOL DBMVC" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="DBMVC" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbmlow.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="DBMVC" />

<Layer vis="off" type="MDV" name="SPOL DBMHX F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="DBMHX_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbmlow.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="DBMHX F" />

<Layer vis="off" type="MDV" name="SPOL DBMHX" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="DBMHX" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbmlow.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="DBMHX" />

<Layer vis="off" type="MDV" name="SPOL DBMVX F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="DBMVX_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbmlow.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="DBMVX F" />

<Layer vis="off" type="MDV" name="SPOL DBMVX" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="DBMVX" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbmlow.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="DBMVX" />

<Layer vis="off" type="MDV" name="SPOL TDBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="TDBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/tdbz.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="TDBZ" />

<Layer vis="off" type="MDV" name="SPOL SPIN" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="SPIN" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/spin.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="SPIN" />

<Layer vis="off" type="MDV" name="SPOL ZDR SDEV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="ZDR_SDEV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/sdzdr.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="ZDR SDEV" />

<Layer vis="off" type="MDV" name="SPOL PHI SDEV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="PHIDP_SDEV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/sdphidp.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="PHI SDEV" />

<Layer vis="off" type="MDV" name="SPOL CLUT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sur?use_http=true"
       field="CLUT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="SPOL_SUR_MOMENTS" menuName="CLUT" />

<!-- SPOL PID/PRECIP -->

<Layer vis="off" type="MDV" name="SPOL PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sur?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="SPOL_SUR_PID_PRECIP" menuName="PID" />

<Layer vis="off" type="MDV" name="SPOL PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sur?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="SPOL_SUR_PID_PRECIP" menuName="PID TEMP" />

<Layer vis="off" type="MDV" name="SPOL RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sur?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="SPOL_SUR_PID_PRECIP" menuName="RATE ZH" />

<Layer vis="off" type="MDV" name="SPOL RATE ZZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sur?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="SPOL_SUR_PID_PRECIP" menuName="RATE ZZDR" />

<Layer vis="off" type="MDV" name="SPOL RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sur?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="SPOL_SUR_PID_PRECIP" menuName="RATE KDP" />

<Layer vis="off" type="MDV" name="SPOL RATE KZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sur?use_http=true"
       field="RATE_KDP_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="SPOL_SUR_PID_PRECIP" menuName="RATE KZDR" />

<Layer vis="off" type="MDV" name="SPOL RATE HIDRO" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sur?use_http=true"
       field="RATE_HIDRO" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="SPOL_SUR_PID_PRECIP" menuName="RATE HIDRO" />

<Layer vis="off" type="MDV" name="SPOL RATE BRINGI" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sur?use_http=true"
       field="RATE_BRINGI" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="SPOL_SUR_PID_PRECIP" menuName="RATE BRINGI" />

<Layer vis="off" type="MDV" name="SPOL RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sur?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="SPOL_SUR_PID_PRECIP" menuName="RATE PID" />

<!-- SPOL SEC MOMENTS -->

<Layer vis="off" type="MDV" name="SPSEC DBZ F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="DBZ_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="DBZ F" />

<Layer vis="off" type="MDV" name="SPSEC DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="DBZ" />

<Layer vis="off" type="MDV" name="SPSEC VEL F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="VEL_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="VEL F" />

<Layer vis="off" type="MDV" name="SPSEC VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="VEL" />

<Layer vis="off" type="MDV" name="SPSEC VEL ALT F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="VEL_ALT_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="VEL ALT F" />

<Layer vis="off" type="MDV" name="SPSEC VEL ALT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="VEL_ALT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="VEL ALT" />

<Layer vis="off" type="MDV" name="SPSEC VEL HV F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="VEL_HV_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="VEL HV F" />

<Layer vis="off" type="MDV" name="SPSEC VEL HV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="VEL_HV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="VEL HV" />

<Layer vis="off" type="MDV" name="SPSEC WIDTH F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="WIDTH_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="WIDTH F" />

<Layer vis="off" type="MDV" name="SPSEC WIDTH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="WIDTH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/width.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="WIDTH" />

<Layer vis="off" type="MDV" name="SPSEC PHIDP F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="PHIDP_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="PHIDP F" />

<Layer vis="off" type="MDV" name="SPSEC PHIDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="PHIDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="PHIDP" />

<Layer vis="off" type="MDV" name="SPSEC PHIDP0 F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="PHIDP0_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="PHIDP0 F" />

<Layer vis="off" type="MDV" name="SPSEC PHIDP0" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="PHIDP0" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/phidp.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="PHIDP0" />

<Layer vis="off" type="MDV" name="SPSEC KDP F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="KDP_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="KDP F" />

<Layer vis="off" type="MDV" name="SPSEC KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/kdp_sband.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="KDP" />

<Layer vis="off" type="MDV" name="SPSEC ZDRM F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="ZDRM_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="ZDRM F" />

<Layer vis="off" type="MDV" name="SPSEC ZDRM" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="ZDRM" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="ZDRM" />

<Layer vis="off" type="MDV" name="SPSEC ZDR F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="ZDR_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="ZDR F" />

<Layer vis="off" type="MDV" name="SPSEC ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="ZDR" />

<Layer vis="off" type="MDV" name="SPSEC LDRH F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="LDRH_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/ldr.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="LDRH F" />

<Layer vis="off" type="MDV" name="SPSEC LDRH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="LDRH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/ldr.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="LDRH" />

<Layer vis="off" type="MDV" name="SPSEC LDRV F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="LDRV_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/ldr.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="LDRV F" />

<Layer vis="off" type="MDV" name="SPSEC LDRV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="LDRV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/ldr.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="LDRV" />

<Layer vis="off" type="MDV" name="SPSEC RHOHV F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="RHOHV_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="RHOHV F" />

<Layer vis="off" type="MDV" name="SPSEC RHOHV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="RHOHV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="RHOHV" />

<Layer vis="off" type="MDV" name="SPSEC RHOHV NNC F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="RHOHV_NNC_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="RHOHV NNC F" />

<Layer vis="off" type="MDV" name="SPSEC RHOHV NNC" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="RHOHV_NNC" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rhohv.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="RHOHV NNC" />

<Layer vis="off" type="MDV" name="SPSEC CPA" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="CPA" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/cpa.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="CPA" />

<Layer vis="off" type="MDV" name="SPSEC NCP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="NCP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/ncp.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="NCP" />

<Layer vis="off" type="MDV" name="SPSEC CMD" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="CMD" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/cmd.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="CMD" />

<Layer vis="off" type="MDV" name="SPSEC CMD FLAG" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="CMD_FLAG" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/cmd_flag.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="CMD FLAG" />

<Layer vis="off" type="MDV" name="SPSEC SNRHC F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="SNRHC_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/snr.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="SNRHC F" />

<Layer vis="off" type="MDV" name="SPSEC SNRHC" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="SNRHC" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/snr.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="SNRHC" />

<Layer vis="off" type="MDV" name="SPSEC SNRVC F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="SNRVC_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/snr.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="SNRVC F" />

<Layer vis="off" type="MDV" name="SPSEC SNRVC" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="SNRVC" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/snr.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="SNRVC" />

<Layer vis="off" type="MDV" name="SPSEC SNRHX F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="SNRHX_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/snr.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="SNRHX F" />

<Layer vis="off" type="MDV" name="SPSEC SNRHX" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="SNRHX" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/snr.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="SNRHX" />

<Layer vis="off" type="MDV" name="SPSEC SNRVX F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="SNRVX_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/snr.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="SNRVX F" />

<Layer vis="off" type="MDV" name="SPSEC SNRVX" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="SNRVX" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/snr.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="SNRVX" />

<Layer vis="off" type="MDV" name="SPSEC DBMHC F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="DBMHC_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbmlow.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="DBMHC F" />

<Layer vis="off" type="MDV" name="SPSEC DBMHC" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="DBMHC" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbmlow.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="DBMHC" />

<Layer vis="off" type="MDV" name="SPSEC DBMVC F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="DBMVC_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbmlow.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="DBMVC F" />

<Layer vis="off" type="MDV" name="SPSEC DBMVC" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="DBMVC" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbmlow.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="DBMVC" />

<Layer vis="off" type="MDV" name="SPSEC DBMHX F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="DBMHX_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbmlow.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="DBMHX F" />

<Layer vis="off" type="MDV" name="SPSEC DBMHX" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="DBMHX" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbmlow.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="DBMHX" />

<Layer vis="off" type="MDV" name="SPSEC DBMVX F" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="DBMVX_F" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbmlow.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="DBMVX F" />

<Layer vis="off" type="MDV" name="SPSEC DBMVX" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="DBMVX" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbmlow.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="DBMVX" />

<Layer vis="off" type="MDV" name="SPSEC TDBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="TDBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/tdbz.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="TDBZ" />

<Layer vis="off" type="MDV" name="SPSEC SPIN" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="SPIN" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/spin.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="SPIN" />

<Layer vis="off" type="MDV" name="SPSEC ZDR SDEV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="ZDR_SDEV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/sdzdr.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="ZDR SDEV" />

<Layer vis="off" type="MDV" name="SPSEC PHIDP SDEV" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="PHIDP_SDEV" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/sdphidp.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="PHIDP SDEV" />

<Layer vis="off" type="MDV" name="SPSEC CLUT" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/moments/sband/sec?use_http=true"
       field="CLUT" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="SPOL_SEC_MOMENTS" menuName="CLUT" />

<!-- SPOL SEC PID PRECIP -->

<Layer vis="off" type="MDV" name="SPSEC PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sec?use_http=true"
       field="PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/pid.colors"
       menuGroup="SPOL_SEC_PID_PRECIP" menuName="PID" />

<Layer vis="off" type="MDV" name="SPSEC PID TEMP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sec?use_http=true"
       field="TEMP_FOR_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp.colors"
       menuGroup="SPOL_SEC_PID_PRECIP" menuName="PID TEMP" />

<Layer vis="off" type="MDV" name="SPSEC RATE ZH" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sec?use_http=true"
       field="RATE_ZH" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="SPOL_SEC_PID_PRECIP" menuName="RATE ZH" />

<Layer vis="off" type="MDV" name="SPSEC RATE ZZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sec?use_http=true"
       field="RATE_Z_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="SPOL_SEC_PID_PRECIP" menuName="RATE ZZDR" />

<Layer vis="off" type="MDV" name="SPSEC RATE KDP" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sec?use_http=true"
       field="RATE_KDP" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="SPOL_SEC_PID_PRECIP" menuName="RATE KDP" />

<Layer vis="off" type="MDV" name="SPSEC RATE KZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sec?use_http=true"
       field="RATE_KDP_ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="SPOL_SEC_PID_PRECIP" menuName="RATE KZDR" />

<Layer vis="off" type="MDV" name="SPSEC RATE HIDRO" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sec?use_http=true"
       field="RATE_HIDRO" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="SPOL_SEC_PID_PRECIP" menuName="RATE HIDRO" />

<Layer vis="off" type="MDV" name="SPSEC RATE BRINGI" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sec?use_http=true"
       field="RATE_BRINGI" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="SPOL_SEC_PID_PRECIP" menuName="RATE BRINGI" />

<Layer vis="off" type="MDV" name="SPSEC RATE PID" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/spol/partrain/sband/sec?use_http=true"
       field="RATE_PID" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/precip_rate.colors"
       menuGroup="SPOL_SEC_PID_PRECIP" menuName="RATE PID" />

<!-- DOWS -->

<Layer vis="off" type="MDV" name="DOW6-DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/dow6/quicklook/high/sur?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="DOWS" menuName="DOW6-DBZ" />

<Layer vis="off" type="MDV" name="DOW6-VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/dow6/quicklook/high/sur?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="DOWS" menuName="DOW6-VEL" />

<Layer vis="off" type="MDV" name="DOW6-ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/dow6/quicklook/high/sur?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="DOWS" menuName="DOW6-ZDR" />

<Layer vis="off" type="MDV" name="DOW7-DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/dow7/quicklook/high/sur?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="DOWS" menuName="DOW7-DBZ" />

<Layer vis="off" type="MDV" name="DOW7-VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/dow7/quicklook/high/sur?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="DOWS" menuName="DOW7-VEL" />

<Layer vis="off" type="MDV" name="DOW7-ZDR" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/dow7/quicklook/high/sur?use_http=true"
       field="ZDR" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/zdr.colors"
       menuGroup="DOWS" menuName="DOW7-ZDR" />

<Layer vis="off" type="MDV" name="DOW8-DBZ" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/dow8/quicklook/dow8/sur?use_http=true"
       field="DBZ" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/dbz.colors"
       menuGroup="DOWS" menuName="DOW8-DBZ" />

<Layer vis="off" type="MDV" name="DOW8-VEL" location="mdvp:://front.eol.ucar.edu:8080:pecan/cfradial/dow8/quicklook/dow8/sur?use_http=true"
       field="VEL" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/vel.colors"
       menuGroup="DOWS" menuName="DOW8-VEL" />

<!-- VDRAS -->

<Layer vis="off" type="MDV" name="VDRASr_W_Wind" location="mdvp:://front.eol.ucar.edu:8080:/data/zhuming/pecan/mdv/anal?use_http=true"
       field="wwind" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/wvel_new.colors"
       menuGroup="VDRAS" menuName="VDRAS-W-WIND" />

<Layer vis="off" type="MDV" name="VDRASr_Wmsl" location="mdvp:://front.eol.ucar.edu:8080:/data/zhuming/pecan/mdv/post?use_http=true"
       field="wmsl" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/wvel_new.colors"
       menuGroup="VDRAS" menuName="VDRAS-WMSL" />

<Layer vis="off" type="MDV" name="VDRASr_Temp" location="mdvp:://front.eol.ucar.edu:8080:/data/zhuming/pecan/mdv/anal?use_http=true"
       field="temp" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/temp_vdras.colors"
       menuGroup="VDRAS" menuName="VDRAS-TEMP" />

<Layer vis="off" type="MDV" name="VDRASr_RH" location="mdvp:://front.eol.ucar.edu:8080:/data/zhuming/pecan/mdv/anal?use_http=true"
       field="rh" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/rh.colors"
       menuGroup="VDRAS" menuName="VDRAS-RH" />

<Layer vis="off" type="MDV" name="VDRASr_Div" location="mdvp:://front.eol.ucar.edu:8080:/data/zhuming/pecan/mdv/anal?use_http=true"
       field="div" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/div3.colors"
       menuGroup="VDRAS" menuName="VDRAS-DIV" />

<Layer vis="off" type="MDV" name="VDRASr_Divmsl" location="mdvp:://front.eol.ucar.edu:8080:/data/zhuming/pecan/mdv/post?use_http=true"
       field="divmsl" render="grid" colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/div3.colors"
       menuGroup="VDRAS" menuName="VDRAS-DIVMSL" />

<!-- MDVWIND Layers -->

<Layer vis="off" type="MDVWIND" name="Surf Winds" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/surf_interp?use_http=true"
       isUandV="true" field="Uwind" extraField="Vwind" render="grid" renderBarbs="true" color="yellow"
       colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/wind_speed.colors" />

<Layer vis="off" type="MDVWIND" name="RUC Winds" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/ruc?use_http=true"
       isUandV="true" field="UGRD" extraField="VGRD" render="grid" renderBarbs="true" color="cyan"
       colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/wind_speed.colors" />

<Layer vis="off" type="MDVWIND" name="OpticalFlow" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/optflow/mrms?use_http=true"
       isUandV="true" field="U" extraField="V" render="grid" renderBarbs="true" color="green"
       colorscale="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/color_scales/wind_speed.colors" />

<Layer vis="off" type="MDVWIND" name="VDRASr_Vector" location="mdvp:://front.eol.ucar.edu:8080:/data/zhuming/pecan/mdv/anal?use_http=true"
       isUandV="true" field="uwind" extraField="vwind" render="grid" renderBarbs="true" color="red" colorscale="windColors" />

<Layer vis="off" type="MDVWIND" name="VDRASr_Shear" location="mdvp:://front.eol.ucar.edu:8080:/data/zhuming/pecan/mdv/post?use_http=true"
       isUandV="true" field="us" extraField="vs" render="grid" renderBarbs="true" color="orange" colorscale="windColors" />

<Layer vis="off" type="MDVWIND" name="VDRASr_MSL" location="mdvp:://front.eol.ucar.edu:8080:/data/zhuming/pecan/mdv/post?use_http=true"
       isUandV="true" field="umsl" extraField="vmsl" render="grid" renderBarbs="true" color="green" colorscale="windColors" />

<!--Layer vis="off" type="MDVWIND" name="DDOP Winds" location="mdvp:://front.eol.ucar.edu:8080:pecan/mdv/ddoppler/chill_spol?use_http=true"
       isUandV="true" field="U" extraField="V" render="grid" renderBarbs="true" color="yellow" colorscale="windColors" /-->


<!-- SYMPROD Layers -->

<Layer vis="off" type="SYMPROD" name="NLDN-15"
       location="spdbp:Ltg2Symprod://front.eol.ucar.edu:8080:pecan/spdb/ltg/nldn?use_http=true"
       before="15mins" after="0hrs" textOff="0" request="interval" menuName="NLDN-15" />

<Layer vis="off" type="SYMPROD" name="AcPosn 10-min" 
       location="spdbp:AcTrack2Symprod:10_min//front.eol.ucar.edu:8080:pecan/spdb/ac_posn?use_http=true"
       before="15mins" after="15mins" textOff="0.4" request="firstBefore" menuName="AcPosn 10-min" />

<Layer vis="off" type="SYMPROD" name="AcPosn 20-min" 
       location="spdbp:AcTrack2Symprod:20_min//front.eol.ucar.edu:8080:pecan/spdb/ac_posn?use_http=true"
       before="15mins" after="15mins" textOff="0.4" request="firstBefore" menuName="AcPosn 20-min" />

<Layer vis="off" type="SYMPROD" name="AcPosn 30-min" 
       location="spdbp:AcTrack2Symprod:30_min//front.eol.ucar.edu:8080:pecan/spdb/ac_posn?use_http=true"
       before="15mins" after="15mins" textOff="0.4" request="firstBefore" menuName="AcPosn 30-min" />

<Layer vis="off" type="SYMPROD" name="MobilePosn" 
       location="spdbp:AcTrack2Symprod:mobile//front.eol.ucar.edu:8080:pecan/spdb/mobile_posn?use_http=true"
       before="15mins" after="15mins" textOff="0.4" request="firstBefore" menuName="MobilePosn" />

<Layer vis="off" type="SYMPROD" name="METARS-simple"
       location="spdbp:Metar2Symprod:simple//front.eol.ucar.edu:8080:pecan/spdb/metar?use_http=true"
       before="90mins" after="0hrs" textOff="0" request="latest" menuName="METARS-simple" />

<Layer vis="off" type="SYMPROD" name="MADIS-simple"
       location="spdbp:Metar2Symprod:simple//front.eol.ucar.edu:8080:pecan/spdb/madis?use_http=true"
       before="90mins" after="0hrs" textOff="0" request="latest" menuName="MADIS-simple" />

<Layer vis="off" type="SYMPROD" name="KSMESO-simple"
       location="spdbp:Metar2Symprod:simple//front.eol.ucar.edu:8080:pecan/spdb/KSMeso?use_http=true"
       before="90mins" after="0hrs" textOff="0" request="latest" menuName="KSMESO-simple" />

<Layer vis="off" type="SYMPROD" name="METARS-full"
       location="spdbp:Metar2Symprod:labels//front.eol.ucar.edu:8080:pecan/spdb/metar?use_http=true"
       before="90mins" after="0hrs" textOff="0" request="latest" menuName="METARS-full" />

<Layer vis="off" type="SYMPROD" name="MADIS-full"
       location="spdbp:Metar2Symprod:labels//front.eol.ucar.edu:8080:pecan/spdb/madis?use_http=true"
       before="90mins" after="0hrs" textOff="0" request="latest" menuName="MADIS-full" />

<Layer vis="off" type="SYMPROD" name="KSMESO-full"
       location="spdbp:Metar2Symprod:labels//front.eol.ucar.edu:8080:pecan/spdb/KSMeso?use_http=true"
       before="90mins" after="0hrs" textOff="0" request="latest" menuName="KSMESO-full" />

<Layer vis="off" type="SYMPROD" name="RHI-spol"
       location="spdbp:Rhi2Symprod:ticks//front.eol.ucar.edu:8080:pecan/spdb/spol/rhi/sband?use_http=true"
       before="20mins" after="10mins" textOff="0.4" request="interval" menuName="RHI-spol" />

<Layer vis="off" type="SYMPROD" name="titan-forecast 60-min"
       location="spdbp:Tstorms2Symprod:60min//front.eol.ucar.edu:8080:pecan/spdb/tstorms/mrms_conv?use_http=true"
       before="20mins" after="0hrs" textOff="0" request="firstBefore" menuName="titan-forecast 60-min" />

<Layer vis="off" type="SYMPROD" name="titan-forecast 120-min"
       location="spdbp:Tstorms2Symprod:120min//front.eol.ucar.edu:8080:pecan/spdb/tstorms/mrms_conv?use_http=true"
       before="20mins" after="0hrs" textOff="0" request="firstBefore" menuName="titan-forecast 120-min" />

<!-- CIDDMAP Layers -->

<Layer vis="on" type="CIDDMAP" name="PECAN" location="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/maps/pecan_domain.map"
       color="orange" width="1" />

<Layer vis="off" type="CIDDMAP" name="Counties" location="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/maps/us_counties.map"
       color="brown4" width="1" />

<Layer vis="on" type="CIDDMAP" name="States" location="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/maps/usa.map"
       color="blue" width="1" />

<Layer vis="on" type="CIDDMAP" name="ihwys" location="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/maps/conus_interstates.map"
       color="gray" width="1" />

<Layer vis="off" type="CIDDMAP" name="ushwys" location="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/maps/conus_ushwys.map"
       color="darkblue" width="0" />

<Layer vis="on" type="CIDDMAP" name="SPOL" location="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/maps/spol_pecan.map"
       color="white" width="1" />

<Layer vis="on" type="CIDDMAP" name="NEXRADS" location="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/maps/nexrads.map"
       color="white" width="1" />

<Layer vis="on" type="CIDDMAP" name="PISA-fixed-locs" location="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/maps/pecan_pisa.map"
       color="orange" width="1" />

<Layer vis="on" type="CIDDMAP" name="WORLD" location="http://front.eol.ucar.edu/content/projects/hawk/front/projDir/display/maps/world_states.map"
       color="gray" width="1" />

<!-- RANGE_RING Layers -->

<Layer vis="on" type="RANGE_RINGS" name="Dynamic Range Rings"
       followData="true" radarLat="40.1233" radarLon="-104.891"
       color="gray" width="1"
       numRings="5" radiusIncr="50"
       displayAzLines="true" />

<Layer vis="off" type="RANGE_RINGS" name="SPOL Range Rings"
       followData="false" radarLat="38.5535" radarLon="-99.5361"
       color="gray" width="1"
       numRings="8" radiusIncr="25"
       displayAzLines="true" />

<!--
 ####################################################################################################################################

 Groups

 There are three types of groups:
 MenuGroups       - Are groups that determine where layers end up in the GUI menus. If a layer is added to a default
                    group (GRIDS_MENU, FEATURES_MENU, MAPS_MENU) the layer will appear in the corresponding menu in the
                    GUI. If a layer is added to a MenuGroup that has one of the default groups as a parent, the layer will
                    be put in a submenu corresponding to that MenuGroup.
 VisibilityGroups - Are used to control the visibility of layers. There is one default VisibilityGroup called
                    GRIDS_EXCLUSIVE that ensures no more than one grid is visible at a time. Gridded layers are added to
                    this group by default. To override, specify visibilityGroups="none" for the layer, and you will be
                    able to show the layer at the same time as other grids.
 SpecialGroups    - Are defined in the JAM XML and known to the application code. They enable any sort of custom event
                    handling within the application. There is one special group available to all apps that have
                    vertical xsections: XSECT_FEATURES - add feature layers to this group if you want them to show up
                    in the vertical section display.

 <MenuGroup> element (optional, any number of these allowed).
 Required attributes:

 name        = the name of the group (has to be unique)
 label       = the label to be used on the sub-menu in the GUI.
 parentGroup = the name of a menu group to act as the parent of this group. Use one of the default groups (GRIDS_MENU, FEATURES_MENU, or MAPS_MENU),
               another MenuGroup defined here, or reference a special group that is used to build special menus in the application code.


<VisibilityGroup> element (optional, any number of these allowed).
 Required attributes:
 name       = the name of the group (has to be unique)
 type       = specifies what control the group will exercise on the visibility its members ('exclusive', or 'synchronized')

 -->

  <MenuGroup name="WIDE-AREA-GRIDS" label="WIDE AREA GRIDS" parentGroup="GRIDS_MENU" />

  <MenuGroup name="NEXRAD-MOMENTS" label="NEXRAD RADIAL MOMENTS" parentGroup="GRIDS_MENU" />
  <MenuGroup name="NEXRAD-PID-PRECIP" label="NEXRAD PID AND PRECIP" parentGroup="GRIDS_MENU" />
  <MenuGroup name="NEXRAD-QPE" label="NEXRAD QPE" parentGroup="GRIDS_MENU" />

  <MenuGroup name="SPOL_SUR_menu" label="SPOL Surveillance" parentGroup="GRIDS_MENU" />
  <MenuGroup name="SPOL_SUR_MOMENTS" label="Moments" parentGroup="SPOL_SUR_menu" />
  <MenuGroup name="SPOL_SUR_PID_PRECIP" label="PID/precip" parentGroup="SPOL_SUR_menu" />

  <MenuGroup name="SPOL_SEC_menu" label="SPOL Sectors" parentGroup="GRIDS_MENU" />
  <MenuGroup name="SPOL_SEC_MOMENTS" label="Moments" parentGroup="SPOL_SEC_menu" />
  <MenuGroup name="SPOL_SEC_PID_PRECIP" label="PID/precip" parentGroup="SPOL_SEC_menu" />

  <MenuGroup name="DOWS" label="DOW MOBILE" parentGroup="GRIDS_MENU" />
  <MenuGroup name="VDRAS" label="VDRAS" parentGroup="GRIDS_MENU" />

  <MenuGroup name="QPE_menu" label="QPE Products" parentGroup="GRIDS_MENU" />
  <MenuGroup name="QPE_MERGE_menu" label="Merge" parentGroup="QPE_menu" />
  <MenuGroup name="QPE_ACCUM_menu" label="Accumulations" parentGroup="QPE_menu" />

<!--
####################################################################################################################################

 Time configuration (optional, zero or one):

 mode     = "realtime" or "archive" - determines data refresh and time window marching
 start    = in realtime mode, start is relative to now (+ or - number of hrs or mins, or "now"), e.g., "-12hrs"
            in archive mode, start must be an explicit time in the format "yyyy-MM-dd'T'HH:mm" (e.g. 2008-04-30T23:41)
 end      = in realtime mode, end is relative to now (+ or - number of hrs or mins, or "now"), e.g., "+15mins"
            in archive mode, end must be an explicit time in the format "yyyy-MM-dd'T'HH:mm" (e.g. 2008-04-30T23:41)
 interval = time between selectable (and animated) ticks, beginning with the start time and ending at or before the end time
 update   = time between checks for data updates (in realtime only). For performance reasons, keep this value >= 5mins.
 timeZone = time zone to use for the interpretation of start/end, and to use for the display. Defaults to UTC if omitted.
            Abbreviations and full descriptions are ok (eg: MST or America/Denver).  See http://en.wikipedia.org/wiki/Time_zone
            for a description, and http://www.timezoneconverter.com/ for a listing

####################################################################################################################################
-->

<Time mode="realtime" start="-1hrs" end="+10mins" interval="5mins" update="60secs"/>
<!-- Time mode="archive" start="2014-05-21T20:30" end="2014-05-21T23:30" interval="5mins" update="30secs"/-->

<!--
####################################################################################################################################

 Animation configuration (optional, zero or one):

 delay = minimum milliseconds delay between animation frames
 dwell = minimum milliseconds pause at the end of an animation sequence

####################################################################################################################################
-->

<Animation delay="75" dwell="3000" />

<!--
####################################################################################################################################

 Altitude configuration (optional, zero or one):

 units    = the units for the vertical scale (km, m, ft, FL, or mb)
 bottom   = lowest altitude of range, in the same units defined above (if in mb, may be greater numerically than top)
 top      = highest altitude of range, in the same units defined above (if in mb, may be lesser numerically than bottom)
 interval = the interval to use for dividing up the distance between bottom and top
 default  = optional initial altitude, in the same units defined above (defaults to same value as "bottom")
 
 or

 dataDrivenProperties = optional. Overrides other attributes. If true, altitude's range and levels will be
                        dynamically set according to selected/on layer.
 evenTicks = optional. When using dataDrivenProperties, setting to true will render altitude tick marks evenly-spaced, even if the
             vertical intervals vary in size (such as pressure levels). The default is to lay out ticks based on the their values,
             so pressure levels would be more tightly spaced near the ground than higher in the atmosphere. 
####################################################################################################################################
-->

<!--Altitude units="ft" bottom="0" top="40000" interval="1000" default="6000"/-->
<!--Altitude units="FL" bottom="0" top="300" interval="10" default="100"/-->
<!--Altitude units="km" bottom="0" top="16" interval="0.25" default="3"/-->
<!--Altitude units="mb" bottom="1000" top="0" interval="50" default="700" /-->
<Altitude dataDrivenProperties="true" evenTicks="false" />

<!--
####################################################################################################################################

 View configuration (optional, zero or one):

   projection = the projection in which to view the data. One of the below list.

 Projection-specific configuration:

 LatLon:
   none, defaults to -180 to +180 longitude and -90 to +90 latitude

 Flat:
   originLon  = longitude of the origin
   originLat  = latitude of the origin
   rotation = rotation of the projection

 LambertConformal:
   originLat = origin's latitude
   originLon = origin's longitude
   stdLat1 = standard latitude 1
   stdLat2 = standard latitude 2 (optional)

 Stereographic:
   tangentLon = tangent longitude
   tangentLat = tangent latitude
   secantLat = secant latitude, if applicable due to secant plane

 PolarStereographic:
   tangentLon = tangent longitude
   poleIsNorth = "true" or "false" (optional - defaults to "true")
   centralScale = central scale of projection (optional - defaults to 1.0)

 Albers:
   originLat = origin's latitude
   originLon = origin's longitude
   lat1 = standard latitude 1
   lat2 = standard latitude 2

 AzimEquidist:
   originLat = origin's latitude
   originLon = origin's longitude
   rotation = rotation of the projection (optional - defaults to 0.0)

 LambertAzimuthal:
   originLat = origin's latitude
   originLon = origin's longitude

 Mercator:
   originLat = origin's latitude
   originLon = origin's longitude

 TransMercator:
   originLat = origin's latitude
   originLon = origin's longitude
   centralScale = central scale of the projection (optional - defaults to 1.0)

 VerticalPerspective:
   originLat = origin's latitude
   originLon = origin's longitude
   perspRadius = the perspective radius of the projection

####################################################################################################################################
-->

<View projection="LambertConformal" originLon="-98.0" originLat="38.5" stdLat1="38.5" />
<!--View projection="Stereographic" tangentLon="-135.0" tangentLat="90.0"/-->
<!--View projection="LatLon" /-->
<!--View projection="Flat" originLon="120.433502" originLat="22.526699" rotation="0.0" /-->
<!--View projection="LatLon" /-->

<!--
####################################################################################################################################

 Areas of Interest (optional, zero or more):

   name = the name of the Area shown in the display
 minLon = the minimum longitude of the lat/lon bounding box defining the Area in decimal degrees or degrees, minutes, seconds
 minLat = the minimum latitude of the lat/lon bounding box defining the Area in decimal degrees or degrees, minutes, seconds
 maxLon = the maximum longitude of the lat/lon bounding box defining the Area in decimal degrees or degrees, minutes, seconds
 maxLat = the maximum latitude of the lat/lon bounding box defining the Area in decimal degrees or degrees, minutes, seconds
 defaultView = (optional) true or false; if true, then the Area will be the default view for the main window

 Note:
   - If more than one Area has a defaultView of true, then the last one listed will be the default view

    name  defaultView   minLon   minLat maxLon  maxLat

####################################################################################################################################
-->

<Area name="SPOL-150km" minLon="-101.27" maxLon="-97.80" minLat="37.18" maxLat="39.90"/>
<Area name="PECAN-DOMAIN" minLon="-103.7" maxLon="-95.2" minLat="35.1305" maxLat="41.9195"/>
<Area name="WIDE" minLon="-107" maxLon="-92" minLat="32.3889" maxLat="44.6111" defaultView="true"/>
<Area name="REGIONAL" minLon="-110.714" maxLon="-89.286" minLat="29" maxLat="46" defaultView="false"/>
<Area name="CONUS" minLon="-125" maxLon="-70" minLat="13.2559" maxLat="61.7441"/>
<!--Area name="WORLD" minLon="-180" maxLon="180" minLat="-180" maxLat="180"/-->

<!--
####################################################################################################################################

 Window parameters (optional element, zero or one):

 width = pixel width of the window, if the screen is big enough
 height = pixel height of the window, if the screen is big enough
 xOrigin = (optional) pixel x location of the upper left of the window, measured from upper left of the screen
 yOrigin = (optional) pixel y location of the upper left of the window, measured from upper left of the screen (positive downwards)
 backgroundColor = (optional) defaults to white

####################################################################################################################################
-->
<Window width="1000" height="1000" xOrigin="0" yOrigin="0" backgroundColor="black"/>

<!--
####################################################################################################################################

 This section MUST appear *below* the Layer definitions!

 XSections:

 XSections = optional element. Zero or one allowed. If this element is missing, then cross-sections will be disabled.
 Path = optional element representing a preconfigured xsect path. Zero or more allowed.  Leave this out to enable arbitrary,
        user-entered cross sections.
   name = name attribute for the xsection Path element
   Waypoint = 2 or more elements required for each Path. Ordered waypoints for the path. Requires lat and lon attributes.
   enableZoom           = Optional.  Set to 'none,' 'rubberband,' or 'doubleclick' to enable zooming in the XSect.
####################################################################################################################################
-->

<!--XSections>
  <Path name="Test 1">
    <Waypoint lat="23.147" lon="120.056"/>
    <Waypoint lat="22.862" lon="120.134"/>
  </Path>
  <Path name="Test 2">
    <Waypoint lat="22.309" lon="119.75"/>
    <Waypoint lat="22.494" lon="120.244"/>
  </Path>
</XSections-->

<XSections dataDrivenProperties="true" showGridLines="true" enableZoom="rubberband">
</XSections>

<!--
####################################################################################################################################

 SkewT parameters:

 SkewT            = optional element. Zero or one allowed. If this element is missing, then SkewTs will be disabled.
 location         = Required. where to get the data eg: mdvp:://yaw:10000:ruc/mdv/lambert
 temperatureField = Required. Name of the MDV 3-D temperature field.
 rhField          = either rhField or dewpointField required.  Name of the MDV 3-D relative humidity field. Server side units
                    must be correct (ie: % means 0..100, whereas unitless means 0..1)
 dewpointField    = either rhField or dewpointField required. Name of the MDV 3-D dewpoint field.
 uField           = Required. Name of the MDV 3-D u-wind field. Speed/dir not supported (yet)
 vField           = Required. Name of the MDV 3-D v-wind field. Speed/dir not supported (yet)

####################################################################################################################################
-->

<!--SkewT location="mdvp:://yaw:10000:ruc/mdv/lambert"
       temperatureField="TMP"
       rhField="R_H"
       uField="UGRD"
       vField="VGRD">
</SkewT-->

<!--SkewT location="mdvp:://yaw:10000:ruc/mdv/lambert"
       temperatureField="TMP"
       rhField="R_H"
       uField="UGRD"
       vField="VGRD">
</SkewT-->

<!--
####################################################################################################################################

 Optional tools.  Each tool will only appear if the associated element is found in this file.
 You can comment out tools that are not desired.

####################################################################################################################################
-->

<SwapFieldsTool/>
<TimeAndAnimationTool/>

<!--
  ####################################################################################################################################
   Distance and Azimuth measuring tool:

   distanceUnit = Optional unit in which to display the distance. Must be a length unit defined in units.xml file.
                  Defaults to meter.
   declination  = Optional magnetic declination from true north, expressed as a decimal degree. May be
                  positive, negative, or contain an east-west direction suffix. Defaults to zero.
  ####################################################################################################################################
-->
<DistanceAndAzimuthTool distanceUnit="nm" declination="6.3E"/>

<!--
  ####################################################################################################################################

   ColorScale configuration (zero or more):

   id    = the name of the colorscale, used to refer to it from "Layer" defintions
   Range = one or more Range elements required
   min   = the minimum value of the bin; attribute of the Range element, required
   max   = the maximum value of the bin; attribute of the Range element, required
   color = an X11-defined color name, RGB triplet (0..255 for each value), or hex group ("wheat1", "153,153,153", "#ffffcc");
           attribute of the Range element, required
   label = the optional custom label to apply to this bin. Defaults to the numeric values of the bin boundaries.
           ; attribute of the Range element, optional

   Note:
      - when a value can be in more than one bin (overlapping) the last matching (descending) bin color is used

  ####################################################################################################################################
  -->
<ColorScale id="airColorscale">
  <Range min="-80" max="-35" color="LightYellow1"      label="-35<" />
  <Range min="-35" max="-30" color="LightYellow2"      label="" />
  <Range min="-30" max="-25" color="wheat1"            label="" />
  <Range min="-25" max="-15" color="LightYellow3"      label="" />
  <Range min="-15" max="-10" color="RosyBrown3"        label="" />
  <Range min="-10" max="-5"  color="medium slate blue" label="" />
  <Range min="-5"  max="0"   color="dark slate blue"   label="" />
  <Range min="0"   max="5"   color="blue"              label="" />
  <Range min="5"   max="10"  color="royal blue"        label="" />
  <Range min="10"  max="14"  color="slate gray"        label="" />
  <Range min="14"  max="17"  color="dark slate gray"   label="" />
  <Range min="17"  max="20"  color="dark green"        label="" />
  <Range min="20"  max="23"  color="forest green"      label="" />
  <Range min="23"  max="26"  color="lime green"        label="" />
  <Range min="26"  max="29"  color="lawn green"        label="" />
  <Range min="29"  max="32"  color="yellow"            label="" />
  <Range min="32"  max="35"  color="gold1"             label="" />
  <Range min="35"  max="38"  color="DarkGoldenrod1"    label="" />
  <Range min="38"  max="41"  color="orange"            label="" />
  <Range min="41"  max="44"  color="sienna1"           label="" />
  <Range min="44"  max="47"  color="orange red"        label="" />
  <Range min="47"  max="50"  color="red1" />
</ColorScale>

<ColorScale id="tempColorscale">
  <Range min="-50" max="-45"  color="204,153,255"/>
  <Range min="-45" max="-40"  color="153,102,255"/>
  <Range min="-40" max="-35"  color="102,51,153"/>
  <Range min="-35" max="-30"  color="0,0,204"/>
  <Range min="-30" max="-25"  color="0,0,255"/>
  <Range min="-25" max="-20"  color="51,102,255"/>
  <Range min="-20" max="-15"  color="51,153,255"/>
  <Range min="-15" max="-10"  color="102,204,255"/>
  <Range min="-10" max="-5"   color="153,204,255"/>
  <Range min="-5"  max="0"    color="204,204,255"/>
  <Range min="0"   max="5"    color="255,255,153"/>
  <Range min="5"   max="10"   color="255,204,0"/>
  <Range min="10"  max="15"   color="255,153,0"/>
  <Range min="15"  max="20"   color="255,102,0"/>
  <Range min="20"  max="25"   color="255,51,0"/>
  <Range min="25"  max="30"   color="255,0,0"/>
  <Range min="30"  max="35"   color="204,0,0"/>
</ColorScale>

<!--
 wind.colors

 For the Taiwan system. Winds below 60
 are cool colours - over 60
 they are hot colours.
-->

<ColorScale id="windColors">
  <Range min="0"   max="15"  color="255,255,255"/>
  <Range min="15"   max="30"  color="204,255,255"/>
  <Range min="30"   max="45"  color="153,255,255"/>
  <Range min="45"   max="60"  color="153,255,204"/>
  <Range min="60"   max="75"  color="153,255,102"/>
  <Range min="75"   max="90"  color="204,255,102"/>
  <Range min="90"   max="105"  color="255,255,153"/>
  <Range min="105"   max="120"  color="255,204,0"/>
  <Range min="120"   max="135"  color="255,153,0"/>
  <Range min="135"   max="150"  color="255,102,0"/>
  <Range min="150"   max="165"  color="255,51,0"/>
  <Range min="165"   max="180"  color="204,0,0"/>
</ColorScale>

<ColorScale id="radar_colorscale">
  <Range min="5.0" max="10.0" color="102,255,255"/>
  <Range min="10.0" max="15.0" color="51,153,255"/>
  <Range min="15.0" max="20.0" color="0,0,255"/>
  <Range min="20.0" max="25.0" color="0,255,0"/>
  <Range min="25.0" max="30.0" color="0,204,0"/>
  <Range min="30.0" max="35.0" color="0,153,0"/>
  <Range min="35.0" max="40.0" color="255,255,0"/>
  <Range min="40.0" max="45.0" color="255,204,0"/>
  <Range min="45.0" max="50.0" color="255,102,0"/>
  <Range min="50.0" max="55.0" color="255,0,0"/>
  <Range min="55.0" max="60.0" color="204,51,0"/>
  <Range min="60.0" max="65.0" color="153,0,0"/>
  <Range min="65.0" max="70.0" color="255,0,255"/>
  <Range min="70.0" max="75.0" color="153,51,204"/>
</ColorScale>

<ColorScale id="topo_colorscale">
  <Range min="0" max="315" color="102,51,0"/>
  <Range min="315" max="630" color="111,60,9"/>
  <Range min="630" max="945" color="119,68,17"/>
  <Range min="945" max="1260" color="128,77,26"/>
  <Range min="1260" max="1575" color="137,86,35"/>
  <Range min="1575" max="1890" color="145,94,43"/>
  <Range min="1890" max="2215" color="153,102,51"/>
  <Range min="2215" max="2530" color="162,111,60"/>
  <Range min="2530" max="2845" color="170,119,68"/>
  <Range min="2845" max="3160" color="179,128,77"/>
  <Range min="3160" max="3475" color="188,137,86"/>
  <Range min="3475" max="3790" color="196,145,94"/>
  <Range min="3790" max="4105" color="204,153,102"/>
  <Range min="4105" max="4420" color="213,162,111"/>
  <Range min="4420" max="4735" color="221,170,119"/>
  <Range min="4735" max="5050" color="230,179,128"/>
  <Range min="5050" max="5365" color="239,188,137"/>
  <Range min="5365" max="5680" color="247,196,145"/>
  <Range min="5680" max="6000" color="255,204,153"/>
</ColorScale>

<!--
####################################################################################################################################

 Other configuration parameters:

####################################################################################################################################
-->

</Jazz>
