<?xml version="1.0"?>

<!--
####################################################################################################################################

 Sample Jazz file

 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.
 menuName         = the name shown in the menu.  By default, the display name is used.
 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.

####################################################################################################################################
-->

<!-- MDV Layers -->

<Layer vis="off" type="MDV" name="NEXR KLGX DBZ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/klgx"
       field="DBZ" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors"
       menuGroup="Nexrad" visibilityGroups="none" menuName="KLGX-DBZ" />

<Layer vis="off" type="MDV" name="NEXR KLGX VEL30" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/klgx"
       field="VEL" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_30.colors"
       menuGroup="Nexrad" visibilityGroups="none" menuName="KLGX-VEL30" />

<Layer vis="off" type="MDV" name="NEXR KLGX VEL45" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/klgx"
       field="VEL" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_45.colors"
       menuGroup="Nexrad" menuName="KLGX-VEL45" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KLGX VELNEX" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/klgx"
       field="VEL" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_nexrad.colors"
       menuGroup="Nexrad" menuName="KLGX-VELNEX" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KLGX WIDTH" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/klgx"
       field="WIDTH" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/width.colors"
       menuGroup="Nexrad" menuName="KLGX-WIDTH" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KLGX ZDR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/klgx"
       field="ZDR" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors"
       menuGroup="Nexrad" menuName="KLGX-ZDR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KLGX PHIDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/klgx"
       field="PHIDP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/phidp.colors"
       menuGroup="Nexrad" menuName="KLGX-PHIDP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KLGX RHOHV" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/klgx"
       field="RHOHV" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/rhohv.colors"
       menuGroup="Nexrad" menuName="KLGX-RHOHV" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KLGX PID" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/klgx"
       field="PID" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/pid.colors"
       menuGroup="Nexrad" menuName="KLGX-PID" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KLGX PID TEMP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/klgx"
       field="TEMP_FOR_PID" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/temp.colors"
       menuGroup="Nexrad" menuName="KLGX-PID-TEMP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KLGX KDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/klgx"
       field="KDP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/kdp_sband.colors"
       menuGroup="Nexrad" menuName="KLGX-KDP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KLGX RATE ZH" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/klgx"
       field="RATE_ZH" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="Nexrad" menuName="KLGX-RATE-ZH" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KLGX RATE ZZDR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/klgx"
       field="RATE_Z_ZDR" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="Nexrad" menuName="KLGX-RATE-ZZDR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KLGX RATE KDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/klgx"
       field="RATE_KDP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="Nexrad" menuName="KLGX-RATE-KDP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KLGX RATE PID" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/klgx"
       field="RATE_PID" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="Nexrad" menuName="KLGX-RATE-PID" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KLGX RATE HYBR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/klgx"
       field="RATE_HYBRID" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="Nexrad" menuName="KLGX-RATE-HYB" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KATX DBZ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/katx"
       field="DBZ" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors"
       menuGroup="Nexrad" menuName="KATX-DBZ" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KATX VEL30" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/katx"
       field="VEL" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_30.colors"
       menuGroup="Nexrad" menuName="KATX-VEL30" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KATX VEL45" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/katx"
       field="VEL" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_45.colors"
       menuGroup="Nexrad" menuName="KATX-VEL45" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KATX VELNEX" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/katx"
       field="VEL" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_nexrad.colors"
       menuGroup="Nexrad" menuName="KATX-VELNEX" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KATX WIDTH" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/katx"
       field="WIDTH" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/width.colors"
       menuGroup="Nexrad" menuName="KATX-WIDTH" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KATX ZDR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/katx"
       field="ZDR" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors"
       menuGroup="Nexrad" menuName="KATX-ZDR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KATX PHIDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/katx"
       field="PHIDP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/phidp.colors"
       menuGroup="Nexrad" menuName="KATX-PHIDP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KATX RHOHV" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/katx"
       field="RHOHV" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/rhohv.colors"
       menuGroup="Nexrad" menuName="KATX-RHOHV" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KATX PID" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/katx"
       field="PID" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/pid.colors"
       menuGroup="Nexrad" menuName="KATX-PID" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KATX PID TEMP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/katx"
       field="TEMP_FOR_PID" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/temp.colors"
       menuGroup="Nexrad" menuName="KATX-PID-TEMP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KATX KDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/katx"
       field="KDP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/kdp_sband.colors"
       menuGroup="Nexrad" menuName="KATX-KDP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KATX RATE ZH" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/katx"
       field="RATE_ZH" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="Nexrad" menuName="KATX-RATE-ZH" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KATX RATE ZZDR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/katx"
       field="RATE_Z_ZDR" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="Nexrad" menuName="KATX-RATE-ZZDR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KATX RATE KDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/katx"
       field="RATE_KDP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="Nexrad" menuName="KATX-RATE-KDP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KATX RATE PID" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/katx"
       field="RATE_PID" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="Nexrad" menuName="KATX-RATE-PID" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NEXR KATX RATE HYBR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/katx"
       field="RATE_HYBRID" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="Nexrad" menuName="KATX-RATE-HYB" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL DBZ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol/sur"
       field="DBZ" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors" menuName="NPOL-DBZ" menuGroup="NPOL"
       visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL VEL30" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol/sur"
       field="VEL" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_30.colors" menuName="NPOL-VEL30" menuGroup="NPOL"
       visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL VEL45" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol/sur"
       field="VEL" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_45.colors" menuName="NPOL-VEL45" menuGroup="NPOL"
       visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL VELNEX" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol/sur"
       field="VEL" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_nexrad.colors" menuName="NPOL-VELNEX" menuGroup="NPOL"
       visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL ZDR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol/sur"
       field="ZDR" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors" menuName="NPOL-ZDR" menuGroup="NPOL"
       visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL RHOHV" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol/sur"
       field="RHOHV" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/rhohv.colors" menuName="NPOL-RHOHV" menuGroup="NPOL"
       visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 DBZ TOT" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="DBZ_TOT" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors"
       menuName="NPOL-QC2-DBZ-TOT" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 DBZ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="DBZ" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors"
       menuName="NPOL-QC2-DBZ" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 VEL30" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="VEL" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_30.colors"
       menuName="NPOL-QC2-VEL30" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 VEL45" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="VEL" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_45.colors"
       menuName="NPOL-QC2-VEL45" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 VELNEX" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="VEL" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_nexrad.colors"
       menuName="NPOL-QC2-VELNEX" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 WIDTH" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="WIDTH" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/width.colors"
        menuName="NPOL-QC2-WIDTH" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 ZDR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="ZDR" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors"
        menuName="NPOL-QC2-ZDR" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 RHOHV" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="RHOHV" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/rhohv.colors"
        menuName="NPOL-QC2-RHOHV" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 PHIDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="PHIDP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/phidp.colors"
        menuName="NPOL-QC2-PHIDP" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 KDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="KDP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/kdp.colors"
        menuName="NPOL-QC2-KDP" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 RR DROPS" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="RR_DROPS2" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
        menuName="NPOL-QC2-RR-DROPS" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 RR POL ZR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="RR_POL_ZR" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
        menuName="NPOL-QC2-RR-POL-ZR" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 RR CIF" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="RR_CIF" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
        menuName="NPOL-QC2-RR-CIF" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 HID" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="HID" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/hid.colors"
        menuName="NPOL-QC2-HID" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 SQ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="SQ" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/snr.colors"
        menuName="NPOL-QC2-SQ" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 D0" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="D0" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/trip.colors"
        menuName="NPOL-QC2-D0" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 NW" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="NW" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/number25.colors"
        menuName="NPOL-QC2-NW" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 DM" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="DM" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/trip.colors"
        menuName="NPOL-QC2-DM" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 N2" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/npol_qc2/sur"
       field="N2" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/number25.colors"
        menuName="NPOL-QC2-N2" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 PID" location="mdvp:://bob.atmos.washington.edu:5440:olympex/qc/cfradial/partrain/npol/sur"
       field="PID" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/pid.colors"
        menuName="NPOLQC2-PID" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLQC2 PID TEMP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/qc/cfradial/partrain/npol/sur"
       field="TEMP_FOR_PID" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/temp.colors"
        menuName="NPOLQC2-PID-TEMP" menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL PID" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/npol/sur"
       field="PID" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/pid.colors" menuName="NPOL-PID" menuGroup="NPOL"
       visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL PID TEMP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/npol/sur"
       field="TEMP_FOR_PID" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/temp.colors" menuName="NPOL-PID-TEMP"
       menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL DBZ FOR RATE" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/npol/sur"
       field="DBZ_FOR_RATE" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors" menuName="NPOL-DBZ-FOR-RATE"
       menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL ZDR FOR RATE" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/npol/sur"
       field="ZDR_FOR_RATE" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors" menuName="NPOL-ZDR-FOR-RATE"
       menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL KDP FOR RATE" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/npol/sur"
       field="KDP_FOR_RATE" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/kdp_sband.colors" menuName="NPOL-KDP-FOR-RATE"
       menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL KDP2" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/npol/sur"
       field="KDP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/kdp_sband.colors" menuName="NPOL-KDP2" menuGroup="NPOL"
       visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL RATE ZZDR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/npol/sur"
       field="RATE_Z_ZDR" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors" menuName="NPOL-RATE-ZZDR"
       menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL RATE ZH" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/npol/sur"
       field="RATE_ZH" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors" menuName="NPOL-RATE-ZH"
       menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL RATE ZH SNOW" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/npol/sur"
       field="RATE_ZH_SNOW" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors" menuName="NPOL-RATE-ZH-SNOW"
       menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL RATE KDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/npol/sur"
       field="RATE_KDP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors" menuName="NPOL-RATE-KDP"
       menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL RATE KZDR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/npol/sur"
       field="RATE_KDP_ZDR" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors" menuName="NPOL-RATE-KZDR"
       menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL RATE HYBRID" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/npol/sur"
       field="RATE_HYBRID" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors" menuName="NPOL-RATE-HYBRID"
       menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL RATE PID" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/npol/sur"
       field="RATE_PID" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors" menuName="NPOL-RATE-PID"
       menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL RATE HIDRO" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/npol/sur"
       field="RATE_HIDRO" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors" menuName="NPOL-RATE-HIDRO"
       menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOL RATE BRINGI" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/partrain/npol/sur"
       field="RATE_BRINGI" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors" menuName="NPOL-RATE-BRINGI"
       menuGroup="NPOL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="XBAND DBZ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/xband_all/sur"
       field="DBZ" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors"
       menuGroup="XBAND" menuName="XBAND-DBZ" />

