Merge tag 'OB_14.4.1-20m' into omaha_14.4.1

14.4.1-20m


Former-commit-id: f099adad75 [formerly dc7c935e809764604aa7f773b7123630dd818dd5]
Former-commit-id: 68f4b3c18f
This commit is contained in:
Steve Harris 2015-03-26 08:26:55 -05:00
commit d320c52c35
10 changed files with 146 additions and 129 deletions

View file

@ -55,6 +55,7 @@ Definition = {
## General Set-Up
"fullStationID": "KXXX",
"type": "table",
"displayName": "${itemName}", # for Product Generation Menu
# if displayName == None or "None", this product will NOT

View file

@ -53,6 +53,7 @@ import com.raytheon.viz.ui.dialogs.CaveJFACEDialog;
* ------------ ---------- ----------- --------------------------
* Sept 25, 2008 1562 askripsky Initial creation.
* Nov 12, 2012 1298 rferrel Changes for non-blocking dialog.
* Mar 17, 2015 17217 ryu Set smart product as the default type.
* </pre>
*
* @author askripsky
@ -267,13 +268,13 @@ public class NewTextProductDialog extends CaveJFACEDialog {
buttonComp.setLayout(new GridLayout());
buttonComp.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, true));
tableTypeButton = new Button(buttonComp, SWT.RADIO);
tableTypeButton.setText("Table");
smartTypeButton = new Button(buttonComp, SWT.RADIO);
smartTypeButton.setText("Smart");
tableTypeButton = new Button(buttonComp, SWT.RADIO);
tableTypeButton.setText("Table");
// Default to table type
tableTypeButton.setSelection(true);
// Default to smart type
smartTypeButton.setSelection(true);
}
private void initNameSelection() {

View file

@ -49,4 +49,5 @@
<substitute key="source" value="ENTLN"/>
</contribute>
</contribute>
<contribute xsi:type="separator" id="LMATotalLightning" visible="false" />
</menuTemplate>

View file

@ -65,7 +65,7 @@ import com.raytheon.viz.ui.dialogs.CaveSWTDialog;
* Feb 2, 2014 16201 snaples Added saved data flag support
* Apr 28, 2014 16707 snaples Added code to save and set location of dialog box when moved.
* Jan 12, 2015 16993 snaples Restored code for Substitute Field Combo box.
*
* Feb 26, 2015 17209 cgobs Ensured that there is an initial selection of Substitution field, prevents empty selection.
*
* </pre>
*
@ -387,16 +387,22 @@ public class DrawPolygonDlg extends CaveSWTDialog {
// spaceLabel.setText("***** ");
int selectedFieldIndex = 0;
boolean found = false;
//find the index of the selected field
for (selectedFieldIndex = 0; selectedFieldIndex < displayFieldDataArray.length; selectedFieldIndex++)
{
if (displayFieldDataArray[selectedFieldIndex] == subType)
{
found = true;
break;
}
}
if (!found)
{
selectedFieldIndex = 0;
}
//create and initialize the display field type name array
displayTypeNameArray = new String[displayFieldDataArray.length];
@ -411,27 +417,42 @@ public class DrawPolygonDlg extends CaveSWTDialog {
fieldTypeCombo.setTextLimit(35);
fieldTypeCombo.setLayoutData(gd);
fieldTypeCombo.setItems(displayTypeNameArray);
fieldTypeCombo.select(selectedFieldIndex);
// fieldTypeCombo.select(selectedFieldIndex);
fieldTypeCombo.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent event) {
String selectedFieldString = fieldTypeCombo.getText();
setSubstitutionField();
// String selectedFieldString = fieldTypeCombo.getText();
// System.out.println("DrawPolygon.createFieldCombo(): selectedFieldString = " +
// selectedFieldString);
subType = DisplayFieldData.fromDisplayNameString(selectedFieldString);
// subType = DisplayFieldData.fromDisplayNameString(selectedFieldString);
// if (subType != null)
// {
// System.out.println("DrawPolygon.createFieldCombo(): subType = " +
// subType.toString());
// }
// {
// System.out.println("DrawPolygon.createFieldCombo(): subType = " +
// subType.toString());
// }
}
});
//select the substitution field
fieldTypeCombo.select(selectedFieldIndex);
setSubstitutionField();
}
private void setSubstitutionField()
{
String selectedFieldString = fieldTypeCombo.getText();
subType = DisplayFieldData.fromDisplayNameString(selectedFieldString);
}
/**

View file

@ -160,7 +160,7 @@ public class BestEstimate1HrQpeDlg extends BasePostAnalysisDlg {
applyGridAdjustments(adjustedGrid, biasRatioGrid, disaggGrid);
float[] dataArray = paMgr.convertToSingleArray(adjustedGrid, false, true);
short[] shortArray= paMgr.convertToShortArray(dataArray, 100.0f);
short[] shortArray= paMgr.convertToShortArray(dataArray, 1.0f);
XmrgFile file = new XmrgFile();

View file

@ -43,7 +43,7 @@ import com.vividsolutions.jts.geom.Coordinate;
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* December 2013 DCS 167 C. Gobs Initial version
*
* February 2015 C. Gobs Fixed issue with parsing unexpected file name formats in xmrg directory
* </pre>
*
*
@ -156,6 +156,7 @@ public class PostAnalysisManager
try
{
shiftedDate = utcSdf2.parse(timeString);
longTime = shiftedDate.getTime();
}
catch(ParseException e)
{
@ -164,7 +165,7 @@ public class PostAnalysisManager
}
longTime = shiftedDate.getTime();
return longTime;
}

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<menuContributionFile>
<include installTo="menu:obs?after=LIGHTNINGPLACEHOLDER"
<include installTo="menu:IncludeSubMenuContributionId_Lightning?after=LmaTotalLightning"
fileName="menus/lma/lma.xml"/>
</menuContributionFile>

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<menuTemplate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<contribute xsi:type="subMenu" menuText="Total Lightning">
<contribute xsi:type="titleItem" id="LMATitle" titleText="------ LMA Total Lightning ------"/>
<contribute xsi:type="subMenu" menuText="Standard Products">
<contribute xsi:type="subMenu" menuText="NALMA">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Source Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Source Density" id="lma">
<dataURI>/grid/NALMA/%/%/lmasd</dataURI>
<substitute key="network" value="NALMA"/>
<substitute key="level" value="0"/>
@ -11,7 +11,7 @@
<substitute key="productType" value="lmasd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Maximum Source Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Source Density" id="lma">
<dataURI>/grid/NALMA/%/%/lmamsd</dataURI>
<substitute key="network" value="NALMA"/>
<substitute key="level" value="0"/>
@ -19,7 +19,7 @@
<substitute key="productType" value="lmamsd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/NALMA/%/%/lmafed</dataURI>
<substitute key="network" value="NALMA"/>
<substitute key="level" value="0"/>
@ -27,7 +27,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/NALMA/%/%/lmafid</dataURI>
<substitute key="network" value="NALMA"/>
<substitute key="level" value="0"/>
@ -35,7 +35,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/NALMA/%/%/lmamfd</dataURI>
<substitute key="network" value="NALMA"/>
<substitute key="level" value="0"/>
@ -43,7 +43,7 @@
<substitute key="productType" value="lmamfd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Rate of Change" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Rate of Change" id="lma">
<dataURI>/grid/NALMA/%/%/lmaroc</dataURI>
<substitute key="network" value="NALMA"/>
<substitute key="level" value="0"/>
@ -53,7 +53,7 @@
</contribute>
</contribute>
<contribute xsi:type="subMenu" menuText="DCLMA">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Source Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Source Density" id="lma">
<dataURI>/grid/DCLMA/%/%/lmasd</dataURI>
<substitute key="network" value="DCLMA"/>
<substitute key="level" value="0"/>
@ -61,7 +61,7 @@
<substitute key="productType" value="lmasd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/DCLMA/%/%/lmafed</dataURI>
<substitute key="network" value="DCLMA"/>
<substitute key="level" value="0"/>
@ -69,7 +69,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/DCLMA/%/%/lmafid</dataURI>
<substitute key="network" value="DCLMA"/>
<substitute key="level" value="0"/>
@ -77,7 +77,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/DCLMA/%/%/lmamfd</dataURI>
<substitute key="network" value="DCLMA"/>
<substitute key="level" value="0"/>
@ -88,7 +88,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="KLDAR">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Source Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Source Density" id="lma">
<dataURI>/grid/KLDAR/%/%/lmasd</dataURI>
<substitute key="network" value="KLDAR"/>
<substitute key="level" value="0"/>
@ -96,7 +96,7 @@
<substitute key="productType" value="lmasd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/KLDAR/%/%/lmafed</dataURI>
<substitute key="network" value="KLDAR"/>
<substitute key="level" value="0"/>
@ -104,7 +104,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/KLDAR/%/%/lmafid</dataURI>
<substitute key="network" value="KLDAR"/>
<substitute key="level" value="0"/>
@ -112,7 +112,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/KLDAR/%/%/lmamfd</dataURI>
<substitute key="network" value="KLDAR"/>
<substitute key="level" value="0"/>
@ -123,7 +123,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="OKLMA">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Source Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Source Density" id="lma">
<dataURI>/grid/OKLMA/%/%/lmasd</dataURI>
<substitute key="network" value="OKLMA"/>
<substitute key="level" value="0"/>
@ -131,7 +131,7 @@
<substitute key="productType" value="lmasd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/OKLMA/%/%/lmafed</dataURI>
<substitute key="network" value="OKLMA"/>
<substitute key="level" value="0"/>
@ -139,7 +139,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/OKLMA/%/%/lmafid</dataURI>
<substitute key="network" value="OKLMA"/>
<substitute key="level" value="0"/>
@ -147,7 +147,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/OKLMA/%/%/lmamfd</dataURI>
<substitute key="network" value="OKLMA"/>
<substitute key="level" value="0"/>
@ -158,7 +158,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="COLMA">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Source Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Source Density" id="lma">
<dataURI>/grid/COLMA/%/%/lmasd</dataURI>
<substitute key="network" value="COLMA"/>
<substitute key="level" value="0"/>
@ -166,7 +166,7 @@
<substitute key="productType" value="lmasd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/COLMA/%/%/lmafed</dataURI>
<substitute key="network" value="COLMA"/>
<substitute key="level" value="0"/>
@ -174,7 +174,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/COLMA/%/%/lmafid</dataURI>
<substitute key="network" value="COLMA"/>
<substitute key="level" value="0"/>
@ -182,7 +182,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/COLMA/%/%/lmamfd</dataURI>
<substitute key="network" value="COLMA"/>
<substitute key="level" value="0"/>
@ -193,7 +193,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="HGLMA">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Source Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Source Density" id="lma">
<dataURI>/grid/HGLMA/%/%/lmasd</dataURI>
<substitute key="network" value="HGLMA"/>
<substitute key="level" value="0"/>
@ -201,7 +201,7 @@
<substitute key="productType" value="lmasd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/HGLMA/%/%/lmafed</dataURI>
<substitute key="network" value="HGLMA"/>
<substitute key="level" value="0"/>
@ -209,7 +209,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/HGLMA/%/%/lmafid</dataURI>
<substitute key="network" value="HGLMA"/>
<substitute key="level" value="0"/>
@ -217,7 +217,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/HGLMA/%/%/lmamfd</dataURI>
<substitute key="network" value="HGLMA"/>
<substitute key="level" value="0"/>
@ -228,7 +228,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="WTLMA">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Source Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Source Density" id="lma">
<dataURI>/grid/WTLMA/%/%/lmasd</dataURI>
<substitute key="network" value="HGLMA"/>
<substitute key="level" value="0"/>
@ -236,7 +236,7 @@
<substitute key="productType" value="lmasd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/WTLMA/%/%/lmafed</dataURI>
<substitute key="network" value="WTLMA"/>
<substitute key="level" value="0"/>
@ -244,7 +244,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/WTLMA/%/%/lmafid</dataURI>
<substitute key="network" value="WTLMA"/>
<substitute key="level" value="0"/>
@ -252,7 +252,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/WTLMA/%/%/lmamfd</dataURI>
<substitute key="network" value="WTLMA"/>
<substitute key="level" value="0"/>
@ -263,7 +263,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="CFLMA">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Source Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Source Density" id="lma">
<dataURI>/grid/CFLMA/%/%/lmasd</dataURI>
<substitute key="network" value="HGLMA"/>
<substitute key="level" value="0"/>
@ -271,7 +271,7 @@
<substitute key="productType" value="lmasd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/CFLMA/%/%/lmafed</dataURI>
<substitute key="network" value="CFLMA"/>
<substitute key="level" value="0"/>
@ -279,7 +279,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/CFLMA/%/%/lmafid</dataURI>
<substitute key="network" value="CFLMA"/>
<substitute key="level" value="0"/>
@ -287,7 +287,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/CFLMA/%/%/lmamfd</dataURI>
<substitute key="network" value="CFLMA"/>
<substitute key="level" value="0"/>
@ -298,7 +298,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="LLLMA">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Source Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Source Density" id="lma">
<dataURI>/grid/LLLMA/%/%/lmasd</dataURI>
<substitute key="network" value="LLLMA"/>
<substitute key="level" value="0"/>
@ -306,7 +306,7 @@
<substitute key="productType" value="lmasd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/LLLMA/%/%/lmafed</dataURI>
<substitute key="network" value="LLLMA"/>
<substitute key="level" value="0"/>
@ -314,7 +314,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/LLLMA/%/%/lmafid</dataURI>
<substitute key="network" value="LLLMA"/>
<substitute key="level" value="0"/>
@ -322,7 +322,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/LLLMA/%/%/lmamfd</dataURI>
<substitute key="network" value="LLLMA"/>
<substitute key="level" value="0"/>
@ -334,7 +334,7 @@
<contribute xsi:type="subMenu" menuText="KSCLMA">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Source Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Source Density" id="lma">
<dataURI>/grid/KSCLMA/%/%/lmasd</dataURI>
<substitute key="network" value="KSCLMA"/>
<substitute key="level" value="0"/>
@ -342,7 +342,7 @@
<substitute key="productType" value="lmasd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/KSCLMA/%/%/lmafed</dataURI>
<substitute key="network" value="KSCLMA"/>
<substitute key="level" value="0"/>
@ -350,7 +350,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/KSCLMA/%/%/lmafid</dataURI>
<substitute key="network" value="KSCLMA"/>
<substitute key="level" value="0"/>
@ -358,7 +358,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/KSCLMA/%/%/lmamfd</dataURI>
<substitute key="network" value="KSCLMA"/>
<substitute key="level" value="0"/>
@ -369,7 +369,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="NGLMA">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Source Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Source Density" id="lma">
<dataURI>/grid/NGLMA/%/%/lmasd</dataURI>
<substitute key="network" value="NGLMA"/>
<substitute key="level" value="0"/>
@ -377,7 +377,7 @@
<substitute key="productType" value="lmasd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/NGLMA/%/%/lmafed</dataURI>
<substitute key="network" value="NGLMA"/>
<substitute key="level" value="0"/>
@ -385,7 +385,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/NGLMA/%/%/lmafid</dataURI>
<substitute key="network" value="NGLMA"/>
<substitute key="level" value="0"/>
@ -393,7 +393,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/NGLMA/%/%/lmamfd</dataURI>
<substitute key="network" value="NGLMA"/>
<substitute key="level" value="0"/>
@ -404,7 +404,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="ONLMA">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Source Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Source Density" id="lma">
<dataURI>/grid/ONLMA/%/%/lmasd</dataURI>
<substitute key="network" value="ONLMA"/>
<substitute key="level" value="0"/>
@ -412,7 +412,7 @@
<substitute key="productType" value="lmasd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/ONLMA/%/%/lmafed</dataURI>
<substitute key="network" value="ONLMA"/>
<substitute key="level" value="0"/>
@ -420,7 +420,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/ONLMA/%/%/lmafid</dataURI>
<substitute key="network" value="ONLMA"/>
<substitute key="level" value="0"/>
@ -428,7 +428,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/ONLMA/%/%/lmamfd</dataURI>
<substitute key="network" value="ONLMA"/>
<substitute key="level" value="0"/>
@ -439,7 +439,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="WILMA">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Source Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Source Density" id="lma">
<dataURI>/grid/WILMA/%/%/lmasd</dataURI>
<substitute key="network" value="WILMA"/>
<substitute key="level" value="0"/>
@ -447,7 +447,7 @@
<substitute key="productType" value="lmasd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/WILMA/%/%/lmafed</dataURI>
<substitute key="network" value="WILMA"/>
<substitute key="level" value="0"/>
@ -455,7 +455,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/WILMA/%/%/lmafid</dataURI>
<substitute key="network" value="WILMA"/>
<substitute key="level" value="0"/>
@ -463,7 +463,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/WILMA/%/%/lmamfd</dataURI>
<substitute key="network" value="WILMA"/>
<substitute key="level" value="0"/>
@ -474,7 +474,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="WSLMA">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Source Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Source Density" id="lma">
<dataURI>/grid/WSLMA/%/%/lmasd</dataURI>
<substitute key="network" value="WSLMA"/>
<substitute key="level" value="0"/>
@ -482,7 +482,7 @@
<substitute key="productType" value="lmasd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/WSLMA/%/%/lmafed</dataURI>
<substitute key="network" value="WSLMA"/>
<substitute key="level" value="0"/>
@ -490,7 +490,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/WSLMA/%/%/lmafid</dataURI>
<substitute key="network" value="WSLMA"/>
<substitute key="level" value="0"/>
@ -498,7 +498,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/WSLMA/%/%/lmamfd</dataURI>
<substitute key="network" value="WSLMA"/>
<substitute key="level" value="0"/>
@ -509,9 +509,9 @@
</contribute>
</contribute>
<contribute xsi:type="subMenu" menuText="Psuedo-GLM Products">
<contribute xsi:type="subMenu" menuText="Pseudo-GLM Products">
<contribute xsi:type="subMenu" menuText="PGNA (North Alabama)">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/PGNA/%/%/lmafed</dataURI>
<substitute key="network" value="PGNA"/>
<substitute key="level" value="0"/>
@ -519,7 +519,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/PGNA/%/%/lmafid</dataURI>
<substitute key="network" value="PGNA"/>
<substitute key="level" value="0"/>
@ -527,7 +527,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Maximum Flash Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
<dataURI>/grid/PGNA/%/%/lmamfd</dataURI>
<substitute key="network" value="PGNA"/>
<substitute key="level" value="0"/>
@ -535,7 +535,7 @@
<substitute key="productType" value="lmamfd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="30 minute Sum" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
<dataURI>/grid/PGNA/%/%/lmasum</dataURI>
<substitute key="network" value="PGNA"/>
<substitute key="level" value="0"/>
@ -546,7 +546,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="PGDC (Washington D.C.)">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/PGDC/%/%/lmafed</dataURI>
<substitute key="network" value="PGDC"/>
<substitute key="level" value="0"/>
@ -554,7 +554,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/PGDC/%/%/lmafid</dataURI>
<substitute key="network" value="PGDC"/>
<substitute key="level" value="0"/>
@ -562,7 +562,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Maximum Flash Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
<dataURI>/grid/PGDC/%/%/lmamfd</dataURI>
<substitute key="network" value="PGDC"/>
<substitute key="level" value="0"/>
@ -570,7 +570,7 @@
<substitute key="productType" value="lmamfd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="30 minute Sum" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
<dataURI>/grid/PGDC/%/%/lmasum</dataURI>
<substitute key="network" value="PGDC"/>
<substitute key="level" value="0"/>
@ -581,7 +581,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="PGSC (Kennedy Space Center)">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/PGSC/%/%/lmafed</dataURI>
<substitute key="network" value="PGSC"/>
<substitute key="level" value="0"/>
@ -589,7 +589,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/PGSC/%/%/lmafid</dataURI>
<substitute key="network" value="PGSC"/>
<substitute key="level" value="0"/>
@ -597,7 +597,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Maximum Flash Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
<dataURI>/grid/PGSC/%/%/lmamfd</dataURI>
<substitute key="network" value="PGSC"/>
<substitute key="level" value="0"/>
@ -605,7 +605,7 @@
<substitute key="productType" value="lmamfd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="30 minute Sum" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
<dataURI>/grid/PGSC/%/%/lmasum</dataURI>
<substitute key="network" value="PGSC"/>
<substitute key="level" value="0"/>
@ -616,7 +616,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="PGOK (Oklahoma)">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/PGOK/%/%/lmafed</dataURI>
<substitute key="network" value="PGOK"/>
<substitute key="level" value="0"/>
@ -624,7 +624,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/PGOK/%/%/lmafid</dataURI>
<substitute key="network" value="PGOK"/>
<substitute key="level" value="0"/>
@ -632,7 +632,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Maximum Flash Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
<dataURI>/grid/PGOK/%/%/lmamfd</dataURI>
<substitute key="network" value="PGOK"/>
<substitute key="level" value="0"/>
@ -640,7 +640,7 @@
<substitute key="productType" value="lmamfd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="30 minute Sum" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
<dataURI>/grid/PGOK/%/%/lmasum</dataURI>
<substitute key="network" value="PGOK"/>
<substitute key="level" value="0"/>
@ -651,7 +651,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="PGCO (Colorado)">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/PGCO/%/%/lmafed</dataURI>
<substitute key="network" value="PGCO"/>
<substitute key="level" value="0"/>
@ -659,7 +659,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/PGCO/%/%/lmafid</dataURI>
<substitute key="network" value="PGCO"/>
<substitute key="level" value="0"/>
@ -667,7 +667,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Maximum Flash Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
<dataURI>/grid/PGCO/%/%/lmamfd</dataURI>
<substitute key="network" value="PGCO"/>
<substitute key="level" value="0"/>
@ -675,7 +675,7 @@
<substitute key="productType" value="lmamfd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="30 minute Sum" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
<dataURI>/grid/PGCO/%/%/lmasum</dataURI>
<substitute key="network" value="PGCO"/>
<substitute key="level" value="0"/>
@ -686,7 +686,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="PGHG (Houston)">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/PGHG/%/%/lmafed</dataURI>
<substitute key="network" value="PGHG"/>
<substitute key="level" value="0"/>
@ -694,7 +694,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/PGHG/%/%/lmafid</dataURI>
<substitute key="network" value="PGHG"/>
<substitute key="level" value="0"/>
@ -702,7 +702,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Maximum Flash Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
<dataURI>/grid/PGHG/%/%/lmamfd</dataURI>
<substitute key="network" value="PGHG"/>
<substitute key="level" value="0"/>
@ -710,7 +710,7 @@
<substitute key="productType" value="lmamfd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="30 minute Sum" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
<dataURI>/grid/PGHG/%/%/lmasum</dataURI>
<substitute key="network" value="PGHG"/>
<substitute key="level" value="0"/>
@ -721,7 +721,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="PGWT (West Texas)">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/PGWT/%/%/lmafed</dataURI>
<substitute key="network" value="PGWT"/>
<substitute key="level" value="0"/>
@ -729,7 +729,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/PGWT/%/%/lmafid</dataURI>
<substitute key="network" value="PGWT"/>
<substitute key="level" value="0"/>
@ -737,7 +737,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Maximum Flash Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
<dataURI>/grid/PGWT/%/%/lmamfd</dataURI>
<substitute key="network" value="PGWT"/>
<substitute key="level" value="0"/>
@ -745,7 +745,7 @@
<substitute key="productType" value="lmamfd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="30 minute Sum" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
<dataURI>/grid/PGWT/%/%/lmasum</dataURI>
<substitute key="network" value="PGWT"/>
<substitute key="level" value="0"/>
@ -756,7 +756,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="PGCF (Central Florida)">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/PGCF/%/%/lmafed</dataURI>
<substitute key="network" value="PGCF"/>
<substitute key="level" value="0"/>
@ -764,7 +764,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/PGCF/%/%/lmafid</dataURI>
<substitute key="network" value="PGCF"/>
<substitute key="level" value="0"/>
@ -772,7 +772,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Maximum Flash Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
<dataURI>/grid/PGCF/%/%/lmamfd</dataURI>
<substitute key="network" value="PGCF"/>
<substitute key="level" value="0"/>
@ -780,7 +780,7 @@
<substitute key="productType" value="lmamfd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="30 minute Sum" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
<dataURI>/grid/PGCF/%/%/lmasum</dataURI>
<substitute key="network" value="PGCF"/>
<substitute key="level" value="0"/>
@ -791,7 +791,7 @@
</contribute>
<contribute xsi:type="subMenu" menuText="PGLL (Langmuir Laboratory)">
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Extent Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
<dataURI>/grid/PGLL/%/%/lmafed</dataURI>
<substitute key="network" value="PGLL"/>
<substitute key="level" value="0"/>
@ -799,7 +799,7 @@
<substitute key="productType" value="lmafed"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Flash Initiation Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
<dataURI>/grid/PGLL/%/%/lmafid</dataURI>
<substitute key="network" value="PGLL"/>
<substitute key="level" value="0"/>
@ -807,7 +807,7 @@
<substitute key="productType" value="lmafid"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="Maximum Flash Density" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
<dataURI>/grid/PGLL/%/%/lmamfd</dataURI>
<substitute key="network" value="PGLL"/>
<substitute key="level" value="0"/>
@ -815,7 +815,7 @@
<substitute key="productType" value="lmamfd"/>
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
<contribute xsi:type="bundleItem" file="bundles/lma.xml" menuText="30 minute Sum" id="lma">
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
<dataURI>/grid/PGLL/%/%/lmasum</dataURI>
<substitute key="network" value="PGLL"/>
<substitute key="level" value="0"/>
@ -824,8 +824,5 @@
<substitute key="colorMapName" value="lma/nalma"/>
</contribute>
</contribute>
</contribute>
</contribute>
</menuTemplate>

View file

@ -792,18 +792,13 @@ NGRID ^(E[HS-V][A-DG-KST][B-T]01) (KWBW) (..)(..)(..)
FILE -overwrite -log -close -edex /data_store/grib2/(\3:yyyy)(\3:mm)\3/\4/RTOFS/\1_\2_\3\4\5_(seq).grib2.%Y%m%d%H
# ESTOFS - Pattern provided by Joshua.Watson.
#NGRID ^(E[EHC][IP][A-Z]88) (KWBM) (..)(..)(..)[^!]*!(grib|grib2)/[^/]*/([^/]*)/#([^/]*)/([0-9]{8})([0-9]{4})(F[0-9]{3})/([^/]*)
# FILE -overwrite -log -close -edex /data_store/\6/(\3:yyyy)(\3:mm)\3/\4/\7/GRID\8/\(10)Z_\(11)_\(12)-\1_\2_\3\4\5_(seq).\6.%Y%m%d%H
# ESTOFS workaround until Unidata grib tables are updated
NGRID ^(E[EHC][IP][A-Z]88) (KWBM) (..)(..)(..)
FILE -overwrite -log -close -edex /data_store/grib2/(\3:yyyy)(\3:mm)\3/\4/ESTOFS/GRID255/\1_\2_\3\4\5_(seq).grib2.%Y%m%d%H
NGRID ^(E[EHC][IP][A-Z]88) (KWBM) (..)(..)(..)[^!]*!(grib|grib2)/[^/]*/([^/]*)/#([^/]*)/([0-9]{8})([0-9]{4})(F[0-9]{3})/([^/]*)
FILE -overwrite -log -close -edex /data_store/\6/(\3:yyyy)(\3:mm)\3/\4/\7/GRID\8/\(10)Z_\(11)_\(12)-\1_\2_\3\4\5_(seq).\6.%Y%m%d%H
# HRRR - Pattern provided by Joshua.Watson.
#NGRID ^(Y.C[A-MZ][05789][0-9]) (KWBY) (..)(..)(..)[^!]*!(grib|grib2)/[^/]*/([^/]*)/#([^/]*)/([0-9]{8})([0-9]{4})(F[0-9]{3})/([^/]*)
# FILE -overwrite -log -close -edex /data_store/\6/(\3:yyyy)(\3:mm)\3/\4/\7/GRID\8/\(10)Z_\(11)_\(12)-\1_\2_\3\4\5_(seq).\6.%Y%m%d%H
NGRID ^(Y.C[A-MZ][05789][0-9]) (KWBY) (..)(..)(..)[^!]*!(grib|grib2)/[^/]*/([^/]*)/#([^/]*)/([0-9]{8})([0-9]{4})(F[0-9]{3})/([^/]*)
FILE -overwrite -log -close -edex /data_store/\6/(\3:yyyy)(\3:mm)\3/\4/\7/GRID\8/\(10)Z_\(11)_\(12)-\1_\2_\3\4\5_(seq).\6.%Y%m%d%H
# HRRR Workaround until noaaport ingest grib tables are updated.
NGRID ^(Y.C[A-MZ][05789][0-9]) (KWBY) (..)(..)(..)
FILE -overwrite -log -close -edex /data_store/grib2/(\3:yyyy)(\3:mm)\3/\4/HRRR/GRID184/\1_\2_\3\4\5_(seq).grib2.%Y%m%d%H
#
# MRMS
NGRID ^(YAU[CDLMPQS][0-2][0-9]) (KWNR) (..)(..)(..)[^!]*!(grib|grib2)/[^/]*/([^/]*)/#([^/]*)/([0-9]{8})([0-9]{4})(F[0-9]{3})/([^/]*)
FILE -overwrite -log -close -edex /data_store/\6/(\3:yyyy)(\3:mm)\3/\4/\7/GRID\8/\(10)Z_\(11)_\(12)-\1_\2_\3\4\5_(seq).\6.%Y%m%d%H