<Layer vis="off" type="MDV" name="XBAND UDBZ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/xband_all/sur"
       field="UDBZ" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors"
       menuGroup="XBAND" menuName="XBAND-UDBZ" />

<Layer vis="off" type="MDV" name="XBAND VEL" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/xband_all/sur"
       field="VEL" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_30.colors"
       menuGroup="XBAND" menuName="XBAND-VEL" />

<Layer vis="off" type="MDV" name="XBAND WIDTH" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/xband_all/sur"
       field="WID" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/width.colors"
       menuGroup="XBAND" menuName="XBAND-WIDTH" />

<Layer vis="off" type="MDV" name="XBAND ZDR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/xband_all/sur"
       field="ZDR" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors"
       menuGroup="XBAND" menuName="XBAND-ZDR" />

<Layer vis="off" type="MDV" name="XBAND PHIDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/xband_all/sur"
       field="PHIDP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/phidp.colors"
       menuGroup="XBAND" menuName="XBAND-PHIDP" />

<Layer vis="off" type="MDV" name="XBAND UPHIDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/xband_all/sur"
       field="UPHIDP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/phidp.colors"
       menuGroup="XBAND" menuName="XBAND-UPHIDP" />

<Layer vis="off" type="MDV" name="XBAND RHOHV" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/xband_all/sur"
       field="RHOHV" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/rhohv.colors"
       menuGroup="XBAND" menuName="XBAND-RHOHV" />

<Layer vis="off" type="MDV" name="XBAND SQI" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/xband_all/sur"
       field="SQI" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/ncp.colors"
       menuGroup="XBAND" menuName="XBAND-SQI" />

<Layer vis="off" type="MDV" name="DOWLOQ DBZHC" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="DBZHC" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-DBZHC" visibilityGroups="none" />

<Layer vis="off" type="MDV" name="DOWLOQ DBZHC F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="DBZHC_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-DBZHC-F" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ DBZVC" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="DBZVC" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-DBZVC" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ DBZVC F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="DBZVC_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-DBZVC-F" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ VEL30" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="VEL" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_30.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-VEL30" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ VEL30 F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="VEL_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_30.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-VEL30-F" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ VEL45" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="VEL" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_45.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-VEL45" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ VEL45 F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="VEL_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_45.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-VEL45-F" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ WIDTH" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="WIDTH" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/width.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-WIDTH" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ WIDTH F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="WIDTH_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/width.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-WIDTH-F" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ ZDRM" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="ZDRM" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-ZDRM" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ ZDRM F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="ZDRM_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-ZDRM-F" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ RHOHV" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="RHOHV" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/rhohv.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-RHOHV" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ RHOHV F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="RHOHV_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/rhohv.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-RHOHV-F" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ PHIDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="PHIDP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/phidp.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-PHIDP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ PHIDP F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="PHIDP_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/phidp.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-PHIDP-F" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ KDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="KDP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/kdp.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-KDP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ KDP F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="KDP_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/kdp.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-KDP-F" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ ZDRC" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="ZDRC" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-ZDRC" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWLOQ TRIP FLA" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow_lo_qc/sec"
       field="TRIP_FLA" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/trip_flag2.colors"
       menuGroup="DOW_LOW" menuName="DOW-LO-QC-TRIP-FLA" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="DOWRTC DBZHC F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow/sec"
       field="DBZHC_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors" menuName="DOW-RT-CFR-DBZHC-F" menuGroup="DOW-RT" />

<Layer vis="off" type="MDV" name="DOWRTC VEL30 F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow/sec"
       field="VEL_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_30.colors" menuName="DOW-RT-CFR-VEL30-F" menuGroup="DOW-RT" />

<Layer vis="off" type="MDV" name="DOWRTC VEL45 F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow/sec"
       field="VEL_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_45.colors" menuName="DOW-RT-CFR-VEL45-F" menuGroup="DOW-RT" />

<Layer vis="off" type="MDV" name="DOWRTC VELNEX F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow/sec"
       field="VEL_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_nexrad.colors" menuName="DOW-RT-CFR-VELNEX-F" menuGroup="DOW-RT" />

<Layer vis="off" type="MDV" name="DOWRTC WIDTH F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow/sec"
       field="WIDTH_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/width.colors" menuName="DOW-RT-CFR-WIDTH-F" menuGroup="DOW-RT" />

<Layer vis="off" type="MDV" name="DOWRTC ZDR F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow/sec"
       field="ZDR_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors" menuName="DOW-RT-CFR-ZDR-F" menuGroup="DOW-RT" />

<Layer vis="off" type="MDV" name="DOWRTC RHOHV F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/dow/sec"
       field="RHOHV_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/rhohv.colors" menuName="DOW-RT-CFR-RHOHV-F" menuGroup="DOW-RT" />

<Layer vis="off" type="MDV" name="DOWRTM DBZHC F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/radial/moments/dow/sec"
       field="DBZHC_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors" menuName="DOW-RT-MDV-DBZHC-F" menuGroup="DOW-RT" />

<Layer vis="off" type="MDV" name="DOWRTM VEL30 F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/radial/moments/dow/sec"
       field="VEL_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_30.colors" menuName="DOW-RT-MDV-VEL30-F" menuGroup="DOW-RT" />

<Layer vis="off" type="MDV" name="DOWRTM VEL45 F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/radial/moments/dow/sec"
       field="VEL_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_45.colors" menuName="DOW-RT-MDV-VEL45-F" menuGroup="DOW-RT" />

<Layer vis="off" type="MDV" name="DOWRTM VELNEX F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/radial/moments/dow/sec"
       field="VEL_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_nexrad.colors" menuName="DOW-RT-MDV-VELNEX-F" menuGroup="DOW-RT" />

<Layer vis="off" type="MDV" name="DOWRTM WIDTH F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/radial/moments/dow/sec"
       field="WIDTH_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/width.colors" menuName="DOW-RT-MDV-WIDTH-F" menuGroup="DOW-RT" />

<Layer vis="off" type="MDV" name="DOWRTM ZDR F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/radial/moments/dow/sec"
       field="ZDR_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors" menuName="DOW-RT-MDV-ZDR-F" menuGroup="DOW-RT" />

<Layer vis="off" type="MDV" name="DOWRTM RHOHV F" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/radial/moments/dow/sec"
       field="RHOHV_F" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/rhohv.colors" menuName="DOW-RT-MDV-RHOHV-F" menuGroup="DOW-RT" />

<Layer vis="off" type="MDV" name="SAT VIS" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/sat/vis"
       field="vis" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/sat_counts.colors"
       menuGroup="SAT" menuName="SAT-VIS" />

<Layer vis="off" type="MDV" name="SAT IR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/sat/ir"
       field="Tb" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/sat_tempK_oly.colors"
       menuGroup="SAT" menuName="SAT-IR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="SAT WV" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/sat/wv"
       field="Tb" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/wv_uw.colors"
       menuGroup="SAT" menuName="SAT-WV" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="SAT GPM" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/sat/gpm"
       field="refl" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz_carbone17.colors"
       menuGroup="SAT" menuName="SAT-GPM" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="SAT GPMKA" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/sat/gpm_ka_hs"
       field="refl" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz_carbone17.colors"
       menuGroup="SAT" menuName="SAT-GPMKA" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="WRF TEMP C" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/wrf"
       field="Temp" render="linecontours" contourColor="white" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/temp.colors"
       menuGroup="WRF" menuName="WRF-TEMP-C" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="WRF THETA E" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/wrf"
       field="THETA" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/tempK.colors"
       menuGroup="WRF" menuName="WRF-THETA-E" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="WRF RH" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/wrf"
       field="RH" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/rh.colors"
       menuGroup="WRF" menuName="WRF-RH" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="WRF Q" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/wrf"
       field="Q" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/mix_frac.colors"
       menuGroup="WRF" menuName="WRF-Q" visibilityGroups="none"/>

<Layer vis="on" type="MDV" name="WRF WSPEED" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/wrf"
       field="Wspeed" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/wspd.colors"
       menuGroup="WRF" menuName="WRF-WSPEED" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="WRF W" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/wrf"
       field="W" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vert_wspd.colors"
       menuGroup="WRF" menuName="WRF-W" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="D3RQC KA DBZ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/d3r_ka_qc/sur"
       field="DBZ" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors"
       menuGroup="D3R" menuName="D3R-QC-KA-DBZ" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="D3RQC KA VEL" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/d3r_ka_qc/sur"
       field="VEL" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_k.colors"
       menuGroup="D3R" menuName="D3R-QC-KA-VEL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="D3RQC KA WIDTH" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/d3r_ka_qc/sur"
       field="WIDTH" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/width_k.colors"
       menuGroup="D3R" menuName="D3R-QC-KA-WIDTH" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="D3RQC KA ZDR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/d3r_ka_qc/sur"
       field="ZDR" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors"
       menuGroup="D3R" menuName="D3R-QC-KA-ZDR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="D3RQC KA RHOHV" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/d3r_ka_qc/sur"
       field="RHOHV" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/rhohv.colors"
       menuGroup="D3R" menuName="D3R-QC-KA-RHOHV" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="D3RQC KA PHIDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/d3r_ka_qc/sur"
       field="PHIDP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/phidp.colors"
       menuGroup="D3R" menuName="D3R-QC-KA-PHIDP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="D3RQC KA NCP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/d3r_ka_qc/sur"
       field="NCP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/ncp.colors"
       menuGroup="D3R" menuName="D3R-QC-KA-NCP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="D3RQC KA SNR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/d3r_ka_qc/sur"
       field="SNR" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/snr.colors"
       menuGroup="D3R" menuName="D3R-QC-KA-SNR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="D3RQC KU DBZ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/d3r_ku_qc/sur"
       field="DBZ" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors"
       menuGroup="D3R" menuName="D3R-QC-KU-DBZ" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="D3RQC KU VEL" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/d3r_ku_qc/sur"
       field="VEL" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_k.colors"
       menuGroup="D3R" menuName="D3R-QC-KU-VEL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="D3RQC KU WIDTH" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/d3r_ku_qc/sur"
       field="WIDTH" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/width_k.colors"
       menuGroup="D3R" menuName="D3R-QC-KU-WIDTH" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="D3RQC KU ZDR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/d3r_ku_qc/sur"
       field="ZDR" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors"
       menuGroup="D3R" menuName="D3R-QC-KU-ZDR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="D3RQC KU RHOHV" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/d3r_ku_qc/sur"
       field="RHOHV" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/rhohv.colors"
       menuGroup="D3R" menuName="D3R-QC-KU-RHOHV" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="D3RQC KU PHIDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/d3r_ku_qc/sur"
       field="PHIDP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/phidp.colors"
       menuGroup="D3R" menuName="D3R-QC-KU-PHIDP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="D3RQC KU NCP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/d3r_ku_qc/sur"
       field="NCP" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/ncp.colors"
       menuGroup="D3R" menuName="D3R-QC-KU-NCP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="D3RQC KU SNR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfradial/moments/d3r_ku_qc/sur"
       field="SNR" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/snr.colors"
       menuGroup="D3R" menuName="D3R-QC-KU-SNR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI DBZ TOT" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="DBZ_TOT" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz_carbone17.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-DBZ-TOT" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI DBZ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="DBZ" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz_carbone17.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-DBZ" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI VEL30" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="VEL" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_30.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-VEL30" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI VEL45" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="VEL" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_45.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-VEL45" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI VELNEX" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="VEL" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_nexrad.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-VELNEX" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI WIDTH" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="WIDTH" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/width.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-WIDTH" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI ZDR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="ZDR" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-ZDR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI RHOHV" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="RHOHV" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/rhohv.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-RHOHV" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI PHIDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="PHIDP" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/phidp.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-PHIDP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI KDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="KDP" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/kdp.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-KDP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI RR DROPS" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="RR_DROPS2" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-RR-DROPS" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI RR POL ZR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="RR_POL_ZR" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-RR-POL-ZR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI RR CIF" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="RR_CIF" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-RR-CIF" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI HID" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="HID" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/hid.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-HID" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI SQ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="SQ" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/snr.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-SQ" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI D0" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="D0" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/trip.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-D0" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI NW" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="NW" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/number25.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-NW" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI DM" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="DM" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/trip.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-DM" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI N2" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi"
       field="N2" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/number25.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-N2" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI ZZ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="ZZ" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz_carbone17.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-ZZ" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI CZ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="CZ" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz_carbone17.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-CZ" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI VR30" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="VR" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_30.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-VR30" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI VR45" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="VR" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_45.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-VR45" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI VRNEX" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="VR" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_nexrad.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-VRNEX" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI SW" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="SW" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/width.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-SW" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI DR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="DR" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-DR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI RH" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="RH" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/rhohv.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-RH" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI PH" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="PH" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/phidp.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-PH" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI KD" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="KD" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/kdp.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-KD" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI RR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="RR" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-RR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI RP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="RP" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-RP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI RC" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="RC" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-RC" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI SQ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="SQ" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/snr.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-SQ" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI D0" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="D0" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/trip.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-D0" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI NW" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="NW" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/number25.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-NW" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI DM" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="DM" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/trip.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-DM" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLRHI N2" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/rhi_fromUF"
       field="N2" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/number25.colors"
       menuGroup="NPOL_CART_RHI" menuName="CART-NPOL-RHI-N2" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR DBZ TOT" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="DBZ_TOT" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz_carbone17.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-DBZ-TOT" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR DBZ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="DBZ" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz_carbone17.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-DBZ" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR VEL30" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="VEL" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_30.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-VEL30" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR VEL45" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="VEL" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_45.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-VEL45" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR VELNEX" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="VEL" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_nexrad.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-VELNEX" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR WIDTH" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="WIDTH" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/width.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-WIDTH" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR ZDR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="ZDR" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-ZDR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR RHOHV" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="RHOHV" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/rhohv.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-RHOHV" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR PHIDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="PHIDP" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/phidp.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-PHIDP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR KDP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="KDP" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/kdp.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-KDP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR RR DROPS" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="RR_DROPS2" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-RR-DROPS" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR RR POL ZR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="RR_POL_ZR" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-RR-POL-ZR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR RR CIF" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="RR_CIF" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-RR-CIF" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR HID" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="HID" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/hid.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-HID" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR SQ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="SQ" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/snr.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-SQ" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR D0" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="D0" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/trip.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-D0" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR NW" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="NW" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/number25.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-NW" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR DM" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="DM" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/trip.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-DM" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR N2" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur"
       field="N2" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/number25.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-N2" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR ZZ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="ZZ" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz_carbone17.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-ZZ" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR CZ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="CZ" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz_carbone17.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-CZ" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR VR30" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="VR" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_30.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-VR30" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR VR45" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="VR" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_45.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-VR45" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR VRNEX" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="VR" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/vel_nexrad.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-VRNEX" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR SW" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="SW" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/width.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-SW" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR DR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="DR" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-DR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR RH" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="RH" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/rhohv.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-RH" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR PH" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="PH" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/phidp.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-PH" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR KD" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="KD" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/kdp.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-KD" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR RR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="RR" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-RR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR RP" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="RP" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-RP" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR RC" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="RC" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/precip_rate.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-RC" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR SQ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="SQ" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/snr.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-SQ" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR D0" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="D0" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/trip.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-D0" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR NW" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="NW" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/number25.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-NW" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR DM" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="DM" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/trip.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-DM" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="CARTNPOLSUR N2" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol/sur_fromUF"
       field="N2" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/number25.colors"
       menuGroup="NPOL_CART_SUR" menuName="CART-NPOL-SUR-N2" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLCOMP DBZ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol_compare"
       field="DBZ" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors"
       menuGroup="compare" menuName="NPOLCOMP-DBZ" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLCOMP ZDR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/npol_compare"
       field="ZDR" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors"
       menuGroup="compare" menuName="NPOLCOMP-ZDR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLCOMP KLGX DBZ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/klgx_compare"
       field="DBZ" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors"
       menuGroup="compare" menuName="NPOLCOMP-KLGX-DBZ" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLCOMP KLGX ZDR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/klgx_compare"
       field="ZDR" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors"
       menuGroup="compare" menuName="NPOLCOMP-KLGX-ZDR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLCOMP DOW DBZ" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/dow6_compare"
       field="DBZ" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz.colors"
       menuGroup="compare" menuName="NPOLCOMP-DOW-DBZ" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="NPOLCOMP DOW ZDR" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/cart/dow6_compare"
       field="ZDR" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/zdr.colors"
       menuGroup="compare" menuName="NPOLCOMP-DOW-ZDR" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="GPM REFL" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfcart/moments/gpm"
       field="refl" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/dbz_carbone17.colors"
       menuGroup="GPM" menuName="GPM-REFL" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="GPM Near Surf Rain" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfcart/moments/gpm"
       field="near_surf_rain" render="fillcontours" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/rain_accum.colors"
       menuGroup="GPM" menuName="GPM-NS-RAIN" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="GPM Rain Type" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfcart/moments/gpm"
       field="rain_type" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/convsf_gpm.colors"
       menuGroup="GPM" menuName="GPM-RAIN-TYPE" visibilityGroups="none"/>

<Layer vis="off" type="MDV" name="GPM Phase Type" location="mdvp:://bob.atmos.washington.edu:5440:olympex/cfcart/moments/gpm"
       field="phase_type" render="grid" colorscale="http://www.atmos.washington.edu/~brodzik/olympex/jazz/color_scales/phase_gpm.colors"
       menuGroup="GPM" menuName="GPM-PHASE-TYPE" visibilityGroups="none"/>

<!-- MDVWIND Layers -->

<Layer vis="on" type="MDVWIND" name="WRF" menuName="WRF" location="mdvp:://bob.atmos.washington.edu:5440:olympex/mdv/wrf"
       isUandV="true" field="U" extraField="V" render="grid" renderBarbs="true" color="yellow" colorscale="windColors" />

<!-- SYMPROD Layers -->

<Layer vis="off" type="SYMPROD" name="RHI-NPOL" location="spdbp:Rhi2Symprod:ticks//bob.atmos.washington.edu:5473:olympex/spdb/rhi/npol"
       before="20mins" after="10mins" textOff="0.4" request="interval" menuName="RHI-NPOL" />

<Layer vis="off" type="SYMPROD" name="RHI-DOW" location="spdbp:Rhi2Symprod:ticks//bob.atmos.washington.edu:5473:olympex/spdb/rhi/dow"
       before="20mins" after="10mins" textOff="0.4" request="interval" menuName="RHI-DOW" />

<Layer vis="off" type="SYMPROD" name="RHI-XBAND" location="spdbp:Rhi2Symprod:ticks//bob.atmos.washington.edu:5473:olympex/spdb/rhi/xband_all"
       before="20mins" after="10mins" textOff="0.4" request="interval" menuName="RHI-XBAND" />

<Layer vis="off" type="SYMPROD" name="RHI-D3R-QC" location="spdbp:Rhi2Symprod:ticks//bob.atmos.washington.edu:5473:olympex/spdb/rhi/d3r_qc"
       before="20mins" after="10mins" textOff="0.4" request="interval" menuName="RHI-D3R-QC" />

<Layer vis="off" type="SYMPROD" name="DC8 15_min" location="spdbp:AcTrack2Symprod:N817NA.15_min//bob.atmos.washington.edu:5451:olympex/spdb/ac_posn"
       before="15mins" after="15mins" textOff="0.4" request="firstBefore" menuName="DC8 15_min" />

<Layer vis="off" type="SYMPROD" name="DC8 30_min" location="spdbp:AcTrack2Symprod:N817NA.30_min//bob.atmos.washington.edu:5451:olympex/spdb/ac_posn"
       before="15mins" after="15mins" textOff="0.4" request="firstBefore" menuName="DC8 30_min" />

<Layer vis="off" type="SYMPROD" name="DC8 5_hr" location="spdbp:AcTrack2Symprod:N817NA.5_hr//bob.atmos.washington.edu:5451:olympex/spdb/ac_posn"
       before="15mins" after="15mins" textOff="0.4" request="firstBefore" menuName="DC8 5_hr" />

<Layer vis="off" type="SYMPROD" name="DC8 10_hr" location="spdbp:AcTrack2Symprod:N817NA.10_hr//bob.atmos.washington.edu:5451:olympex/spdb/ac_posn"
       before="15mins" after="15mins" textOff="0.4" request="firstBefore" menuName="DC8 10_hr" />

<Layer vis="off" type="SYMPROD" name="CITATION 15_min" location="spdbp:AcTrack2Symprod:N555DS.15_min//bob.atmos.washington.edu:5451:olympex/spdb/ac_posn"
       before="15mins" after="15mins" textOff="0.4" request="firstBefore" menuName="CITATION 15_min" />

<Layer vis="off" type="SYMPROD" name="CITATION 30_min" location="spdbp:AcTrack2Symprod:N555DS.30_min//bob.atmos.washington.edu:5451:olympex/spdb/ac_posn"
       before="15mins" after="15mins" textOff="0.4" request="firstBefore" menuName="CITATION 30_min" />

<Layer vis="off" type="SYMPROD" name="CITATION 5_hr" location="spdbp:AcTrack2Symprod:N555DS.5_hr//bob.atmos.washington.edu:5451:olympex/spdb/ac_posn"
       before="15mins" after="15mins" textOff="0.4" request="firstBefore" menuName="CITATION 5_hr" />

<Layer vis="off" type="SYMPROD" name="CITATION 10_hr" location="spdbp:AcTrack2Symprod:N555DS.10_hr//bob.atmos.washington.edu:5451:olympex/spdb/ac_posn"
       before="15mins" after="15mins" textOff="0.4" request="firstBefore" menuName="CITATION 10_hr" />

<Layer vis="off" type="SYMPROD" name="ER2 15_min" location="spdbp:AcTrack2Symprod:N809NA.15_min//bob.atmos.washington.edu:5451:olympex/spdb/ac_posn"
       before="15mins" after="15mins" textOff="0.4" request="firstBefore" menuName="ER2 15_min" />

<Layer vis="off" type="SYMPROD" name="ER2 30_min" location="spdbp:AcTrack2Symprod:N809NA.30_min//bob.atmos.washington.edu:5451:olympex/spdb/ac_posn"
       before="15mins" after="15mins" textOff="0.4" request="firstBefore" menuName="ER2 30_min" />

<Layer vis="off" type="SYMPROD" name="ER2 5_hr" location="spdbp:AcTrack2Symprod:N809NA.5_hr//bob.atmos.washington.edu:5451:olympex/spdb/ac_posn"
       before="15mins" after="15mins" textOff="0.4" request="firstBefore" menuName="ER2 5_hr" />

<Layer vis="off" type="SYMPROD" name="ER2 10_hr" location="spdbp:AcTrack2Symprod:N809NA.10_hr//bob.atmos.washington.edu:5451:olympex/spdb/ac_posn"
       before="15mins" after="15mins" textOff="0.4" request="firstBefore" menuName="ER2 10_hr" />

<!-- CIDDMAP Layers -->

<Layer vis="on" type="CIDDMAP" name="World" location="http://www.atmos.washington.edu/~brodzik/olympex/jazz/maps/world_states.map"
       color="white" width="1" />

<Layer vis="off" type="CIDDMAP" name="rain gauges" location="http://www.atmos.washington.edu/~brodzik/olympex/jazz/maps/oly_gauges.map"
       color="white" width="2" />

<Layer vis="off" type="CIDDMAP" name="grnd sites" location="http://www.atmos.washington.edu/~brodzik/olympex/jazz/maps/oly_sites.map"
       color="white" width="0" />

<Layer vis="off" type="CIDDMAP" name="grnd radars" location="http://www.atmos.washington.edu/~brodzik/olympex/jazz/maps/oly_radars.map"
       color="white" width="0" />

<Layer vis="off" type="CIDDMAP" name="grnd radars" location="http://www.atmos.washington.edu/~brodzik/olympex/jazz/maps/oly_radars.map"
       color="white" width="0" />

<Layer vis="off" type="CIDDMAP" name="counties" location="http://www.atmos.washington.edu/~brodzik/olympex/jazz/maps/us_counties.map"
       color="blue" width="0" />

<!-- RANGE_RING Layers -->

<Layer vis="on" type="RANGE_RINGS" name="Dynamic Range Rings"
       followData="true" radarLat="47.2772" radarLon="-124.211"
       color="gray80" width="1"
       numRings="5" radiusIncr="30"
       displayAzLines="true" />

<Layer vis="off" type="RANGE_RINGS" name="DOW Range Rings"
       followData="false" radarLat="47.4885" radarLon="-123.869"
       color="gray80" width="1"
       numRings="5" radiusIncr="15"
       displayAzLines="true" />

<Layer vis="off" type="RANGE_RINGS" name="NPOL Range Rings"
       followData="false" radarLat="47.2772" radarLon="-124.211"
       color="gray80" width="1"
       numRings="5" radiusIncr="30"
       displayAzLines="true" />

<Layer vis="off" type="RANGE_RINGS" name="KLGX Range Rings"
       followData="false" radarLat="47.1169" radarLon="-124.107"
       color="gray80" width="1"
       numRings="8" radiusIncr="30"
       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="NPOL" label="NPOL_QC2" parentGroup="GRIDS_MENU" />
  <MenuGroup name="DOW_LOW" label="DOW_LO_QC" parentGroup="GRIDS_MENU" />
  <MenuGroup name="DOW-RT" label="DOW-RT" parentGroup="GRIDS_MENU" />
  <MenuGroup name="Nexrad" label="NEXRAD" parentGroup="GRIDS_MENU" />
  <MenuGroup name="XBAND" label="XBAND" parentGroup="GRIDS_MENU" />
  <MenuGroup name="WRF" label="WRF" parentGroup="GRIDS_MENU" />
  <MenuGroup name="SAT" label="SAT" parentGroup="GRIDS_MENU" />
  <MenuGroup name="D3R" label="D3R_QC" parentGroup="GRIDS_MENU" />
  <MenuGroup name="NPOL_CART_RHI" label="CART_NPOL_RHI" parentGroup="GRIDS_MENU" />
  <MenuGroup name="NPOL_CART_SUR" label="CART_NPOL_SUR" parentGroup="GRIDS_MENU" />
  <MenuGroup name="compare" label="Compare" parentGroup="GRIDS_MENU" />
  <MenuGroup name="GPM" label="GPM" parentGroup="GRIDS_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="archive" start="2015-12-05T15:00" end="2015-12-05T19:00" interval="10mins"/>

<!--
####################################################################################################################################

 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.

####################################################################################################################################
-->

<!--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" />

<!--
####################################################################################################################################

 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="Stereographic" tangentLon="-135.0" tangentLat="90.0"/-->
<!--View projection="LatLon" /-->
<!-- View projection="Flat" originLon="-124.209056" originLat="47.275528" rotation="0.0" /-->
<View projection="LambertConformal" originLon="-125.0" originLat="47.25" stdLat1="47.25" />

<!--
####################################################################################################################################

 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="XBAND" minLon="-125.164" maxLon="-121.776" minLat="47.26" maxLat="49.51"/>
<Area name="DOW" minLon="-123.936" maxLon="-122.864" minLat="47.45" maxLat="48.17"/>
<Area name="D3R" minLon="-124.894" maxLon="-123.519" minLat="46.8127" maxLat="47.7458"/>
<Area name="NPOL_150km" minLon="-126.19" maxLon="-122.24" minLat="45.94" maxLat="48.62" defaultView="true"/>
<Area name="NPOL_250km" minLon="-127.5" maxLon="-120.91" minLat="45.0314" maxLat="49.5086"/>
<Area name="KLGX_200km" minLon="-126.75" maxLon="-121.46" minLat="45.3098" maxLat="48.9102"/>
<Area name="WRF" minLon="-128.0" maxLon="-120.0" minLat="44.0" maxLat="50.0"/>

<!--
####################################################################################################################################

 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="900" height="1050" 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.

####################################################################################################################################
-->

<!--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="windColorsTaiwan">
  <Range min="0"   max="15"  color="75,75,75" />
  <Range min="15"  max="30"  color="102,102,102" />
  <Range min="30"  max="45"  color="128,128,128" />
  <Range min="45"  max="60"  color="153,153,153" />
  <Range min="60"  max="70"  color="dark slate blue" />
  <Range min="70"  max="80"  color="RoyalBlue" />
  <Range min="80"  max="90"  color="SteelBlue1" />
  <Range min="90"  max="100" color="purple" />
  <Range min="100" max="110" color="sea green" />
  <Range min="110" max="120" color="lime green" />
  <Range min="120" max="150" color="orange" />
  <Range min="150" max="200" color="chocolate" />
</ColorScale>

<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="saudi_dbz_colorscale">
  <Range min="-10.0" max="-5.0" color="53,53,53"/>
  <Range min="-5.0" max="0.0" color="117,117,117"/>
  <Range min="0.0" max="5.0" color="0,90,0"/>
  <Range min="5.0" max="10.0" color="0,126,0"/>
  <Range min="10.0" max="15.0" color="28,71,232"/>
  <Range min="15.0" max="20.0" color="8,127,219"/>
  <Range min="20.0" max="25.0" color="110,13,198"/>
  <Range min="25.0" max="30.0" color="200,15,134"/>
  <Range min="30.0" max="35.0" color="192,100,135"/>
  <Range min="35.0" max="40.0" color="210,136,59"/>
  <Range min="40.0" max="45.0" color="250,196,49"/>
  <Range min="45.0" max="50.0" color="254,250,3"/>
  <Range min="50.0" max="54.0" color="254,154,88"/>
  <Range min="54.0" max="58.0" color="254,95,5"/>
  <Range min="58.0" max="62.0" color="253,52,28"/>
  <Range min="62.0" max="66.0" color="190,190,190"/>
  <Range min="66.0" max="70.0" color="211,211,211"/>
</ColorScale>

<ColorScale id="torp_colorscale">
  <Range min="-35" max="-30" color="102,255,255"/>
  <Range min="-30" max="-25" color="51,153,255"/>
  <Range min="-25" max="-20" color="0,0,255"/>
  <Range min="-20.0" max="-15.0" color="0,255,0"/>
  <Range min="-15.0" max="-10.0" color="0,204,0"/>
  <Range min="-10.0" max="-5.0" color="0,153,0"/>
  <Range min="-5.0" max="0.0" color="255,255,0"/>
  <Range min="0.0" max="5.0" color="255,204,0"/>
  <Range min="5.0" max="10.0" color="255,102,0"/>
  <Range min="10.0" max="15.0" color="255,0,0"/>
  <Range min="15.0" max="20.0" color="204,51,0"/>
  <Range min="20.0" max="25.0" color="153,0,0"/>
  <Range min="25.0" max="30.0" color="255,0,255"/>
  <Range min="30.0" max="35.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>

<!--ColorScale
      id = "radar_colorscale"
      className = "edu.ucar.rap.jade.view.legend.ColorScale"
      axisLabel = "dBZ"
      unitLabel = "dBZ">
      <ColorRange minValue = "-15.0" maxValue = "-10.0">
        <Color  red = "0" green = "100" blue = "0" />
      </ColorRange>
      <ColorRange minValue = "-10.0" maxValue = "-6.0">
        <Color  red = "85" green = "107" blue = "47" />
      </ColorRange>
      <ColorRange minValue = "-6.0" maxValue = "-3.0">
        <Color  red = "34" green = "139" blue = "34" />
      </ColorRange>
      <ColorRange minValue = "-3.0" maxValue = "0.0">
        <Color  red = "0" green = "205" blue = "102" />
      </ColorRange>
      <ColorRange minValue = "0.0" maxValue = "3.0">
        <Color  red = "60" green = "179" blue = "113" />
      </ColorRange>
      <ColorRange minValue = "3.0" maxValue = "6.0">
        <Color  red = "102" green = "205" blue = "170" />
      </ColorRange>
      <ColorRange minValue = "6.0" maxValue = "9.0">
        <Color  red = "123" green = "104" blue = "238" />
      </ColorRange>
      <ColorRange minValue = "9.0" maxValue = "12.0">
        <Color  red = "0" green = "0" blue = "255" />
      </ColorRange>
      <ColorRange minValue = "12.0" maxValue = "15.0">
        <Color  red = "0" green = "0" blue = "139" />
      </ColorRange>
      <ColorRange minValue = "15.0" maxValue = "18.0">
        <Color  red = "104" green = "34" blue = "139" />
      </ColorRange>
      <ColorRange minValue = "18.0" maxValue = "21.0">
        <Color  red = "139" green = "58" blue = "98" />
      </ColorRange>
      <ColorRange minValue = "21.0" maxValue = "24.0">
        <Color  red = "176" green = "48" blue = "96" />
      </ColorRange>
      <ColorRange minValue = "24.0" maxValue = "27.0">
        <Color  red = "139" green = "34" blue = "82" />
      </ColorRange>
      <ColorRange minValue = "27.0" maxValue = "31.0">
        <Color  red = "160" green = "82" blue = "45" />
      </ColorRange>
      <ColorRange minValue = "31.0" maxValue = "35.0">
        <Color  red = "210" green = "105" blue = "30" />
      </ColorRange>
      <ColorRange minValue = "35.0" maxValue = "40.0">
        <Color  red = "218" green = "165" blue = "32" />
      </ColorRange>
      <ColorRange minValue = "40.0" maxValue = "45.0">
        <Color  red = "255" green = "255" blue = "0" />
      </ColorRange>
      <ColorRange minValue = "45.0" maxValue = "50.0">
        <Color  red = "233" green = "150" blue = "122" />
      </ColorRange>
      <ColorRange minValue = "50.0" maxValue = "55.0">
        <Color  red = "250" green = "128" blue = "114" />
      </ColorRange>
      <ColorRange minValue = "55.0" maxValue = "60.0">
        <Color  red = "238" green = "44" blue = "44" />
      </ColorRange>
      <ColorRange minValue = "60.0" maxValue = "65.0">
        <Color  red = "255" green = "20" blue = "147" />
      </ColorRange>
      <ColorRange minValue = "65.0" maxValue = "70.0">
        <Color  red = "211" green = "211" blue = "211" />
      </ColorRange>
      <ColorRange minValue = "70.0" maxValue = "80.0">
        <Color  red = "250" green = "250" blue = "250" />
      </ColorRange>
</ColorScale-->

<!--
####################################################################################################################################

 Other configuration parameters:

####################################################################################################################################
-->

</Jazz>
