The following schema fragment specifies the expected content contained within this class.
- *
- *
grib1Vcrd;
-
- /**
- * Gets the value of the grib1Vcrd property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set
method for the grib1Vcrd property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getGrib1Vcrd().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link Grib1Vcrd }
- *
- *
- */
- public List getGrib1Vcrd() {
- if (grib1Vcrd == null) {
- grib1Vcrd = new ArrayList();
- }
- return this.grib1Vcrd;
- }
-
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib1vcrd/Grib1VcrdTable.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib1vcrd/Grib1VcrdTable.java
deleted file mode 100644
index 8e4e023e35..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib1vcrd/Grib1VcrdTable.java
+++ /dev/null
@@ -1,85 +0,0 @@
-package gov.noaa.nws.ncep.edex.util.grib1vcrd;
-
-import java.io.File;
-import java.io.IOException;
-import java.util.HashMap;
-import java.util.Map;
-
-import com.raytheon.uf.common.localization.IPathManager;
-import com.raytheon.uf.common.localization.LocalizationContext;
-import com.raytheon.uf.common.localization.PathManagerFactory;
-import com.raytheon.uf.common.serialization.SerializationException;
-import com.raytheon.uf.common.serialization.SerializationUtil;
-
-/**
- */
-
-public class Grib1VcrdTable {
-
- private static final String file = "ncgrid" + File.separator + "grib1vcrd.xml";
-
- private static Grib1VcrdList g1VcrdList;
-
- private static Map vcordMap = null;
-
- private static void readGrib1VcrdTable( String xmlFilename ) throws SerializationException{
-
- g1VcrdList = (Grib1VcrdList)SerializationUtil.jaxbUnmarshalFromXmlFile(xmlFilename);
-
- }
-
- /**
- * Search a g2Vcrd given a field, and search key value.
- *
- * @param sf
- * @param key
- * @return Grib2Vcrd
- */
- public static Grib1Vcrd getGrib1VcrdById (int vcrdid ) {
-
-
- synchronized (Grib1VcrdTable.class) {
- if (g1VcrdList == null) {
- System.out.println("INITIALIZINGVCRD!!!!!!");
- try {
- String filename = findVcrdTable();
- readGrib1VcrdTable(filename);
- createMapOfTable();
- } catch (Exception e) {
- e.printStackTrace();
- g1VcrdList = null;
- return null;
- }
- }
- }
-
- if ( vcordMap.containsKey(vcrdid) )
- return vcordMap.get(vcrdid);
- else
- return null;
- }
-
- private static void createMapOfTable() {
-
- vcordMap = new HashMap();
-
- for ( Grib1Vcrd vcord : g1VcrdList.getGrib1Vcrd() ) {
- vcordMap.put(vcord.getVcrdid(), vcord);
- }
-
- }
-
- private static String findVcrdTable() throws IOException{
- String filename = null;
-
- IPathManager pathMgr = PathManagerFactory.getPathManager();
- LocalizationContext commonStaticBase = pathMgr.getContext(
- LocalizationContext.LocalizationType.COMMON_STATIC,
- LocalizationContext.LocalizationLevel.BASE);
-
- filename = pathMgr.getFile( commonStaticBase, Grib1VcrdTable.file).getCanonicalPath();
-
- return filename;
- }
-
-}
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/Grib2Vars.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/Grib2Vars.java
deleted file mode 100644
index 9baee864fd..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/Grib2Vars.java
+++ /dev/null
@@ -1,314 +0,0 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2011.01.07 at 02:01:31 PM EST
-//
-
-
-package gov.noaa.nws.ncep.edex.util.grib2vars;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * Java class for anonymous complex type.
- *
- *
The following schema fragment specifies the expected content contained within this class.
- *
- *
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element ref="{}g2varsid" minOccurs="0"/>
- * <element ref="{}discipline" minOccurs="0"/>
- * <element ref="{}category" minOccurs="0"/>
- * <element ref="{}pid" minOccurs="0"/>
- * <element ref="{}pdt" minOccurs="0"/>
- * <element ref="{}name" minOccurs="0"/>
- * <element ref="{}units" minOccurs="0"/>
- * <element ref="{}gnam" minOccurs="0"/>
- * <element ref="{}scale" minOccurs="0"/>
- * <element ref="{}missing" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "g2Varsid",
- "discipline",
- "category",
- "pid",
- "pdt",
- "name",
- "units",
- "gnam",
- "scale",
- "missing"
-})
-@XmlRootElement(name = "grib2vars")
-public class Grib2Vars {
-
- @XmlElement(name = "g2varsid")
- protected Integer g2Varsid;
- protected Integer discipline;
- protected Integer category;
- protected Integer pid;
- protected Integer pdt;
- protected String name;
- protected String units;
- protected String gnam;
- protected Integer scale;
- protected Float missing;
-
- /**
- * Gets the value of the g2Varsid property.
- *
- * @return
- * possible object is
- * {@link Integer }
- *
- */
- public Integer getG2Varsid() {
- return g2Varsid;
- }
-
- /**
- * Sets the value of the g2Varsid property.
- *
- * @param value
- * allowed object is
- * {@link Integer }
- *
- */
- public void setG2Varsid(Integer value) {
- this.g2Varsid = value;
- }
-
- /**
- * Gets the value of the discipline property.
- *
- * @return
- * possible object is
- * {@link Integer }
- *
- */
- public Integer getDiscipline() {
- return discipline;
- }
-
- /**
- * Sets the value of the discipline property.
- *
- * @param value
- * allowed object is
- * {@link Integer }
- *
- */
- public void setDiscipline(Integer value) {
- this.discipline = value;
- }
-
- /**
- * Gets the value of the category property.
- *
- * @return
- * possible object is
- * {@link Integer }
- *
- */
- public Integer getCategory() {
- return category;
- }
-
- /**
- * Sets the value of the category property.
- *
- * @param value
- * allowed object is
- * {@link Integer }
- *
- */
- public void setCategory(Integer value) {
- this.category = value;
- }
-
- /**
- * Gets the value of the pid property.
- *
- * @return
- * possible object is
- * {@link Integer }
- *
- */
- public Integer getPid() {
- return pid;
- }
-
- /**
- * Sets the value of the pid property.
- *
- * @param value
- * allowed object is
- * {@link Integer }
- *
- */
- public void setPid(Integer value) {
- this.pid = value;
- }
-
- /**
- * Gets the value of the pdt property.
- *
- * @return
- * possible object is
- * {@link Integer }
- *
- */
- public Integer getPdt() {
- return pdt;
- }
-
- /**
- * Sets the value of the pdt property.
- *
- * @param value
- * allowed object is
- * {@link Integer }
- *
- */
- public void setPdt(Integer value) {
- this.pdt = value;
- }
-
- /**
- * Gets the value of the name property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getName() {
- return name;
- }
-
- /**
- * Sets the value of the name property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setName(String value) {
- this.name = value;
- }
-
- /**
- * Gets the value of the units property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getUnits() {
- return units;
- }
-
- /**
- * Sets the value of the units property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setUnits(String value) {
- this.units = value;
- }
-
- /**
- * Gets the value of the gnam property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getGnam() {
- return gnam;
- }
-
- /**
- * Sets the value of the gnam property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setGnam(String value) {
- this.gnam = value;
- }
-
- /**
- * Gets the value of the scale property.
- *
- * @return
- * possible object is
- * {@link Integer }
- *
- */
- public Integer getScale() {
- return scale;
- }
-
- /**
- * Sets the value of the scale property.
- *
- * @param value
- * allowed object is
- * {@link Integer }
- *
- */
- public void setScale(Integer value) {
- this.scale = value;
- }
-
- /**
- * Gets the value of the missing property.
- *
- * @return
- * possible object is
- * {@link Float }
- *
- */
- public Float getMissing() {
- return missing;
- }
-
- /**
- * Sets the value of the missing property.
- *
- * @param value
- * allowed object is
- * {@link Float }
- *
- */
- public void setMissing(Float value) {
- this.missing = value;
- }
-
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/Grib2VarsComparator.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/Grib2VarsComparator.java
deleted file mode 100644
index 7d495a6552..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/Grib2VarsComparator.java
+++ /dev/null
@@ -1,56 +0,0 @@
-package gov.noaa.nws.ncep.edex.util.grib2vars;
-
-import java.util.Comparator;
-
-/**
- * Comparator for Grib2Vars fields.
- *
- *
- * SOFTWARE HISTORY
- *
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * 10/10 276 L. Lin Initial Creation
- *
- *
- *
- * @author llin
- * @version 1
- */
-
-public class Grib2VarsComparator implements Comparator, IGrib2VarsField {
-
- private Grib2VarsField field;
-
- public Grib2VarsComparator(Grib2VarsField f) {
- this.field = f;
- }
-
- public int compare(Grib2Vars o1, Grib2Vars o2) {
- switch (field) {
- case G2VARSID:
- return o1.getG2Varsid() - o2.getG2Varsid();
- case DISCIPLINE:
- return o1.getDiscipline() - o2.getDiscipline();
- case CATEGORY:
- return o1.getCategory() - o2.getCategory();
- case PID:
- return o1.getPid() - o2.getPid();
- case PDT:
- return o1.getPdt() - o2.getPdt();
- case NAME:
- return o1.getName().compareToIgnoreCase(o2.getName());
- case UNITS:
- return o1.getUnits().compareToIgnoreCase(o2.getUnits());
- case GNAM:
- return o1.getGnam().compareToIgnoreCase(o2.getGnam());
- case SCALE:
- return o1.getScale() - o2.getScale();
- case MISSING:
- return o1.getMissing().compareTo(o2.getMissing());
- default:
- return 0;
- }
-
- }
-}
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/Grib2VarsList.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/Grib2VarsList.java
deleted file mode 100644
index 80b8542a68..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/Grib2VarsList.java
+++ /dev/null
@@ -1,89 +0,0 @@
-/**
- * This file was generated by the JavaTM Architecture for XML Binding(JAXB)
- * Reference Implementation, vJAXB 2.1.10 in JDK 6
- * See http://java.sun.com/xml/jaxb
- * any modifications to this file will be lost upon recompilation of the source schema
- * Generated on: 2010.09.10 at 11:48:39 AM EDT
- *
- * SOFTWARE HISTORY
- *
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * 10/2010 276 L. Lin Initial creation
- *
- *
- *
- * This code has been developed by the SIB for use in the AWIPS2 system.
- * @author L. Lin
- * @version 1.0
- */
-package gov.noaa.nws.ncep.edex.util.grib2vars;
-
-import java.util.ArrayList;
-import java.util.List;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * Java class for anonymous complex type.
- *
- *
The following schema fragment specifies the expected content contained within this class.
- *
- *
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element ref="{}grib2vars" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "grib2Vars"
-})
-@XmlRootElement(name = "grib2varsList")
-public class Grib2VarsList {
-
- @XmlElement(name = "grib2vars")
- protected List grib2Vars;
-
- /**
- * Gets the value of the grib2Vars property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set
method for the grib2Vars property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getGrib2Vars().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link Grib2Vars }
- *
- *
- */
- public List getGrib2Vars() {
- if (grib2Vars == null) {
- grib2Vars = new ArrayList();
- }
- return this.grib2Vars;
- }
-
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/Grib2VarsTable.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/Grib2VarsTable.java
deleted file mode 100644
index 87d0c0bcd5..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/Grib2VarsTable.java
+++ /dev/null
@@ -1,185 +0,0 @@
-package gov.noaa.nws.ncep.edex.util.grib2vars;
-
-import java.io.File;
-import java.io.FileNotFoundException;
-import java.io.FileReader;
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.List;
-
-import javax.xml.bind.JAXBContext;
-import javax.xml.bind.JAXBException;
-import javax.xml.bind.Unmarshaller;
-
-/**
- * This class reads a g2Vars table from an xml file and contains a list of g2Varss.
- * This class also provide general g2Vars search functions given g2Vars field, and
- * field value.
- *
- *
- *
- * SOFTWARE HISTORY
- *
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * 10/10 276 L. Lin Initial Creation
- * 07/11 X. Guo Added getGrib2Vars4Grib1()
- *
- *
- *
- * @author llin
- * @version 1
- */
-
-public class Grib2VarsTable implements IGrib2VarsField {
-
- private final String PACKAGE = "gov.noaa.nws.ncep.edex.util.grib2vars";
-
- private List g2VarsList;
-
- private static Grib2VarsField last = null;
-
- /**
- * Constructor.
- * @param tableFileName - full path of the xml table file
- */
- public Grib2VarsTable( String tableFileName ) {
-
- try{
- g2VarsList = readGrib2VarsTable( tableFileName );
- }
- catch ( JAXBException exp ){
- g2VarsList = null;
- exp.printStackTrace();
- }
-
- }
-
- /**
- * Reads the contents of the input g2Vars table file
- * @param xmlFilename - full path of the xml table name
- * @return - a list of g2Varss
- * @throws JAXBException
- */
- private List readGrib2VarsTable( String xmlFilename ) throws JAXBException{
-
- File xmlFile = new File(xmlFilename);
-
- JAXBContext context = JAXBContext.newInstance(
- PACKAGE);
- Unmarshaller unmarshaller = context.createUnmarshaller();
- Grib2VarsList g2Varslist = null;
-
- try {
- g2Varslist = (Grib2VarsList)unmarshaller.unmarshal(
- new FileReader(xmlFile));
- List listOfItems = g2Varslist.getGrib2Vars();
- return listOfItems;
-
- } catch (FileNotFoundException e1) {
- e1.printStackTrace();
-
- } catch (NullPointerException e2) {
- e2.printStackTrace();
- }
-
- return null;
-
- }
-
- /**
- * Gets the list of the g2Varss
- * @return - the list of g2Varss
- */
- public List getGrib2VarsList(){
-
- return g2VarsList;
-
- }
-
- /**
- * Search a g2Vars given a field, and search key value.
- *
- * @param sf
- * @param key
- * @return Grib2Vars
- */
- public Grib2Vars getGrib2Vars(int discipline, int category, int pid, int pdt) {
-
- if (g2VarsList == null || g2VarsList.isEmpty()) return null;
-
- for (Grib2Vars g2Vars : g2VarsList) {
- if (g2Vars.discipline == discipline &&
- g2Vars.category == category &&
- g2Vars.pid == pid &&
- g2Vars.pdt == pdt ) {
- return g2Vars;
- }
- }
- return null;
- }
-
- public Grib2Vars getGrib2Vars4Grib1(int discipline, int category, int pid) {
-
- if (g2VarsList == null || g2VarsList.isEmpty()) return null;
-
- for (Grib2Vars g2Vars : g2VarsList) {
- if (g2Vars.discipline == discipline &&
- g2Vars.category == category &&
- g2Vars.pid == pid ) {
- return g2Vars;
- }
- }
- return null;
- }
- /**
- * Search g2Vars list given a field, and search key value.
- *
- * @param sf
- * @param key
- * @return Grib2Vars
- */
- public List getGrib2Varss(Grib2VarsField sf, Integer key) {
- if (g2VarsList == null || g2VarsList.isEmpty()) return null;
-
- Grib2VarsComparator comparator = new Grib2VarsComparator(sf);
- if (last == null || (last != null && last != sf )) {
- Collections.sort(g2VarsList, comparator);
- last = sf;
- }
-
- List list = new ArrayList();
-
- Grib2Vars s = getComparedGrib2Vars(sf, key);
- int index;
- while ((index = Collections.binarySearch(g2VarsList, s, comparator)) >= 0) {
- list.add(g2VarsList.get(index));
- g2VarsList.remove(index);
- }
-
- if (list.size() > 0) {
- for (Grib2Vars st : list) {
- g2VarsList.add(st);
- }
-
- last = null;
- return list;
- }
- else {
- return null;
- }
- }
-
-
- private Grib2Vars getComparedGrib2Vars(Grib2VarsField sf, Integer key){
- Grib2Vars g2Vars = new Grib2Vars();
- switch (sf) {
- case G2VARSID:
- g2Vars.setG2Varsid((Integer)key);
- break;
- }
-
- return g2Vars;
- }
-
-}
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/Grib2VarsTableLookup.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/Grib2VarsTableLookup.java
deleted file mode 100644
index cb0ac3d252..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/Grib2VarsTableLookup.java
+++ /dev/null
@@ -1,282 +0,0 @@
-/**
- * Grib2varsTableLookup - A Java class to define some known
- * both g2varsncep1.tbl and g2varswmo2.tbl.
- *
- * SOFTWARE HISTORY
- *
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * 10/2010 276 L. Lin Initial creation
- * 06/2011 X. Guo Added getVarGnam()
- * 07/2011 X. Guo Added getVarGnam4Grib1()
- *
- *
- *
- * This code has been developed by the SIB for use in the AWIPS2 system.
- * @author L. Lin
- * @version 1.0
- */
-package gov.noaa.nws.ncep.edex.util.grib2vars;
-
-import java.io.File;
-
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.exception.GribException;
-
-import com.raytheon.uf.common.localization.IPathManager;
-import com.raytheon.uf.common.localization.LocalizationContext;
-import com.raytheon.uf.common.localization.PathManagerFactory;
-
-public class Grib2VarsTableLookup {
-
- private static Grib2VarsTable grib2varsTbl = null;
- private static String name;
- private static String units;
- private static Integer scale;
- private static String gnam;
- private static float missing;
-
- public Grib2VarsTableLookup() {
- }
-
- public static synchronized String readG2varsTable() throws GribException {
-
- Grib2VarsTable myTbl = null;
-
- /*
- * Gets all predefined found in the utility directory
- */
- IPathManager pathMgr = PathManagerFactory.getPathManager();
- LocalizationContext commonStaticBase = pathMgr.getContext(
- LocalizationContext.LocalizationType.COMMON_STATIC,
- LocalizationContext.LocalizationLevel.BASE);
-
- String path = "";
-
- try {
- path = pathMgr.getFile(commonStaticBase,
- "ncgrid" + File.separator + "grib2vars.xml")
- .getCanonicalPath();
-
- // System.out.println (" grib2 vars table lookup path=" + path);
- } catch (Exception e) {
- throw new GribException(
- "Unable to unmarshal ncep grib2vars.xml file");
- }
-
- File varsFile = new File(path);
- try {
- if (varsFile.exists()) {
- myTbl = new Grib2VarsTable(path);
- setG2varsTable(myTbl);
- // System.out.println("Grib2varsTableLookup- read grib2vars.xml file="
- // + path);
- }
- } catch (Exception e) {
- throw new GribException("Unable to read ncep grib2vars file");
- }
- return path;
- }
-
- /**
- * Given discipline, category, pid, and pdt, find g2vars entry in
- * "grib2vars.xml" and set g2varsid, name, units, scale, gnam, and missing
- * fields. .
- *
- * @param discipline
- * , category, pid and pdt are integers.
- * @return
- * @throws GribException
- *
- */
- public static int getG2varsId(int discipline, int category, int pid, int pdt)
- throws GribException {
- Grib2Vars g2vars = null;
- int g2varsid = -1;
- // Wrap decoding in a try block, in case of exception on xml.
- try {
- // Read in the stationNumber table XML if not exists
- if (grib2varsTbl == null) {
- readG2varsTable();
- }
-
- // Search station ID and return whole station record
- if (grib2varsTbl != null) {
- g2vars = grib2varsTbl.getGrib2Vars(discipline, category, pid,
- pdt);
- }
-
- if (g2vars != null) {
- g2varsid = g2vars.g2Varsid;
- name = g2vars.name;
- units = g2vars.units;
- gnam = g2vars.gnam;
- scale = g2vars.scale;
- missing = g2vars.missing;
- }
- } catch (Exception e) {
- // TODO: Use central error logging if this code is kept
- throw new GribException(
- "Error occurs while finding g2vars entry from g2vars.xml table");
- }
-
- return g2varsid;
- }
-
- /**
- * Given discipline, category, pid, and pdt, find g2vars entry in
- * "grib2vars.xml" and set g2varsid, name, units, g2varsscale, gnam, and
- * missing fields. .
- *
- * @param discipline
- * , category, pid and pdt are integers.
- * @return
- * @throws GribException
- *
- */
- public static int getG2varsScale(int discipline, int category, int pid,
- int pdt) throws GribException {
- Grib2Vars g2vars = null;
- int g2scale = 0;
- // Wrap decoding in a try block, in case of exception on xml.
- try {
- // Read in the stationNumber table XML if not exists
- if (grib2varsTbl == null) {
- readG2varsTable();
- }
-
- // Search station ID and return whole station record
- if (grib2varsTbl != null) {
- g2vars = grib2varsTbl.getGrib2Vars(discipline, category, pid,
- pdt);
- }
-
- if (g2vars != null) {
- // g2Varsid = g2vars.g2Varsid;
- name = g2vars.name;
- units = g2vars.units;
- gnam = g2vars.gnam;
- g2scale = g2vars.scale;
- missing = g2vars.missing;
- }
- } catch (Exception e) {
- // TODO: Use central error logging if this code is kept
- throw new GribException(
- "Error occurs while finding g2vars entry from g2vars.xml table");
- }
-
- return g2scale;
- }
-
- /**
- * @return the grib2varsTbl
- */
- public static Grib2VarsTable getG2varsTable() {
- return grib2varsTbl;
- }
-
- /**
- * @param Grib2VarsTable
- * the grib2varsTbl to set
- */
- public static void setG2varsTable(Grib2VarsTable grib2varsTbl) {
- Grib2VarsTableLookup.grib2varsTbl = grib2varsTbl;
- }
-
- public static String getName() {
- return name;
- }
-
- public static void setName(String name) {
- Grib2VarsTableLookup.name = name;
- }
-
- public static String getVarGnam( int discipline, int category, int pid, int pdt) throws GribException {
- Grib2Vars g2vars = null;
- String varName="NONE";
- // Wrap decoding in a try block, in case of exception on xml.
- try {
- // Read in the stationNumber table XML if not exists
- if (grib2varsTbl == null) {
- readG2varsTable();
- }
-
- // Search station ID and return whole station record
- if (grib2varsTbl != null) {
- g2vars = grib2varsTbl.getGrib2Vars(discipline, category, pid,
- pdt);
- }
-
- if (g2vars != null) {
- // g2Varsid = g2vars.g2Varsid;
- varName = g2vars.gnam;
- }
- } catch (Exception e) {
- // TODO: Use central error logging if this code is kept
- throw new GribException(
- "Error occurs while finding g2vars entry from g2vars.xml table");
- }
-
- return varName;
- }
-
- public static String getVarGnam4Grib1( int discipline, int category, int pid) throws GribException {
- Grib2Vars g2vars = null;
- String varName="NONE";
- // Wrap decoding in a try block, in case of exception on xml.
- try {
- // Read in the stationNumber table XML if not exists
- if (grib2varsTbl == null) {
- readG2varsTable();
- }
-
- // Search station ID and return whole station record
- if (grib2varsTbl != null) {
- g2vars = grib2varsTbl.getGrib2Vars4Grib1(discipline, category, pid );
- }
-
- if (g2vars != null) {
- // g2Varsid = g2vars.g2Varsid;
- varName = g2vars.gnam;
- }
- } catch (Exception e) {
- // TODO: Use central error logging if this code is kept
- throw new GribException(
- "Error occurs while finding g2vars entry from g2vars.xml table");
- }
-
- return varName;
- }
-
- public static String getUnits() {
- return units;
- }
-
- public static void setUnits(String units) {
- Grib2VarsTableLookup.units = units;
- }
-
- public static Integer getScale() {
- return scale;
- }
-
- public static void setScale(Integer scale) {
- Grib2VarsTableLookup.scale = scale;
- }
-
- public static String getGnam() {
- return gnam;
- }
-
- public static void setGnam(String gnam) {
- Grib2VarsTableLookup.gnam = gnam;
- }
-
- public static float getMissing() {
- return missing;
- }
-
- public static void setMissing(float missing) {
- Grib2VarsTableLookup.missing = missing;
- }
-
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/IGrib2VarsField.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/IGrib2VarsField.java
deleted file mode 100644
index 54803378a7..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/IGrib2VarsField.java
+++ /dev/null
@@ -1,18 +0,0 @@
-package gov.noaa.nws.ncep.edex.util.grib2vars;
-
-public interface IGrib2VarsField {
-
- public static enum Grib2VarsField {
- G2VARSID, // g2vars id
- DISCIPLINE, // The discipline
- CATEGORY, // The category
- PID, // The parameter id
- PDT, // The product definition template
- NAME, // description of this g2vars
- UNITS, // units
- GNAM, // gnam
- SCALE, // scale
- MISSING // The missing value
- }
-
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/ObjectFactory.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/ObjectFactory.java
deleted file mode 100644
index 4b50882e64..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vars/ObjectFactory.java
+++ /dev/null
@@ -1,158 +0,0 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2011.01.07 at 02:01:31 PM EST
-//
-
-
-package gov.noaa.nws.ncep.edex.util.grib2vars;
-
-import javax.xml.bind.JAXBElement;
-import javax.xml.bind.annotation.XmlElementDecl;
-import javax.xml.bind.annotation.XmlRegistry;
-import javax.xml.namespace.QName;
-
-
-/**
- * This object contains factory methods for each
- * Java content interface and Java element interface
- * generated in the generated package.
- * An ObjectFactory allows you to programatically
- * construct new instances of the Java representation
- * for XML content. The Java representation of XML
- * content can consist of schema derived interfaces
- * and classes representing the binding of schema
- * type definitions, element declarations and model
- * groups. Factory methods for each of these are
- * provided in this class.
- *
- */
-@XmlRegistry
-public class ObjectFactory {
-
- private final static QName _Missing_QNAME = new QName("", "missing");
- private final static QName _Scale_QNAME = new QName("", "scale");
- private final static QName _Category_QNAME = new QName("", "category");
- private final static QName _Gnam_QNAME = new QName("", "gnam");
- private final static QName _G2Varsid_QNAME = new QName("", "g2varsid");
- private final static QName _Name_QNAME = new QName("", "name");
- private final static QName _Pdt_QNAME = new QName("", "pdt");
- private final static QName _Pid_QNAME = new QName("", "pid");
- private final static QName _Discipline_QNAME = new QName("", "discipline");
- private final static QName _Units_QNAME = new QName("", "units");
-
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: generated
- *
- */
- public ObjectFactory() {
- }
-
- /**
- * Create an instance of {@link Grib2Vars }
- *
- */
- public Grib2Vars createGrib2Vars() {
- return new Grib2Vars();
- }
-
- /**
- * Create an instance of {@link Grib2VarsList }
- *
- */
- public Grib2VarsList createGrib2VarsList() {
- return new Grib2VarsList();
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Float }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "missing")
- public JAXBElement createMissing(Float value) {
- return new JAXBElement(_Missing_QNAME, Float.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "scale")
- public JAXBElement createScale(Integer value) {
- return new JAXBElement(_Scale_QNAME, Integer.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "category")
- public JAXBElement createCategory(Integer value) {
- return new JAXBElement(_Category_QNAME, Integer.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "gnam")
- public JAXBElement createGnam(String value) {
- return new JAXBElement(_Gnam_QNAME, String.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "g2varsid")
- public JAXBElement createG2Varsid(Integer value) {
- return new JAXBElement(_G2Varsid_QNAME, Integer.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "name")
- public JAXBElement createName(String value) {
- return new JAXBElement(_Name_QNAME, String.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "pdt")
- public JAXBElement createPdt(Integer value) {
- return new JAXBElement(_Pdt_QNAME, Integer.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "pid")
- public JAXBElement createPid(Integer value) {
- return new JAXBElement(_Pid_QNAME, Integer.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "discipline")
- public JAXBElement createDiscipline(Integer value) {
- return new JAXBElement(_Discipline_QNAME, Integer.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "units")
- public JAXBElement createUnits(String value) {
- return new JAXBElement(_Units_QNAME, String.class, null, value);
- }
-
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/Grib2Vcrd.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/Grib2Vcrd.java
deleted file mode 100644
index 75e87945ca..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/Grib2Vcrd.java
+++ /dev/null
@@ -1,245 +0,0 @@
-/**
- * This file was generated by the JavaTM Architecture for XML Binding(JAXB)
- * Reference Implementation, vJAXB 2.1.10 in JDK 6
- * See http://java.sun.com/xml/jaxb
- * any modifications to this file will be lost upon recompilation of the source schema
- * Generated on: 2010.09.10 at 11:48:39 AM EDT
- *
- * SOFTWARE HISTORY
- *
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * 10/2010 276 L. Lin Initial creation
- *
- *
- *
- * This code has been developed by the SIB for use in the AWIPS2 system.
- * @author L. Lin
- * @version 1.0
- */
-
-package gov.noaa.nws.ncep.edex.util.grib2vcrd;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * Java class for anonymous complex type.
- *
- *
The following schema fragment specifies the expected content contained within this class.
- *
- *
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element ref="{}g2vcrdid" minOccurs="0"/>
- * <element ref="{}vcrdid1" minOccurs="0"/>
- * <element ref="{}vcrdid2" minOccurs="0"/>
- * <element ref="{}name" minOccurs="0"/>
- * <element ref="{}units" minOccurs="0"/>
- * <element ref="{}gnam" minOccurs="0"/>
- * <element ref="{}scale" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "g2Vcrdid",
- "vcrdid1",
- "vcrdid2",
- "name",
- "units",
- "gnam",
- "scale"
-})
-@XmlRootElement(name = "grib2vcrd")
-public class Grib2Vcrd {
-
- @XmlElement(name = "g2vcrdid")
- protected Integer g2Vcrdid;
- protected Integer vcrdid1;
- protected Integer vcrdid2;
- protected String name;
- protected String units;
- protected String gnam;
- protected String scale;
-
- /**
- * Gets the value of the g2Vcrdid property.
- *
- * @return
- * possible object is
- * {@link Integer }
- *
- */
- public Integer getG2Vcrdid() {
- return g2Vcrdid;
- }
-
- /**
- * Sets the value of the g2Vcrdid property.
- *
- * @param value
- * allowed object is
- * {@link Integer }
- *
- */
- public void setG2Vcrdid(Integer value) {
- this.g2Vcrdid = value;
- }
-
- /**
- * Gets the value of the vcrdid1 property.
- *
- * @return
- * possible object is
- * {@link Integer }
- *
- */
- public Integer getVcrdid1() {
- return vcrdid1;
- }
-
- /**
- * Sets the value of the vcrdid1 property.
- *
- * @param value
- * allowed object is
- * {@link Integer }
- *
- */
- public void setVcrdid1(Integer value) {
- this.vcrdid1 = value;
- }
-
- /**
- * Gets the value of the vcrdid2 property.
- *
- * @return
- * possible object is
- * {@link Integer }
- *
- */
- public Integer getVcrdid2() {
- return vcrdid2;
- }
-
- /**
- * Sets the value of the vcrdid2 property.
- *
- * @param value
- * allowed object is
- * {@link Integer }
- *
- */
- public void setVcrdid2(Integer value) {
- this.vcrdid2 = value;
- }
-
- /**
- * Gets the value of the name property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getName() {
- return name;
- }
-
- /**
- * Sets the value of the name property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setName(String value) {
- this.name = value;
- }
-
- /**
- * Gets the value of the units property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getUnits() {
- return units;
- }
-
- /**
- * Sets the value of the units property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setUnits(String value) {
- this.units = value;
- }
-
- /**
- * Gets the value of the gnam property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getGnam() {
- return gnam;
- }
-
- /**
- * Sets the value of the gnam property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setGnam(String value) {
- this.gnam = value;
- }
-
- /**
- * Gets the value of the scale property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getScale() {
- return scale;
- }
-
- /**
- * Sets the value of the scale property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setScale(String value) {
- this.scale = value;
- }
-
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/Grib2VcrdComparator.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/Grib2VcrdComparator.java
deleted file mode 100644
index e541ee6b73..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/Grib2VcrdComparator.java
+++ /dev/null
@@ -1,50 +0,0 @@
-package gov.noaa.nws.ncep.edex.util.grib2vcrd;
-
-import java.util.Comparator;
-
-/**
- * Comparator for Grib2Vcrd fields.
- *
- *
- * SOFTWARE HISTORY
- *
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * 10/10 276 L. Lin Initial Creation
- *
- *
- *
- * @author llin
- * @version 1
- */
-
-public class Grib2VcrdComparator implements Comparator, IGrib2VcrdField {
-
- private Grib2VcrdField field;
-
- public Grib2VcrdComparator(Grib2VcrdField f) {
- this.field = f;
- }
-
- public int compare(Grib2Vcrd o1, Grib2Vcrd o2) {
- switch (field) {
- case G2VCRDID:
- return o1.getG2Vcrdid() - o2.getG2Vcrdid();
- case VCRDID1:
- return o1.getVcrdid1() - o2.getVcrdid1();
- case VCRDID2:
- return o1.getVcrdid2() - o2.getVcrdid2();
- case NAME:
- return o1.getName().compareToIgnoreCase(o2.getName());
- case UNITS:
- return o1.getUnits().compareToIgnoreCase(o2.getUnits());
- case GNAM:
- return o1.getGnam().compareToIgnoreCase(o2.getGnam());
- case SCALE:
- return o1.getScale().compareToIgnoreCase(o2.getScale());
- default:
- return 0;
- }
-
- }
-}
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/Grib2VcrdList.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/Grib2VcrdList.java
deleted file mode 100644
index 9ae66dd42f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/Grib2VcrdList.java
+++ /dev/null
@@ -1,90 +0,0 @@
-/**
- * This file was generated by the JavaTM Architecture for XML Binding(JAXB)
- * Reference Implementation, vJAXB 2.1.10 in JDK 6
- * See http://java.sun.com/xml/jaxb
- * any modifications to this file will be lost upon recompilation of the source schema
- * Generated on: 2010.09.10 at 11:48:39 AM EDT
- *
- * SOFTWARE HISTORY
- *
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * 10/2010 276 L. Lin Initial creation
- *
- *
- *
- * This code has been developed by the SIB for use in the AWIPS2 system.
- * @author L. Lin
- * @version 1.0
- */
-
-package gov.noaa.nws.ncep.edex.util.grib2vcrd;
-
-import java.util.ArrayList;
-import java.util.List;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-
-/**
- * Java class for anonymous complex type.
- *
- *
The following schema fragment specifies the expected content contained within this class.
- *
- *
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element ref="{}grib2vcrd" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "grib2Vcrd"
-})
-@XmlRootElement(name = "grib2vcrdList")
-public class Grib2VcrdList {
-
- @XmlElement(name = "grib2vcrd")
- protected List grib2Vcrd;
-
- /**
- * Gets the value of the grib2Vcrd property.
- *
- *
- * This accessor method returns a reference to the live list,
- * not a snapshot. Therefore any modification you make to the
- * returned list will be present inside the JAXB object.
- * This is why there is not a set
method for the grib2Vcrd property.
- *
- *
- * For example, to add a new item, do as follows:
- *
- * getGrib2Vcrd().add(newItem);
- *
- *
- *
- *
- * Objects of the following type(s) are allowed in the list
- * {@link Grib2Vcrd }
- *
- *
- */
- public List getGrib2Vcrd() {
- if (grib2Vcrd == null) {
- grib2Vcrd = new ArrayList();
- }
- return this.grib2Vcrd;
- }
-
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/Grib2VcrdTable.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/Grib2VcrdTable.java
deleted file mode 100644
index eebe6743ab..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/Grib2VcrdTable.java
+++ /dev/null
@@ -1,189 +0,0 @@
-package gov.noaa.nws.ncep.edex.util.grib2vcrd;
-
-import java.io.File;
-import java.io.FileNotFoundException;
-import java.io.FileReader;
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.List;
-
-import javax.xml.bind.JAXBContext;
-import javax.xml.bind.JAXBException;
-import javax.xml.bind.Unmarshaller;
-
-/**
- * This class reads a g2Vcrd table from an xml file and contains a list of g2Vcrds.
- * This class also provide general g2Vcrd search functions given g2Vcrd field, and
- * field value.
- *
- *
- *
- * SOFTWARE HISTORY
- *
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * 10/10 276 L. Lin Initial Creation
- * 07/11 X. Guo Added getGrib2VcrdByVcrd1()
- *
- *
- *
- * @author llin
- * @version 1
- */
-
-public class Grib2VcrdTable implements IGrib2VcrdField {
-
- private final String PACKAGE = "gov.noaa.nws.ncep.edex.util.grib2vcrd";
-
- private List g2VcrdList;
-
- private static Grib2VcrdField last = null;
-
- /**
- * Constructor.
- * @param tableFileName - full path of the xml table file
- */
- public Grib2VcrdTable( String tableFileName ) {
-
- try{
- g2VcrdList = readGrib2VcrdTable( tableFileName );
- }
- catch ( JAXBException exp ){
- g2VcrdList = null;
- exp.printStackTrace();
- }
-
- }
-
- /**
- * Reads the contents of the input g2Vcrd table file
- * @param xmlFilename - full path of the xml table name
- * @return - a list of g2Vcrds
- * @throws JAXBException
- */
- private List readGrib2VcrdTable( String xmlFilename ) throws JAXBException{
-
- File xmlFile = new File(xmlFilename);
-
- JAXBContext context = JAXBContext.newInstance(
- PACKAGE);
- Unmarshaller unmarshaller = context.createUnmarshaller();
- Grib2VcrdList g2Vcrdlist = null;
-
- try {
- g2Vcrdlist = (Grib2VcrdList)unmarshaller.unmarshal(
- new FileReader(xmlFile));
- List listOfItems = g2Vcrdlist.getGrib2Vcrd();
- return listOfItems;
-
- } catch (FileNotFoundException e1) {
- e1.printStackTrace();
-
- } catch (NullPointerException e2) {
- e2.printStackTrace();
- }
-
- return null;
-
- }
-
- /**
- * Gets the list of the g2Vcrds
- * @return - the list of g2Vcrds
- */
- public List getGrib2VcrdList(){
-
- return g2VcrdList;
-
- }
-
- /**
- * Search a g2Vcrd given a field, and search key value.
- *
- * @param sf
- * @param key
- * @return Grib2Vcrd
- */
- public Grib2Vcrd getGrib2Vcrd(int vcrdid1, int vcrdid2) {
-
- if (g2VcrdList == null || g2VcrdList.isEmpty()) return null;
-
- for (Grib2Vcrd g2Vcrd : g2VcrdList) {
- if (g2Vcrd.vcrdid1 == vcrdid1 &&
- g2Vcrd.vcrdid2 == vcrdid2 ) {
- return g2Vcrd;
- }
- }
- return null;
- }
-
- /**
- * Search a g2Vcrd given a field, and search key value.
- *
- * @param sf
- * @param key
- * @return Grib2Vcrd
- */
- public Grib2Vcrd getGrib2VcrdByVcrd1 (int vcrdid1 ) {
-
- if (g2VcrdList == null || g2VcrdList.isEmpty()) return null;
-
- for (Grib2Vcrd g2Vcrd : g2VcrdList) {
- if (g2Vcrd.vcrdid1 == vcrdid1 ) {
- return g2Vcrd;
- }
- }
- return null;
- }
-
- /**
- * Search g2Vcrd list given a field, and search key value.
- *
- * @param sf
- * @param key
- * @return Grib2Vcrd
- */
- public List getGrib2Vcrds(Grib2VcrdField sf, Integer key) {
- if (g2VcrdList == null || g2VcrdList.isEmpty()) return null;
-
- Grib2VcrdComparator comparator = new Grib2VcrdComparator(sf);
- if (last == null || (last != null && last != sf )) {
- Collections.sort(g2VcrdList, comparator);
- last = sf;
- }
-
- List list = new ArrayList();
-
- Grib2Vcrd s = getComparedGrib2Vcrd(sf, key);
- int index;
- while ((index = Collections.binarySearch(g2VcrdList, s, comparator)) >= 0) {
- list.add(g2VcrdList.get(index));
- g2VcrdList.remove(index);
- }
-
- if (list.size() > 0) {
- for (Grib2Vcrd st : list) {
- g2VcrdList.add(st);
- }
-
- last = null;
- return list;
- }
- else {
- return null;
- }
- }
-
-
- private Grib2Vcrd getComparedGrib2Vcrd(Grib2VcrdField sf, Integer key){
- Grib2Vcrd g2Vcrd = new Grib2Vcrd();
- switch (sf) {
- case G2VCRDID:
- g2Vcrd.setG2Vcrdid((Integer)key);
- break;
- }
-
- return g2Vcrd;
- }
-
-}
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/Grib2VcrdTableLookup.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/Grib2VcrdTableLookup.java
deleted file mode 100644
index d7993d15c9..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/Grib2VcrdTableLookup.java
+++ /dev/null
@@ -1,260 +0,0 @@
-/**
- * Grib2vcrdTableLookup - A Java class to define some known
- * both g2vcrdncep1.tbl and g2vcrdwmo2.tbl.
- *
- * SOFTWARE HISTORY
- *
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * 10/2010 276 L. Lin Initial creation
- * 06/2011 X. Guo Added getGnamByVcrdId(()
- * getScaleByVcrdId()
- * 07/2011 X. Guo Added getGrib2VcrdByGrib1VcrdId()
- *
- *
- *
- * This code has been developed by the SIB for use in the AWIPS2 system.
- * @author L. Lin
- * @version 1.0
- */
-package gov.noaa.nws.ncep.edex.util.grib2vcrd;
-
-import java.io.File;
-
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.exception.GribException;
-
-import com.raytheon.uf.common.localization.IPathManager;
-import com.raytheon.uf.common.localization.LocalizationContext;
-import com.raytheon.uf.common.localization.PathManagerFactory;
-import com.raytheon.uf.edex.core.props.PropertiesFactory;
-
-public class Grib2VcrdTableLookup {
-
- private static Grib2VcrdTable grib2vcrdTbl=null;
- private static String name;
- private static String units;
- private static String scale;
- private static String gnam;
-
- public static synchronized String readG2vcrdTable () throws GribException{
-
- Grib2VcrdTable myTbl = null;
-
- /*
- * Gets all predefined found in the utility directory
- */
- IPathManager pathMgr = PathManagerFactory.getPathManager();
- LocalizationContext commonStaticBase = pathMgr.getContext(
- LocalizationContext.LocalizationType.COMMON_STATIC,
- LocalizationContext.LocalizationLevel.BASE);
-
- LocalizationContext commonStaticSite = pathMgr.getContext(
- LocalizationContext.LocalizationType.COMMON_STATIC,
- LocalizationContext.LocalizationLevel.SITE);
-
- String path = "";
- String sitePath = "";
-
- try {
- path = pathMgr.getFile(
- commonStaticBase,
- "ncgrid" + File.separator + "grib2vcrd.xml")
- .getCanonicalPath();
-
- //System.out.println (" grib2 vcrd table lookup path=" + path);
-
- sitePath = pathMgr.getFile(
- commonStaticSite,
- PropertiesFactory.getInstance().getEnvProperties()
- .getEnvValue("SITENAME")
- + File.separator
- + "ncgrid"
- + File.separator
- + "g2vcrd.xml").getCanonicalPath();
- //System.out.println (" grib2 vcrd table lookup sitepath=" + sitePath);
- } catch (Exception e) {
- throw new GribException("Unable to unmarshal ncep grib2vcrd.xml file");
- }
-
- File modelFile = new File(path);
- try {
- if (modelFile.exists()) {
- myTbl = new Grib2VcrdTable(path);
- setG2vcrdTable(myTbl);
- //System.out.println("Grib2varsTableLookup- read grib2vars.xml file=" + path);
- }
- } catch (Exception e) {
- throw new GribException("Unable to read ncep grib2vcrd file");
- }
- return path;
- }
-
- /**
- * Given discipline, category, pid, and pdt, find g2vcrd entry in "grib2vcrd.xml"
- * and set g2vcrdid, name, units, scale, gnam, and missing fields.
- * .
- *
- * @param discipline, category, pid and pdt are integers.
- * @return
- * @throws GribException
- *
- */
- public static int getG2vcrdId(int vcrdid1, int vcrdid2) throws GribException {
- Grib2Vcrd g2vcrd=null;
- int g2vcrdid = -1;
- // Wrap decoding in a try block, in case of exception on xml.
- try {
-
-
- // Read in the stationNumber table XML if not exists
- if (grib2vcrdTbl == null) {
- readG2vcrdTable();
- }
- // Search station ID and return whole station record
- if (grib2vcrdTbl != null) {
- g2vcrd = grib2vcrdTbl.getGrib2Vcrd(vcrdid1, vcrdid2);
- }
-
- if ( g2vcrd != null) {
- g2vcrdid = g2vcrd.g2Vcrdid;
- name = g2vcrd.name;
- units = g2vcrd.units;
- gnam = g2vcrd.gnam;
- scale = g2vcrd.scale;
- }
- }
- catch (Exception e) {
- //TODO: Use central error logging if this code is kept
- throw new GribException("Error occurs while finding g2vcrd entry from g2vcrd.xml table");
- }
-
- return g2vcrdid;
- }
-
- /**
- * @return the grib2vcrdTbl
- */
- public static Grib2VcrdTable getG2vcrdTable() {
- return grib2vcrdTbl;
- }
-
- /**
- * @param Grib2VcrdTable
- * the grib2vcrdTbl to set
- */
- public static void setG2vcrdTable(Grib2VcrdTable grib2vcrdTbl) {
- Grib2VcrdTableLookup.grib2vcrdTbl = grib2vcrdTbl;
- }
-
- public static String getName() {
- return name;
- }
-
- public static void setName(String name) {
- Grib2VcrdTableLookup.name = name;
- }
-
- public static String getGnamByVcrdId ( int vcrdid1, int vcrdid2) throws GribException {
- Grib2Vcrd g2vcrd=null;
- String gvrdName = "NONE";
- // Wrap decoding in a try block, in case of exception on xml.
- try {
-
-
- // Read in the stationNumber table XML if not exists
- if (grib2vcrdTbl == null) {
- readG2vcrdTable();
- }
- // Search station ID and return whole station record
- if (grib2vcrdTbl != null) {
- g2vcrd = grib2vcrdTbl.getGrib2Vcrd(vcrdid1, vcrdid2);
- }
-
- if ( g2vcrd != null) {
- gvrdName = g2vcrd.gnam;
- scale = g2vcrd.scale;
- }
- }
- catch (Exception e) {
- //TODO: Use central error logging if this code is kept
- throw new GribException("Error occurs while finding g2vcrd entry from g2vcrd.xml table");
- }
-
- return gvrdName;
- }
-
- public static Grib2Vcrd getGrib2VcrdByGrib1VcrdId ( int vcrdid ) throws GribException {
- Grib2Vcrd g2vcrd=null;
- // Wrap decoding in a try block, in case of exception on xml.
- try {
-
-
- // Read in the stationNumber table XML if not exists
- if (grib2vcrdTbl == null) {
- readG2vcrdTable();
- }
- // Search station ID and return whole station record
- if (grib2vcrdTbl != null) {
- g2vcrd = grib2vcrdTbl.getGrib2VcrdByVcrd1(vcrdid);
- }
- }
- catch (Exception e) {
- //TODO: Use central error logging if this code is kept
- throw new GribException("Error occurs while finding g2vcrd entry from g2vcrd.xml table");
- }
-
- return g2vcrd;
- }
-
- public static String getScaleByVcrdId ( int vcrdid1, int vcrdid2) throws GribException {
- Grib2Vcrd g2vcrd=null;
- // Wrap decoding in a try block, in case of exception on xml.
- try {
-
-
- // Read in the stationNumber table XML if not exists
- if (grib2vcrdTbl == null) {
- readG2vcrdTable();
- }
- // Search station ID and return whole station record
- if (grib2vcrdTbl != null) {
- g2vcrd = grib2vcrdTbl.getGrib2Vcrd(vcrdid1, vcrdid2);
- }
-
- if ( g2vcrd != null) {
- scale = g2vcrd.scale;
- }
- }
- catch (Exception e) {
- //TODO: Use central error logging if this code is kept
- throw new GribException("Error occurs while finding g2vcrd entry from g2vcrd.xml table");
- }
-
- return scale;
- }
-
- public static String getUnits() {
- return units;
- }
-
- public static void setUnits(String units) {
- Grib2VcrdTableLookup.units = units;
- }
-
- public static String getScale() {
- return scale;
- }
-
- public static void setScale(String scale) {
- Grib2VcrdTableLookup.scale = scale;
- }
-
- public static String getGnam() {
- return gnam;
- }
-
- public static void setGnam(String gnam) {
- Grib2VcrdTableLookup.gnam = gnam;
- }
-
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/IGrib2VcrdField.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/IGrib2VcrdField.java
deleted file mode 100644
index 26fcb158bf..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/IGrib2VcrdField.java
+++ /dev/null
@@ -1,15 +0,0 @@
-package gov.noaa.nws.ncep.edex.util.grib2vcrd;
-
-public interface IGrib2VcrdField {
-
- public static enum Grib2VcrdField {
- G2VCRDID, // g2vars id
- VCRDID1, // The vertical coordination 1
- VCRDID2, // The vertical coordination 2
- NAME, // description of this g2vars
- UNITS, // units
- GNAM, // gnam
- SCALE, // scale
- }
-
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/ObjectFactory.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/ObjectFactory.java
deleted file mode 100644
index b376ef26cc..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/grib2vcrd/ObjectFactory.java
+++ /dev/null
@@ -1,128 +0,0 @@
-//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
-// See http://java.sun.com/xml/jaxb
-// Any modifications to this file will be lost upon recompilation of the source schema.
-// Generated on: 2010.09.23 at 11:15:31 AM EDT
-//
-
-
-package gov.noaa.nws.ncep.edex.util.grib2vcrd;
-
-import javax.xml.bind.JAXBElement;
-import javax.xml.bind.annotation.XmlElementDecl;
-import javax.xml.bind.annotation.XmlRegistry;
-import javax.xml.namespace.QName;
-
-
-/**
- * This object contains factory methods for each
- * Java content interface and Java element interface
- * generated in the generated package.
- * An ObjectFactory allows you to programatically
- * construct new instances of the Java representation
- * for XML content. The Java representation of XML
- * content can consist of schema derived interfaces
- * and classes representing the binding of schema
- * type definitions, element declarations and model
- * groups. Factory methods for each of these are
- * provided in this class.
- *
- */
-@XmlRegistry
-public class ObjectFactory {
-
- private final static QName _Scale_QNAME = new QName("", "scale");
- private final static QName _Gnam_QNAME = new QName("", "gnam");
- private final static QName _Vcrdid1_QNAME = new QName("", "vcrdid1");
- private final static QName _Name_QNAME = new QName("", "name");
- private final static QName _Vcrdid2_QNAME = new QName("", "vcrdid2");
- private final static QName _Units_QNAME = new QName("", "units");
- private final static QName _G2Vcrdid_QNAME = new QName("", "g2vcrdid");
-
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: generated
- *
- */
- public ObjectFactory() {
- }
-
- /**
- * Create an instance of {@link Grib2Vcrd }
- *
- */
- public Grib2Vcrd createGrib2Vcrd() {
- return new Grib2Vcrd();
- }
-
- /**
- * Create an instance of {@link Grib2VcrdList }
- *
- */
- public Grib2VcrdList createGrib2VcrdList() {
- return new Grib2VcrdList();
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "scale")
- public JAXBElement createScale(String value) {
- return new JAXBElement(_Scale_QNAME, String.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "gnam")
- public JAXBElement createGnam(String value) {
- return new JAXBElement(_Gnam_QNAME, String.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "vcrdid1")
- public JAXBElement createVcrdid1(Integer value) {
- return new JAXBElement(_Vcrdid1_QNAME, Integer.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "name")
- public JAXBElement createName(String value) {
- return new JAXBElement(_Name_QNAME, String.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "vcrdid2")
- public JAXBElement createVcrdid2(Integer value) {
- return new JAXBElement(_Vcrdid2_QNAME, Integer.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "units")
- public JAXBElement createUnits(String value) {
- return new JAXBElement(_Units_QNAME, String.class, null, value);
- }
-
- /**
- * Create an instance of {@link JAXBElement }{@code <}{@link Integer }{@code >}}
- *
- */
- @XmlElementDecl(namespace = "", name = "g2vcrdid")
- public JAXBElement createG2Vcrdid(Integer value) {
- return new JAXBElement(_G2Vcrdid_QNAME, Integer.class, null, value);
- }
-
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcGribPropertiesFactory.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcGribPropertiesFactory.java
deleted file mode 100644
index 605da8ed0b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcGribPropertiesFactory.java
+++ /dev/null
@@ -1,124 +0,0 @@
-/*****************************************************************************************
- * COPYRIGHT (c), 2006, RAYTHEON COMPANY
- * ALL RIGHTS RESERVED, An Unpublished Work
- *
- * RAYTHEON PROPRIETARY
- * If the end user is not the U.S. Government or any agency thereof, use
- * or disclosure of data contained in this source code file is subject to
- * the proprietary restrictions set forth in the Master Rights File.
- *
- * U.S. GOVERNMENT PURPOSE RIGHTS NOTICE
- * If the end user is the U.S. Government or any agency thereof, this source
- * code is provided to the U.S. Government with Government Purpose Rights.
- * Use or disclosure of data contained in this source code file is subject to
- * the "Government Purpose Rights" restriction in the Master Rights File.
- *
- * U.S. EXPORT CONTROLLED TECHNICAL DATA
- * Use or disclosure of data contained in this source code file is subject to
- * the export restrictions set forth in the Master Rights File.
- ******************************************************************************************/
-
-package gov.noaa.nws.ncep.edex.util.ncgrib;
-
-import org.apache.commons.configuration.ConfigurationException;
-import org.apache.commons.configuration.XMLConfiguration;
-
-import com.raytheon.edex.exception.DecoderException;
-import com.raytheon.uf.edex.core.props.PropertiesFactory;
-
-/**
- * Factory class for retrieving level names and parameter names based on
- * information extracted from a grib file.
- *
- *
- * SOFTWARE HISTORY
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * 9/26/07 381 bphillip initial check in
- *
- *
- *
- */
-public class NcGribPropertiesFactory {
-
- private XMLConfiguration lookup;
-
- /** The instance */
- private static NcGribPropertiesFactory instance;
-
- private int undefinedCounter = 0;
-
- /**
- * Gets the singleton instance of GribPropertiesFactory
- *
- * @return The singleton instance of GribPropertiesFactory
- */
- public synchronized static NcGribPropertiesFactory getInstance() {
- if (instance == null) {
- instance = new NcGribPropertiesFactory();
- }
- return instance;
- }
-
- /**
- * Constructs a new GribPropertiesFactory
- */
- public NcGribPropertiesFactory() {
- String resDir = PropertiesFactory.getInstance().getEnvProperties()
- .getEnvValue("RESFOLDER");
- lookup = new XMLConfiguration();
- try {
- lookup.load(resDir + "/tablelookup.xml");
- } catch (ConfigurationException e) {
- e.printStackTrace();
- }
-
- }
-
- /**
- * Retrieves the appropriate grib1 parameter table
- * Refer to the parameter tables located in the res/parameters directory of
- * this plugin
- *
- * @param center
- * The orignating center
- * @param subCenter
- * The originating sub-center
- * @param tableVersion
- * The table version
- * @return The parameter configuration
- * @throws Exception
- * If a parameter table does not exist for this
- * center/sub-center/tableversion combination
- */
- public String getConfig(int center, int subCenter, int tableVersion)
- throws DecoderException {
-
- // Attempt to retrieve the correct table
- String tableName = lookup.getString("center_" + String.valueOf(center)
- + ".subcenter_" + String.valueOf(subCenter) + ".version_"
- + String.valueOf(tableVersion));
-
- // No table was found. Look for a default table to use with this
- // center/subcenter.
- if (tableName == null) {
- tableName = lookup.getString("center_" + String.valueOf(center)
- + ".subcenter_-1.version_" + String.valueOf(tableVersion));
- }
-
- // If no default table is defined, decoding cannot continue
- if (tableName == null) {
- throw new DecoderException(
- "Parameter table does not exist for Center: " + center
- + " Sub-Center: " + subCenter + " Version: "
- + tableVersion);
- }
-
- return tableName;
- }
-
- public int getUndefinedCounter() {
- return undefinedCounter++;
- }
-
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NccompositeModel.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NccompositeModel.java
deleted file mode 100644
index 78d158d9be..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NccompositeModel.java
+++ /dev/null
@@ -1,131 +0,0 @@
-/**
- * This software was developed and / or modified by Raytheon Company,
- * pursuant to Contract DG133W-05-CQ-1067 with the US Government.
- *
- * U.S. EXPORT CONTROLLED TECHNICAL DATA
- * This software product contains export-restricted data whose
- * export/transfer/disclosure is restricted by U.S. law. Dissemination
- * to non-U.S. persons whether in the United States or abroad requires
- * an export license or other authorization.
- *
- * Contractor Name: Raytheon Company
- * Contractor Address: 6825 Pine Street, Suite 340
- * Mail Stop B8
- * Omaha, NE 68106
- * 402.291.0100
- *
- * See the AWIPS II Master Rights File ("Master Rights File.pdf") for
- * further licensing information.
- **/
-
-package gov.noaa.nws.ncep.edex.util.ncgrib;
-
-import java.util.ArrayList;
-import java.util.List;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-
-import com.raytheon.uf.common.serialization.ISerializableObject;
-
-/**
- * Container class defining composite models.
- *
- *
- *
- * SOFTWARE HISTORY
- *
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * 4/09/10 4638 bphillip Initial Creation
- *
- *
- *
- * @author bphillip
- * @version 1
- */
-@XmlRootElement(name = "nccompositeModel")
-@XmlAccessorType(XmlAccessType.NONE)
-public class NccompositeModel implements ISerializableObject {
-
- /** The composite model name */
- @XmlElement
- private String modelName;
-
- /** The grid name for this composite model */
- @XmlElement
- private String grid;
-
- /** The component models that contribute to this composite model */
- @XmlElement
- private String componentModels;
-
- /**
- * Creates a new CompositeModel object
- */
- public NccompositeModel() {
-
- }
-
- /**
- * @return the modelName
- */
- public String getModelName() {
- return modelName;
- }
-
- /**
- * @param modelName
- * the modelName to set
- */
- public void setModelName(String modelName) {
- this.modelName = modelName;
- }
-
- /**
- * @return the componentModels
- */
- public String getComponentModels() {
- return componentModels;
- }
-
- /**
- * Gets the component models as a list
- *
- * @return The list of component models
- */
- public List getModelList() {
- String[] mods = componentModels.split(":");
- List modelList = new ArrayList();
- for (String mod : mods) {
- modelList.add(mod);
- }
- return modelList;
- }
-
- /**
- * @param componentModels
- * the componentModels to set
- */
- public void setComponentModels(String componentModels) {
- this.componentModels = componentModels;
- }
-
- /**
- * @return the grid
- */
- public String getGrid() {
- return grid;
- }
-
- /**
- * @param grid
- * the grid to set
- */
- public void setGrid(String grid) {
- this.grid = grid;
- }
-
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/Ncgrib1TableMap.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/Ncgrib1TableMap.java
deleted file mode 100644
index 0d3830bb26..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/Ncgrib1TableMap.java
+++ /dev/null
@@ -1,138 +0,0 @@
-/**
- * This software was developed and / or modified by Raytheon Company,
- * pursuant to Contract DG133W-05-CQ-1067 with the US Government.
- *
- * U.S. EXPORT CONTROLLED TECHNICAL DATA
- * This software product contains export-restricted data whose
- * export/transfer/disclosure is restricted by U.S. law. Dissemination
- * to non-U.S. persons whether in the United States or abroad requires
- * an export license or other authorization.
- *
- * Contractor Name: Raytheon Company
- * Contractor Address: 6825 Pine Street, Suite 340
- * Mail Stop B8
- * Omaha, NE 68106
- * 402.291.0100
- *
- * See the AWIPS II Master Rights File ("Master Rights File.pdf") for
- * further licensing information.
- **/
-
-package gov.noaa.nws.ncep.edex.util.ncgrib;
-
-import java.io.File;
-import java.util.HashMap;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlRootElement;
-
-import com.raytheon.uf.common.localization.IPathManager;
-import com.raytheon.uf.common.localization.LocalizationContext;
-import com.raytheon.uf.common.localization.PathManagerFactory;
-import com.raytheon.uf.common.serialization.ISerializableObject;
-import com.raytheon.uf.common.serialization.SerializationUtil;
-
-/**
- * Contains a map grib 1 table aliases
- *
- *
- * SOFTWARE HISTORY
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * 3/19/10 #4634 bphillip Initial creation
- *
- *
- *
- * @author njensen
- * @version 1.0
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlRootElement(name = "ncgribTableMap")
-public class Ncgrib1TableMap implements ISerializableObject {
- private HashMap map = new HashMap();
-
- private static Ncgrib1TableMap instance;
-
- public static synchronized Ncgrib1TableMap getInstance() {
- if (instance == null) {
- initInstance();
- }
- return instance;
- }
-
- private Ncgrib1TableMap() {
- }
-
- private static void initInstance() {
- IPathManager pathMgr = PathManagerFactory.getPathManager();
- LocalizationContext commonStaticBase = pathMgr.getContext(
- LocalizationContext.LocalizationType.COMMON_STATIC,
- LocalizationContext.LocalizationLevel.BASE);
-
- String path = "";
- try {
- path = pathMgr.getFile(commonStaticBase,
- "ncgrid" + File.separator + "ncgrib1ParamTableMap.xml")
- .getCanonicalPath();
- System.out.println(" ncgrib1 table map path=" + path);
-
- File tableFile = new File(path);
-
- if (tableFile.exists()) {
- instance = (Ncgrib1TableMap) SerializationUtil
- .jaxbUnmarshalFromXmlFile(tableFile.getPath());
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
-
- public int[] getTableAlias(int center, int subcenter, int tableVersion) {
- int[] retVal = new int[3];
-
- // Checks the map using center subcenter and table version
- String mappedVal = map.get(String.valueOf(center) + " "
- + String.valueOf(subcenter) + " "
- + String.valueOf(tableVersion));
-
- // If not found, check using any subcenter
- if (mappedVal == null) {
- mappedVal = map.get(String.valueOf(center) + " -1 "
- + String.valueOf(tableVersion));
- }
-
- // Get the default table if possible
- if (mappedVal == null) {
- mappedVal = map.get(String.valueOf(center) + " -1 -1");
- }
-
- // Table alias not found
- if (mappedVal == null) {
- retVal[0] = center;
- retVal[1] = subcenter;
- retVal[2] = tableVersion;
- } else {
- String[] tokens = mappedVal.split(" ");
- retVal[0] = Integer.parseInt(tokens[0]);
- retVal[1] = Integer.parseInt(tokens[1]);
- retVal[2] = Integer.parseInt(tokens[2]);
- }
- return retVal;
- }
-
- /**
- * @return the map
- */
- public HashMap getMap() {
- return map;
- }
-
- /**
- * @param map
- * the map to set
- */
- public void setMap(HashMap map) {
- this.map = map;
- }
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgribModelLookup.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgribModelLookup.java
deleted file mode 100644
index 6c8dd51966..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgribModelLookup.java
+++ /dev/null
@@ -1,287 +0,0 @@
-/**
- * This software was developed and / or modified by Raytheon Company,
- * pursuant to Contract DG133W-05-CQ-1067 with the US Government.
- *
- * U.S. EXPORT CONTROLLED TECHNICAL DATA
- * This software product contains export-restricted data whose
- * export/transfer/disclosure is restricted by U.S. law. Dissemination
- * to non-U.S. persons whether in the United States or abroad requires
- * an export license or other authorization.
- *
- * Contractor Name: Raytheon Company
- * Contractor Address: 6825 Pine Street, Suite 340
- * Mail Stop B8
- * Omaha, NE 68106
- * 402.291.0100
- *
- * See the AWIPS II Master Rights File ("Master Rights File.pdf") for
- * further licensing information.
- **/
-package gov.noaa.nws.ncep.edex.util.ncgrib;
-
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.NcgribModel;
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.exception.GribException;
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.util.NcgridModel;
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.util.NcgridModelSet;
-
-import java.io.File;
-import java.io.IOException;
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import java.util.regex.Pattern;
-
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-
-import com.raytheon.uf.common.localization.IPathManager;
-import com.raytheon.uf.common.localization.LocalizationContext;
-import com.raytheon.uf.common.localization.PathManagerFactory;
-import com.raytheon.uf.common.serialization.SerializationUtil;
-
-/**
- * Load the ncgrib model xml file.
- *
- *
- * SOFTWARE HISTORY
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * 3/12/10 4758 bphillip Initial creation
- * 10/13/10 276 llin Modified for NC GRIB.
- * 11/02/11 xguo Updated gridid
- * 3/2012 T. Lee Get ensemble modelName via template
- *
- *
- * @author njensen
- * @version 1.0
- */
-
-public class NcgribModelLookup {
-
- /** The logger */
- protected transient Log logger = LogFactory.getLog(getClass());
-
- /** The singleton instance of NcgribModelLookup **/
- private static NcgribModelLookup instance;
-
- /**
- * A map of the models. The key is a hash of the center, grid, and process
- * id
- */
- private Map models;
-
- /** A map of the models. The key is the title of the model */
- private Map modelsByName;
-
- public static synchronized NcgribModelLookup getInstance() {
- if (instance == null) {
- instance = new NcgribModelLookup();
- }
- return instance;
- }
-
- /**
- * If file has been modified, then reload it again
- *
- * @return
- * @return
- */
- public static void ReloadInstance() {
- instance = null;
- }
-
- private NcgribModelLookup() {
- models = new HashMap();
- modelsByName = new HashMap();
- try {
- initModelList();
- } catch (GribException e) {
- logger.error("Unable to initialize ncep model list!", e);
- }
- }
-
- public NcgridModel getModel(int center, int subcenter, String grid,
- int process, String filename, NcgribModel nbm) {
- NcgridModel model = new NcgridModel ();
- model = models.get(toHash(center, subcenter, grid, process));
- if ( model == null ) {
- return model;
- }
- String template = model.getTemplate();
-
- //System.out.println ( " Center: "+ center + " subCenter: "+ subcenter + " gridID: " + grid
- // + " modelID: "+ process + " modelName: " + model.getName() );
-
- if ( !template.equals("NONE")) {
- /*
- * Using Template to get ModelName
- */
- String[] tokens = template.replaceAll("\\s","").split(";");
-
- // CMC ensemble
- if ( Pattern.matches("cmc.*", filename)){
- //System.out.println ( " CMC ensemble " + "!!!\n");
- for ( String token : tokens ) {
- String[] alias = token.split("\\|");
- if ( Pattern.matches(alias[0], filename) ) {
- model.setName(alias[1]);
- break;
- }
- }
-
- // SREF ensemble
- } else if ( Pattern.matches("sref.*", filename)) {
- for ( String token : tokens ) {
- String[] alias = token.split("\\|");
- if ( Pattern.matches(alias[0], filename)) {
- model.setName(alias[1]);
-
- // perturbation number
- String[] pert = filename.split("\\.");
- if ( pert[3].startsWith("p") || pert[3].startsWith("n")) {
- nbm.setPerturbationNumber(pert[3]);
- }
- break;
- }
- }
-
- // NAEFS ensemble
- } else if ( Pattern.matches("naefs.*", filename)) {
- for ( String token : tokens ) {
- String[] alias = token.split("\\|");
- if ( Pattern.matches(alias[0], filename)) {
- model.setName(alias[1]);
- break;
- }
- }
-
- // GEFS ensemble
- } else if ( Pattern.matches("ge.*", filename)) {
- for ( String token : tokens ) {
- String[] alias = token.split("\\|");
- if ( Pattern.matches(alias[0], filename)) {
- model.setName(alias[1]);
- break;
- }
- }
-
- // GWW derived data
- } else if ( Pattern.matches("mean.*", filename) ||
- Pattern.matches("probab.*", filename) ||
- Pattern.matches("spread.*", filename)) {
- for ( String token : tokens ) {
- String[] alias = token.split("\\|");
- if ( Pattern.matches(alias[0], filename)) {
- model.setName(alias[1]);
- break;
- }
- }
- }
-
- }
- return model;
- }
-
- public synchronized void setModel(int center, int subcenter, String grid,
- int process, String modelName) {
- NcgridModel model = new NcgridModel();
- model.setCenter(center);
- model.setName(modelName);
- model.setSubCenter(Integer.toString(subcenter));
- model.setGrid(grid);
- ArrayList processList = new ArrayList();
- processList.add(process);
- model.setProcess(processList);
- // System.out.println (" NcgribModel lookup add a new , model=" +
- // modelName);
- modelsByName.put(modelName, model);
- models.put(toHash(center, subcenter, grid, process), model);
- }
-
- public NcgridModel getModel(int center, int subcenter, int gridid,
- int process, String filename, NcgribModel model) {
- return getModel(center, subcenter, String.valueOf(gridid), process, filename, model);
- }
-
- public NcgridModel getModelByName(String name) {
- return modelsByName.get(name);
- }
-
- public Map getModelByNameMap() {
- return modelsByName;
- }
-
- private void initModelList() throws GribException {
-
- IPathManager pathMgr = PathManagerFactory.getPathManager();
- LocalizationContext commonStaticBase = pathMgr.getContext(
- LocalizationContext.LocalizationType.COMMON_STATIC,
- LocalizationContext.LocalizationLevel.BASE);
-
- LocalizationContext commonStaticSite = pathMgr.getContext(
- LocalizationContext.LocalizationType.COMMON_STATIC,
- LocalizationContext.LocalizationLevel.SITE);
-
- String path = "";
- String sitePath = "";
- try {
- path = pathMgr.getFile(commonStaticBase,
- "ncgrid" + File.separator + "ncgribModels.xml")
- .getCanonicalPath();
- // System.out.println("ncgribModels path=" + path);
- sitePath = pathMgr.getFile(commonStaticSite,
- "ncgrid" + File.separator + "ncgribModels.xml")
- .getCanonicalPath();
- } catch (IOException e) {
- logger.error("Error getting ncep grib model definitions", e);
- }
- File modelFile = new File(path);
- File siteModelFile = new File(sitePath);
- NcgridModelSet modelSet = null;
- try {
- if (modelFile.exists()) {
- modelSet = (NcgridModelSet) SerializationUtil
- .jaxbUnmarshalFromXmlFile(modelFile.getPath());
- } else {
- ArrayList emptyList = new ArrayList();
- modelSet = new NcgridModelSet();
- modelSet.setModels(emptyList);
- }
-
- // Add any models defined by the site
- if (siteModelFile.exists()) {
- List siteModels = ((NcgridModelSet) SerializationUtil
- .jaxbUnmarshalFromXmlFile(siteModelFile.getPath()))
- .getModels();
- modelSet.addModels(siteModels);
- }
- } catch (Exception e) {
- throw new GribException("Unable to unmarshal ncep grib models file");
- }
-
- for (NcgridModel model : modelSet.getModels()) {
- modelsByName.put(model.getName(), model);
- Integer center = model.getCenter();
- Integer subCenter = Integer.parseInt(model.getSubCenter());
- String grid = String.valueOf(model.getGrid());
- for (int process : model.getProcess()) {
- models.put(toHash(center, subCenter, grid, process), model);
- }
- }
- System.out
- .println("ncgribMolels.xml has been loaded successfully ....");
- }
-
- private int toHash(Integer center, Integer subcenter, String grid,
- Integer process) {
- final int PRIME = 31;
- int result = 1;
- result = PRIME * result + ((center == null) ? 0 : center.hashCode());
- result = PRIME * result
- + ((subcenter == null) ? 0 : subcenter.hashCode());
- result = PRIME * result + ((grid == null) ? 0 : grid.hashCode());
- result = PRIME * result + ((process == null) ? 0 : process.hashCode());
- return result;
- }
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgribParamTranslator.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgribParamTranslator.java
deleted file mode 100644
index cd6db6b4ed..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgribParamTranslator.java
+++ /dev/null
@@ -1,328 +0,0 @@
-/**
- * This software was developed and / or modified by Raytheon Company,
- * pursuant to Contract DG133W-05-CQ-1067 with the US Government.
- *
- * U.S. EXPORT CONTROLLED TECHNICAL DATA
- * This software product contains export-restricted data whose
- * export/transfer/disclosure is restricted by U.S. law. Dissemination
- * to non-U.S. persons whether in the United States or abroad requires
- * an export license or other authorization.
- *
- * Contractor Name: Raytheon Company
- * Contractor Address: 6825 Pine Street, Suite 340
- * Mail Stop B8
- * Omaha, NE 68106
- * 402.291.0100
- *
- * See the AWIPS II Master Rights File ("Master Rights File.pdf") for
- * further licensing information.
- **/
-
-package gov.noaa.nws.ncep.edex.util.ncgrib;
-
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.NcgribModel;
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.exception.GribException;
-
-import java.io.BufferedReader;
-import java.io.File;
-import java.io.FileReader;
-import java.io.IOException;
-import java.util.HashMap;
-import java.util.Map;
-
-import com.raytheon.uf.common.localization.IPathManager;
-import com.raytheon.uf.common.localization.LocalizationContext;
-import com.raytheon.uf.common.localization.PathManagerFactory;
-import com.raytheon.uf.common.time.DataTime;
-
-/**
- * Performs the optional translation of the grib parameter names
- *
- *
- *
- * SOFTWARE HISTORY
- *
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * 4/15/10 4553 bphillip Initial Creation
- *
- *
- *
- * @author bphillip
- * @version 1
- */
-public class NcgribParamTranslator {
-
- /** The singleton instance */
- private static NcgribParamTranslator instance;
-
- /** The map of parameter translations for grib 1 parameters */
- private Map ncgrib1Map;
-
- /** The map of parameter translations for grib 2 parameters */
- private Map ncgrib2Map;
-
- /**
- * Gets the singleton instance
- *
- * @return The singleton instance
- */
- public static synchronized NcgribParamTranslator getInstance() {
- if (instance == null) {
- instance = new NcgribParamTranslator();
- }
- return instance;
- }
-
- /**
- * Creates the singleton instance
- */
- private NcgribParamTranslator() {
- try {
- initNcgrib1Lookup();
- } catch (GribException e) {
- e.printStackTrace();
- }
-
- try {
- initNcgrib2Lookup();
- } catch (GribException e) {
- e.printStackTrace();
- }
- }
-
- /**
- * Translates a grib parameter if necessary
- *
- * @param gribVersion
- * The version of the grib. Necessary so the correct table is
- * used for translations
- * @param model
- * The grib model object from the record
- * @param dataTime
- * The datatime of the grib data
- * @return The translated grib parameter
- */
- public String translateParameter(int gribVersion, NcgribModel model,
- DataTime dataTime) {
-
- String parName = model.getParameterAbbreviation();
- String pcs = parName + "_" + getGenProcess(model);
- String centerName = getCenterName(model);
- String subcenterName = getSubcenterName(model);
- if (centerName != null && !centerName.equals("NONE")) {
- pcs += "-" + centerName;
- }
-
- if (subcenterName != null && !subcenterName.equals("NONE")) {
- pcs += "-" + subcenterName;
- }
-
- String dimstr = "_" + model.getLocation().getNx() + "x"
- + model.getLocation().getNy();
-
- long duration = dataTime.getValidPeriod().getDuration() / 1000;
-
- String durPert = "_" + String.valueOf(duration) + "-"
- + dataTime.getFcstTime() % 60;
- String fcststr = "_" + dataTime.getMatchFcst();
-
- String trnStr = getMap(gribVersion).get(
- pcs + dimstr + durPert + fcststr);
- if (trnStr == null) {
- trnStr = getMap(gribVersion).get(pcs + dimstr + durPert);
- }
-
- if (trnStr == null) {
- trnStr = getMap(gribVersion).get(pcs + durPert);
- }
-
- if (trnStr == null) {
- trnStr = getMap(gribVersion).get(parName + durPert);
- }
-
- if (trnStr == null) {
- trnStr = getMap(gribVersion).get(pcs);
- }
-
- if (trnStr == null) {
- trnStr = getMap(gribVersion).get(parName);
- }
-
- return trnStr;
- }
-
- /**
- * Gets the correct parameter map based on the grib version
- *
- * @param version
- * The grib version
- * @return The parameter translation map for the specified grib version
- */
- private Map getMap(int version) {
- if (version == 1) {
- return ncgrib1Map;
- } else {
- return ncgrib2Map;
- }
- }
-
- /**
- * Gets the name of the center for the parameter contained in the provided
- * grib model object
- *
- * @param model
- * The grib model object
- * @return The center name
- */
- private String getCenterName(NcgribModel model) {
- int center = model.getCenterid();
- int subcenter = model.getSubcenterid();
- return (String) NcgribTableLookup.getInstance().getTableValue(center,
- subcenter, "0", center);
- }
-
- /**
- * Gets the name of the sub-center for the parameter contained in the
- * provided grib model object
- *
- * @param model
- * The grib model object
- * @return The sub-center name
- */
- private String getSubcenterName(NcgribModel model) {
- int center = model.getCenterid();
- int subcenter = model.getSubcenterid();
-
- return (String) NcgribTableLookup.getInstance().getTableValue(center,
- subcenter, "C-center" + center, subcenter);
- }
-
- /**
- * Gets the name of the generating process contained in the provided grib
- * model object
- *
- * @param model
- * The grib model object
- * @return The generating process name
- */
- private String getGenProcess(NcgribModel model) {
- int center = model.getCenterid();
- int subcenter = model.getSubcenterid();
-
- return (String) NcgribTableLookup.getInstance().getTableValue(center,
- subcenter, "A-center" + center, model.getGenprocess());
- }
-
- /**
- * Initializes the grib 2 parameter translation map
- *
- * @throws GribException
- * If errors occur
- */
- private void initNcgrib2Lookup() throws GribException {
- ncgrib2Map = new HashMap();
- IPathManager pathMgr = PathManagerFactory.getPathManager();
- LocalizationContext commonStaticBase = pathMgr.getContext(
- LocalizationContext.LocalizationType.COMMON_STATIC,
- LocalizationContext.LocalizationLevel.BASE);
-
- String path = "";
- try {
- path = pathMgr.getFile(commonStaticBase,
- "ncgrid" + File.separator + "master_ncgrib2_lookup.txt")
- .getCanonicalPath();
-
- } catch (IOException e) {
- throw new GribException("Error getting ncgrib model definitions", e);
- }
-
- BufferedReader in = null;
- String[] tokens = null;
- try {
- in = new BufferedReader(new FileReader(path));
- String str;
-
- /*
- * Reading in the file
- */
- while ((str = in.readLine()) != null) {
- str = str.trim();
- if (str.isEmpty() || str.startsWith("//")) {
- continue;
- }
-
- tokens = str.split(" ");
- if (tokens.length < 2) {
- continue;
- }
- ncgrib2Map.put(tokens[0], tokens[tokens.length - 1]);
- }
- } catch (IOException e) {
- e.printStackTrace();
- }
-
- try {
- in.close();
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
-
- /**
- * Initializes the grib 1 parameter translation map
- *
- * @throws GribException
- * If errors occur
- */
- private void initNcgrib1Lookup() throws GribException {
- ncgrib1Map = new HashMap();
- IPathManager pathMgr = PathManagerFactory.getPathManager();
- LocalizationContext commonStaticBase = pathMgr.getContext(
- LocalizationContext.LocalizationType.COMMON_STATIC,
- LocalizationContext.LocalizationLevel.BASE);
-
- String path = "";
- try {
- path = pathMgr.getFile(commonStaticBase,
- "ncgrid" + File.separator + "master_ncgrib1_lookup.txt")
- .getCanonicalPath();
-
- } catch (IOException e) {
- throw new GribException("Error getting ncgrib model definitions", e);
- }
-
- BufferedReader in = null;
- String[] tokens = null;
- try {
- in = new BufferedReader(new FileReader(path));
- String str;
-
- /*
- * Reading in the file
- */
- while ((str = in.readLine()) != null) {
- str = str.trim();
- if (str.isEmpty() || str.startsWith("//")) {
- continue;
- }
-
- tokens = str.split(" ");
- if (tokens.length < 2) {
- continue;
- }
- ncgrib1Map.put(tokens[0], tokens[tokens.length - 1]);
- }
- } catch (IOException e) {
- e.printStackTrace();
- }
-
- try {
- in.close();
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgribTable.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgribTable.java
deleted file mode 100644
index 2bc7c9d2f9..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgribTable.java
+++ /dev/null
@@ -1,141 +0,0 @@
-/*****************************************************************************************
- * COPYRIGHT (c), 2009, RAYTHEON COMPANY
- * ALL RIGHTS RESERVED, An Unpublished Work
- *
- * RAYTHEON PROPRIETARY
- * If the end user is not the U.S. Government or any agency thereof, use
- * or disclosure of data contained in this source code file is subject to
- * the proprietary restrictions set forth in the Master Rights File.
- *
- * U.S. GOVERNMENT PURPOSE RIGHTS NOTICE
- * If the end user is the U.S. Government or any agency thereof, this source
- * code is provided to the U.S. Government with Government Purpose Rights.
- * Use or disclosure of data contained in this source code file is subject to
- * the "Government Purpose Rights" restriction in the Master Rights File.
- *
- * U.S. EXPORT CONTROLLED TECHNICAL DATA
- * Use or disclosure of data contained in this source code file is subject to
- * the export restrictions set forth in the Master Rights File.
- ******************************************************************************************/
-
-package gov.noaa.nws.ncep.edex.util.ncgrib;
-
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * Class encapsulating data about a grib table
- *
- *
- *
- * SOFTWARE HISTORY
- *
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * 4/7/09 1994 bphillip Initial Creation
- *
- *
- *
- * @author bphillip
- * @version 1
- */
-public class NcgribTable {
-
- /** The center defining the table */
- private int centerId;
-
- /** The subcenter defining the table */
- private int subcenterId;
-
- /** The table number represented */
- private String tableNumber;
-
- /** The values of the table */
- private Map values;
-
- /**
- * Creates a new GribTable
- *
- * @param centerId
- * The center defining the table
- * @param tableNumber
- * The table number
- */
- public NcgribTable(int centerId, int subcenterId, String tableNumber) {
- this.centerId = centerId;
- this.subcenterId = subcenterId;
- this.tableNumber = tableNumber;
- values = new HashMap();
- }
-
- /**
- * Gets an object from the table
- *
- * @param key
- * The key into the table
- * @return The value from the table, null if not present
- */
- public Object get(int key) {
- return values.get(key);
- }
-
- /**
- * Adds an entry to the table
- *
- * @param key
- * The key to the table
- * @param value
- * The value in the table
- */
- public void addEntry(int key, Object value) {
- values.put(key, value);
- }
-
- /**
- * Checks if a key exists in the table
- *
- * @param key
- * The key to check for
- * @return True if key is present, else false
- */
- public boolean contains(int key) {
- return values.containsKey(key);
- }
-
- /**
- * Gets the defining center
- *
- * @return The defining center
- */
- public int getCenterId() {
- return centerId;
- }
-
- /**
- * Gets the table number
- *
- * @return The table number
- */
- public String getTableNumber() {
- return tableNumber;
- }
-
- /**
- * Gets the table
- *
- * @return The table
- */
- public Map getValues() {
- return values;
- }
-
- /**
- * Gets the subcenter id
- *
- * @return The subcenter id
- */
- public int getSubcenterId() {
- return subcenterId;
- }
-
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgribTableLookup.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgribTableLookup.java
deleted file mode 100644
index a4196eee10..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgribTableLookup.java
+++ /dev/null
@@ -1,433 +0,0 @@
-/**
- * This software was developed and / or modified by Raytheon Company,
- * pursuant to Contract DG133W-05-CQ-1067 with the US Government.
- *
- * U.S. EXPORT CONTROLLED TECHNICAL DATA
- * This software product contains export-restricted data whose
- * export/transfer/disclosure is restricted by U.S. law. Dissemination
- * to non-U.S. persons whether in the United States or abroad requires
- * an export license or other authorization.
- *
- * Contractor Name: Raytheon Company
- * Contractor Address: 6825 Pine Street, Suite 340
- * Mail Stop B8
- * Omaha, NE 68106
- * 402.291.0100
- *
- * See the AWIPS II Master Rights File ("Master Rights File.pdf") for
- * further licensing information.
- **/
-
-package gov.noaa.nws.ncep.edex.util.ncgrib;
-
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.NcGenProcess;
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.Ncgrib1Parameter;
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.NcgribLevel;
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.NcgribParameter;
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.exception.GribException;
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.util.Ncgrib1ParameterLookup;
-
-import java.io.BufferedReader;
-import java.io.File;
-import java.io.FileReader;
-import java.io.FilenameFilter;
-import java.io.IOException;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-
-import com.raytheon.uf.common.dataplugin.level.LevelFactory;
-import com.raytheon.uf.common.dataplugin.level.MasterLevel;
-import com.raytheon.uf.common.localization.IPathManager;
-import com.raytheon.uf.common.localization.LocalizationContext.LocalizationLevel;
-import com.raytheon.uf.common.localization.LocalizationContext.LocalizationType;
-import com.raytheon.uf.common.localization.PathManagerFactory;
-import com.raytheon.uf.common.util.FileUtil;
-import com.raytheon.uf.common.util.file.FilenameFilters;
-import com.raytheon.uf.edex.database.dao.CoreDao;
-import com.raytheon.uf.edex.database.dao.DaoConfig;
-
-/**
- * Class used to access and manage data from any defined tables.
- *
- *
- *
- * SOFTWARE HISTORY
- *
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * 4/7/09 1994 bphillip Initial Creation
- *
- *
- *
- * @author bphillip
- * @version 1
- */
-public class NcgribTableLookup {
-
- /** The logger */
- protected transient Log logger = LogFactory.getLog(getClass());
-
- /** No center number */
- private static final int NO_CENTER = -1;
-
- private static final int NO_SUBCENTER = -1;
-
- /** The map of defined tables */
- private final Map> tableMap;
-
- /** The singleton instance */
- private static NcgribTableLookup instance;
-
- /**
- * Gets the singleton instance of NcgribTableLookup
- *
- * @return The singleton instance of NcgribTableLookup
- */
- public static synchronized NcgribTableLookup getInstance() {
- if (instance == null) {
- Ncgrib1ParameterLookup.getInstance();
- instance = new NcgribTableLookup();
- }
- return instance;
- }
-
- /**
- * Creates a new NcgribTableLookup object
- */
- private NcgribTableLookup() {
- tableMap = new HashMap>();
- initTables();
- }
-
- /**
- * Gets the equivalent grib 2 parameter from the information extracted from
- * a grib 1 record
- *
- * @param centerid
- * The center ID
- * @param subcenterid
- * The subcenter ID
- * @param grib1TableVersion
- * The grib1 parameter table version
- * @param grib1Value
- * The grib1 parameter table value
- * @return The grib 2 parameter
- */
- public NcgribParameter getNcgrib2Parameter(int centerid, int subcenterid,
- int grib1TableVersion, int grib1Value) {
-// System.out.println("centerid=" + centerid + " grib1TableVersion=" + grib1TableVersion + " grib1Value" + grib1Value);
- Ncgrib1Parameter grib1Param = Ncgrib1ParameterLookup.getInstance()
- .getParameter(centerid, grib1TableVersion, grib1Value);
- if (grib1Param != null) {
- String tableName = "4.2." + grib1Param.getGrib2discipline() + "."
- + grib1Param.getGrib2category();
-// System.out.println(" ncgrib table =" + tableName);
-
- return (NcgribParameter) getTableValue(centerid, subcenterid,
- tableName, grib1Param.getGrib2Value());
- }
- return null;
- }
-
- /**
- * Gets a NcgribTable from the cache
- *
- * @param centerid
- * The center id defining the table
- * @param tableName
- * The table name
- * @return The NcgribTable if present, else null
- */
- public NcgribTable getTable(int centerid, int subcenterid, String tableName) {
- if (!tableMap.containsKey(getTableMapKey(centerid, subcenterid))) {
- return null;
- }
- return tableMap.get(getTableMapKey(centerid, subcenterid)).get(
- tableName);
- }
-
- /**
- * Gets a value from a Ncgrib Table.
- * This method first checks any tables defined by a specific center. If not
- * found there, the common tables (i.e.tables not defined by a specific
- * center) are checked. If the value is still not found null is returned
- *
- * @param centerid
- * The center id defining the table
- * @param tableName
- * The table name
- * @param value
- * The key to look for
- * @return The value associated with the key in the specified table. Null if
- * not found
- */
- public Object getTableValue(int centerid, int subcenterid,
- String tableName, int value) {
-
- NcgribTable table = getTable(centerid, subcenterid, tableName);
- if (table == null) {
- return getCommonValue(tableName, value);
- } else {
- if (table.contains(value)) {
- return table.get(value);
- } else {
- return getCommonValue(tableName, value);
- }
- }
- }
-
- /**
- * Gets a value from a non center-specific table
- *
- * @param tableName
- * The name of the table
- * @param value
- * The key to look for
- * @return The value in the table associated with the provided key. Null if
- * not present
- */
- public Object getCommonValue(String tableName, int value) {
- NcgribTable table = getTable(NO_CENTER, NO_SUBCENTER, tableName);
- if (table == null) {
- return null;
- } else {
- return table.get(value);
- }
- }
-
- /**
- * Initializes predefined tables. The predefined tables are stored as flat
- * files in the utility directy to be access by the localization service
- *
- * The localization service reads in all files and populates the cached
- * tables accordingly
- */
- private void initTables() {
-
- /*
- * Gets all predefined found in the utility directory
- */
- IPathManager pm = PathManagerFactory.getPathManager();
- String commonPath = pm.getFile(
- pm.getContext(LocalizationType.EDEX_STATIC,
- LocalizationLevel.BASE), "/ncgrib/tables").getPath();
- //System.out.println(" ncgrib commonPath=" + commonPath);
-
- String sitePath = pm.getFile(
- pm.getContext(LocalizationType.EDEX_STATIC,
- LocalizationLevel.SITE), "/ncgrib/tables").getPath();
- //System.out.println(" ncgrib sitePath=" + sitePath);
-
- initTablesFromPath(commonPath);
- initTablesFromPath(sitePath);
-
- }
-
- private void initTablesFromPath(String commonPath) {
- FilenameFilter filter = new FilenameFilter() {
- @Override
- public boolean accept(File dir, String name) {
- return new File(dir.getPath() + File.separator + name)
- .isDirectory();
- }
- };
-
- FilenameFilter tableFilter = FilenameFilters.byFileExtension(".table");
-
- List files = FileUtil.listFiles(new File(commonPath),
- filter, false);
- for (File f : files) {
- int center = 0;
- try {
- center = Integer.parseInt(f.getPath().substring(
- f.getPath().lastIndexOf("/") + 1));
-
- List files2 = FileUtil.listFiles(new File(commonPath
- + File.separator + String.valueOf(center)), filter,
- true);
-
- int subcenter = 0;
- for (File f2 : files2) {
- if (!f2.getPath().contains(".svn")) {
- subcenter = Integer.parseInt(f2.getPath().substring(
- f2.getPath().lastIndexOf("/") + 1));
- List tableFiles = FileUtil.listFiles(f2,
- tableFilter, false);
- String tableName = null;
- for (File table : tableFiles) {
- tableName = table.getName().replace(".table", "")
- .trim();
- //System.out.println("tableName=" + tableName);
- try {
- createTable(table, center, subcenter, tableName);
- } catch (GribException e) {
- logger.error("Unable to create ncep table: "
- + tableName + " for Center: " + center
- + " Subcenter: " + subcenter);
- continue;
- }
- }
-
- }
- }
- } catch (NumberFormatException e) {
- continue;
- }
- }
- }
-
- /**
- * Creates and stores a NcgribTable from a flat file
- *
- * @param file
- * The flat file to read from
- * @return The NcgribTable generated from the flat file
- * @throws NcgribException
- * If problems occur reading the file or creating the NcgribTable
- */
- private NcgribTable createTable(File file, int center, int subcenter,
- String tableName) throws GribException {
- CoreDao dao = new CoreDao(DaoConfig.DEFAULT);
-
- NcgribTable table = new NcgribTable(center, subcenter, tableName);
- BufferedReader in = null;
- String[] tokens = null;
- try {
- in = new BufferedReader(new FileReader(file));
- String str;
-
- /*
- * Reading in the file
- */
- while ((str = in.readLine()) != null) {
- str = str.trim();
- if (str.isEmpty() || str.startsWith("#")) {
- continue;
- }
-
- tokens = str.split(":");
-
- /*
- * Special handling of parameter tables
- */
- if (tableName.startsWith("4.2.")) {
- String name = null, abbreviation = null, d2dAbbrev = null, unit = null;
- if (tokens.length > 2) {
- name = tokens[2].trim();
- if (tokens.length > 3) {
- unit = tokens[3].trim();
- if (tokens.length > 4) {
- abbreviation = tokens[4].trim();
- if (tokens.length > 5) {
- d2dAbbrev = tokens[5].trim();
- }
- }
- }
- }
- String[] tableTokens = tableName.split("\\.");
-
- NcgribParameter param = null;
- int number = Integer.parseInt(tokens[0]);
- param = new NcgribParameter(center, subcenter, Integer
- .parseInt(tableTokens[2]), Integer
- .parseInt(tableTokens[3]), number, name,
- abbreviation, unit, d2dAbbrev);
-
- table.addEntry(Integer.valueOf(tokens[0]), param);
- dao.persist(param);
-
- }
- /*
- * Special handling of surface table
- */
- else if (tableName.startsWith("4.5")) {
- int number = Integer.parseInt(tokens[0]);
- String name = null, unit = null, abbreviation = null, d2dAbbrev = null;
- name = tokens[2].trim();
- if (tokens.length > 3) {
- unit = tokens[3].trim();
- if (tokens.length > 4) {
- abbreviation = tokens[4].trim();
- if (tokens.length > 5) {
- d2dAbbrev = tokens[5].trim();
- }
- }
- }
- NcgribLevel surface = null;
- surface = new NcgribLevel(center, subcenter, number, name,
- unit, abbreviation, d2dAbbrev);
-
- // check to make sure we have a level defined for this
- // surface, if its not mapped this will insert a bare bones
- // level
- if (abbreviation != null && abbreviation.length() > 0) {
- MasterLevel level = new MasterLevel(abbreviation);
- level.setDescription(name);
- level.setUnitString(unit);
- LevelFactory.getInstance().checkMasterLevel(level);
- }
-
- table.addEntry(number, surface);
- dao.persist(surface);
- }
- /*
- * Special handling of generating process table
- */
- else if (tableName.equals("A")) {
- int number = Integer.parseInt(tokens[0]);
- String description = tokens[2];
- String name = null;
- if (tokens.length == 4) {
- name = tokens[3];
- }
- ///System.out.println(" table A: number=" + number + " name=" + name + " description=" + description);
-
- NcGenProcess process = new NcGenProcess(center, subcenter,
- number, name, description);
- //System.out.println(" table A: before add it to table");
-
- table.addEntry(Integer.valueOf(tokens[0]), process);
- //System.out.println(" table A: before dao persist");
-
- dao.persist(process);
- } else {
- table.addEntry(Integer.valueOf(tokens[0]), tokens[2]);
- }
-
- }
- } catch (Exception e) {
- throw new GribException(
- "Unable to load table information from file: " + file, e);
- } finally {
- if (in != null) {
- try {
- in.close();
- } catch (IOException e) {
- logger.error("Unable to close file: " + file, e);
- }
- }
- }
-
- // Insert the new table into the map if necessary
- insertTable(center, subcenter, tableName, table);
- return table;
- }
-
- private void insertTable(int centerid, int subcenterid, String tableName,
- NcgribTable table) {
- if (!tableMap.containsKey(getTableMapKey(centerid, subcenterid))) {
- tableMap.put(getTableMapKey(centerid, subcenterid),
- new HashMap());
- }
- tableMap.get(getTableMapKey(centerid, subcenterid)).put(tableName,
- table);
- }
-
- private int getTableMapKey(int centerid, int subcenterid) {
- return centerid * 10000 + subcenterid;
- }
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgridLevels.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgridLevels.java
deleted file mode 100644
index 3181d9dd15..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgridLevels.java
+++ /dev/null
@@ -1,76 +0,0 @@
-/*****************************************************************************************
- * COPYRIGHT (c), 2006-2008, RAYTHEON COMPANY
- * ALL RIGHTS RESERVED, An Unpublished Work
- *
- * RAYTHEON PROPRIETARY
- * If the end user is not the U.S. Government or any agency thereof, use
- * or disclosure of data contained in this source code file is subject to
- * the proprietary restrictions set forth in the Master Rights File.
- *
- * U.S. GOVERNMENT PURPOSE RIGHTS NOTICE
- * If the end user is the U.S. Government or any agency thereof, this source
- * code is provided to the U.S. Government with Government Purpose Rights.
- * Use or disclosure of data contained in this source code file is subject to
- * the "Government Purpose Rights" restriction in the Master Rights File.
- *
- * U.S. EXPORT CONTROLLED TECHNICAL DATA
- * Use or disclosure of data contained in this source code file is subject to
- * the export restrictions set forth in the Master Rights File.
- ******************************************************************************************/
-package gov.noaa.nws.ncep.edex.util.ncgrib;
-
-import java.util.HashMap;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlRootElement;
-
-import com.raytheon.uf.common.serialization.ISerializableObject;
-
-/**
- * Contains a map of short level names to their full name in the database.
- *
- *
- * SOFTWARE HISTORY
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * May 5, 2008 njensen Initial creation
- * Aug 22, 2008 1502 dglazesk JAXB Annotations added
- *
- *
- *
- * @author njensen
- * @version 1.0
- */
-/**
- * @XmlAccessType intentionally left off so that the default JAXB marshallers
- * and unmarshallers can properly deal with the XML.
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlRootElement(name = "nclevels")
-public class NcgridLevels implements ISerializableObject {
-
- private HashMap map = new HashMap();
-
- /**
- * Constructor for JAXB.
- */
- public NcgridLevels() {
- }
-
- /**
- * @return the map
- */
- public HashMap getMap() {
- return map;
- }
-
- /**
- * @param map
- * the map to set
- */
- public void setMap(HashMap map) {
- this.map = map;
- }
-
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgridTranslator.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgridTranslator.java
deleted file mode 100644
index d1516a53a7..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/NcgridTranslator.java
+++ /dev/null
@@ -1,192 +0,0 @@
-/**
- * This software was developed and / or modified by Raytheon Company,
- * pursuant to Contract DG133W-05-CQ-1067 with the US Government.
- *
- * U.S. EXPORT CONTROLLED TECHNICAL DATA
- * This software product contains export-restricted data whose
- * export/transfer/disclosure is restricted by U.S. law. Dissemination
- * to non-U.S. persons whether in the United States or abroad requires
- * an export license or other authorization.
- *
- * Contractor Name: Raytheon Company
- * Contractor Address: 6825 Pine Street, Suite 340
- * Mail Stop B8
- * Omaha, NE 68106
- * 402.291.0100
- *
- * See the AWIPS II Master Rights File ("Master Rights File.pdf") for
- * further licensing information.
- **/
-package gov.noaa.nws.ncep.edex.util.ncgrib;
-
-import java.io.File;
-import java.io.IOException;
-import java.util.HashMap;
-import java.util.Iterator;
-
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-
-import com.raytheon.uf.common.dataplugin.level.Level;
-import com.raytheon.uf.common.dataplugin.level.LevelFactory;
-import com.raytheon.uf.common.localization.IPathManager;
-import com.raytheon.uf.common.localization.LocalizationContext;
-import com.raytheon.uf.common.localization.PathManagerFactory;
-import com.raytheon.uf.common.serialization.SerializationException;
-import com.raytheon.uf.common.serialization.SerializationUtil;
-
-/**
- * Singleton that assists with grid data
- *
- *
- * SOFTWARE HISTORY
- * Date Ticket# Engineer Description
- * ------------ ---------- ----------- --------------------------
- * May 5, 2008 njensen Initial creation
- * Aug 22, 2008 1502 dglazesk Changed to JAXB unmarshalling
- *
- *
- *
- * @author njensen
- * @version 1.0
- */
-
-public class NcgridTranslator {
-
- private static NcgridTranslator instance;
-
- private HashMap levelsMap = new HashMap();
-
- private HashMap reverseLevelsMap = new HashMap();
-
- private static Log logger = LogFactory.getLog(NcgridTranslator.class);
-
- private NcgridTranslator() {
- getNcLevels();
- }
-
- public static synchronized NcgridTranslator getInstance() {
- if (instance == null) {
- instance = new NcgridTranslator();
- }
-
- return instance;
- }
-
- public String getLevelName(String shorthand) {
- return shorthand.replaceAll("[0-9]*", "");
- }
-
- // public String getLevelOneValue(String shorthand) {
- // return getLevelValue(shorthand, 1);
- // }
- //
- // public String getLevelTwoValue(String shorthand) {
- // return getLevelValue(shorthand, 2);
- // }
-
- public double[] getLevelValue(String shorthand) {
- String levelString = shorthand.replaceAll("[^0-9]", "");
- int length = levelString.length();
- double[] retVal = new double[2];
- retVal[0] = Level.getInvalidLevelValue();
- retVal[1] = Level.getInvalidLevelValue();
- switch (length) {
- case 0:
- retVal[0] = 0.0;
- break;
- case 1:
- case 2:
- retVal[0] = Double.parseDouble(levelString);
- break;
- case 3:
- retVal[0] = Double.parseDouble(levelString);
- if (levelString.charAt(0) == '0') {
- retVal[1] = 0.0;
- }
- break;
- case 4:
- if (levelString.charAt(0) == '0') {
- retVal[0] = Double.parseDouble(levelString);
- retVal[1] = 0.0;
- } else if (levelString.charAt(0) == '1') {
- retVal[0] = Double.parseDouble(levelString);
- } else {
- retVal[0] = Double.parseDouble(levelString.substring(2, 4));
- retVal[1] = Double.parseDouble(levelString.substring(0, 2));
- }
- break;
- case 5:
- retVal[0] = Double.parseDouble(levelString.substring(2, 5));
- retVal[1] = Double.parseDouble(levelString.substring(0, 2));
- break;
- case 6:
- retVal[0] = Double.parseDouble(levelString.substring(3, 6));
- retVal[1] = Double.parseDouble(levelString.substring(0, 3));
- break;
- case 7:
- retVal[0] = Double.parseDouble(levelString.substring(4, 7));
- retVal[1] = Double.parseDouble(levelString.substring(0, 4));
- break;
- default:
- break;
- }
- return retVal;
- }
-
- public String getShortLevelName(String name, double levelOne,
- double levelTwo) {
- StringBuilder tmp = new StringBuilder();
-
- if (name == null) {
- tmp.append(LevelFactory.UNKNOWN_LEVEL);
- } else {
- tmp.append(name);
-
- if (levelTwo != Level.getInvalidLevelValue()) {
- tmp.append(String.valueOf(Math.round(levelTwo)));
- }
- if (levelOne != Level.getInvalidLevelValue() && levelOne != 0) {
- tmp.append(String.valueOf(Math.round(levelOne)));
- }
- }
- return tmp.toString();
- }
-
- private void getNcLevels() {
-
- String path = "";
-
- IPathManager pathMgr = PathManagerFactory.getPathManager();
- LocalizationContext edexStaticBase = pathMgr.getContext(
- LocalizationContext.LocalizationType.EDEX_STATIC,
- LocalizationContext.LocalizationLevel.BASE);
-
- try {
- path = pathMgr.getFile(edexStaticBase,
- "ncgrid" + File.separator + "ncgribLevelsMap.xml")
- .getCanonicalPath();
- } catch (IOException e) {
- logger.error(e);
- }
-
- // System.out.println ("ncep path=" + path);
- NcgridLevels nclevels = new NcgridLevels();
- try {
- nclevels = (NcgridLevels) SerializationUtil
- .jaxbUnmarshalFromXmlFile(path);
- } catch (SerializationException e) {
- logger.error("Error unmarshalling NcgridLevels from " + path, e);
- }
- levelsMap = nclevels.getMap();
-
- String key = null;
- String value = null;
- for (Iterator iterator = levelsMap.keySet().iterator(); iterator
- .hasNext();) {
- key = iterator.next();
- value = levelsMap.get(key);
- reverseLevelsMap.put(value.toLowerCase(), key);
- }
- }
-}
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/package-info.java b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/package-info.java
deleted file mode 100644
index 69e3703c19..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/src/gov/noaa/nws/ncep/edex/util/ncgrib/package-info.java
+++ /dev/null
@@ -1,4 +0,0 @@
-/**
- * Miscellaneous objects for the grib plugin
- */
-package gov.noaa.nws.ncep.edex.util.ncgrib;
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/grib1vcrd.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/grib1vcrd.xml
deleted file mode 100644
index 5d88314769..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/grib1vcrd.xml
+++ /dev/null
@@ -1,453 +0,0 @@
-
-
-
-
- 1
- Ground or water surface
- -
- NONE
- 0
-
-
- 2
- Cloud base level
- -
- CLDL
- 0
-
-
- 3
- Cloud top level
- -
- CLDT
- 0
-
-
- 4
- Level of 0 deg C isotherm
- -
- FRZL
- 0
-
-
- 5
- Adiabatic condensation level
- -
- LCLV
- 0
-
-
- 6
- Maximum wind speed level
- -
- MWSL
- 0
-
-
- 7
- Tropopause
- -
- TROP
- 0
-
-
- 8
- Nominal top of the atmosphere
- kPa
- TOPA
- 0
-
-
- 9
- Sea bottom
- -
- SEAB
- 0
-
-
- 20
- Isothermal level
- 1/100 K
- TMPL
- 0
-
-
- 100
- Isobaric surface
- hPa
- PRES
- 0
-
-
- 101
- Layer between two isobaric sfcs
- kPa
- PRES
- 1
-
-
- 102
- Mean sea level
- -
- NONE
- 0
-
-
- 103
- Specific altitude above msl
- m
- HGHT
- 0
-
-
- 104
- Layer between two spec alts (msl)
- hm
- HGHT
- 0
-
-
- 105
- Specified height level above gnd
- m
- HGHT
- 0
-
-
- 106
- Layer between two height levels (gnd)
- hm
- HGHT
- 0
-
-
- 107
- Sigma level
- 1/10000 sigma value
- SGMA
- 4
-
-
- 108
- Layer between two sigma levels
- 1/100 sigma values
- SGMA
- 4
-
-
- 109
- Hybrid level
- -
- HYBL
- 0
-
-
- 110
- Layer between two hybrid levels
- -
- HYBL
- 0
-
-
- 111
- Depth below land surface
- cm
- DPTH
- 0
-
-
- 112
- Layer btwn 2 dpths below lnd sfc
- cm
- DPTH
- 0
-
-
- 113
- Isentropic (theta) level
- K
- THTA
- 0
-
-
- 114
- Layer between two isentropic levels
- K
- THTA
- 0
-
-
- 115
- Level at press diff from ground
- hPa
- PDLV
- 0
-
-
- 116
- Pressure difference layer
- hPa
- PDLY
- 0
-
-
- 117
- Potential vorticity surface
- 10**-6/km**2/kg
- POTV
- 0
-
-
- 119
- ETA level
- 1/10000
- ELVL
- 4
-
-
- 120
- ETA layer
- 1/100
- ELYR
- 0
-
-
- 121
- Layer between two isobaric sfcs
- 1100-hPa
- PRES
- 0
-
-
- 125
- Specified height level above gnd
- cm
- HGHT
- 0
-
-
- 128
- Layer between two sigma levels
- 1.1 - 1/1000 sigma values
- SGMA
- 1
-
-
- 141
- Layer between two isobaric sfcs
- kPa and 1100-hPa
- PRES
- 0
-
-
- 160
- Depth below sea-level
- m
- DPTH
- 0
-
-
- 200
- Entire atmosphere as a layer
- -
- NONE
- 0
-
-
- 201
- Entire ocean as a layer
- -
- NONE
- 0
-
-
- 204
- Highest tropospheric freezing lev
- -
- FRZH
- 0
-
-
- 206
- Grid scale cloud bottom level
- -
- GCBL
- 0
-
-
- 207
- Grid scale cloud top level
- -
- GCTL
- 0
-
-
- 209
- Boundary layer cloud bottom level
- -
- BCBL
- 0
-
-
- 210
- Boundary layer cloud top level
- -
- BCTL
- 0
-
-
- 211
- Boundary layer cloud layer
- -
- BCLY
- 0
-
-
- 212
- Low cloud bottom level
- -
- LCBL
- 0
-
-
- 213
- Low cloud top level
- -
- LCTL
- 0
-
-
- 214
- Low cloud layer
- -
- LCLY
- 0
-
-
- 215
- Cloud Ceiling
- -
- CEIL
- 0
-
-
- 220
- Planetary Boundary Layer
- -
- PBLRI
- 0
-
-
- 222
- Middle cloud bottom level
- -
- MCBL
- 0
-
-
- 223
- Middle cloud top level
- -
- MCTL
- 0
-
-
- 224
- Middle cloud layer
- -
- MCLY
- 0
-
-
- 232
- High cloud bottom level
- -
- HCBL
- 0
-
-
- 233
- High cloud top level
- -
- HCTL
- 0
-
-
- 234
- High cloud layer
- -
- HCLY
- 0
-
-
- 242
- Convective cloud bottom level
- -
- CCBL
- 0
-
-
- 243
- Convective cloud top level
- -
- CCTL
- 0
-
-
- 244
- Convective cloud layer
- -
- CCLY
- 0
-
-
- 245
- Lowest level of the wet bulb zero
- -
- LLTW
- 0
-
-
- 246
- Maximum equiv potential tmp level
- -
- MTHE
- 0
-
-
- 247
- Equilibrium level
- -
- EHLT
- 0
-
-
- 248
- Shallow convective cloud bottom level
- -
- SCBL
- 0
-
-
- 249
- Shallow convective cloud top level
- -
- SCTL
- 0
-
-
- 251
- Deep convective cloud bottom level
- -
- DCBL
- 0
-
-
- 252
- Deep convective cloud top level
- -
- DCTL
- 0
-
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/grib2vars.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/grib2vars.xml
deleted file mode 100644
index 4a3b90472d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/grib2vars.xml
+++ /dev/null
@@ -1,4842 +0,0 @@
-
-
-
-
- 1
- 0
- 0
- 0
- 0
- Temperature
- K
- TMPK
- 0
- -9999.00
-
-
- 501
- 0
- 0
- 0
- 1
- Temperature
- K
- TMPK
- 0
- -9999.00
-
-
- 3
- 0
- 0
- 0
- 2
- Ensemble Temperature
- K
- TMPK
- 0
- -9999.00
-
-
- 2
- 0
- 0
- 0
- 5
- Temperature Prob
- K
- TMPK
- 0
- -9999.00
-
-
- 888
- 0
- 0
- 0
- 8
- Temperature
- K
- TMPK--
- 0
- -9999.00
-
-
- 888
- 0
- 0
- 0
- 11
- Temperature
- K
- TMPK
- 0
- -9999.0
-
-
- 4
- 0
- 0
- 1
- 0
- Virtual Temperature
- K
- TVRK
- 0
- -9999.00
-
-
- 5
- 0
- 0
- 2
- 0
- Potential Temperature
- K
- THTA
- 0
- -9999.00
-
-
- 505
- 0
- 0
- 2
- 1
- Potential Temperature
- K
- THTA
- 0
- -9999.00
-
-
- 6
- 0
- 0
- 3
- 0
- Equivalent Potential Temp
- K
- THTE
- 0
- -9999.00
-
-
- 7
- 0
- 0
- 4
- 8
- Maximum Temperature
- K
- TMXK--
- 0
- -9999.00
-
-
- 507
- 0
- 0
- 4
- 11
- Maximum Temperature
- K
- TMXK
- 0
- -9999.00
-
-
- 8
- 0
- 0
- 4
- 12
- Ensemble maximum Temp
- K
- TMXK
- 0
- -9999.00
-
-
- 9
- 0
- 0
- 5
- 8
- Minimum Temperature
- K
- TMNK--
- 0
- -9999.00
-
-
- 509
- 0
- 0
- 5
- 11
- Minimum Temperature
- K
- TMNK
- 0
- -9999.00
-
-
- 10
- 0
- 0
- 5
- 12
- Ensemble minimum Tem
- K
- TMNK
- 0
- -9999.00
-
-
- 510
- 0
- 0
- 5
- 11
- Ensemble minimum Tem
- K
- TMNK
- 0
- -9999.00
-
-
- 11
- 0
- 0
- 6
- 0
- Dew Point Temperature
- K
- DWPK
- 0
- -9999.00
-
-
- 511
- 0
- 0
- 6
- 1
- Dew Point Temperature
- K
- DWPK
- 0
- -9999.00
-
-
- 12
- 0
- 0
- 7
- 0
- Dew Point Depression
- K
- DPDK
- 0
- -9999.00
-
-
- 13
- 0
- 0
- 8
- 0
- Lapse Rate
- K m**-1
- LAPS
- 0
- -9999.00
-
-
- 14
- 0
- 0
- 9
- 0
- Temperature Anomaly
- K
- TMPKA
- 0
- -9999.00
-
-
- 888
- 0
- 0
- 10
- 0
- Latent Heat Net Flux
- W m**-2
- FXLH
- 0
- -9999.00
-
-
- 15
- 0
- 0
- 10
- 8
- Latent Heat Net Flux
- W m**-2
- FXLH--
- 0
- -9999.00
-
-
- 515
- 0
- 0
- 10
- 11
- Latent Heat Net Flux
- W m**-2
- FXLH
- 0
- -9999.00
-
-
- 888
- 0
- 0
- 10
- 12
- Latent Heat Net Flux
- W m**-2
- FXLH
- 0
- -9999.00
-
-
- 888
- 0
- 0
- 11
- 0
- Sensible Heat Net Flux
- W m**-2
- FXSH
- 0
- -9999.00
-
-
- 16
- 0
- 0
- 11
- 8
- Sensible Heat Net Flux
- W m**-2
- FXSH--
- 0
- -9999.00
-
-
- 516
- 0
- 0
- 11
- 11
- Sensible Heat Net Flux
- W m**-2
- FXSH
- 0
- -9999.00
-
-
- 888
- 0
- 0
- 11
- 12
- Sensible Heat Net Flux
- W m**-2
- FXSH
- 0
- -9999.00
-
-
- 17
- 0
- 0
- 12
- 0
- Heat Index
- K
- HEAT
- 0
- -9999.00
-
-
- 20
- 0
- 0
- 15
- 0
- Virtual Potential Temperature
- K
- VPTMP
- 0
- -9999.00
-
-
- 21
- 0
- 1
- 0
- 0
- Specific Humidity
- kg kg**-1
- SPFH
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 0
- 1
- Specific Humidity
- kg kg**-1
- SPFH
- 0
- -9999.00
-
-
- 22
- 0
- 1
- 1
- 0
- Relative Humidity
- %
- RELH
- 0
- -9999.00
-
-
- 522
- 0
- 1
- 1
- 1
- Relative Humidity
- %
- RELH
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 1
- 2
- Relative Humidity
- %
- RELH
- 0
- -9999.00
-
-
- 23
- 0
- 1
- 2
- 0
- Humidity Mixing Ratio
- kg kg**-1
- MIXR
- 0
- -9999.00
-
-
- 24
- 0
- 1
- 3
- 0
- Precipitable water
- kg m**-2
- PWTR
- 0
- -9999.00
-
-
- 524
- 0
- 1
- 3
- 1
- Precipitable water
- kg m**-2
- PWTR
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 3
- 2
- Precipitable water
- kg m**-2
- PWTR
- 0
- -9999.00
-
-
- 25
- 0
- 1
- 4
- 0
- Vapour pressure
- Pa
- VAPR
- -2
- -9999.00
-
-
- 26
- 0
- 1
- 5
- 0
- Saturation deficit
- Pa
- SATD
- -2
- -9999.00
-
-
- 27
- 0
- 1
- 6
- 0
- Evaporation
- kg m**-2
- EVAP
- 0
- -9999.00
-
-
- 27
- 0
- 1
- 6
- 8
- Evaporation
- kg m**-2
- EVAP--
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 7
- 0
- Precipitation rate
- kg m**-2 s**-1
- PRATE
- 0
- -9999.00
-
-
- 28
- 0
- 1
- 7
- 8
- Precipitation rate
- kg m**-2 s**-1
- PR--
- 0
- -9999.00
-
-
- 528
- 0
- 1
- 7
- 11
- Precipitation rate
- kg m**-2 s**-1
- PR--
- 0
- -9999.00
-
-
- 529
- 0
- 1
- 8
- 11
- Total Precipitation
- kg m**-2
- APCP
- 0
- -9999.00
-
-
- 29
- 0
- 1
- 8
- 8
- Total precipitation
- kg m**-2
- P--M
- 0
- -0.01
-
-
- 888
- 0
- 1
- 8
- 12
- Total precipitation
- kg m**-2
- APCP
- 0
- -0.01
-
-
- 888
- 0
- 1
- 9
- 0
- Large scale precipitation
- kg m**-2
- NCPCP
- 0
- -0.01
-
-
- 31
- 0
- 1
- 9
- 8
- Large scale precipitation
- kg m**-2
- S--M
- 0
- -0.01
-
-
- 888
- 0
- 1
- 10
- 0
- Convective precipitation
- kg m**-2
- ACPCP
- 0
- -0.01
-
-
- 32
- 0
- 1
- 10
- 8
- Convective precipitation
- kg m**-2
- C--M
- 0
- -0.01
-
-
- 532
- 0
- 1
- 10
- 11
- Convective precipitation
- kg m**-2
- C--M
- 0
- -0.01
-
-
- 33
- 0
- 1
- 11
- 0
- Snow depth
- m
- SNDM
- 0
- -9999.00
-
-
- 533
- 0
- 1
- 11
- 1
- Snow depth
- m
- SNDM
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 11
- 2
- Snow depth
- m
- SNDM
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 11
- 8
- Snow depth
- m
- SNDM--
- 0
- -9999.00
-
-
- 34
- 0
- 1
- 12
- 8
- Snowfall rate water equiv
- kg m**-2 s**-1
- SR--
- 0
- -9999.00
-
-
- 35
- 0
- 1
- 13
- 0
- Wat equiv of accum snow dep
- kg m**-2
- SWEM
- 0
- -9999.00
-
-
- 535
- 0
- 1
- 13
- 1
- Wat equiv of accum snow dep
- kg m**-2
- SWEM
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 13
- 2
- Wat equiv of accum snow dep
- kg m**-2
- SWEM
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 13
- 8
- Wat equiv of accum snow dep
- kg m**-2
- SWEM--
- 0
- -9999.00
-
-
- 36
- 0
- 1
- 14
- 0
- Convective snow
- kg m**-2
- CSNO
- 0
- -9999.00
-
-
- 37
- 0
- 1
- 15
- 0
- Large scale snow
- kg m**-2
- LSNO
- 0
- -9999.00
-
-
- 38
- 0
- 1
- 15
- 9
- Large scale snow
- kg m**-2
- LSNO
- 0
- -9999.00
-
-
- 39
- 0
- 1
- 16
- 8
- Snow melt
- kg m**-2
- N--M
- 0
- -9999.00
-
-
- 45
- 0
- 1
- 22
- 0
- Cloud Mixing Ratio
- kg kg**-1
- CLWMR
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 22
- 1
- Cloud Mixing Ratio
- kg kg**-1
- CLWMR
- 0
- -9999.00
-
-
- 46
- 0
- 1
- 23
- 0
- Ice water Mixing Ratio
- kg kg**-1
- ICMR
- 0
- -9999.00
-
-
- 47
- 0
- 1
- 24
- 0
- Rain Mixing Ratio
- kg kg**-1
- RWMR
- 0
- -9999.00
-
-
- 48
- 0
- 1
- 25
- 0
- Snow Mixing Ratio
- kg kg**-1
- SNMR
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 27
- 8
- Maximum Relative Humidity
- %
- MAXRH--
- 0
- -9999.00
-
-
- 52
- 0
- 1
- 29
- 8
- Total Snowfall
- m
- SNOW
- 0
- -9999.00
-
-
- 55
- 0
- 1
- 32
- 0
- Graupel (snow pellets)
- kg kg**-1
- GRLE
- 0
- -9999.00
-
-
- 59
- 0
- 2
- 1
- 2
- Wind Speed
- m s**-1
- WIND
- 0
- -9999.00
-
-
- 60
- 0
- 2
- 0
- 0
- Wind Direction
- Degree true
- DRCT
- 0
- -9999.00
-
-
- 61
- 0
- 2
- 1
- 0
- Wind Speed
- m s**-1
- SPED
- 0
- -9999.00
-
-
- 62
- 0
- 2
- 1
- 5
- Wind Speed
- m s**-1
- SPED
- 0
- -9999.00
-
-
- 63
- 0
- 2
- 2
- 0
- u-component of wind
- m s**-1
- UREL
- 0
- -9999.00
-
-
- 563
- 0
- 2
- 2
- 1
- u-component of wind
- m s**-1
- UREL
- 0
- -9999.00
-
-
- 64
- 0
- 2
- 2
- 2
- Ensemble u-component of wind
- m s**-1
- UREL
- 0
- -9999.00
-
-
- 65
- 0
- 2
- 3
- 0
- v-component of wind
- m s**-1
- VREL
- 0
- -9999.00
-
-
- 565
- 0
- 2
- 3
- 1
- v-component of wind
- m s**-1
- VREL
- 0
- -9999.00
-
-
- 66
- 0
- 2
- 3
- 2
- Ensemble v-component of wind
- m s**-1
- VREL
- 0
- -9999.00
-
-
- 67
- 0
- 2
- 4
- 0
- Stream Function
- m**2 s**-1
- STRM
- 0
- -9999.00
-
-
- 68
- 0
- 2
- 5
- 0
- Velocity Potential
- m**2 s**-1
- VPOT
- 0
- -9999.00
-
-
- 69
- 0
- 2
- 6
- 0
- Montgomery Streamfunction
- m**2 s**-2
- PSYM
- -2
- -9999.00
-
-
- 70
- 0
- 2
- 7
- 0
- Sigma co-ordinate vert vel
- s**-1
- SGCVV
- 0
- -9999.00
-
-
- 71
- 0
- 2
- 8
- 0
- Vertical Velocity (Pressure)
- Pa s**-1
- OMEG
- -2
- -9999.00
-
-
- 571
- 0
- 2
- 8
- 1
- Vertical Velocity (Pressure)
- Pa s**-1
- OMEG
- -2
- -9999.00
-
-
- 888
- 0
- 2
- 8
- 2
- Vertical Velocity (Pressure)
- Pa s**-1
- OMEG
- -2
- -9999.00
-
-
- 72
- 0
- 2
- 9
- 0
- Vertical Velocity (Geometric)
- m s**-1
- VVEL
- 0
- -9999.00
-
-
- 73
- 0
- 2
- 10
- 0
- Absolute Vorticity
- s**-1
- AVOR
- 0
- -9999.00
-
-
- 573
- 0
- 2
- 10
- 1
- Absolute Vorticity
- s**-1
- AVOR
- 0
- -9999.00
-
-
- 74
- 0
- 2
- 11
- 0
- Absolute Divergence
- s**-1
- DIV
- 0
- -9999.00
-
-
- 75
- 0
- 2
- 12
- 0
- Relative Vorticity
- s**-1
- VOR
- 0
- -9999.00
-
-
- 76
- 0
- 2
- 13
- 0
- Relative Divergence
- s**-1
- RDIV
- 0
- -9999.00
-
-
- 77
- 0
- 2
- 14
- 0
- Potential Vorticity
- K m**2 (kg s)**-1
- PVORT
- 0
- -9999.00
-
-
- 888
- 0
- 2
- 14
- 1
- Potential Vorticity
- K m**2 (kg s)**-1
- PVORT
- 0
- -9999.00
-
-
- 78
- 0
- 2
- 15
- 0
- Vertical u-component shear
- s**-1
- USHR
- 0
- -9999.00
-
-
- 79
- 0
- 2
- 16
- 0
- Vertical v-component shear
- s**-1
- VSHR
- 0
- -9999.00
-
-
- 80
- 0
- 2
- 17
- 0
- Momentum Flux, u-component
- N m**-2
- URELFX
- 0
- -9999.00
-
-
- 888
- 0
- 2
- 17
- 8
- Momentum Flux, U-Component
- N m**-2
- URFLFX--
- 0
- -9999.00
-
-
- 580
- 0
- 2
- 17
- 11
- Momentum Flux, u-component
- N m**-2
- URELFX
- 0
- -9999.00
-
-
- 81
- 0
- 2
- 18
- 0
- Momentum Flux, v-component
- N m**-2
- VRELFX
- 0
- -9999.00
-
-
- 888
- 0
- 2
- 18
- 8
- Momentum Flux, V-Component
- N m**-2
- VRELFX--
- 0
- -9999.00
-
-
- 581
- 0
- 2
- 18
- 11
- Momentum Flux, v-component
- N m**-2
- VRELFX
- 0
- -9999.00
-
-
- 82
- 0
- 2
- 19
- 0
- Wind Mixing Energy
- J
- ENRG
- 0
- -9999.00
-
-
- 83
- 0
- 2
- 20
- 0
- Boundary Layer Dissipation
- W m**-2
- BLDIS
- 0
- -9999.00
-
-
- 85
- 0
- 2
- 22
- 0
- Wind Speed (gust)
- m s**-1
- GUST
- 0
- -9999.00
-
-
- 888
- 0
- 2
- 22
- 1
- Wind Speed (gust)
- m s**-1
- GUST
- 0
- -9999.00
-
-
- 90
- 0
- 3
- 0
- 0
- Pressure
- Pa
- PRES
- -2
- -9999.00
-
-
- 590
- 0
- 3
- 0
- 1
- Pressure
- Pa
- PRES
- -2
- -9999.00
-
-
- 91
- 0
- 3
- 0
- 2
- Ensemble Pressure
- Pa
- PRES
- -2
- -9999.00
-
-
- 888
- 0
- 3
- 0
- 8
- Pressure
- Pa
- PRES--
- -2
- -9999.00
-
-
- 888
- 0
- 3
- 0
- 11
- Pressure
- Pa
- PRES
- -2
- -9999.00
-
-
- 92
- 0
- 3
- 1
- 0
- Pressure Reduced to MSL
- Pa
- PMSL
- -2
- -9999.00
-
-
- 592
- 0
- 3
- 1
- 1
- Pressure Reduced to MSL
- Pa
- PMSL
- -2
- -9999.00
-
-
- 93
- 0
- 3
- 1
- 2
- Ensemble MSLP
- Pa
- PMSL
- -2
- -9999.00
-
-
- 94
- 0
- 3
- 2
- 0
- Pressure Tendency
- Pa s**-1
- PTND
- -2
- -9999.00
-
-
- 95
- 0
- 3
- 3
- 0
- ICAO Standard Atm Ref Height
- m
- ICAHT
- 0
- -9999.00
-
-
- 96
- 0
- 3
- 4
- 0
- Geopotential
- m**2 s**-2
- GP
- 0
- -9999.00
-
-
- 97
- 0
- 3
- 5
- 0
- Geopotential Height
- gpm
- HGHT
- 0
- -9999.00
-
-
- 597
- 0
- 3
- 5
- 1
- Geopotential Height
- gpm
- HGHT
- 0
- -9999.00
-
-
- 888
- 0
- 3
- 5
- 8
- Geopotential Height
- gpm
- HGHT--
- 0
- -9999.00
-
-
- 98
- 0
- 3
- 5
- 2
- Ensemble Geopot. Height
- gpm
- HGHT
- 0
- -9999.00
-
-
- 99
- 0
- 3
- 5
- 5
- Ensemble Geopot. Height
- gpm
- HGHT
- 0
- -9999.00
-
-
- 100
- 0
- 3
- 6
- 0
- Geometrical Height
- m
- DIST
- 0
- -9999.00
-
-
- 101
- 0
- 3
- 7
- 0
- Standard Deviation of Height
- m
- HGHTSD
- 0
- -9999.00
-
-
- 102
- 0
- 3
- 8
- 0
- Pressure Anomaly
- Pa
- PRESA
- -2
- -9999.00
-
-
- 103
- 0
- 3
- 9
- 0
- Geopotential Height Anomaly
- gpm
- HGHTA
- 0
- -9999.00
-
-
- 603
- 0
- 3
- 9
- 1
- Geopotential Height Anomaly
- gpm
- HGHTA
- 0
- -9999.00
-
-
- 104
- 0
- 3
- 10
- 0
- Density
- kg m**-3
- DNTY
- 0
- -9999.00
-
-
- 110
- 0
- 4
- 0
- 0
- Net Short-Wave Rad (sfc)
- W m**-2
- SNIR
- 0
- -9999.00
-
-
- 111
- 0
- 4
- 1
- 0
- Net Short-Wave Rad (toa)
- W m**-2
- SWRT
- 0
- -9999.00
-
-
- 114
- 0
- 4
- 4
- 0
- Brightness Temperature
- K
- BRTMP
- 0
- -9999.00
-
-
- 120
- 0
- 5
- 0
- 0
- Net Long-Wave Rad (sfc)
- W m**-2
- SNOR
- 0
- -9999.00
-
-
- 121
- 0
- 5
- 1
- 0
- Net Long-Wave Rad (toa)
- W m**-2
- LWRT
- 0
- -9999.00
-
-
- 125
- 0
- 6
- 0
- 0
- Cloud Ice
- kg m**-2
- CICE
- 0
- -9999.00
-
-
- 126
- 0
- 6
- 1
- 0
- Total Cloud Cover
- %
- CLD
- 0
- -9999.00
-
-
- 888
- 0
- 6
- 1
- 1
- Total Cloud Cover
- %
- CLD
- 0
- -9999.00
-
-
- 888
- 0
- 6
- 1
- 8
- Total Cloud Cover
- %
- CLD--
- 0
- -9999.00
-
-
- 888
- 0
- 6
- 1
- 11
- Total Cloud Cover
- %
- CLD
- 0
- -9999.00
-
-
- 888
- 0
- 6
- 1
- 12
- Total Cloud Cover
- %
- CLD
- 0
- -9999.00
-
-
- 127
- 0
- 6
- 2
- 0
- Convective Cloud Cover
- %
- CCLD
- 0
- -9999.00
-
-
- 888
- 0
- 6
- 2
- 8
- Convective Cloud Cover
- %
- CCLD--
- 0
- -9999.00
-
-
- 128
- 0
- 6
- 3
- 0
- Low Cloud Cover
- %
- CLDL
- 0
- -9999.00
-
-
- 129
- 0
- 6
- 4
- 0
- Medium Cloud Cover
- %
- CLDM
- 0
- -9999.00
-
-
- 130
- 0
- 6
- 5
- 0
- High Cloud Cover
- %
- CLDH
- 0
- -9999.00
-
-
- 131
- 0
- 6
- 6
- 0
- Cloud Water
- kg m**-2
- CWTR
- 0
- -9999.00
-
-
- 888
- 0
- 6
- 6
- 1
- Cloud Water
- kg m**-2
- CWTR
- 0
- -9999.00
-
-
- 140
- 0
- 7
- 0
- 0
- Parcel Lifted Index (500hPa)
- K
- LIFT
- 0
- -9999.00
-
-
- 141
- 0
- 7
- 0
- 5
- Parcel Lifted Index (500hPa)
- K
- LIFT
- 0
- -9999.00
-
-
- 142
- 0
- 7
- 1
- 0
- Best Lifted Index (500hPa)
- K
- LFT4
- 0
- -9999.00
-
-
- 147
- 0
- 7
- 6
- 0
- Conv Available Pot Energy
- J K**-1
- CAPE
- 0
- -9999.00
-
-
- 647
- 0
- 7
- 6
- 1
- Conv Available Pot Energy
- J K**-1
- CAPE
- 0
- -9999.00
-
-
- 888
- 0
- 7
- 6
- 2
- Conv Available Pot Energy
- J K**-1
- CAPE
- 0
- -9999.00
-
-
- 148
- 0
- 7
- 6
- 5
- Conv Available Pot Energy Prob
- J K**-1
- CAPE
- 0
- -9999.00
-
-
- 149
- 0
- 7
- 7
- 0
- Convective Inhibition
- J K**-1
- CINH
- 0
- -9999.00
-
-
- 649
- 0
- 7
- 7
- 1
- Convective Inhibition
- J K**-1
- CINH
- 0
- -9999.00
-
-
- 888
- 0
- 7
- 7
- 2
- Convective Inhibition
- J K**-1
- CINH
- 0
- -9999.00
-
-
- 150
- 0
- 7
- 7
- 5
- Convective Inhibition
- J K**-1
- CINH
- 0
- -9999.00
-
-
- 151
- 0
- 7
- 8
- 0
- Storm Relative Helicity
- J K**-1
- HLCY
- 0
- -9999.00
-
-
- 888
- 0
- 7
- 8
- 1
- Storm Relative Helicity
- J K**-1
- HLCY
- 0
- -9999.00
-
-
- 152
- 0
- 7
- 8
- 5
- Storm Relative Helicity
- J K**-1
- HLCY
- 0
- -9999.00
-
-
- 155
- 0
- 14
- 0
- 0
- Total ozone
- Dobson units
- TOZO
- 0
- -9999.00
-
-
- 888
- 0
- 14
- 0
- 1
- Total ozone
- Dobson
- TOZO
- 0
- -9999.00
-
-
- 180
- 0
- 19
- 0
- 0
- Visibility
- m
- VSBY
- 0
- -9999.00
-
-
- 181
- 0
- 19
- 0
- 5
- Visibility
- m
- VSBY
- 0
- -9999.00
-
-
- 888
- 0
- 19
- 1
- 0
- Albedo
- %
- ALBD
- 0
- -9999.00
-
-
- 182
- 0
- 19
- 1
- 8
- Albedo
- %
- ALBD--
- 0
- -9999.00
-
-
- 682
- 0
- 19
- 1
- 11
- Albedo
- %
- ALBD
- 0
- -9999.00
-
-
- 183
- 0
- 19
- 2
- 0
- Thunderstorm probability
- %
- TSTM
- 0
- -9999.00
-
-
- 184
- 0
- 19
- 3
- 0
- Mixed layer depth
- m
- MIXL
- 0
- -9999.00
-
-
- 192
- 0
- 19
- 11
- 0
- Turbulent Kinetic Energy
- J kg**-1
- TKE
- 0
- -9999.00
-
-
- 888
- 1
- 1
- 2
- 8
- Percent Precipitation in a sub-
- %
- PPOSP--
- 0
- -9999.00
-
-
- 888
- 2
- 0
- 0
- 0
- Land Cover (1=land, 0=sea)
- Proportion
- LAND
- 0
- -9999.00
-
-
- 888
- 2
- 0
- 0
- 1
- Land Cover (1=land, 0=sea)
- Proportion
- LAND
- 0
- -9999.00
-
-
- 888
- 2
- 0
- 1
- 0
- Surface Roughness
- m
- SFCR
- 0
- -9999.00
-
-
- 888
- 2
- 0
- 2
- 0
- Soil Temperature
- K
- TSOIL
- 0
- -9999.00
-
-
- 888
- 2
- 0
- 3
- 0
- Soil Moisture Content
- kg m**-2
- SOILM
- 0
- -9999.00
-
-
- 888
- 2
- 0
- 4
- 0
- Vegetation
- %
- VEG
- 0
- -9999.00
-
-
- 888
- 2
- 0
- 5
- 8
- Water Runoff
- kg m**-2
- WATR--
- 0
- -9999.00
-
-
- 888
- 2
- 0
- 5
- 11
- Water Runoff
- kg m**-2
- WATR
- 0
- -9999.00
-
-
- 888
- 2
- 3
- 0
- 0
- Soil Type
- -
- SOTYP
- 0
- -9999.00
-
-
- 200
- 10
- 0
- 0
- 0
- Wave Spectra (1)
- -
- WVSP1
- 0
- -9999.00
-
-
- 201
- 10
- 0
- 1
- 0
- Wave Spectra (2)
- -
- WVSP2
- 0
- -9999.00
-
-
- 202
- 10
- 0
- 2
- 0
- Wave Spectra (3)
- -
- WVSP3
- 0
- -9999.00
-
-
- 203
- 10
- 0
- 3
- 0
- Sig Hght Comb Wind Waves + Swell
- m
- HTSGW
- 0
- -9999.00
-
-
- 204
- 10
- 0
- 4
- 0
- Direction of Wind Waves
- Degree True
- WVDIR
- 0
- -9999.00
-
-
- 205
- 10
- 0
- 5
- 0
- Significant Height of Wind Waves
- m
- WVHGT
- 0
- -9999.00
-
-
- 206
- 10
- 0
- 6
- 0
- Mean Period of Wind Waves
- s
- WVPER
- 0
- -9999.00
-
-
- 207
- 10
- 0
- 7
- 0
- Direction of Swell Waves
- Degree True
- SWDIR
- 0
- -9999.00
-
-
- 208
- 10
- 0
- 8
- 0
- Significant Hght of Swell Waves
- m
- SWELL
- 0
- -9999.00
-
-
- 209
- 10
- 0
- 9
- 0
- Mean Period of Swell Waves
- s
- SWPER
- 0
- -9999.00
-
-
- 210
- 10
- 0
- 10
- 0
- Primary Wave Direction
- Degree True
- DIRPW
- 0
- -9999.00
-
-
- 211
- 10
- 0
- 11
- 0
- Primary Wave Mean Period
- s
- PERPW
- 0
- -9999.00
-
-
- 212
- 10
- 0
- 12
- 0
- Secondary Wave Direction
- Degree True
- DIRSW
- 0
- -9999.00
-
-
- 213
- 10
- 0
- 13
- 0
- Secondary Wave Mean Period
- s
- PERSW
- 0
- -9999.00
-
-
- 888
- 10
- 2
- 0
- 0
- Ice Cover
- Proportion
- ICEC
- 0
- -9999.00
-
-
- 888
- 10
- 2
- 0
- 1
- Ice Cover
- Proportion
- ICEC
- 0
- -9999.0
-
-
- 888
- 10
- 2
- 1
- 0
- Ice Thickness
- m
- ICETK
- 0
- -9999.00
-
-
- 888
- 10
- 3
- 0
- 0
- Water Temperature
- K
- WTMP
- 0
- -9999.00
-
-
- 888
- 10
- 3
- 192
- 0
- Hurricane Storm Surge
- m
- SURGE
- 0
- -9999.00
-
-
- 888
- 10
- 3
- 193
- 0
- Extratropical Storm Surge
- m
- ETSRG
- 0
- -9999.00
-
-
- 888
- 10
- 3
- 194
- 0
- Ocean Surface Elevation Relative to Geoid
- m
- ELEV
- 0
- -9999.00
-
-
- 250
- 0
- 0
- 192
- 0
- Snow Phase Change Heat Flux
- W m**-2
- FXSN
- 0
- -9999.00
-
-
- 750
- 0
- 0
- 192
- 1
- Snow Phase Change Heat Flux
- W m**-2
- FXSN
- 0
- -9999.00
-
-
- 888
- 0
- 0
- 192
- 8
- Snow Phase Change Heat Flux
- W m**-2
- FXSN--
- 0
- -9999.00
-
-
- 888
- 0
- 0
- 195
- 0
- Large Scl Condensate Heating rat
- K/s
- LRGHR
- 0
- -9999.00
-
-
- 888
- 0
- 0
- 195
- 8
- Large Scl Condensate Heating rat
- K/s
- LRGHR--
- 0
- -9999.00
-
-
- 888
- 0
- 0
- 196
- 0
- Deep Convective Heating rate
- K/s
- CNVHR
- 0
- -9999.00
-
-
- 888
- 0
- 0
- 196
- 8
- Deep Convective Heating rate
- K/s
- CNVHR--
- 0
- -9999.00
-
-
- 888
- 0
- 0
- 198
- 0
- Temperature Tendency By All Phys
- K/s
- TTDIA
- 0
- -9999.00
-
-
- 56
- 0
- 1
- 192
- 0
- Weather
- NA
- WXTR
- 0
- -9999.00
-
-
- 556
- 0
- 1
- 192
- 1
- Weather
- NA
- WXTR
- 0
- -9999.00
-
-
- 251
- 0
- 1
- 192
- 5
- Categorical rain
- 0,1
- WXTR
- 0
- -9999.00
-
-
- 252
- 0
- 1
- 192
- 8
- Categorical rain
- 0,1
- WXTR--
- 0
- -9999.00
-
-
- 752
- 0
- 1
- 192
- 11
- Categorical rain
- 0,1
- WXTR
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 192
- 12
- Categorical rain
- 0,1
- WXTR
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 193
- 0
- Categorical freezing rain
- 0,1
- WXTZ
- 0
- -9999.00
-
-
- 253
- 0
- 1
- 193
- 5
- Categorical freezing rain
- 0,1
- WXTZ
- 0
- -9999.00
-
-
- 254
- 0
- 1
- 193
- 8
- Categorical freezing rain
- 0,1
- WXTZ--
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 193
- 11
- Categorical freezing rain
- 0,1
- WXTZ
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 193
- 12
- Categorical freezing rain
- 0,1
- WXTZ
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 194
- 0
- Categorical ice pellets
- 0,1
- WXTP
- 0
- -9999.00
-
-
- 255
- 0
- 1
- 194
- 5
- Categorical ice pellets
- 0,1
- WXTP
- 0
- -9999.00
-
-
- 256
- 0
- 1
- 194
- 8
- Categorical ice pellets
- 0,1
- WXTP--
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 194
- 11
- Categorical ice pellets
- 0,1
- WXTP
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 194
- 12
- Categorical ice pellets
- 0,1
- WXTP
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 195
- 0
- Categorical snow
- 0,1
- WXTS
- 0
- -9999.00
-
-
- 257
- 0
- 1
- 195
- 5
- Categorical snow
- 0,1
- WXTS
- 0
- -9999.00
-
-
- 258
- 0
- 1
- 195
- 8
- Categorical snow
- 0,1
- WXTS--
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 195
- 11
- Categorical snow
- 0,1
- WXTS
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 195
- 12
- Categorical snow
- 0,1
- WXTS
- 0
- -9999.00
-
-
- 259
- 0
- 1
- 196
- 0
- Convective precip rate
- kg m**-2 s**-1
- CPR--
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 196
- 8
- Convective Precipitation Rate
- kg m**-2 s**-1
- CPR--
- 0
- -9999.00
-
-
- 759
- 0
- 1
- 196
- 11
- Convective precip rate
- kg m**-2 s**-1
- CPR--
- 0
- -9999.00
-
-
- 260
- 0
- 1
- 197
- 0
- Horizontal moisture divergence
- kg kg**-1 s**-1
- MCNV
- 0
- -9999.00
-
-
- 261
- 0
- 1
- 198
- 0
- Probability of precip, frozen
- %
- POPZ
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 198
- 8
- Minimum Relative Humidity
- %
- MINRH--
- 0
- -9999.00
-
-
- 262
- 0
- 1
- 199
- 0
- Potential evaporation
- kg m**-2
- PEVAP
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 199
- 8
- Potential evaporation
- kg m**-2
- PEVAP--
- 0
- -9999.00
-
-
- 263
- 0
- 1
- 200
- 0
- Potential evaporation rate
- W/m**2
- PEVP
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 200
- 1
- Potential evaporation rate
- W/m**2
- PEVP
- 0
- -9999.00
-
-
- 264
- 0
- 1
- 201
- 0
- Snow cover
- %
- SCVR
- 0
- -9999.00
-
-
- 265
- 0
- 1
- 202
- 0
- Rain frctn of total liquid wtr
- -
- FRAIN
- 0
- -9999.00
-
-
- 266
- 0
- 1
- 203
- 0
- Rime factor
- -
- FRIME
- 0
- -9999.00
-
-
- 267
- 0
- 1
- 204
- 0
- Total column-integrated rain
- kg/m**2
- TCOLR
- 0
- -9999.00
-
-
- 268
- 0
- 1
- 205
- 0
- Total column-integrated snow
- kg/m**2
- TCOLS
- 0
- -9999.00
-
-
- 269
- 0
- 1
- 206
- 5
- Total Icing Potential
- NA
- ICNG
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 207
- 0
- No concentration for iceparticle
- NA
- NCIP
- 0
- -9999.0
-
-
- 888
- 0
- 1
- 208
- 0
- Snow temperature
- K
- SNOT
- 0
- -9999.0
-
-
- 888
- 0
- 1
- 209
- 0
- Total column-integrated superco
- kg/m**2
- TCLSW
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 210
- 0
- Total column-intgrt melting ice
- kg/m**2
- TCOLM
- 0
- -9999.00
-
-
- 888
- 0
- 1
- 242
- 0
- Relative Humidity to Preci Water
- %
- RHPW
- 0
- -9999.00
-
-
- 280
- 0
- 2
- 192
- 0
- Vertical speed shear
- s**-1
- VWSH
- 0
- -9999.00
-
-
- 888
- 0
- 2
- 192
- 1
- Vertical speed shear
- s**-1
- VWSH
- 0
- -9999.00
-
-
- 281
- 0
- 2
- 193
- 0
- Momentum flux
- N m**-2
- MFLX
- 0
- -9999.00
-
-
- 888
- 0
- 2
- 193
- 8
- Momentum flux
- N m**-2
- MFLX--
- 0
- -9999.00
-
-
- 282
- 0
- 2
- 194
- 0
- U-component of storm motion
- m/s
- USTRM
- 0
- -9999.00
-
-
- 283
- 0
- 2
- 195
- 0
- V-component of storm motion
- m/s
- VSTRM
- 0
- -9999.00
-
-
- 284
- 0
- 2
- 196
- 0
- Drag coefficient
- -
- DRAG
- 0
- -9999.00
-
-
- 285
- 0
- 2
- 197
- 0
- Friction velocity
- m s**-1
- FRCV
- 0
- -9999.00
-
-
- 888
- 0
- 2
- 204
- 0
- Vertical Eddy Diffusiv Heat exch
- m**2 s**-1
- VEDH
- 0
- -9999.00
-
-
- 22220
- 0
- 2
- 222
- 0
- U Component of Hourly Maximum 10m Wind Speed
- m/s
- MAXUW
- 0
- -9999.00
-
-
- 22228
- 0
- 2
- 222
- 8
- U Component of Hourly Maximum 10m Wind Speed
- m/s
- MAXUW--
- 0
- -9999.00
-
-
- 22230
- 0
- 2
- 223
- 0
- V Component of Hourly Maximum 10m Wind Speed
- m/s
- MAXVW
- 0
- -9999.00
-
-
- 22238
- 0
- 2
- 223
- 8
- V Component of Hourly Maximum 10m Wind Speed
- m/s
- MAXVW--
- 0
- -9999.00
-
-
- 22240
- 0
- 2
- 224
- 0
- Ventilation Rate
- m**2/s
- VRATE
- 0
- -9999.00
-
-
- 290
- 0
- 3
- 192
- 0
- MSLP (ETA reduction)
- Pa
- EMSL
- -2
- -9999.00
-
-
- 291
- 0
- 3
- 193
- 0
- 5-wave geopotential height
- gpm
- HGHT5
- 0
- -9999.00
-
-
- 888
- 0
- 3
- 193
- 1
- 5-wave geopotential height
- gpm
- HGHT5
- 0
- -9999.00
-
-
- 292
- 0
- 3
- 194
- 0
- Zonal flux of gravity wav stress
- N/m**2
- UGWD
- 0
- -9999.00
-
-
- 888
- 0
- 3
- 194
- 8
- Zonal flux of gravity wav stress
- N/m**2
- UGWD--
- 0
- -9999.00
-
-
- 888
- 0
- 3
- 194
- 11
- Zonal flux of gravity wav stress
- N/m**2
- UGWD
- 0
- -9999.00
-
-
- 293
- 0
- 3
- 195
- 0
- Meridional flux of grav wv strss
- N/m**2
- VGWD
- 0
- -9999.00
-
-
- 888
- 0
- 3
- 195
- 8
- Meridional flux of grav wv strss
- N/m**2
- VGWD--
- 0
- -9999.00
-
-
- 888
- 0
- 3
- 195
- 11
- Meridional flux of grav wv strss
- N/m**2
- VGWD
- 0
- -9999.00
-
-
- 294
- 0
- 3
- 196
- 0
- Planetary boundary layer hght
- m
- ZPBL
- 0
- -9999.00
-
-
- 794
- 0
- 3
- 196
- 1
- Planetary boundary layer hght
- m
- ZPBL
- 0
- -9999.00
-
-
- 295
- 0
- 3
- 197
- 0
- 5-wave geopotention hght anomaly
- gpm
- WAVA5
- 0
- -9999.00
-
-
- 795
- 0
- 3
- 197
- 1
- 5-wave geopotention hght anomaly
- gpm
- WAVA5
- 0
- -9999.00
-
-
- 888
- 0
- 3
- 198
- 0
- MSLP (MAPS System Reduction)
- Pa
- MSLMA
- -2
- -9999.00
-
-
-
- 888
- 0
- 3
- 1
- 0
- mean sea level pressure (Standard Atmosphere Reduction)
- Pa
- MSLSA
- -2
- -9999.00
-
-
- 888
- 0
- 3
- 199
- 0
- 3-hr pressure tendency (Std. ..)
- Pa/s
- TSLSA
- -2
- -9999.00
-
-
- 888
- 0
- 3
- 200
- 0
- Pressure of lvl frm which parcel
- Pa
- PLPL
- -2
- -9999.00
-
-
- 888
- 0
- 4
- 192
- 0
- Downward short wave rad flux
- W m**-2
- SWRD
- 0
- -9999.00
-
-
- 297
- 0
- 4
- 192
- 8
- Downward short wave rad flux
- W m**-2
- SWRD--
- 0
- -9999.00
-
-
- 797
- 0
- 4
- 192
- 11
- Downward short wave rad flux
- W m**-2
- SWRD
- 0
- -9999.00
-
-
- 888
- 0
- 4
- 192
- 12
- Downward short wave rad flux
- W m**-2
- SWRD
- 0
- -9999.00
-
-
- 888
- 0
- 4
- 193
- 0
- Upward short wave rad flux
- W m**-2
- SWRU
- 0
- -9999.00
-
-
- 298
- 0
- 4
- 193
- 8
- Upward short wave rad flux
- W m**-2
- SWRU--
- 0
- -9999.00
-
-
- 888
- 0
- 4
- 193
- 11
- Upward short wave rad flux
- W m**-2
- SWRU
- 0
- -9999.00
-
-
- 888
- 0
- 4
- 193
- 12
- Upward short wave rad flux
- W m**-2
- SWRU
- 0
- -9999.0
-
-
- 888
- 0
- 4
- 194
- 8
- UV-B downward solar flux
- W/m**2
- DUVB--
- 0
- -9999.00
-
-
- 888
- 0
- 4
- 195
- 8
- Clear sky UV-B downward slr flux
- W/m**2
- CDUVB--
- 0
- -9999.00
-
-
- 888
- 0
- 4
- 196
- 0
- Clear Sky Downward Solar Flux
- W/m**2
- CSDSF
- 0
- -9999.00
-
-
- 888
- 0
- 4
- 197
- 0
- Solar Radiative Heating Rate
- K/s
- SWHR
- 0
- -9999.00
-
-
- 888
- 0
- 5
- 192
- 0
- Downward long wave rad flux
- W m**-2
- LWRD
- 0
- -9999.00
-
-
- 300
- 0
- 5
- 192
- 8
- Downward long wave rad flux
- W m**-2
- LWRD--
- 0
- -9999.00
-
-
- 800
- 0
- 5
- 192
- 11
- Downward long wave rad flux
- W m**-2
- LWRD
- 0
- -9999.00
-
-
- 888
- 0
- 5
- 192
- 12
- Downward long wave rad flux
- W m**-2
- LWRD
- 0
- -9999.00
-
-
- 888
- 0
- 5
- 193
- 0
- Upward long wave rad flux
- W m**-2
- LWRU
- 0
- -9999.00
-
-
- 301
- 0
- 5
- 193
- 8
- Upward long wave rad flux
- W m**-2
- LWRU--
- 0
- -9999.00
-
-
- 888
- 0
- 5
- 193
- 11
- Upward long wave rad flux
- W m**-2
- LWRU
- 0
- -9999.00
-
-
- 888
- 0
- 5
- 193
- 12
- Upward long wave rad flux
- W m**-2
- LWRU
- 0
- -9999.00
-
-
- 888
- 0
- 5
- 194
- 0
- Long-Wave Radiative Heating Rate
- K/s
- LWHR
- 0
- -9999.00
-
-
- 302
- 0
- 6
- 192
- 0
- Amt of non-convective cloud
- %
- CLDA
- 0
- -9999.00
-
-
- 888
- 0
- 6
- 192
- 8
- Amt of non-convective cloud
- %
- CLDA--
- 0
- -9999.00
-
-
- 303
- 0
- 6
- 193
- 0
- Cloud work function
- J/kg
- CWRK
- 0
- -9999.00
-
-
- 888
- 0
- 6
- 193
- 8
- Cloud work function
- J/kg
- CWRK--
- 0
- -9999.00
-
-
- 888
- 0
- 6
- 193
- 11
- Cloud work function
- J/kg
- CWRK
- 0
- -9999.00
-
-
- 304
- 0
- 6
- 194
- 0
- Convective cloud efficiency
- -
- CUEFI
- 0
- -9999.00
-
-
- 305
- 0
- 6
- 195
- 0
- Total condensate
- kg/kg
- TCOND
- 0
- -9999.00
-
-
- 306
- 0
- 6
- 196
- 0
- Total column-integratd cloud wtr
- kg/m**2
- TCOLW
- 0
- -9999.00
-
-
- 307
- 0
- 6
- 197
- 0
- Total column-integratd cloud ice
- kg/m**2
- TCOLI
- 0
- -9999.00
-
-
- 308
- 0
- 6
- 198
- 0
- Total column-integrated condens
- kg/m**2
- TCOLC
- 0
- -9999.00
-
-
- 309
- 0
- 6
- 199
- 0
- Ice fraction of total condensate
- -
- FICE
- 0
- -9999.00
-
-
- 888
- 0
- 6
- 201
- 0
- Sunshine Duration
- s
- SUNSD
- 0
- -9999.00
-
-
- 400
- 0
- 7
- 192
- 0
- Surface lifted index
- K
- LIFT
- 0
- -9999.00
-
-
- 888
- 0
- 7
- 192
- 1
- Surface lifted index
- K
- LIFT
- 0
- -9999.00
-
-
- 401
- 0
- 7
- 193
- 0
- Best (4 layer) lifted index
- K
- LFT4
- 0
- -9999.00
-
-
- 888
- 0
- 7
- 193
- 1
- Best (4 layer) lifted index
- K
- LFT4
- 0
- -9999.00
-
-
- 402
- 0
- 7
- 194
- 0
- Richardson number
- -
- RICH
- 0
- -9999.00
-
-
- 888
- 0
- 7
- 197
- 0
- Updraft Helicity
- m**2 s**-2
- UPHL
- 0
- -9999.00
-
-
- 410
- 0
- 14
- 192
- 0
- Ozone mixing ratio
- kg/kg
- OZMR
- 0
- -9999.00
-
-
- 888
- 0
- 14
- 192
- 1
- Ozone mixing ratio
- kg/kg
- OZMR
- 0
- -9999.00
-
-
- 411
- 0
- 14
- 193
- 0
- Ozone concentration
- ppb
- OZCON
- 0
- -9999.00
-
-
- 412
- 0
- 14
- 193
- 8
- Ozone concentration
- ppb
- OZCON
- 0
- -9999.00
-
-
- 413
- 0
- 14
- 194
- 0
- Ozone concentration category
- -
- OZCAT
- 0
- -9999.00
-
-
- 888
- 0
- 14
- 200
- 8
- Ozone Daily Max from 1-h Average
- ppbv
- OZMAX1
- 0
- -9999.00
-
-
- 888
- 0
- 14
- 201
- 8
- Ozone Daily Max from 8-h Average
- ppbv
- OZMAX8
- 0
- -9999.00
-
-
- 8192
- 0
- 16
- 192
- 0
- Equivalent radar refectivity factor for rain
- mm**6/m**3
- REFZR
- 0
- -9999.00
-
-
- 8193
- 0
- 16
- 193
- 0
- Equivalent radar refectivity factor for snow
- mm**6/m**3
- REFZI
- 0
- -9999.00
-
-
- 8194
- 0
- 16
- 194
- 0
- Equivalent radar refectivity factor for parameterized convection
- mm**6/m**3
- REFZC
- 0
- -9999.00
-
-
- 888
- 0
- 16
- 195
- 0
- Reflectivity
- dB
- REFD
- 0
- -9999.00
-
-
- 888
- 0
- 16
- 196
- 0
- Composite reflectivity
- dB
- REFC
- 0
- -9999.00
-
-
- 888
- 0
- 16
- 197
- 0
- Echo Top
- m
- RETOP
- 0
- -9999.00
-
-
- 888
- 0
- 17
- 192
- 0
- Lightning
- non-dim
- LTNG
- 0
- -9999.00
-
-
- 888
- 0
- 19
- 7
- 0
- Icing
- Table 4.207
- ICI
- 0
- -9999.00
-
-
- 8812
- 0
- 19
- 12
- 0
- Planetary Boundary Layer Regime
- Table 4.209
- PBLREG
- 0
- -9999.00
-
-
- 888
- 0
- 19
- 20
- 0
- Icing
- %
- ICIP
- 0
- -9999.00
-
-
- 888
- 0
- 19
- 23
- 0
- Supercooled Large Droplet (SLD) Probabilitysee note 1
- %
- SLDP
- 0
- -9999.00
-
-
- 414
- 0
- 19
- 192
- 0
- Maximum snow albedo
- %
- MXSALB
- 0
- -9999.00
-
-
- 415
- 0
- 19
- 193
- 0
- Snow-free albedo
- %
- SNFALB
- 0
- -9999.00
-
-
- 888
- 0
- 19
- 217
- 0
- Supercooled Large Droplet Icing
- Table 4.207
- SIPD
- 0
- -9999.00
-
-
- 888
- 0
- 19
- 219
- 0
- Turbulence Potential
- NA
- TURB
- 0
- -9999.00
-
-
- 416
- 0
- 19
- 219
- 5
- Turbulence Potential
- NA
- TURB
- 0
- -9999.00
-
-
- 888
- 0
- 19
- 232
- 0
- Volcanic Ash Forecast Transport and Dispersion
- log10(kg m**-3)
- VAFTAD
- 0
- -9999.00
-
-
- 888
- 0
- 19
- 233
- 0
- Icing Probability
- %
- ICPRB
- 0
- -9999.00
-
-
- 888
- 0
- 19
- 234
- 0
- Icing Severity
- non-dim
- ICSEV
- 0
- -9999.00
-
-
- 417
- 0
- 191
- 192
- 0
- Latitude (-90 to +90)
- Degree
- LATD
- 0
- -9999.00
-
-
- 418
- 0
- 191
- 193
- 0
- East longitude (0 to 360)
- Degree
- LOND
- 0
- -9999.00
-
-
- 420
- 1
- 0
- 192
- 0
- Baseflow-groundwater runoff
- kg m**-2
- BFGR
- 0
- -9999.00
-
-
- 888
- 1
- 0
- 192
- 8
- Baseflow-groundwater runoff
- kg m**-2
- BFGR--
- 0
- -9999.00
-
-
- 421
- 1
- 0
- 193
- 0
- Storm surface runoff
- kg m**-2
- R--M
- 0
- -9999.00
-
-
- 888
- 1
- 0
- 193
- 8
- Storm surface runoff
- kg m**-2
- R--M
- 0
- -9999.00
-
-
- 921
- 1
- 0
- 193
- 11
- Storm surface runoff
- kg m**-2
- R--M
- 0
- -9999.00
-
-
- 888
- 1
- 1
- 193
- 0
- Prob of Frozen Precipitation
- %
- CPOFP
- 0
- -9999.00
-
-
- 422
- 1
- 1
- 194
- 8
- Prob precip exceeding FFG
- %
- PEFG--
- 0
- -9999.00
-
-
- 922
- 1
- 1
- 194
- 11
- Prob precip exceeding FFG
- %
- PEFG--
- 0
- -9999.00
-
-
- 888
- 1
- 1
- 195
- 8
- Probability of Wetting Rain
- %
- CWR--
- 0
- -9999.00
-
-
- 430
- 2
- 0
- 192
- 0
- Volumetric soil moisture content
- fraction
- SOIM
- 0
- -9999.00
-
-
- 888
- 2
- 0
- 192
- 1
- Volumetric soil moisture content
- fraction
- SOIM
- 0
- -9999.00
-
-
- 888
- 2
- 0
- 192
- 2
- Volumetric soil moisture content
- fraction
- SOIM
- 0
- -9999.00
-
-
- 888
- 2
- 0
- 193
- 0
- Ground heat flux
- W m**-2
- GHFX
- 0
- -9999.00
-
-
- 431
- 2
- 0
- 193
- 8
- Ground heat flux
- W m**-2
- GHFX--
- 0
- -9999.00
-
-
- 888
- 2
- 0
- 193
- 11
- Ground heat flux
- W m**-2
- GHFX
- 0
- -9999.00
-
-
- 432
- 2
- 0
- 194
- 0
- Moisture availability
- %
- MSAV
- 0
- -9999.00
-
-
- 433
- 2
- 0
- 195
- 0
- Exchange coefficient
- kg m**-3 m s**-1
- SEXC
- 0
- -9999.00
-
-
- 434
- 2
- 0
- 196
- 0
- Plant canopy surface water
- kg m**-2
- CSH2O
- 0
- -9999.00
-
-
- 435
- 2
- 0
- 197
- 0
- Blackadar's mixing length
- m
- LBLACK
- 0
- -9999.00
-
-
- 436
- 2
- 0
- 198
- 0
- Vegetation type (SiB)
- -
- VGTYP
- 0
- -9999.00
-
-
- 437
- 2
- 0
- 199
- 0
- Canopy conductance
- m/s
- CCOND
- 0
- -9999.00
-
-
- 438
- 2
- 0
- 200
- 0
- Minimal stomatal resistance
- s/m
- RSMIN
- 0
- -9999.00
-
-
- 439
- 2
- 0
- 201
- 0
- Wilting point (0.0-1.0)
- -
- WILT
- 0
- -9999.00
-
-
- 939
- 2
- 0
- 201
- 1
- Wilting point (0.0-1.0)
- -
- WILT
- 0
- -9999.00
-
-
- 440
- 2
- 0
- 202
- 0
- Solar prm in canopy conduct(0-1)
- -
- RCS
- 0
- -9999.00
-
-
- 441
- 2
- 0
- 203
- 0
- Temp para in canopy conductance
- -
- RCT
- 0
- -9999.00
-
-
- 442
- 2
- 0
- 204
- 0
- Humidity para in canopy conduct
- -
- RCQ
- 0
- -9999.00
-
-
- 443
- 2
- 0
- 205
- 0
- Soil moist prm in canopy conduct
- -
- RCSOL
- 0
- -9999.00
-
-
- 888
- 2
- 0
- 206
- 0
- Rate of water dropng from canopy
- -
- RDRIP
- 0
- -9999.00
-
-
- 888
- 2
- 0
- 229
- 0
- Canopy water evaporation
- W/m**2
- EVCW
- 0
- -9999.00
-
-
- 888
- 2
- 0
- 230
- 0
- Transpiration
- W/m**2
- TRANS
- 0
- -9999.00
-
-
- 450
- 2
- 3
- 192
- 0
- Liquid vol soil moist (0.0-1.)
- -
- SOILL
- 0
- -9999.00
-
-
- 451
- 2
- 3
- 193
- 0
- No of soil layers in root zone
- Index
- RLYRS
- 0
- -9999.00
-
-
- 452
- 2
- 3
- 194
- 0
- Surface slope type
- Index
- SLTYP
- 0
- -9999.00
-
-
- 453
- 2
- 3
- 195
- 0
- Transpiration stress-onset(0.-1.
- -
- SMREF
- 0
- -9999.00
-
-
- 454
- 2
- 3
- 196
- 0
- Direct evaporation cease (0.-1.)
- -
- SMDRY
- 0
- -9999.00
-
-
- 455
- 2
- 3
- 197
- 0
- Soil porosity (0.0-1.0)
- -
- POROS
- 0
- -9999.00
-
-
- 888
- 2
- 3
- 198
- 0
- Direct evaporation from bare soi
- W m**-2
- EVBS
- 0
- -9999.00
-
-
- 888
- 2
- 3
- 199
- 8
- Land Surface Precipitation Accum
- l kg m**-2
- LSPA--
- 0
- -9999.00
-
-
- 888
- 2
- 3
- 203
- 0
- Field Capacity
- fraction
- FLDCP
- 0
- -9999.00
-
-
- 888
- 2
- 3
- 203
- 1
- Field Capacity
- fraction
- FLDCP
- 0
- -9999.00
-
-
- 888
- 3
- 192
- 0
- 0
- SB Temperature for GOES 12, Ch 2
- K
- SBT122
- 0
- -9999.00
-
-
- 888
- 3
- 192
- 1
- 0
- SB Temperature for GOES 12, Ch 3
- K
- SBT123
- 0
- -9999.00
-
-
- 888
- 3
- 192
- 2
- 0
- SB Temperature for GOES 12, Ch 4
- K
- SBT124
- 0
- -9999.00
-
-
- 888
- 3
- 192
- 3
- 0
- SB Temperature for GOES 12, Ch 6
- K
- SBT126
- 0
- -9999.00
-
-
- 460
- 10
- 0
- 192
- 0
- Wave Steepness
- -
- WSTP
- 0
- -9999.00
-
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/grib2vars.xsd b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/grib2vars.xsd
deleted file mode 100644
index bf7ba41d1b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/grib2vars.xsd
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
- The grib2 vars ID
-
-
-
-
-
-
-
-
-
-
-
-
- The discipline number
-
-
-
-
-
-
-
-
-
-
-
-
- The category
-
-
-
-
-
-
-
-
-
-
-
-
- parameter ID
-
-
-
-
-
-
-
-
-
-
-
- product definition template
-
-
-
-
-
-
-
-
-
-
-
- name description
-
-
-
-
-
-
-
-
-
-
- units
-
-
-
-
-
-
-
-
-
-
- abbreviation
-
-
-
-
-
-
-
-
-
-
- scale factor
-
-
-
-
-
-
-
-
-
-
-
-
-
- The missing
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- A grib2 vars
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/grib2vcrd.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/grib2vcrd.xml
deleted file mode 100644
index 2993e64118..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/grib2vcrd.xml
+++ /dev/null
@@ -1,581 +0,0 @@
-
-
-
-
- 1
- 1
- 1
- Ground or water surface
- -
- NONE
- 0
-
-
- 2
- 1
- 255
- Ground or water surface
- -
- NONE
- 0
-
-
- 3
- 2
- 255
- Cloud base level
- -
- CLDL
- 0
-
-
- 4
- 3
- 255
- Level of cloud tops
- -
- CLDT
- 0
-
-
- 5
- 4
- 255
- Level of 0 deg C isotherm
- -
- FRZL
- 0
-
-
- 6
- 5
- 255
- Adiabatic condensation level
- -
- LCLV
- 0
-
-
- 7
- 6
- 255
- Maximum wind level
- -
- MWSL
- 0
-
-
- 8
- 7
- 255
- Tropopause
- -
- TROP
- 0
-
-
- 9
- 8
- 255
- Nominal top of the atmosphere
- -
- TOPA
- 0
-
-
- 10
- 9
- 255
- Sea bottom
- -
- SEAB
- 0
-
-
- 11
- 20
- 255
- Isothermal level
- K
- TMPL
- 0
-
-
- 12
- 100
- 255
- Isobaric surface
- Pa
- PRES
- -2
-
-
- 13
- 100
- 100
- Layer between two isobaric sfcs
- Pa
- PRES
- -2
-
-
- 14
- 101
- 255
- Mean sea level
- -
- NONE
- 0
-
-
- 15
- 102
- 255
- Specific altitude above msl
- m
- HGHT
- 0
-
-
- 16
- 102
- 102
- Layer between two spec alts (msl)
- m
- HGHT
- 0
-
-
- 17
- 103
- 255
- Specified height level above gnd
- m
- HGHT
- 0
-
-
- 18
- 103
- 103
- Layer between two spec alts (gnd)
- m
- HGHT
- 0
-
-
- 19
- 104
- 255
- Sigma level
- sigma value
- SGMA
- 4
-
-
- 21
- 104
- 104
- Layer between two sigma levels
- sigma values
- SGMA
- 4
-
-
- 22
- 105
- 255
- Hybrid level
- -
- HYBL
- 0
-
-
- 23
- 105
- 105
- Layer between two hybrid levels
- -
- HYBL
- 0
-
-
- 24
- 106
- 255
- Depth below land surface
- m
- DPTH
- 0
-
-
- 25
- 106
- 106
- Layer btwn 2 dpths below lnd sfc
- m
- DPTH
- 0
-
-
- 26
- 107
- 255
- Isentropic (theta) level
- K
- THTA
- 0
-
-
- 27
- 107
- 107
- Layer between two isent levels
- K
- THTA
- 0
-
-
- 28
- 108
- 255
- Level at press diff from ground
- Pa
- PDLV
- -2
-
-
- 29
- 108
- 108
- Pressure difference layer
- Pa
- PDLY
- -2
-
-
- 30
- 109
- 255
- Potential vorticity surface
- K*m**2*kg-1*s-1
- POTV
- 6
-
-
- 31
- 111
- 255
- ETA level
- -
- ELVL
- 0
-
-
- 32
- 111
- 111
- ETA layer
- -
- ELYR
- 0
-
-
- 34
- 160
- 255
- Depth below sea-level
- m
- DPTH
- 0
-
-
- 51
- 200
- 255
- Entire atmosphere as a layer
- -
- NONE
- 0
-
-
- 52
- 201
- 255
- Entire ocean as a layer
- -
- NONE
- 0
-
-
- 152
- 204
- 255
- Highest tropospheric freezing lev
- -
- HTFL
- 0
-
-
- 888
- 206
- 255
- Grid scale cloud bottom level
- -
- GSCBL
- 0
-
-
- 888
- 207
- 255
- Grid scale cloud top level
- -
- GSCTL
- 0
-
-
- 53
- 209
- 255
- Boundary layer cloud bottom level
- -
- BCBL
- 0
-
-
- 54
- 210
- 255
- Boundary layer cloud top level
- -
- BCTL
- 0
-
-
- 55
- 211
- 255
- Boundary layer cloud layer
- -
- BCLY
- 0
-
-
- 56
- 212
- 255
- Low cloud bottom level
- -
- LCBL
- 0
-
-
- 57
- 213
- 255
- Low cloud top level
- -
- LCTL
- 0
-
-
- 58
- 214
- 255
- Low cloud layer
- -
- LCLY
- 0
-
-
- 59
- 215
- 255
- Cloud Ceiling
- -
- CEIL
- 0
-
-
- 888
- 220
- 255
- Planetary Boundary Layer
- -
- PLBL
- 0
-
-
- 60
- 222
- 255
- Middle cloud bottom level
- -
- MCBL
- 0
-
-
- 61
- 223
- 255
- Middle cloud top level
- -
- MCTL
- 0
-
-
- 62
- 224
- 255
- Middle cloud layer
- -
- MCLY
- 0
-
-
- 63
- 232
- 255
- High cloud bottom level
- -
- HCBL
- 0
-
-
- 64
- 233
- 255
- High cloud top level
- -
- HCTL
- 0
-
-
- 65
- 234
- 255
- High cloud layer
- -
- HCLY
- 0
-
-
- 66
- 241
- 255
- Ordered Sequence of Data
- -
- OSEQ
- 0
-
-
- 67
- 242
- 255
- Convective cloud bottom level
- -
- CCBL
- 0
-
-
- 68
- 243
- 255
- Convective cloud top level
- -
- CCTL
- 0
-
-
- 69
- 244
- 255
- Convective cloud layer
- -
- CCLY
- 0
-
-
- 888
- 245
- 255
- Lowest level of the wet bulb zero
- -
- LWBZ
- 0
-
-
- 70
- 246
- 255
- Maximum equiv potential tmp level
- -
- MTHE
- 0
-
-
- 71
- 247
- 255
- Equilibrium level
- -
- EHLT
- 0
-
-
- 888
- 248
- 255
- Shallow convective cloud bottom l
- -
- SCCBT
- 0
-
-
- 888
- 249
- 255
- Shallow convective cloud top leve
- -
- SCCTL
- 0
-
-
- 888
- 251
- 255
- Deep convective cloud bottom leve
- -
- DCCBL
- 0
-
-
- 888
- 252
- 255
- Deep convective cloud top level
- -
- DCCTL
- 0
-
-
- 888
- 253
- 255
- Lowest bottom lvl of supercooled
- -
- LBSLW
- 0
-
-
- 888
- 254
- 255
- Highest top lvl of supercooled li
- -
- HTSLW
- 0
-
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/grib2vcrd.xsd b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/grib2vcrd.xsd
deleted file mode 100644
index 2cecab83b3..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/grib2vcrd.xsd
+++ /dev/null
@@ -1,112 +0,0 @@
-
-
-
-
-
- The grib2 vertical coordinate conversion ID
-
-
-
-
-
-
-
-
-
-
-
-
- The vcrdid1 number
-
-
-
-
-
-
-
-
-
-
-
-
- The vcrdid2
-
-
-
-
-
-
-
-
-
-
-
-
- name description
-
-
-
-
-
-
-
-
-
-
- units
-
-
-
-
-
-
-
-
-
-
- abbreviation
-
-
-
-
-
-
-
-
-
-
- scale factor
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- A grib2 vertical coorinate conversion
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/master_ncgrib1_lookup.txt b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/master_ncgrib1_lookup.txt
deleted file mode 100644
index a78e4a8631..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/master_ncgrib1_lookup.txt
+++ /dev/null
@@ -1,62 +0,0 @@
-// This file, master_ncgrib1_lookup.txt, is where one can apply
-// arbitrary preingest translations to received GRIB1 variables
-// based on certain decoded GRIB1 parameters.
-// Each line contains two space delimited items, an input hash
-// followed by a translation.
-//
-// The input hash can have one of the following formats:
-//
-// DDD_MMM-CCC-SSS_NXxNY_AAAAA-P_FFFFF
-// DDD_MMM-CCC-SSS_NXxNY_AAAAA-P
-// DDD_MMM-CCC-SSS_AAAAA-P
-// DDD_AAAAA-P
-// DDD_MMM-CCC-SSS
-// DDD
-//
-// where the dashes, underscores, and lower case x are all literal, and
-// DDD is an awips grid data variable (from the first column of
-// dataFieldTable.txt), MMM is the GRIB process (or model), CCC is the
-// originating center, SSS is the originating subcenter, NX and NY are
-// the dimensions of the grid, AAAAA is the accumulation period in seconds,
-// P is a perturbation index, and FFFFF is the forecast time in seconds.
-// The NX, NY, AAAAA, P, and FFFFF are simple whole numbers, while DDD,
-// MMM, CCC, and SSS are text identifiers. If the subcenter translates
-// as an empty string or NONE, the -SSS will not be part of the input hash.
-// None of these always necessarily have the same number of characters or
-// digits as in the idealized format descriptions. The GribDecoder always
-// tries all these possible hashes in the order shown and uses the first
-// match found.
-//
-// The translation can have one of the following formats:
-//
-// DDD
-// DDD|LLL
-// DDD||P
-// DDD|LLL|P
-//
-// The vertical bars are literal, the DDD is an awips grid data variable
-// and P is a perturbation index as before. LLL is a grid plane (level) id.
-// It is totally legal for the DDD of the translation to be the same as
-// that of the input hash, one might do this if one only wanted to
-// assign a specific level or change the perturbation, or prevent a more
-// broadly defined translation from affecting a specific case.
-s2s
-TP_HPC_MPE-NWSO-KHPC TP
-TP_ACR_MPE-NWSO-KACR TP
-TP_ALR_MPE-NWSO-KALR TP
-TP_FWR_MPE-NWSO-KFWR TP
-TP_KRF_MPE-NWSO-KKRF TP
-TP_MSR_MPE-NWSO-KMSR TP
-TP_ORN_MPE-NWSO-KORN TP
-TP_PTR_MPE-NWSO-KPTR TP
-TP_RHA_MPE-NWSO-KRHA TP
-TP_RSA_MPE-NWSO-KRSA TP
-TP_STR_MPE-NWSO-KSTR TP
-TP_TAR_MPE-NWSO-KTAR TP
-TP_TIR_MPE-NWSO-KTIR TP
-TP_TUA_MPE-NWSO-KTUA TP
-// Make 3hr accum at 3 & 6 get thrown on floor for RUC40
-LgSP_RUC2-NCEP_151x113_10800-0_10800 PWS64
-LgSP_RUC2-NCEP_151x113_10800-0_21600 PWS64
-CP_RUC2-NCEP_151x113_10800-0_10800 PWS64
-CP_RUC2-NCEP_151x113_10800-0_21600 PWS64
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/master_ncgrib2_lookup.txt b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/master_ncgrib2_lookup.txt
deleted file mode 100644
index 3e87d494c0..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/master_ncgrib2_lookup.txt
+++ /dev/null
@@ -1,176 +0,0 @@
-// This file, master_ncgrib2_lookup.txt, is where one can apply
-// arbitrary preingest translations to received GRIB2 variables
-// based on certain decoded GRIB2 parameters.
-// Each line contains two space delimited items, an input hash
-// followed by a translation.
-//
-// The input hash can have one of the following formats:
-//
-// DDD_MMM-CCC-SSS_NXxNY_AAAAA-P_FFFFF
-// DDD_MMM-CCC-SSS_NXxNY_AAAAA-P
-// DDD_MMM-CCC-SSS_AAAAA-P
-// DDD_AAAAA-P
-// DDD_MMM-CCC-SSS
-// DDD
-//
-//ThP_GFS-NCEP-GFS_720x361_43200-0 ThP12hr
-// where the dashes, underscores, and lower case x are all literal, and
-// DDD is an awips grid data variable (from the first column of
-// dataFieldTable.txt), MMM is the GRIB process (or model), CCC is the
-// originating center, SSS is the originating subcenter, NX and NY are
-// the dimensions of the grid, AAAAA is the accumulation period in seconds,
-// P is a perturbation index, and FFFFF is the forecast time in seconds.
-// The NX, NY, AAAAA, P, and FFFFF are simple whole numbers, while DDD,
-// MMM, CCC, and SSS are text identifiers. If the subcenter translates
-// as an empty string or NONE, the -SSS will not be part of the input hash.
-// None of these always necessarily have the same number of characters or
-// digits as in the idealized format descriptions. The Grib2Decoder always
-// tries all these possible hashes in the order shown and uses the first
-// match found.
-//
-// The translation can have one of the following formats:
-//
-// DDD
-// DDD|LLL
-// DDD||P
-// DDD|LLL|P
-//
-// The vertical bars are literal, the DDD is an awips grid data variable
-// and P is a perturbation index as before. LLL is a grid plane (level) id.
-// It is totally legal for the DDD of the translation to be the same as
-// that of the input hash, one might do this if one only wanted to
-// assign a specific level or change the perturbation, or prevent a more
-// broadly defined translation from affecting a specific case.
-s2s
-TP_254E3_T170L42A-NCEP-MDL_1073x689_21600-0 POP6hr
-TP_254E3_T170L42A-NCEP-MDL_1073x689_43200-0 POP12hr
-TP_T170L42A-NCEP-MDL_1073x689_21600-0 TP6hr
-TP_T170L42A-NCEP-MDL_1073x689_43200-0 TP12hr
-ThP_T170L42A-NCEP-MDL_1073x689_43200-0 ThP12hr
-ThP_T170L42A-NCEP-MDL_1073x689_21600-0 ThP6hr
-ThP_T170L42A-NCEP-MDL_1073x689_10800-0 ThP3hr
-TP_254E3_T170L42A-NCEP-MDL_1649x1105_21600-0 POP6hr
-TP_254E3_T170L42A-NCEP-MDL_1649x1105_43200-0 POP12hr
-WS_17491E3 Prob34
-WS_25722E3 Prob50
-WS_32924E3 Prob64
-PWS34_17491E3 PWS34
-PWS50_25722E3 PWS50
-PWS64_32924E3 PWS64
-MxT_ECMFMOD-1DEG-ECMF_10800-0 MxT3hr
-MxT_ECMFMOD-1DEG-ECMF_21600-0 MxT6hr
-MnT_ECMFMOD-1DEG-ECMF_10800-0 MnT3hr
-MnT_ECMFMOD-1DEG-ECMF_21600-0 MnT6hr
-TP_ECMFMOD-1DEG-ECMF TP_ECMWF
-TP_HPCQPF-NCEP-HPC_432000-0 TP120hr
-TP_HPCQPF-NCEP-HPC_172800-0 TP48hr
-SNOLmean_43200-0 SNOL12mean
-SNOLsprd_43200-0 SNOL12sprd
-TPmean_10800-0 TP3mean
-TPsprd_10800-0 TP3sprd
-TPmean_21600-0 TP6mean
-TPsprd_21600-0 TP6sprd
-TPmean_43200-0 TP12mean
-TPsprd_43200-0 TP12sprd
-TPmean_86400-0 TP24mean
-TPsprd_86400-0 TP24sprd
-Vis_1609000E3 Visc1
-Vis_4827000E3 Visc2
-WS_12890E3 WSc1
-WS_17500E3 WSc2
-WS_25700E3 WSc3
-WS_25780E3 WSc4
-GH_152500E3 Cigc1
-GH_305000E3 Cigc2
-GH_914600E3 Cigc3
-T_273000E3 Tc1
-CAPE_500000E3 CAPEc1
-CAPE_1000000E3 CAPEc2
-CAPE_2000000E3 CAPEc3
-CAPE_3000000E3 CAPEc4
-CAPE_4000000E3 CAPEc5
-CFRZR_1000E3 CFRZRc1
-CICEP_1000E3 CICEPc1
-CRAIN_1000E3 CRAINc1
-CSNOW_1000E3 CSNOWc1
-PLI_0E3 PLIxc1
-PLI_-2000E3 PLIxc2
-PLI_-4000E3 PLIxc3
-PLI_-6000E3 PLIxc4
-PLI_-8000E3 PLIxc5
-TP_250E3_10800-0 tp3c1
-TP_1270E3_10800-0 tp3c2
-TP_2540E3_10800-0 tp3c3
-TP_6350E3_10800-0 tp3c4
-TP_12700E3_10800-0 tp3c5
-TP_25400E3_10800-0 tp3c6
-TP_38100E3_10800-0 tp3c7
-TP_50800E3_10800-0 tp3c8
-TP_250E3_21600-0 tp6c1
-TP_1270E3_21600-0 tp6c2
-TP_2540E3_21600-0 tp6c3
-TP_6350E3_21600-0 tp6c4
-TP_12700E3_21600-0 tp6c5
-TP_25400E3_21600-0 tp6c6
-TP_38100E3_21600-0 tp6c7
-TP_50800E3_21600-0 tp6c8
-TP_250E3_43200-0 tp12c1
-TP_1270E3_43200-0 tp12c2
-TP_2540E3_43200-0 tp12c3
-TP_6350E3_43200-0 tp12c4
-TP_12700E3_43200-0 tp12c5
-TP_25400E3_43200-0 tp12c6
-TP_38100E3_43200-0 tp12c7
-TP_50800E3_43200-0 tp12c8
-TP_250E3_86400-0 tp24c1
-TP_1270E3_86400-0 tp24c2
-TP_2540E3_86400-0 tp24c3
-TP_6350E3_86400-0 tp24c4
-TP_12700E3_86400-0 tp24c5
-TP_25400E3_86400-0 tp24c6
-TP_38100E3_86400-0 tp24c7
-TP_50800E3_86400-0 tp24c8
-SNOL_25400E3_43200-0 SNOL12c1
-SNOL_50800E3_43200-0 SNOL12c2
-SNOL_101600E3_43200-0 SNOL12c3
-SNOL_152400E3_43200-0 SNOL12c4
-SNOL_190500E3_43200-0 SNOL12c5
-SNOL_203200E3_43200-0 SNOL12c6
-SNOL_254000E3_43200-0 SNOL12c7
-SNOL_304800E3_43200-0 SNOL12c8
-SNOL_406400E3_43200-0 SNOL12c9
-SNOL_609600E3_43200-0 SNOL12c10
-T_66E2_CPCMANU-NCEP-CPC_1073x689_604800-0 PTAM
-T_33E2_CPCMANU-NCEP-CPC_1073x689_604800-0 PTBM
-TP_66E2_CPCMANU-NCEP-CPC_1073x689_604800-0 PPAM
-TP_33E2_CPCMANU-NCEP-CPC_1073x689_604800-0 PPBM
-T_66E2_CPCAUTO-NCEP-CPC_1073x689_172800-0 PTAS
-T_33E2_CPCAUTO-NCEP-CPC_1073x689_172800-0 PTBS
-TP_66E2_CPCAUTO-NCEP-CPC_1073x689_172800-0 PPAS
-TP_33E2_CPCAUTO-NCEP-CPC_1073x689_172800-0 PPBS
-T_66E2_CPCMANU-NCEP-CPC_825x553_604800-0 PTAM
-T_33E2_CPCMANU-NCEP-CPC_825x553_604800-0 PTBM
-TP_66E2_CPCMANU-NCEP-CPC_825x553_604800-0 PPAM
-TP_33E2_CPCMANU-NCEP-CPC_825x553_604800-0 PPBM
-T_66E2_CPCAUTO-NCEP-CPC_825x553_172800-0 PTAS
-T_33E2_CPCAUTO-NCEP-CPC_825x553_172800-0 PTBS
-TP_66E2_CPCAUTO-NCEP-CPC_825x553_172800-0 PPAS
-TP_33E2_CPCAUTO-NCEP-CPC_825x553_172800-0 PPBS
-MxT_NMM-NCEP_10800-0 MxT3hr
-MxT_NMM-NCEP_43200-0 MxT12hr
-MnT_NMM-NCEP_10800-0 MnT3hr
-MnT_NMM-NCEP_43200-0 MnT12hr
-POP_NMM-NCEP_10800-0 prcp3hr
-POP_NMM-NCEP_21600-0 prcp6hr
-POP_NMM-NCEP_43200-0 prcp12hr
-TP_NMM-NCEP_10800-0 TP3hr
-TP_NMM-NCEP_21600-0 TP6hr
-TP_NMM-NCEP_43200-0 TP12hr
-MAXRH_NMM-NCEP_10800-0 MAXRH3hr
-MAXRH_NMM-NCEP_43200-0 MAXRH12hr
-SnD_NMM-NCEP_10800-0 snowd3hr
-SnD_NMM-NCEP_21600-0 snowd6hr
-PTOR_254E3 PTOR
-MINRH_NMM-NCEP_10800-0 MINRH3hr
-MINRH_NMM-NCEP_43200-0 MINRH12hr
-TP_254E3 POP
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/ncgrib1ParamTableMap.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/ncgrib1ParamTableMap.xml
deleted file mode 100644
index f111034efa..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/ncgrib1ParamTableMap.xml
+++ /dev/null
@@ -1,129 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/ncgrib1ParameterConvTable.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/ncgrib1ParameterConvTable.xml
deleted file mode 100644
index 54c0a3ea20..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/ncgrib1ParameterConvTable.xml
+++ /dev/null
@@ -1,8383 +0,0 @@
-
-
-
-
- 7
- 2
- 236
- 0
- 19
- 217
-
-
-
- 7
- 3
- 11
- 0
- 0
- 0
-
-
-
- 7
- 2
- 189
- 0
- 0
- 15
-
-
-
- 7
- 2
- 229
- 0
- 0
- 192
-
-
-
- 7
- 2
- 216
- 0
- 0
- 193
-
-
-
- 7
- 2
- 153
- 0
- 1
- 22
-
-
-
- 7
- 2
- 178
- 0
- 1
- 23
-
-
-
- 7
- 2
- 170
- 0
- 1
- 24
-
-
-
- 7
- 2
- 171
- 0
- 1
- 25
-
-
-
- 7
- 2
- 179
- 0
- 1
- 32
-
-
-
- 7
- 2
- 140
- 0
- 1
- 192
-
-
-
- 7
- 2
- 141
- 0
- 1
- 193
-
-
-
- 7
- 2
- 142
- 0
- 1
- 194
-
-
-
- 7
- 2
- 143
- 0
- 1
- 195
-
-
-
- 7
- 2
- 214
- 0
- 1
- 196
-
-
-
- 7
- 2
- 135
- 0
- 1
- 197
-
-
-
- 7
- 2
- 228
- 0
- 1
- 199
-
-
-
- 7
- 2
- 145
- 0
- 1
- 200
-
-
-
- 7
- 2
- 238
- 0
- 1
- 201
-
-
-
- 7
- 129
- 131
- 0
- 1
- 202
-
-
-
- 7
- 129
- 133
- 0
- 1
- 203
-
-
-
- 7
- 129
- 138
- 0
- 1
- 204
-
-
-
- 7
- 129
- 139
- 0
- 1
- 205
-
-
-
- 7
- 2
- 186
- 0
- 1
- 206
-
-
-
- 7
- 2
- 198
- 0
- 1
- 207
-
-
-
- 7
- 2
- 239
- 0
- 1
- 208
-
-
-
- 7
- 0
- 31
- 0
- 2
- 0
-
-
-
- 7
- 0
- 32
- 0
- 2
- 1
-
-
-
- 7
- 0
- 33
- 0
- 2
- 2
-
-
-
- 7
- 0
- 34
- 0
- 2
- 3
-
-
-
- 7
- 2
- 180
- 0
- 2
- 22
-
-
-
- 7
- 2
- 136
- 0
- 2
- 192
-
-
-
- 7
- 2
- 172
- 0
- 2
- 193
-
-
-
- 7
- 2
- 196
- 0
- 2
- 194
-
-
-
- 7
- 2
- 197
- 0
- 2
- 195
-
-
-
- 7
- 2
- 252
- 0
- 2
- 196
-
-
-
- 7
- 2
- 253
- 0
- 2
- 197
-
-
-
- 7
- 2
- 128
- 0
- 3
- 1
-
-
-
- 7
- 2
- 130
- 0
- 3
- 192
-
-
-
- 7
- 2
- 222
- 0
- 3
- 193
-
-
-
- 7
- 2
- 147
- 0
- 3
- 194
-
-
-
- 7
- 2
- 148
- 0
- 3
- 195
-
-
-
- 7
- 2
- 221
- 0
- 3
- 196
-
-
-
- 7
- 2
- 230
- 0
- 3
- 197
-
-
-
- 7
- 2
- 129
- 0
- 3
- 198
-
-
-
- 7
- 2
- 137
- 0
- 3
- 199
-
-
-
- 7
- 129
- 141
- 0
- 3
- 200
-
-
-
- 7
- 2
- 204
- 0
- 4
- 192
-
-
-
- 7
- 2
- 211
- 0
- 4
- 193
-
-
-
- 7
- 129
- 200
- 0
- 4
- 194
-
-
-
- 7
- 129
- 201
- 0
- 4
- 195
-
-
-
- 7
- 2
- 205
- 0
- 5
- 192
-
-
-
- 7
- 2
- 212
- 0
- 5
- 193
-
-
-
- 7
- 2
- 213
- 0
- 6
- 192
-
-
-
- 7
- 2
- 146
- 0
- 6
- 193
-
-
-
- 7
- 129
- 134
- 0
- 6
- 194
-
-
-
- 7
- 129
- 135
- 0
- 6
- 195
-
-
-
- 7
- 129
- 136
- 0
- 6
- 196
-
-
-
- 7
- 129
- 137
- 0
- 6
- 197
-
-
-
- 7
- 129
- 140
- 0
- 6
- 198
-
-
-
- 7
- 129
- 132
- 0
- 6
- 199
-
-
-
- 7
- 2
- 157
- 0
- 7
- 6
-
-
-
- 7
- 2
- 156
- 0
- 7
- 7
-
-
-
- 7
- 2
- 190
- 0
- 7
- 8
-
-
-
- 7
- 2
- 131
- 0
- 7
- 192
-
-
-
- 7
- 2
- 132
- 0
- 7
- 193
-
-
-
- 7
- 2
- 254
- 0
- 7
- 194
-
-
-
- 7
- 129
- 156
- 0
- 13
- 192
-
-
-
- 7
- 129
- 157
- 0
- 13
- 193
-
-
-
- 7
- 129
- 163
- 0
- 13
- 194
-
-
-
- 7
- 129
- 164
- 0
- 13
- 195
-
-
-
- 7
- 2
- 154
- 0
- 14
- 192
-
-
-
- 7
- 129
- 180
- 0
- 14
- 193
-
-
-
- 7
- 129
- 181
- 0
- 14
- 194
-
-
-
- 7
- 2
- 158
- 0
- 19
- 11
-
-
-
- 7
- 130
- 159
- 0
- 19
- 192
-
-
-
- 7
- 130
- 170
- 0
- 19
- 193
-
-
-
- 7
- 2
- 187
- 0
- 19
- 204
-
-
-
- 7
- 2
- 209
- 0
- 19
- 205
-
-
-
- 7
- 2
- 176
- 0
- 191
- 192
-
-
-
- 7
- 2
- 177
- 0
- 191
- 193
-
-
-
- 7
- 129
- 171
- 0
- 191
- 194
-
-
-
- 7
- 2
- 234
- 1
- 0
- 192
-
-
-
- 7
- 2
- 235
- 1
- 0
- 193
-
-
-
- 7
- 2
- 193
- 1
- 1
- 2
-
-
-
- 7
- 2
- 195
- 1
- 1
- 192
-
-
-
- 7
- 2
- 194
- 1
- 1
- 193
-
-
-
- 7
- 2
- 144
- 2
- 0
- 192
-
-
-
- 7
- 2
- 155
- 2
- 0
- 193
-
-
-
- 7
- 2
- 207
- 2
- 0
- 194
-
-
-
- 7
- 2
- 208
- 2
- 0
- 195
-
-
-
- 7
- 2
- 223
- 2
- 0
- 196
-
-
-
- 7
- 2
- 226
- 2
- 0
- 197
-
-
-
- 7
- 2
- 225
- 2
- 0
- 198
-
-
-
- 7
- 130
- 181
- 2
- 0
- 199
-
-
-
- 7
- 130
- 203
- 2
- 0
- 200
-
-
-
- 7
- 130
- 219
- 2
- 0
- 201
-
-
-
- 7
- 130
- 246
- 2
- 0
- 202
-
-
-
- 7
- 130
- 247
- 2
- 0
- 203
-
-
-
- 7
- 130
- 248
- 2
- 0
- 204
-
-
-
- 7
- 130
- 249
- 2
- 0
- 205
-
-
-
- 7
- 2
- 188
- 2
- 0
- 206
-
-
-
- 7
- 2
- 201
- 2
- 0
- 207
-
-
-
- 7
- 2
- 224
- 2
- 3
- 0
-
-
-
- 7
- 130
- 160
- 2
- 3
- 192
-
-
-
- 7
- 130
- 171
- 2
- 3
- 193
-
-
-
- 7
- 130
- 222
- 2
- 3
- 194
-
-
-
- 7
- 130
- 230
- 2
- 3
- 195
-
-
-
- 7
- 130
- 231
- 2
- 3
- 196
-
-
-
- 7
- 130
- 240
- 2
- 3
- 197
-
-
-
- 7
- 129
- 190
- 3
- 1
- 192
-
-
-
- 7
- 129
- 191
- 3
- 1
- 193
-
-
-
- 7
- 0
- 100
- 10
- 0
- 3
-
-
-
- 7
- 0
- 101
- 10
- 0
- 4
-
-
-
- 7
- 0
- 103
- 10
- 0
- 6
-
-
-
- 7
- 0
- 107
- 10
- 0
- 10
-
-
-
- 7
- 0
- 108
- 10
- 0
- 11
-
-
-
- 7
- 0
- 109
- 10
- 0
- 12
-
-
-
- 7
- 0
- 110
- 10
- 0
- 13
-
-
-
- 7
- 129
- 217
- 0
- 1
- 198
-
-
-
- 7
- 129
- 218
- 0
- 1
- 27
-
-
-
- 7
- 2
- 161
- 0
- 4
- 196
-
-
-
- 7
- 129
- 165
- 0
- 16
- 192
-
-
-
- 7
- 129
- 166
- 0
- 16
- 193
-
-
-
- 7
- 129
- 167
- 0
- 16
- 194
-
-
-
- 7
- 129
- 211
- 0
- 16
- 195
-
-
-
- 7
- 129
- 212
- 0
- 16
- 196
-
-
-
- 7
- 128
- 130
- 10
- 3
- 194
-
-
-
- 7
- 129
- 127
- 0
- 1
- 198
-
-
-
- 7
- 129
- 192
- 0
- 2
- 198
-
-
-
- 7
- 129
- 192
- 0
- 2
- 199
-
-
-
- 7
- 129
- 188
- 0
- 2
- 200
-
-
-
- 7
- 129
- 189
- 0
- 2
- 201
-
-
-
- 7
- 129
- 207
- 0
- 2
- 202
-
-
-
- 7
- 129
- 198
- 10
- 3
- 195
-
-
-
- 7
- 129
- 186
- 10
- 4
- 192
-
-
-
- 7
- 129
- 187
- 10
- 4
- 194
-
-
-
- 7
- 128
- 177
- 10
- 3
- 196
-
-
-
- 7
- 128
- 178
- 10
- 1
- 193
-
-
-
- 7
- 128
- 179
- 10
- 1
- 194
-
-
-
- 7
- 128
- 179
- 10
- 1
- 194
-
-
-
- 7
- 128
- 183
- 10
- 1
- 195
-
-
-
- 7
- 128
- 184
- 10
- 1
- 196
-
-
-
- 7
- 129
- 179
- 0
- 19
- 205
-
-
-
- 7
- 129
- 185
- 0
- 19
- 206
-
-
-
- 7
- 129
- 186
- 0
- 19
- 207
-
-
-
- 7
- 129
- 187
- 0
- 19
- 208
-
-
-
- 7
- 129
- 177
- 0
- 19
- 209
-
-
-
- 7
- 129
- 178
- 0
- 19
- 210
-
-
-
- 7
- 130
- 189
- 0
- 19
- 211
-
-
-
- 7
- 130
- 190
- 0
- 19
- 212
-
-
-
- 7
- 130
- 191
- 0
- 19
- 213
-
-
-
- 7
- 130
- 192
- 0
- 19
- 214
-
-
-
- 7
- 129
- 149
- 10
- 0
- 192
-
-
-
- 7
- 128
- 188
- 0
- 1
- 211
-
-
-
- 7
- 128
- 192
- 0
- 3
- 205
-
-
-
- 7
- 129
- 220
- 0
- 7
- 195
-
-
-
- 7
- 130
- 179
- 2
- 0
- 228
-
-
-
- 7
- 130
- 198
- 0
- 1
- 212
-
-
-
- 7
- 2
- 199
- 2
- 3
- 198
-
-
-
- 7
- 2
- 200
- 2
- 0
- 208
-
-
-
- 7
- 2
- 210
- 2
- 0
- 230
-
-
-
- 7
- 129
- 182
- 0
- 2
- 204
-
-
-
- 7
- 2
- 241
- 0
- 0
- 195
-
-
-
- 7
- 129
- 195
- 10
- 4
- 195
-
-
-
- 7
- 128
- 171
- 10
- 3
- 197
-
-
-
- 7
- 128
- 180
- 10
- 3
- 198
-
-
-
- 7
- 128
- 193
- 10
- 3
- 199
-
-
-
- 7
- 128
- 194
- 10
- 3
- 200
-
-
-
- 7
- 128
- 190
- 10
- 3
- 201
-
-
-
- 7
- 128
- 185
- 10
- 4
- 196
-
-
-
- 7
- 128
- 185
- 10
- 4
- 194
-
-
-
- 7
- 2
- 242
- 0
- 0
- 196
-
-
-
- 7
- 2
- 243
- 0
- 1
- 213
-
-
-
- 7
- 2
- 244
- 0
- 0
- 201
-
-
-
- 7
- 2
- 245
- 0
- 1
- 214
-
-
-
- 7
- 2
- 246
- 0
- 0
- 202
-
-
-
- 7
- 2
- 247
- 0
- 2
- 208
-
-
-
- 7
- 2
- 248
- 0
- 2
- 209
-
-
-
- 7
- 2
- 249
- 0
- 1
- 215
-
-
-
- 7
- 2
- 250
- 0
- 4
- 197
-
-
-
- 7
- 2
- 251
- 0
- 5
- 194
-
-
-
- 7
- 2
- 1
- 0
- 3
- 0
-
-
-
- 7
- 2
- 2
- 0
- 3
- 1
-
-
-
- 7
- 2
- 3
- 0
- 3
- 2
-
-
-
- 7
- 2
- 4
- 0
- 2
- 14
-
-
-
- 7
- 2
- 5
- 0
- 3
- 3
-
-
-
- 7
- 2
- 6
- 0
- 3
- 4
-
-
-
- 7
- 2
- 7
- 0
- 3
- 5
-
-
-
- 7
- 2
- 8
- 0
- 3
- 6
-
-
-
- 7
- 2
- 9
- 0
- 3
- 7
-
-
-
- 7
- 2
- 10
- 0
- 14
- 0
-
-
-
- 7
- 2
- 11
- 0
- 0
- 0
-
-
-
- 7
- 2
- 12
- 0
- 0
- 1
-
-
-
- 7
- 2
- 13
- 0
- 0
- 2
-
-
-
- 7
- 2
- 14
- 0
- 0
- 3
-
-
-
- 7
- 2
- 15
- 0
- 0
- 4
-
-
-
- 7
- 2
- 16
- 0
- 0
- 5
-
-
-
- 7
- 2
- 17
- 0
- 0
- 6
-
-
-
- 7
- 2
- 18
- 0
- 0
- 7
-
-
-
- 7
- 2
- 19
- 0
- 0
- 8
-
-
-
- 7
- 2
- 20
- 0
- 19
- 0
-
-
-
- 7
- 2
- 21
- 0
- 15
- 6
-
-
-
- 7
- 2
- 22
- 0
- 15
- 7
-
-
-
- 7
- 2
- 23
- 0
- 15
- 8
-
-
-
- 7
- 2
- 24
- 0
- 7
- 0
-
-
-
- 7
- 2
- 25
- 0
- 0
- 9
-
-
-
- 7
- 2
- 26
- 0
- 3
- 8
-
-
-
- 7
- 2
- 27
- 0
- 3
- 9
-
-
-
- 7
- 2
- 28
- 10
- 0
- 0
-
-
-
- 7
- 2
- 29
- 10
- 0
- 1
-
-
-
- 7
- 2
- 30
- 10
- 0
- 2
-
-
-
- 7
- 2
- 31
- 0
- 2
- 0
-
-
-
- 7
- 2
- 32
- 0
- 2
- 1
-
-
-
- 7
- 2
- 33
- 0
- 2
- 2
-
-
-
- 7
- 2
- 34
- 0
- 2
- 3
-
-
-
- 7
- 2
- 35
- 0
- 2
- 4
-
-
-
- 7
- 2
- 36
- 0
- 2
- 5
-
-
-
- 7
- 2
- 37
- 0
- 2
- 6
-
-
-
- 7
- 2
- 38
- 0
- 2
- 7
-
-
-
- 7
- 2
- 39
- 0
- 2
- 8
-
-
-
- 7
- 2
- 40
- 0
- 2
- 9
-
-
-
- 7
- 2
- 41
- 0
- 2
- 10
-
-
-
- 7
- 2
- 42
- 0
- 2
- 11
-
-
-
- 7
- 2
- 43
- 0
- 2
- 12
-
-
-
- 7
- 2
- 44
- 0
- 2
- 13
-
-
-
- 7
- 2
- 45
- 0
- 2
- 15
-
-
-
- 7
- 2
- 46
- 0
- 2
- 16
-
-
-
- 7
- 2
- 47
- 10
- 1
- 0
-
-
-
- 7
- 2
- 48
- 10
- 1
- 1
-
-
-
- 7
- 2
- 49
- 10
- 1
- 2
-
-
-
- 7
- 2
- 50
- 10
- 1
- 3
-
-
-
- 7
- 2
- 51
- 0
- 1
- 0
-
-
-
- 7
- 2
- 52
- 0
- 1
- 1
-
-
-
- 7
- 2
- 53
- 0
- 1
- 2
-
-
-
- 7
- 2
- 54
- 0
- 1
- 3
-
-
-
- 7
- 2
- 55
- 0
- 1
- 4
-
-
-
- 7
- 2
- 56
- 0
- 1
- 5
-
-
-
- 7
- 2
- 57
- 0
- 1
- 6
-
-
-
- 7
- 2
- 58
- 0
- 6
- 0
-
-
-
- 7
- 2
- 59
- 0
- 1
- 7
-
-
-
- 7
- 2
- 60
- 0
- 19
- 2
-
-
-
- 7
- 2
- 61
- 0
- 1
- 8
-
-
-
- 7
- 2
- 62
- 0
- 1
- 9
-
-
-
- 7
- 2
- 63
- 0
- 1
- 10
-
-
-
- 7
- 2
- 64
- 0
- 1
- 12
-
-
-
- 7
- 2
- 65
- 0
- 1
- 13
-
-
-
- 7
- 2
- 66
- 0
- 1
- 11
-
-
-
- 7
- 2
- 67
- 0
- 19
- 3
-
-
-
- 7
- 2
- 68
- 10
- 4
- 2
-
-
-
- 7
- 2
- 69
- 10
- 4
- 0
-
-
-
- 7
- 2
- 70
- 10
- 4
- 1
-
-
-
- 7
- 2
- 71
- 0
- 6
- 1
-
-
-
- 7
- 2
- 72
- 0
- 6
- 2
-
-
-
- 7
- 2
- 73
- 0
- 6
- 3
-
-
-
- 7
- 2
- 74
- 0
- 6
- 4
-
-
-
- 7
- 2
- 75
- 0
- 6
- 5
-
-
-
- 7
- 2
- 76
- 0
- 6
- 6
-
-
-
- 7
- 2
- 77
- 0
- 7
- 1
-
-
-
- 7
- 2
- 78
- 0
- 1
- 14
-
-
-
- 7
- 2
- 79
- 0
- 1
- 15
-
-
-
- 7
- 2
- 80
- 10
- 3
- 0
-
-
-
- 7
- 2
- 81
- 2
- 0
- 0
-
-
-
- 7
- 2
- 82
- 10
- 3
- 1
-
-
-
- 7
- 2
- 83
- 2
- 0
- 1
-
-
-
- 7
- 2
- 84
- 0
- 19
- 1
-
-
-
- 7
- 2
- 85
- 2
- 0
- 2
-
-
-
- 7
- 2
- 86
- 2
- 0
- 3
-
-
-
- 7
- 2
- 87
- 2
- 0
- 4
-
-
-
- 7
- 2
- 88
- 10
- 4
- 3
-
-
-
- 7
- 2
- 89
- 0
- 3
- 10
-
-
-
- 7
- 2
- 90
- 2
- 0
- 5
-
-
-
- 7
- 2
- 91
- 10
- 2
- 0
-
-
-
- 7
- 2
- 92
- 10
- 2
- 1
-
-
-
- 7
- 2
- 93
- 10
- 2
- 2
-
-
-
- 7
- 2
- 94
- 10
- 2
- 3
-
-
-
- 7
- 2
- 95
- 10
- 2
- 4
-
-
-
- 7
- 2
- 96
- 10
- 2
- 5
-
-
-
- 7
- 2
- 97
- 10
- 2
- 6
-
-
-
- 7
- 2
- 98
- 10
- 2
- 7
-
-
-
- 7
- 2
- 99
- 0
- 1
- 16
-
-
-
- 7
- 2
- 100
- 10
- 0
- 3
-
-
-
- 7
- 2
- 101
- 10
- 0
- 4
-
-
-
- 7
- 2
- 102
- 10
- 0
- 5
-
-
-
- 7
- 2
- 103
- 10
- 0
- 6
-
-
-
- 7
- 2
- 104
- 10
- 0
- 7
-
-
-
- 7
- 2
- 105
- 10
- 0
- 8
-
-
-
- 7
- 2
- 106
- 10
- 0
- 9
-
-
-
- 7
- 2
- 107
- 10
- 0
- 10
-
-
-
- 7
- 2
- 108
- 10
- 0
- 11
-
-
-
- 7
- 2
- 109
- 10
- 0
- 12
-
-
-
- 7
- 2
- 110
- 10
- 0
- 13
-
-
-
- 7
- 2
- 111
- 0
- 4
- 0
-
-
-
- 7
- 2
- 112
- 0
- 5
- 0
-
-
-
- 7
- 2
- 113
- 0
- 4
- 1
-
-
-
- 7
- 2
- 114
- 0
- 5
- 1
-
-
-
- 7
- 2
- 115
- 0
- 5
- 2
-
-
-
- 7
- 2
- 116
- 0
- 4
- 2
-
-
-
- 7
- 2
- 117
- 0
- 4
- 3
-
-
-
- 7
- 2
- 118
- 0
- 4
- 4
-
-
-
- 7
- 2
- 119
- 0
- 4
- 5
-
-
-
- 7
- 2
- 120
- 0
- 4
- 6
-
-
-
- 7
- 2
- 121
- 0
- 0
- 10
-
-
-
- 7
- 2
- 122
- 0
- 0
- 11
-
-
-
- 7
- 2
- 123
- 0
- 2
- 20
-
-
-
- 7
- 2
- 124
- 0
- 2
- 17
-
-
-
- 7
- 2
- 125
- 0
- 2
- 18
-
-
-
- 7
- 2
- 126
- 0
- 2
- 19
-
-
-
- 7
- 2
- 127
- 255
- 255
- 255
-
-
-
- 7
- 2
- 187
- 0
- 17
- 192
-
-
-
- 7
- 2
- 209
- 0
- 19
- 204
-
-
-
- 7
- 129
- 168
- 0
- 1
- 209
-
-
-
- 7
- 129
- 169
- 0
- 1
- 210
-
-
-
- 7
- 2
- 181
- 0
- 3
- 201
-
-
-
- 7
- 2
- 182
- 0
- 3
- 202
-
-
-
- 7
- 2
- 183
- 0
- 3
- 203
-
-
-
- 7
- 2
- 184
- 0
- 3
- 204
-
-
-
- 7
- 128
- 254
- 0
- 0
- 194
-
-
-
- 7
- 1
- 91
- 10
- 2
- 0
-
-
-
- 7
- 0
- 49
- 10
- 1
- 2
-
-
-
- 7
- 0
- 50
- 10
- 1
- 3
-
-
-
- 7
- 0
- 80
- 10
- 3
- 0
-
-
-
- 7
- 0
- 82
- 10
- 3
- 1
-
-
-
- 7
- 0
- 88
- 10
- 4
- 3
-
-
-
- 7
- 1
- 49
- 10
- 1
- 2
-
-
-
- 7
- 1
- 50
- 10
- 1
- 3
-
-
-
- 7
- 1
- 80
- 10
- 3
- 0
-
-
-
- 7
- 1
- 88
- 10
- 4
- 3
-
-
-
- 7
- 1
- 40
- 0
- 2
- 9
-
-
-
- 7
- 1
- 67
- 0
- 19
- 3
-
-
-
- 7
- 3
- 2
- 0
- 3
- 1
-
-
-
- 7
- 3
- 7
- 0
- 3
- 5
-
-
-
- 7
- 130
- 161
- 0
- 1
- 29
-
-
-
- 7
- 129
- 193
- 0
- 2
- 199
-
-
-
- 7
- 129
- 208
- 0
- 2
- 203
-
-
-
- 7
- 1
- 33
- 0
- 2
- 2
-
-
-
- 7
- 1
- 34
- 0
- 2
- 3
-
-
-
- 7
- 1
- 2
- 0
- 3
- 1
-
-
-
- 7
- 1
- 7
- 0
- 3
- 5
-
-
-
- 7
- 128
- 186
- 10
- 4
- 192
-
-
-
- 7
- 128
- 187
- 10
- 4
- 193
-
-
-
- 7
- 128
- 178
- 10
- 1
- 192
-
-
-
- 7
- 128
- 179
- 10
- 1
- 193
-
-
-
- 7
- 128
- 183
- 10
- 1
- 194
-
-
-
- 7
- 128
- 184
- 10
- 1
- 195
-
-
-
- 7
- 129
- 219
- 0
- 6
- 13
-
-
-
- 7
- 129
- 220
- 0
- 19
- 12
-
-
-
- 7
- 129
- 230
- 0
- 1
- 242
-
-
-
- 7
- 130
- 179
- 2
- 0
- 210
-
-
-
- 7
- 2
- 210
- 2
- 0
- 209
-
-
-
- 7
- 140
- 168
- 0
- 19
- 217
-
-
-
- 7
- 140
- 169
- 0
- 19
- 218
-
-
-
- 7
- 140
- 170
- 0
- 19
- 219
-
-
-
- 7
- 140
- 171
- 0
- 19
- 220
-
-
-
- 7
- 140
- 172
- 0
- 19
- 221
-
-
-
- 7
- 140
- 173
- 0
- 19
- 222
-
-
-
- 7
- 140
- 174
- 0
- 19
- 223
-
-
-
- 7
- 140
- 175
- 0
- 19
- 224
-
-
-
- 7
- 140
- 176
- 0
- 19
- 225
-
-
-
- 7
- 140
- 177
- 0
- 19
- 226
-
-
-
- 7
- 140
- 178
- 0
- 19
- 227
-
-
-
- 7
- 140
- 179
- 0
- 19
- 228
-
-
-
- 7
- 140
- 180
- 0
- 19
- 229
-
-
-
- 7
- 140
- 181
- 0
- 19
- 230
-
-
-
- 7
- 140
- 182
- 0
- 19
- 231
-
-
-
- 7
- 129
- 76
- 0
- 6
- 6
-
-
-
- 7
- 0
- 104
- 10
- 0
- 7
-
-
-
- 7
- 0
- 105
- 10
- 0
- 8
-
-
-
- 7
- 0
- 106
- 10
- 0
- 9
-
-
-
- 7
- 0
- 102
- 10
- 0
- 5
-
-
-
- 7
- 129
- 213
- 3
- 192
- 0
-
-
-
- 7
- 129
- 214
- 3
- 192
- 1
-
-
-
- 7
- 129
- 215
- 3
- 192
- 2
-
-
-
- 7
- 129
- 216
- 3
- 192
- 3
-
-
-
- 7
- 129
- 221
- 3
- 192
- 4
-
-
-
- 7
- 129
- 222
- 3
- 192
- 5
-
-
-
- 7
- 129
- 228
- 10
- 3
- 192
-
-
-
- 7
- 129
- 229
- 10
- 3
- 193
-
-
-
- 7
- 2
- 149
- 0
- 2
- 14
-
-
-
- 7
- 2
- 150
- 0
- 192
- 1
-
-
-
- 7
- 2
- 151
- 0
- 192
- 2
-
-
-
- 7
- 2
- 152
- 0
- 192
- 3
-
-
-
- 7
- 129
- 202
- 0
- 0
- 197
-
-
-
- 7
- 3
- 33
- 0
- 2
- 2
-
-
-
- 7
- 3
- 34
- 0
- 2
- 3
-
-
-
- 7
- 3
- 40
- 0
- 2
- 9
-
-
-
- 7
- 3
- 124
- 0
- 2
- 17
-
-
-
- 7
- 3
- 125
- 0
- 2
- 18
-
-
-
- 7
- 3
- 8
- 0
- 3
- 6
-
-
-
- 7
- 3
- 13
- 0
- 0
- 2
-
-
-
- 7
- 3
- 88
- 10
- 4
- 3
-
-
-
- 7
- 3
- 49
- 10
- 1
- 2
-
-
-
- 7
- 3
- 50
- 10
- 1
- 3
-
-
-
- 7
- 2
- 215
- 0
- 0
- 198
-
-
-
- 7
- 2
- 217
- 0
- 0
- 199
-
-
-
- 7
- 130
- 154
- 2
- 3
- 199
-
-
-
- 7
- 2
- 160
- 0
- 4
- 198
-
-
-
- 7
- 2
- 162
- 0
- 5
- 195
-
-
-
- 7
- 2
- 163
- 0
- 5
- 196
-
-
-
- 7
- 2
- 164
- 0
- 4
- 199
-
-
-
- 7
- 2
- 165
- 0
- 5
- 197
-
-
-
- 7
- 2
- 166
- 0
- 4
- 200
-
-
-
- 7
- 2
- 167
- 0
- 4
- 201
-
-
-
- 7
- 2
- 168
- 0
- 4
- 202
-
-
-
- 7
- 2
- 169
- 0
- 4
- 203
-
-
-
- 7
- 2
- 206
- 0
- 7
- 196
-
-
-
- 7
- 2
- 219
- 0
- 0
- 200
-
-
-
- 7
- 2
- 220
- 0
- 3
- 206
-
-
-
- 7
- 3
- 202
- 0
- 7
- 195
-
-
-
- 7
- 2
- 232
- 0
- 4
- 204
-
-
-
- 7
- 2
- 233
- 0
- 4
- 205
-
-
-
- 7
- 2
- 231
- 0
- 6
- 200
-
-
-
- 7
- 2
- 202
- 0
- 7
- 195
-
-
-
- 7
- 2
- 203
- 0
- 19
- 232
-
-
-
- 7
- 3
- 238
- 0
- 1
- 201
-
-
-
- 7
- 3
- 66
- 0
- 1
- 11
-
-
-
- 7
- 2
- 133
- 0
- 7
- 2
-
-
-
- 7
- 2
- 134
- 0
- 7
- 5
-
-
-
- 7
- 128
- 191
- 10
- 4
- 194
-
-
-
- 7
- 129
- 199
- 10
- 3
- 202
-
-
-
- 7
- 129
- 197
- 10
- 4
- 197
-
-
-
- 7
- 2
- 159
- 0
- 1
- 216
-
-
-
- 7
- 2
- 175
- 0
- 191
- 195
-
-
-
- 7
- 129
- 223
- 0
- 1
- 65
-
-
-
- 7
- 129
- 224
- 0
- 1
- 66
-
-
-
- 7
- 129
- 225
- 0
- 1
- 67
-
-
-
- 7
- 129
- 226
- 0
- 1
- 68
-
-
-
- 7
- 129
- 227
- 0
- 7
- 197
-
-
-
- 7
- 3
- 87
- 2
- 0
- 4
-
-
-
- 7
- 129
- 130
- 1
- 1
- 195
-
-
-
- 7
- 2
- 240
- 0
- 192
- 4
-
-
-
- 7
- 133
- 164
- 0
- 192
- 5
-
-
-
- 7
- 133
- 165
- 0
- 192
- 6
-
-
-
- 7
- 133
- 166
- 0
- 192
- 7
-
-
-
- 7
- 133
- 167
- 0
- 192
- 8
-
-
-
- 7
- 133
- 168
- 0
- 192
- 9
-
-
-
- 7
- 133
- 169
- 0
- 192
- 10
-
-
-
- 7
- 133
- 191
- 0
- 6
- 201
-
-
-
- 7
- 133
- 203
- 0
- 192
- 11
-
-
-
- 7
- 133
- 206
- 0
- 192
- 12
-
-
-
- 7
- 133
- 220
- 0
- 192
- 13
-
-
-
- 7
- 133
- 234
- 0
- 192
- 14
-
-
-
- 7
- 133
- 201
- 0
- 0
- 203
-
-
-
- 7
- 133
- 195
- 0
- 1
- 218
-
-
-
- 7
- 133
- 204
- 0
- 1
- 219
-
-
-
- 7
- 133
- 205
- 0
- 1
- 220
-
-
-
- 7
- 133
- 181
- 0
- 2
- 210
-
-
-
- 7
- 133
- 182
- 0
- 2
- 211
-
-
-
- 7
- 133
- 183
- 0
- 2
- 212
-
-
-
- 7
- 133
- 184
- 0
- 2
- 213
-
-
-
- 7
- 133
- 236
- 0
- 2
- 214
-
-
-
- 7
- 133
- 154
- 0
- 2
- 215
-
-
-
- 7
- 133
- 196
- 0
- 2
- 216
-
-
-
- 7
- 133
- 197
- 0
- 2
- 217
-
-
-
- 7
- 133
- 202
- 0
- 3
- 207
-
-
-
- 7
- 133
- 209
- 0
- 3
- 208
-
-
-
- 7
- 133
- 219
- 0
- 3
- 209
-
-
-
- 7
- 133
- 173
- 0
- 1
- 217
-
-
-
- 7
- 133
- 174
- 0
- 14
- 195
-
-
-
- 7
- 133
- 175
- 0
- 14
- 196
-
-
-
- 7
- 133
- 188
- 0
- 14
- 197
-
-
-
- 7
- 133
- 139
- 0
- 14
- 198
-
-
-
- 7
- 133
- 239
- 0
- 14
- 199
-
-
-
- 7
- 133
- 185
- 2
- 0
- 208
-
-
-
- 7
- 133
- 186
- 2
- 0
- 209
-
-
-
- 7
- 133
- 193
- 0
- 19
- 218
-
-
-
- 7
- 130
- 229
- 0
- 0
- 192
-
-
-
- 7
- 129
- 194
- 0
- 0
- 204
-
-
-
- 7
- 2
- 185
- 0
- 19
- 219
-
-
-
- 7
- 130
- 182
- 0
- 7
- 198
-
-
-
- 7
- 2
- 173
- 0
- 3
- 210
-
-
-
- 7
- 2
- 174
- 0
- 2
- 218
-
-
-
- 7
- 131
- 1
- 0
- 3
- 0
-
-
-
- 7
- 131
- 2
- 0
- 3
- 1
-
-
-
- 7
- 131
- 3
- 0
- 3
- 2
-
-
-
- 7
- 131
- 4
- 0
- 2
- 14
-
-
-
- 7
- 131
- 5
- 0
- 3
- 3
-
-
-
- 7
- 131
- 6
- 0
- 3
- 4
-
-
-
- 7
- 131
- 7
- 0
- 3
- 5
-
-
-
- 7
- 131
- 8
- 0
- 3
- 6
-
-
-
- 7
- 131
- 9
- 0
- 3
- 7
-
-
-
- 7
- 131
- 10
- 0
- 14
- 0
-
-
-
- 7
- 131
- 11
- 0
- 0
- 0
-
-
-
- 7
- 131
- 12
- 0
- 0
- 1
-
-
-
- 7
- 131
- 13
- 0
- 0
- 2
-
-
-
- 7
- 131
- 14
- 0
- 0
- 3
-
-
-
- 7
- 131
- 15
- 0
- 0
- 4
-
-
-
- 7
- 131
- 16
- 0
- 0
- 5
-
-
-
- 7
- 131
- 17
- 0
- 0
- 6
-
-
-
- 7
- 131
- 18
- 0
- 0
- 7
-
-
-
- 7
- 131
- 19
- 0
- 0
- 8
-
-
-
- 7
- 131
- 20
- 0
- 19
- 0
-
-
-
- 7
- 131
- 21
- 0
- 15
- 6
-
-
-
- 7
- 131
- 22
- 0
- 15
- 7
-
-
-
- 7
- 131
- 23
- 0
- 15
- 8
-
-
-
- 7
- 131
- 24
- 0
- 7
- 0
-
-
-
- 7
- 131
- 25
- 0
- 0
- 9
-
-
-
- 7
- 131
- 26
- 0
- 3
- 8
-
-
-
- 7
- 131
- 27
- 0
- 3
- 9
-
-
-
- 7
- 131
- 28
- 10
- 0
- 0
-
-
-
- 7
- 131
- 29
- 10
- 0
- 1
-
-
-
- 7
- 131
- 30
- 10
- 0
- 2
-
-
-
- 7
- 131
- 31
- 0
- 2
- 0
-
-
-
- 7
- 131
- 32
- 0
- 2
- 1
-
-
-
- 7
- 131
- 33
- 0
- 2
- 2
-
-
-
- 7
- 131
- 34
- 0
- 2
- 3
-
-
-
- 7
- 131
- 35
- 0
- 2
- 4
-
-
-
- 7
- 131
- 36
- 0
- 2
- 5
-
-
-
- 7
- 131
- 37
- 0
- 2
- 6
-
-
-
- 7
- 131
- 38
- 0
- 2
- 7
-
-
-
- 7
- 131
- 39
- 0
- 2
- 8
-
-
-
- 7
- 131
- 40
- 0
- 2
- 9
-
-
-
- 7
- 131
- 41
- 0
- 2
- 10
-
-
-
- 7
- 131
- 42
- 0
- 2
- 11
-
-
-
- 7
- 131
- 43
- 0
- 2
- 12
-
-
-
- 7
- 131
- 44
- 0
- 2
- 13
-
-
-
- 7
- 131
- 45
- 0
- 2
- 15
-
-
-
- 7
- 131
- 46
- 0
- 2
- 16
-
-
-
- 7
- 131
- 47
- 10
- 1
- 0
-
-
-
- 7
- 131
- 48
- 10
- 1
- 1
-
-
-
- 7
- 131
- 49
- 10
- 1
- 2
-
-
-
- 7
- 131
- 50
- 10
- 1
- 3
-
-
-
- 7
- 131
- 51
- 0
- 1
- 0
-
-
-
- 7
- 131
- 52
- 0
- 1
- 1
-
-
-
- 7
- 131
- 53
- 0
- 1
- 2
-
-
-
- 7
- 131
- 54
- 0
- 1
- 3
-
-
-
- 7
- 131
- 55
- 0
- 1
- 4
-
-
-
- 7
- 131
- 56
- 0
- 1
- 5
-
-
-
- 7
- 131
- 57
- 0
- 1
- 6
-
-
-
- 7
- 131
- 58
- 0
- 6
- 0
-
-
-
- 7
- 131
- 59
- 0
- 1
- 7
-
-
-
- 7
- 131
- 60
- 0
- 19
- 2
-
-
-
- 7
- 131
- 61
- 0
- 1
- 8
-
-
-
- 7
- 131
- 62
- 0
- 1
- 9
-
-
-
- 7
- 131
- 63
- 0
- 1
- 10
-
-
-
- 7
- 131
- 64
- 0
- 1
- 12
-
-
-
- 7
- 131
- 65
- 0
- 1
- 13
-
-
-
- 7
- 131
- 66
- 0
- 1
- 11
-
-
-
- 7
- 131
- 67
- 0
- 19
- 3
-
-
-
- 7
- 131
- 68
- 10
- 4
- 2
-
-
-
- 7
- 131
- 69
- 10
- 4
- 0
-
-
-
- 7
- 131
- 70
- 10
- 4
- 1
-
-
-
- 7
- 131
- 71
- 0
- 6
- 1
-
-
-
- 7
- 131
- 72
- 0
- 6
- 2
-
-
-
- 7
- 131
- 73
- 0
- 6
- 3
-
-
-
- 7
- 131
- 74
- 0
- 6
- 4
-
-
-
- 7
- 131
- 75
- 0
- 6
- 5
-
-
-
- 7
- 131
- 76
- 0
- 6
- 6
-
-
-
- 7
- 131
- 77
- 0
- 7
- 1
-
-
-
- 7
- 131
- 78
- 0
- 1
- 14
-
-
-
- 7
- 131
- 79
- 0
- 1
- 15
-
-
-
- 7
- 131
- 80
- 10
- 3
- 0
-
-
-
- 7
- 131
- 81
- 2
- 0
- 0
-
-
-
- 7
- 131
- 82
- 10
- 3
- 1
-
-
-
- 7
- 131
- 83
- 2
- 0
- 1
-
-
-
- 7
- 131
- 84
- 0
- 19
- 1
-
-
-
- 7
- 131
- 85
- 2
- 0
- 2
-
-
-
- 7
- 131
- 86
- 2
- 0
- 3
-
-
-
- 7
- 131
- 87
- 2
- 0
- 4
-
-
-
- 7
- 131
- 88
- 10
- 4
- 3
-
-
-
- 7
- 131
- 89
- 0
- 3
- 10
-
-
-
- 7
- 131
- 90
- 2
- 0
- 5
-
-
-
- 7
- 131
- 91
- 10
- 2
- 0
-
-
-
- 7
- 131
- 92
- 10
- 2
- 1
-
-
-
- 7
- 131
- 93
- 10
- 2
- 2
-
-
-
- 7
- 131
- 94
- 10
- 2
- 3
-
-
-
- 7
- 131
- 95
- 10
- 2
- 4
-
-
-
- 7
- 131
- 96
- 10
- 2
- 5
-
-
-
- 7
- 131
- 97
- 10
- 2
- 6
-
-
-
- 7
- 131
- 98
- 10
- 2
- 7
-
-
-
- 7
- 131
- 99
- 0
- 1
- 16
-
-
-
- 7
- 131
- 100
- 10
- 0
- 3
-
-
-
- 7
- 131
- 101
- 10
- 0
- 4
-
-
-
- 7
- 131
- 102
- 10
- 0
- 5
-
-
-
- 7
- 131
- 103
- 10
- 0
- 6
-
-
-
- 7
- 131
- 104
- 10
- 0
- 7
-
-
-
- 7
- 131
- 105
- 10
- 0
- 8
-
-
-
- 7
- 131
- 106
- 10
- 0
- 9
-
-
-
- 7
- 131
- 107
- 10
- 0
- 10
-
-
-
- 7
- 131
- 108
- 10
- 0
- 11
-
-
-
- 7
- 131
- 109
- 10
- 0
- 12
-
-
-
- 7
- 131
- 110
- 10
- 0
- 13
-
-
-
- 7
- 131
- 111
- 0
- 4
- 0
-
-
-
- 7
- 131
- 112
- 0
- 5
- 0
-
-
-
- 7
- 131
- 113
- 0
- 4
- 1
-
-
-
- 7
- 131
- 114
- 0
- 5
- 1
-
-
-
- 7
- 131
- 115
- 0
- 5
- 2
-
-
-
- 7
- 131
- 116
- 0
- 4
- 2
-
-
-
- 7
- 131
- 117
- 0
- 4
- 3
-
-
-
- 7
- 131
- 118
- 0
- 4
- 4
-
-
-
- 7
- 131
- 119
- 0
- 4
- 5
-
-
-
- 7
- 131
- 120
- 0
- 4
- 6
-
-
-
- 7
- 131
- 121
- 0
- 0
- 10
-
-
-
- 7
- 131
- 122
- 0
- 0
- 11
-
-
-
- 7
- 131
- 123
- 0
- 2
- 20
-
-
-
- 7
- 131
- 124
- 0
- 2
- 17
-
-
-
- 7
- 131
- 125
- 0
- 2
- 18
-
-
-
- 7
- 131
- 126
- 0
- 2
- 19
-
-
-
- 7
- 131
- 127
- 255
- 255
- 255
-
-
-
- 7
- 131
- 128
- 0
- 3
- 1
-
-
-
- 7
- 131
- 130
- 0
- 3
- 192
-
-
-
- 7
- 131
- 131
- 0
- 7
- 192
-
-
-
- 7
- 131
- 132
- 0
- 7
- 193
-
-
-
- 7
- 131
- 134
- 0
- 3
- 212
-
-
-
- 7
- 131
- 135
- 0
- 1
- 197
-
-
-
- 7
- 131
- 136
- 0
- 2
- 192
-
-
-
- 7
- 131
- 137
- 0
- 2
- 219
-
-
-
- 7
- 131
- 140
- 0
- 1
- 192
-
-
-
- 7
- 131
- 141
- 0
- 1
- 193
-
-
-
- 7
- 131
- 142
- 0
- 1
- 194
-
-
-
- 7
- 131
- 143
- 0
- 1
- 195
-
-
-
- 7
- 131
- 144
- 2
- 0
- 192
-
-
-
- 7
- 131
- 145
- 0
- 1
- 200
-
-
-
- 7
- 131
- 146
- 2
- 2
- 210
-
-
-
- 7
- 131
- 147
- 2
- 3
- 200
-
-
-
- 7
- 131
- 148
- 2
- 3
- 201
-
-
-
- 7
- 131
- 149
- 2
- 3
- 202
-
-
-
- 7
- 131
- 150
- 2
- 2
- 211
-
-
-
- 7
- 131
- 151
- 2
- 2
- 212
-
-
-
- 7
- 131
- 152
- 2
- 2
- 213
-
-
-
- 7
- 131
- 153
- 0
- 1
- 22
-
-
-
- 7
- 131
- 155
- 2
- 0
- 193
-
-
-
- 7
- 131
- 156
- 0
- 7
- 7
-
-
-
- 7
- 131
- 157
- 0
- 7
- 6
-
-
-
- 7
- 131
- 158
- 0
- 19
- 11
-
-
-
- 7
- 131
- 159
- 0
- 19
- 192
-
-
-
- 7
- 131
- 160
- 2
- 3
- 192
-
-
-
- 7
- 131
- 161
- 0
- 1
- 29
-
-
-
- 7
- 131
- 162
- 0
- 1
- 221
-
-
-
- 7
- 131
- 163
- 2
- 0
- 214
-
-
-
- 7
- 131
- 164
- 2
- 0
- 215
-
-
-
- 7
- 131
- 165
- 0
- 1
- 222
-
-
-
- 7
- 131
- 166
- 0
- 4
- 200
-
-
-
- 7
- 131
- 167
- 0
- 4
- 201
-
-
-
- 7
- 131
- 168
- 0
- 4
- 202
-
-
-
- 7
- 131
- 169
- 0
- 4
- 203
-
-
-
- 7
- 131
- 170
- 0
- 19
- 193
-
-
-
- 7
- 131
- 171
- 2
- 3
- 193
-
-
-
- 7
- 131
- 172
- 0
- 2
- 193
-
-
-
- 7
- 131
- 173
- 0
- 3
- 210
-
-
-
- 7
- 131
- 174
- 0
- 2
- 218
-
-
-
- 7
- 131
- 175
- 0
- 191
- 195
-
-
-
- 7
- 131
- 176
- 0
- 191
- 192
-
-
-
- 7
- 131
- 177
- 0
- 191
- 193
-
-
-
- 7
- 131
- 178
- 0
- 1
- 23
-
-
-
- 7
- 131
- 179
- 2
- 0
- 210
-
-
-
- 7
- 131
- 180
- 0
- 1
- 17
-
-
-
- 7
- 131
- 181
- 2
- 0
- 199
-
-
-
- 7
- 131
- 182
- 0
- 7
- 198
-
-
-
- 7
- 131
- 183
- 2
- 0
- 216
-
-
-
- 7
- 131
- 184
- 0
- 19
- 19
-
-
-
- 7
- 131
- 187
- 2
- 0
- 217
-
-
-
- 7
- 131
- 188
- 2
- 0
- 206
-
-
-
- 7
- 131
- 189
- 2
- 0
- 218
-
-
-
- 7
- 131
- 190
- 0
- 7
- 8
-
-
-
- 7
- 131
- 191
- 0
- 191
- 196
-
-
-
- 7
- 131
- 192
- 0
- 191
- 197
-
-
-
- 7
- 131
- 194
- 1
- 1
- 193
-
-
-
- 7
- 131
- 196
- 0
- 2
- 194
-
-
-
- 7
- 131
- 197
- 0
- 2
- 195
-
-
-
- 7
- 131
- 198
- 0
- 1
- 212
-
-
-
- 7
- 131
- 199
- 2
- 3
- 198
-
-
-
- 7
- 131
- 200
- 2
- 0
- 208
-
-
-
- 7
- 131
- 202
- 0
- 1
- 223
-
-
-
- 7
- 131
- 203
- 2
- 0
- 200
-
-
-
- 7
- 131
- 204
- 0
- 4
- 192
-
-
-
- 7
- 131
- 205
- 0
- 5
- 192
-
-
-
- 7
- 131
- 206
- 0
- 1
- 224
-
-
-
- 7
- 131
- 207
- 2
- 0
- 194
-
-
-
- 7
- 131
- 208
- 2
- 0
- 195
-
-
-
- 7
- 131
- 210
- 2
- 0
- 209
-
-
-
- 7
- 131
- 211
- 0
- 4
- 193
-
-
-
- 7
- 131
- 212
- 0
- 5
- 193
-
-
-
- 7
- 131
- 213
- 0
- 6
- 192
-
-
-
- 7
- 131
- 214
- 0
- 1
- 196
-
-
-
- 7
- 131
- 216
- 0
- 0
- 193
-
-
-
- 7
- 131
- 218
- 0
- 3
- 211
-
-
-
- 7
- 131
- 219
- 2
- 0
- 201
-
-
-
- 7
- 130
- 220
- 2
- 3
- 203
-
-
-
- 7
- 131
- 221
- 0
- 3
- 196
-
-
-
- 7
- 131
- 222
- 2
- 3
- 194
-
-
-
- 7
- 131
- 223
- 2
- 0
- 196
-
-
-
- 7
- 131
- 224
- 2
- 3
- 0
-
-
-
- 7
- 131
- 225
- 2
- 0
- 198
-
-
-
- 7
- 131
- 226
- 2
- 0
- 197
-
-
-
- 7
- 131
- 227
- 2
- 0
- 219
-
-
-
- 7
- 131
- 228
- 0
- 1
- 199
-
-
-
- 7
- 131
- 229
- 0
- 0
- 192
-
-
-
- 7
- 131
- 230
- 2
- 3
- 195
-
-
-
- 7
- 131
- 231
- 2
- 3
- 196
-
-
-
- 7
- 131
- 232
- 2
- 0
- 220
-
-
-
- 7
- 131
- 233
- 2
- 0
- 221
-
-
-
- 7
- 131
- 234
- 1
- 0
- 192
-
-
-
- 7
- 131
- 235
- 1
- 0
- 193
-
-
-
- 7
- 131
- 237
- 2
- 0
- 222
-
-
-
- 7
- 131
- 238
- 0
- 1
- 201
-
-
-
- 7
- 131
- 239
- 0
- 1
- 208
-
-
-
- 7
- 131
- 240
- 2
- 3
- 197
-
-
-
- 7
- 131
- 241
- 2
- 0
- 223
-
-
-
- 7
- 131
- 242
- 2
- 0
- 224
-
-
-
- 7
- 131
- 243
- 2
- 0
- 225
-
-
-
- 7
- 131
- 244
- 2
- 0
- 226
-
-
-
- 7
- 131
- 245
- 2
- 0
- 227
-
-
-
- 7
- 131
- 246
- 2
- 0
- 202
-
-
-
- 7
- 131
- 247
- 2
- 0
- 203
-
-
-
- 7
- 131
- 248
- 2
- 0
- 204
-
-
-
- 7
- 131
- 249
- 2
- 0
- 205
-
-
-
- 7
- 131
- 250
- 0
- 4
- 197
-
-
-
- 7
- 131
- 251
- 0
- 5
- 194
-
-
-
- 7
- 131
- 252
- 0
- 2
- 196
-
-
-
- 7
- 131
- 253
- 0
- 2
- 197
-
-
-
- 7
- 131
- 254
- 0
- 7
- 194
-
-
-
- 7
- 129
- 62
- 0
- 1
- 9
-
-
-
- 7
- 129
- 63
- 0
- 1
- 10
-
-
-
- 7
- 131
- 220
- 2
- 3
- 203
-
-
-
- 7
- 128
- 221
- 1
- 0
- 221
-
-
-
- 7
- 128
- 222
- 1
- 0
- 222
-
-
-
- 7
- 128
- 223
- 1
- 0
- 223
-
-
-
- 7
- 128
- 224
- 1
- 0
- 224
-
-
-
- 7
- 128
- 225
- 1
- 0
- 225
-
-
-
- 7
- 128
- 226
- 1
- 0
- 226
-
-
-
- 7
- 128
- 227
- 1
- 0
- 227
-
-
-
- 7
- 128
- 228
- 1
- 0
- 228
-
-
-
- 7
- 128
- 229
- 1
- 0
- 229
-
-
-
- 7
- 128
- 230
- 1
- 0
- 230
-
-
-
- 7
- 128
- 237
- 1
- 0
- 237
-
-
-
- 7
- 128
- 239
- 1
- 0
- 239
-
-
-
- 7
- 128
- 242
- 1
- 0
- 242
-
-
-
- 7
- 128
- 247
- 1
- 0
- 247
-
-
-
- 7
- 128
- 250
- 1
- 0
- 250
-
-
-
- 7
- 129
- 175
- 0
- 19
- 20
-
-
-
- 7
- 129
- 176
- 0
- 19
- 7
-
-
-
- 7
- 2
- 236
- 0
- 19
- 23
-
-
-
- 98
- 128
- 1
- 255
- 255
- 255
-
-
-
- 98
- 128
- 2
- 255
- 255
- 255
-
-
-
- 98
- 128
- 3
- 255
- 255
- 255
-
-
-
- 98
- 128
- 4
- 255
- 255
- 255
-
-
-
- 98
- 128
- 5
- 255
- 255
- 255
-
-
-
- 98
- 128
- 11
- 255
- 255
- 255
-
-
-
- 98
- 128
- 12
- 255
- 255
- 255
-
-
-
- 98
- 128
- 13
- 255
- 255
- 255
-
-
-
- 98
- 128
- 14
- 255
- 255
- 255
-
-
-
- 98
- 128
- 21
- 255
- 255
- 255
-
-
-
- 98
- 128
- 22
- 255
- 255
- 255
-
-
-
- 98
- 128
- 23
- 255
- 255
- 255
-
-
-
- 98
- 128
- 26
- 255
- 255
- 255
-
-
-
- 98
- 128
- 27
- 255
- 255
- 255
-
-
-
- 98
- 128
- 28
- 255
- 255
- 255
-
-
-
- 98
- 128
- 29
- 255
- 255
- 255
-
-
-
- 98
- 128
- 30
- 255
- 255
- 255
-
-
-
- 98
- 128
- 31
- 255
- 255
- 255
-
-
-
- 98
- 128
- 32
- 255
- 255
- 255
-
-
-
- 98
- 128
- 33
- 255
- 255
- 255
-
-
-
- 98
- 128
- 34
- 255
- 255
- 255
-
-
-
- 98
- 128
- 35
- 255
- 255
- 255
-
-
-
- 98
- 128
- 36
- 255
- 255
- 255
-
-
-
- 98
- 128
- 37
- 255
- 255
- 255
-
-
-
- 98
- 128
- 38
- 255
- 255
- 255
-
-
-
- 98
- 128
- 39
- 255
- 255
- 255
-
-
-
- 98
- 128
- 40
- 255
- 255
- 255
-
-
-
- 98
- 128
- 41
- 255
- 255
- 255
-
-
-
- 98
- 128
- 42
- 255
- 255
- 255
-
-
-
- 98
- 128
- 43
- 255
- 255
- 255
-
-
-
- 98
- 128
- 44
- 255
- 255
- 255
-
-
-
- 98
- 128
- 45
- 255
- 255
- 255
-
-
-
- 98
- 128
- 46
- 255
- 255
- 255
-
-
-
- 98
- 128
- 47
- 255
- 255
- 255
-
-
-
- 98
- 128
- 48
- 255
- 255
- 255
-
-
-
- 98
- 128
- 49
- 255
- 255
- 255
-
-
-
- 98
- 128
- 50
- 255
- 255
- 255
-
-
-
- 98
- 128
- 51
- 255
- 255
- 255
-
-
-
- 98
- 128
- 52
- 255
- 255
- 255
-
-
-
- 98
- 128
- 53
- 255
- 255
- 255
-
-
-
- 98
- 128
- 54
- 255
- 255
- 255
-
-
-
- 98
- 128
- 60
- 255
- 255
- 255
-
-
-
- 98
- 128
- 127
- 255
- 255
- 255
-
-
-
- 98
- 128
- 128
- 255
- 255
- 255
-
-
-
- 98
- 128
- 129
- 255
- 255
- 255
-
-
-
- 98
- 128
- 130
- 0
- 0
- 0
-
-
-
- 98
- 128
- 131
- 0
- 2
- 2
-
-
-
- 98
- 128
- 132
- 0
- 2
- 3
-
-
-
- 98
- 128
- 133
- 255
- 255
- 255
-
-
-
- 98
- 128
- 134
- 255
- 255
- 255
-
-
-
- 98
- 128
- 135
- 255
- 255
- 255
-
-
-
- 98
- 128
- 136
- 255
- 255
- 255
-
-
-
- 98
- 128
- 137
- 255
- 255
- 255
-
-
-
- 98
- 128
- 138
- 255
- 255
- 255
-
-
-
- 98
- 128
- 139
- 255
- 255
- 255
-
-
-
- 98
- 128
- 140
- 255
- 255
- 255
-
-
-
- 98
- 128
- 141
- 255
- 255
- 255
-
-
-
- 98
- 128
- 144
- 255
- 255
- 255
-
-
-
- 98
- 128
- 145
- 255
- 255
- 255
-
-
-
- 98
- 128
- 146
- 255
- 255
- 255
-
-
-
- 98
- 128
- 147
- 255
- 255
- 255
-
-
-
- 98
- 128
- 148
- 255
- 255
- 255
-
-
-
- 98
- 128
- 149
- 255
- 255
- 255
-
-
-
- 98
- 128
- 150
- 255
- 255
- 255
-
-
-
- 98
- 128
- 151
- 0
- 3
- 1
-
-
-
- 98
- 128
- 152
- 255
- 255
- 255
-
-
-
- 98
- 128
- 153
- 255
- 255
- 255
-
-
-
- 98
- 128
- 154
- 255
- 255
- 255
-
-
-
- 98
- 128
- 155
- 255
- 255
- 255
-
-
-
- 98
- 128
- 156
- 0
- 3
- 5
-
-
-
- 98
- 128
- 157
- 0
- 1
- 1
-
-
-
- 98
- 128
- 158
- 255
- 255
- 255
-
-
-
- 98
- 128
- 159
- 255
- 255
- 255
-
-
-
- 98
- 128
- 160
- 255
- 255
- 255
-
-
-
- 98
- 128
- 161
- 255
- 255
- 255
-
-
-
- 98
- 128
- 162
- 255
- 255
- 255
-
-
-
- 98
- 128
- 163
- 255
- 255
- 255
-
-
-
- 98
- 128
- 164
- 0
- 6
- 1
-
-
-
- 98
- 128
- 165
- 0
- 2
- 2
-
-
-
- 98
- 128
- 166
- 0
- 2
- 3
-
-
-
- 98
- 128
- 167
- 0
- 0
- 0
-
-
-
- 98
- 128
- 168
- 0
- 0
- 6
-
-
-
- 98
- 128
- 169
- 255
- 255
- 255
-
-
-
- 98
- 128
- 170
- 255
- 255
- 255
-
-
-
- 98
- 128
- 171
- 255
- 255
- 255
-
-
-
- 98
- 128
- 172
- 255
- 255
- 255
-
-
-
- 98
- 128
- 173
- 255
- 255
- 255
-
-
-
- 98
- 128
- 174
- 255
- 255
- 255
-
-
-
- 98
- 128
- 175
- 255
- 255
- 255
-
-
-
- 98
- 128
- 176
- 255
- 255
- 255
-
-
-
- 98
- 128
- 177
- 255
- 255
- 255
-
-
-
- 98
- 128
- 178
- 255
- 255
- 255
-
-
-
- 98
- 128
- 179
- 255
- 255
- 255
-
-
-
- 98
- 128
- 180
- 255
- 255
- 255
-
-
-
- 98
- 128
- 181
- 255
- 255
- 255
-
-
-
- 98
- 128
- 182
- 255
- 255
- 255
-
-
-
- 98
- 128
- 183
- 255
- 255
- 255
-
-
-
- 98
- 128
- 184
- 255
- 255
- 255
-
-
-
- 98
- 128
- 185
- 255
- 255
- 255
-
-
-
- 98
- 128
- 186
- 255
- 255
- 255
-
-
-
- 98
- 128
- 187
- 255
- 255
- 255
-
-
-
- 98
- 128
- 188
- 255
- 255
- 255
-
-
-
- 98
- 128
- 189
- 255
- 255
- 255
-
-
-
- 98
- 128
- 190
- 255
- 255
- 255
-
-
-
- 98
- 128
- 191
- 255
- 255
- 255
-
-
-
- 98
- 128
- 192
- 255
- 255
- 255
-
-
-
- 98
- 128
- 193
- 255
- 255
- 255
-
-
-
- 98
- 128
- 194
- 255
- 255
- 255
-
-
-
- 98
- 128
- 195
- 255
- 255
- 255
-
-
-
- 98
- 128
- 196
- 255
- 255
- 255
-
-
-
- 98
- 128
- 197
- 255
- 255
- 255
-
-
-
- 98
- 128
- 198
- 255
- 255
- 255
-
-
-
- 98
- 128
- 199
- 255
- 255
- 255
-
-
-
- 98
- 128
- 200
- 255
- 255
- 255
-
-
-
- 98
- 128
- 201
- 0
- 0
- 4
-
-
-
- 98
- 128
- 202
- 0
- 0
- 5
-
-
-
- 98
- 128
- 203
- 255
- 255
- 255
-
-
-
- 98
- 128
- 204
- 255
- 255
- 255
-
-
-
- 98
- 128
- 205
- 255
- 255
- 255
-
-
-
- 98
- 128
- 206
- 255
- 255
- 255
-
-
-
- 98
- 128
- 207
- 255
- 255
- 255
-
-
-
- 98
- 128
- 208
- 255
- 255
- 255
-
-
-
- 98
- 128
- 209
- 255
- 255
- 255
-
-
-
- 98
- 128
- 210
- 255
- 255
- 255
-
-
-
- 98
- 128
- 211
- 255
- 255
- 255
-
-
-
- 98
- 128
- 212
- 255
- 255
- 255
-
-
-
- 98
- 128
- 214
- 255
- 255
- 255
-
-
-
- 98
- 128
- 215
- 255
- 255
- 255
-
-
-
- 98
- 128
- 216
- 255
- 255
- 255
-
-
-
- 98
- 128
- 217
- 255
- 255
- 255
-
-
-
- 98
- 128
- 218
- 255
- 255
- 255
-
-
-
- 98
- 128
- 219
- 255
- 255
- 255
-
-
-
- 98
- 128
- 220
- 255
- 255
- 255
-
-
-
- 98
- 128
- 221
- 255
- 255
- 255
-
-
-
- 98
- 128
- 222
- 255
- 255
- 255
-
-
-
- 98
- 128
- 223
- 255
- 255
- 255
-
-
-
- 98
- 128
- 224
- 255
- 255
- 255
-
-
-
- 98
- 128
- 225
- 255
- 255
- 255
-
-
-
- 98
- 128
- 226
- 255
- 255
- 255
-
-
-
- 98
- 128
- 227
- 255
- 255
- 255
-
-
-
- 98
- 128
- 228
- 0
- 1
- 8
-
-
-
- 98
- 128
- 229
- 255
- 255
- 255
-
-
-
- 98
- 128
- 230
- 255
- 255
- 255
-
-
-
- 98
- 128
- 231
- 255
- 255
- 255
-
-
-
- 98
- 128
- 232
- 255
- 255
- 255
-
-
-
- 98
- 128
- 233
- 255
- 255
- 255
-
-
-
- 98
- 128
- 234
- 255
- 255
- 255
-
-
-
- 98
- 128
- 235
- 255
- 255
- 255
-
-
-
- 98
- 128
- 236
- 255
- 255
- 255
-
-
-
- 98
- 128
- 237
- 255
- 255
- 255
-
-
-
- 98
- 128
- 238
- 255
- 255
- 255
-
-
-
- 98
- 128
- 239
- 255
- 255
- 255
-
-
-
- 98
- 128
- 240
- 255
- 255
- 255
-
-
-
- 98
- 128
- 241
- 255
- 255
- 255
-
-
-
- 98
- 128
- 242
- 255
- 255
- 255
-
-
-
- 98
- 128
- 243
- 255
- 255
- 255
-
-
-
- 98
- 128
- 244
- 255
- 255
- 255
-
-
-
- 98
- 128
- 245
- 255
- 255
- 255
-
-
-
- 98
- 128
- 246
- 255
- 255
- 255
-
-
-
- 98
- 128
- 247
- 255
- 255
- 255
-
-
-
- 98
- 128
- 248
- 255
- 255
- 255
-
-
-
- 98
- 128
- 249
- 255
- 255
- 255
-
-
-
- 98
- 128
- 250
- 255
- 255
- 255
-
-
-
- 98
- 128
- 251
- 255
- 255
- 255
-
-
-
- 98
- 128
- 252
- 255
- 255
- 255
-
-
-
- 98
- 128
- 253
- 255
- 255
- 255
-
-
-
- 98
- 128
- 254
- 255
- 255
- 255
-
-
-
- 98
- 128
- 255
- 255
- 255
- 255
-
-
-
- 98
- 1
- 33
- 0
- 2
- 2
-
-
-
- 98
- 1
- 34
- 0
- 2
- 3
-
-
-
- 98
- 1
- 2
- 0
- 3
- 1
-
-
-
- 98
- 1
- 7
- 0
- 3
- 5
-
-
-
- 98
- 1
- 11
- 0
- 0
- 0
-
-
-
- 98
- 1
- 52
- 0
- 1
- 1
-
-
-
- 98
- 1
- 41
- 0
- 2
- 10
-
-
-
-
-
- 7
- 129
- 175
- 0
- 19
- 20
-
-
-
- 7
- 129
- 176
- 0
- 19
- 7
-
-
-
- 7
- 2
- 236
- 0
- 19
- 23
-
-
-
-
-
-
-
-
- 9
- 128
- 221
- 1
- 0
- 221
-
-
-
- 9
- 128
- 222
- 1
- 0
- 222
-
-
-
- 9
- 128
- 223
- 1
- 0
- 223
-
-
-
- 9
- 128
- 224
- 1
- 0
- 224
-
-
-
- 9
- 128
- 225
- 1
- 0
- 225
-
-
-
- 9
- 128
- 226
- 1
- 0
- 226
-
-
-
- 9
- 128
- 227
- 1
- 0
- 227
-
-
-
- 9
- 128
- 228
- 1
- 0
- 228
-
-
-
- 9
- 128
- 229
- 1
- 0
- 229
-
-
-
- 9
- 128
- 230
- 1
- 0
- 230
-
-
-
- 9
- 128
- 233
- 0
- 4
- 205
-
-
-
- 9
- 128
- 235
- 1
- 0
- 193
-
-
-
- 9
- 128
- 237
- 1
- 0
- 237
-
-
-
- 9
- 128
- 239
- 1
- 0
- 239
-
-
-
- 9
- 128
- 242
- 1
- 0
- 242
-
-
-
- 9
- 128
- 247
- 1
- 0
- 247
-
-
-
- 9
- 128
- 250
- 1
- 0
- 250
-
-
-
-
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/ncgribModels.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/ncgribModels.xml
deleted file mode 100644
index 231dee2f29..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/ncgrid/ncgribModels.xml
+++ /dev/null
@@ -1,5284 +0,0 @@
-
-
-
-
-
- CMC ensemble
- cmce
- 54
- 2
- 401
-
- 70
-
-
- cmc_gep.*|cmce;
- cmc_gec.*|cmcec;
- cmc_geavg.*|cmceMean;
- cmc_gespr.*|cmceSpread
-
- 3
-
-
-
- Canadian Global 1x1 Degree
- cmc
- 54
- 0
- 374
-
- 47
-
- 3
-
-
-
- Candian Global 1x1 Degree
- cmc
- 54
- 0
- 401
-
- 47
-
- 3
-
-
-
- Global Ensemble Forecast System 2.5x2.5 Degree
- gefs
- 7
- 2
- 2
-
- 107
-
-
- gec00.*bc.*|gefscBC;
- gec00.*anl|gefscAnal;
- gec00.*[0-9]|gefsc;
- gep.*anl|gefsAnal;
- gep.*bc.*|gefsBC;
- gep.*|gefs;
- geavg.*bc.*|gefsMeanBC;
- gespr.*bc.*|gefsSpreadBC;
- gespr.*|gefsSpread
-
- 3
-
-
-
- Global Ensemble Forecast System 1x1 Degree
- gefs
- 7
- 2
- 3
-
- 107
-
-
- gec00.*bc.*|gefscBC;
- gec00.*anl|gefscAnal;
- gec00.*[0-9]|gefsc;
- gep.*anl|gefsAnal;
- gep.*bc.*|gefsBC;
- gep.*|gefs;
- geavg.*bc.*|gefsMeanBC;
- geavg.*|gefsMean;
- gespr.*bc.*|gefsSpreadBC;
- gespr.*|gefsSpread
-
- 3
-
-
-
- Global Ensemble Forecast System 1x1 Degree
- gefs
- 7
- 2
- 229
-
- 107
-
-
- gec00.*bc.*|gefscBC;
- gec00.*anl|gefscAnal;
- gec00.*[0-9]|gefsc;
- gep.*anl|gefsAnal;
- gep.*bc.*|gefsBC;
- gep.*|gefs;
- geavg.*bc.*|gefsMeanBC;
- gespr.*bc.*|gefsSpreadBC;
- gespr.*|gefsSpread
-
- 3
-
-
-
- Global Ensemble Forecast System 2.5x2.5 Degree
- gefs
- 7
- 2
- 372
-
- 107
-
-
- gec00.*bc.*|gefscBC;
- gec00.*anl|gefscAnal;
- gec00.*[0-9]|gefsc;
- gep.*anl|gefsAnal;
- gep.*bc.*|gefsBC;
- gep.*|gefs;
- geavg.*bc.*|gefsMeanBC;
- gespr.*bc.*|gefsSpreadBC;
- gespr.*|gefsSpread
-
- 3
-
-
-
- Global Ensemble Forecast System 2.5x2.5 Degree
- gefs
- 7
- 2
- 375
-
- 107
-
-
- gec00.*bc.*|gefscBC;
- gec00.*anl|gefscAnal;
- gec00.*[0-9]|gefsc;
- gep.*anl|gefsAnal;
- gep.*bc.*|gefsBC;
- gep.*|gefs;
- geavg.*bc.*|gefsMeanBC;
- gespr.*bc.*|gefsSpreadBC;
- gespr.*|gefsSpread
-
- 3
-
-
-
- Global Wind-Wave Forecast Model
- gww
- 7
- 0
- 3
-
- 10
-
-
- mean.*|gwwMean;
- probab.*|gwwProb;
- spread.*|gwwSpread
-
- 6
-
-
-
- Global Wind-Wave Forecast Model
- gww
- 7
- 0
- 229
-
- 10
-
- 6
-
-
-
- Global Multi-Grid Wave
- gww2
- 7
- 0
- 77528250
-
- 11
-
- 3
-
-
-
- GlobalWave
- gww3
- 7
- 0
- 408
-
- 11
-
- 3
-
-
-
- GWW
- gww4
- 7
- 0
- 233
-
- 10
-
- 6
-
-
-
- Global Wind-Wave Forecast Model
- gww5
- 7
- 0
- 372
-
- 10
-
- 6
-
-
-
- NAEFS ensemble BC
- naefsBC
- 7
- 2
- 375
-
- 114
-
-
- naefs_geavg.*bc.*|naefsMeanBC;
- naefs_geavg.*anv.*|naefsMean;
- naefs_gespr.*bc.*|naefsSpreadBC;
- naefs_ge10pt.*bc.*|naefs10ptBC;
- naefs_ge50pt.*bc.*|naefs50ptBC;
- naefs_ge90pt.*bc.*|naefs90ptBC;
- naefs_gemode.*bc.*|naefsModeBC;
-
- 3
-
-
-
- NAEFS ensemble BC
- naefsBC
- 7
- 2
- 372
-
- 114
-
-
- naefs_geavg.*bc.*|naefsMeanBC;
- naefs_geavg.*anv.*|naefsMean;
- naefs_gespr.*bc.*|naefsSpreadBC;
- naefs_ge10pt.*bc.*|naefs10ptBC;
- naefs_ge50pt.*bc.*|naefs50ptBC;
- naefs_ge90pt.*bc.*|naefs90ptBC;
- naefs_gemode.*bc.*|naefsModeBC;
-
- 3
-
-
-
- NAEFS ensemble BC
- naefsBC
- 7
- 2
- 3
-
- 114
-
-
- naefs_geavg.*bc.*|naefsMeanBC;
- naefs_gesprd.*bc.*|naefsSpreadBC;
- naefs_ge10pt.*bc.*|naefs10ptBC;
- naefs_ge50pt.*bc.*|naefs50ptBC;
- naefs_ge90pt.*bc.*|naefs90ptBC;
- naefs_gemode.*bc.*|naefsModeBC;
-
- 3
-
-
-
- NAEFS US
- naefsUS
- 7
- 2
- 197
-
- 114
-
-
- naefs_geavg.*conus.*grib2|naefsMeanUS;
- naefs_ge10pt.*conus.*grib2|naefs10ptUS;
- naefs_ge50pt.*conus.*grib2|naefs50ptUS;
- naefs_ge90pt.*conus.*grib2|naefs90ptUS;
- naefs_gemode.*conus.*grib2|naefsModeUS;
-
- 3
-
-
-
- NAEFS Alaska
- naefsAK
- 7
- 2
- 198
-
- 114
-
-
- naefs_geavg.*alaska.*grib2|naefsMeanAK;
- naefs_ge10pt.*alaska.*grib2|naefs10ptAK;
- naefs_ge50pt.*alaska.*grib2|naefs50ptAK;
- naefs_ge90pt.*alaska.*grib2|naefs90ptAK;
- naefs_gemode.*alaska.*grib2|naefsModeAK;
-
- 3
-
-
-
- North America Ensemble Forecast 1.0 Degree (No data yet)
- naefs
- 7
- 2
- 229
-
- 114
-
- 3
-
-
-
- SREF ensemble with NAM40 navigation
- sref
- 7
- 0
- 212
-
- 84
-
-
- nam.*.awip3d00.*tm00|nam40;
- sref_nam.*ctl1.*|srefNamCtl1;
- sref_nam.*ctl2.*|srefNamCtl2;
- sref_nam.*[pn][1-9].*|srefNam;
- sref_eta.*[pn][1-9].*|srefEta;
- sref_eta.*ctl1.*|srefEtaCtl1;
- sref_eta.*ctl2.*|srefEtaCtl2;
- sref_rsm.*ctl.*|srefRsmCtl;
- sref_rsm.*[pn][1-9].*|srefRsm;
- sref_nmm.*ctl.*|srefNmmCtl;
- sref_nmm.*[pn][1-9].*|srefNmm;
-
- 3
-
-
-
- SREF ensemble for WRF_EM (Eulerian Mass-core)
- sref
- 7
- 0
- 212
-
- 116
-
-
- sref_em.*ctl.*|srefEmCtl;
- sref_em.*[pn][1-9].*|srefEm;
-
- 3
-
-
-
- SREF ensemble for NMB (Non-hydrostatic Multiscale Meteorological Model on Grid B)
- sref
- 7
- 0
- 212
-
- 111
-
-
- sref_nmb.*ctl.*|srefNmmbCtl;
- sref_nmb.*[pn][1-9].*|srefNmmb;
-
- 3
-
-
-
- ECMWF Global 1x1 Degree
- ecmwf
- 98
- 0
- 3
-
- 141
- 142
- 143
- 144
- 145
-
- 3
-
-
-
-
- ECMWF Global 2.5x2.5 Degrees
- ecmwfg
- 98
- 0
- 228
-
- 141
- 142
- 143
- 144
- 145
-
- 3
-
-
-
- ECMWF Tropical 2.5x2.5 Degrees
- ecmwft
- 98
- 0
- 14529
-
- 141
- 142
- 143
- 144
- 145
-
- 3
-
-
-
-
- ECMWF Global Wave Model 1x1 Degree
- ecmwfWave
- 98
- 0
- 403
-
- 108
-
- 3
-
-
-
- GFS Global 1x1 Degree Analysis and f00. Grib header issues
- gfs
- 7
- 0
- 372
-
- 81
-
- 3
-
-
-
- GDAS
- gdas
- 7
- 0
- 372
-
- 82
-
- 3
-
-
-
- ECMWF Global 1x1 Degree
- ecmwf
- 98
- 0
- 372
-
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171
- 172
- 173
- 174
- 175
- 176
- 177
- 178
- 179
- 180
- 181
- 182
- 183
- 184
- 185
- 186
- 187
- 188
- 189
- 190
- 191
- 192
- 193
- 194
- 195
- 196
- 197
- 198
- 199
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209
- 210
- 211
- 212
- 213
- 214
- 215
- 216
- 217
- 218
- 219
- 220
- 221
- 222
- 223
- 224
- 225
- 226
- 227
- 228
- 229
- 230
- 231
- 232
- 233
- 234
- 235
- 236
- 237
- 238
- 239
- 240
- 241
- 242
- 243
- 244
- 245
- 246
- 247
- 248
- 249
- 250
- 251
- 252
- 253
- 254
- 255
-
- 24
-
-
-
- Hybrid Single-Particle Lagrangian Integrated Trajectory Model
- hysplit
- 7
- 3
- 36928220
-
- 3
-
- 1
-
-
-
- GFS PGRB 0.5 degree
- gfsP5
- 7
- 0
- 4
-
- 96
- 77
- 81
-
- 3
-
-
-
- GFS PGRB 0.5 degree
- gfsP5
- 7
- 0
- 230
-
- 96
- 77
- 81
-
- 3
-
-
-
- GFS PGRB 0.5 degree
- gfsP5
- 7
- 0
- 408
-
- 255
-
- 3
-
-
-
- GFS PGRB 1.0 DEGREE
- gfs
- 7
- 0
- 229
-
- 96
- 77
- 81
- 255
-
- 3
-
-
-
- GFS PGRB 1.0 DEGREE
- gfs
- 7
- 0
- 372
-
- 96
-
- 3
-
-
-
- ECMWF Analysis from Global Data Assimilation System 1.0 DEGREE
- gdas
- 7
- 0
- 375
-
- 82
-
- 3
-
-
-
- Analysis from Global Data Assimilation System 1.0 DEGREE
- gdas
- 7
- 0
- 3
-
- 82
-
- 3
-
-
-
- Analysis from Global Data Assimilation System 1.0 DEGREE
- gdas
- 7
- 0
- 229
-
- 82
-
- 3
-
-
-
- GFS PGRB 1.0 DEGREE
- gfs
- 7
- 0
- 3
-
- 96
- 77
- 81
-
- 3
-
-
-
- NOGAPS 361X181 Lat/Lon 1.0 DEGREE - nogaps*/wave_*
- nogaps
- 58
- 0
- 401
-
- 58
-
- 3
-
-
-
- NOGAPS Global 1x1 Degree
- fnmocWave
- 58
- 0
- 401
-
- 110
-
- 6
-
-
-
- GFS PGRB 2.5 DEGREE
- gfs
- 7
- 0
- 2
-
- 96
- 77
- 81
-
- 6
-
-
-
- North American Regional Reanalysis GFS PGRB 2.5 DEGREE
- narr
- 98
- 0
- 14529
-
- 140
-
- 6
-
-
-
- North American Regional Reanalysis GFS PGRB 2.5 DEGREE
- narr
- 98
- 0
- 2
-
- 140
-
- 6
-
-
-
- North American Regional Reanalysis GFS PGRB 2.5 DEGREE
- narr
- 98
- 0
- 228
-
- 140
-
- 6
-
-
-
- GFS PGRB 2.5 DEGREE
- gfs
- 7
- 0
- 228
-
- 96
- 77
- 81
-
- 6
-
-
-
- Arakawa Staggered E-Grid for extended NAM12
- nam12E
- 7
- 0
- 99
-
- 89
-
- 3
-
-
-
- NAM 90.75464km at 60N
- nam
- 7
- 0
- 104
-
- 84
-
- 1
-
-
-
- NGM Big C-Grid
- nam91
- 7
- 0
- 101
-
- 84
-
- 3
-
-
-
- NAM 32km Expanded Domain (STR)
- nam32E
- 7
- 0
- 151
-
- 84
-
- 3
-
-
-
- NAM 32km LCC
- nam32
- 7
- 0
- 221
-
- 84
-
- 3
-
-
-
- NAM Eastern North Pacific
- namP5ENP
- 7
- 0
- 243
-
- 84
-
- 3
-
-
-
- LFM Analysis
- lfm
- 7
- 0
- 5
-
- 84
-
- 6
-
-
-
- LFM Forecast
- lfm
- 7
- 0
- 6
-
- 84
-
- 6
-
-
-
- RUC20
- ruc20
- 7
- 0
- 252
-
- 105
-
- 3
-
-
-
- SFC RUC 212
- ruc40
- 7
- 0
- 212
-
- 100
-
- 3
-
-
-
- SFC RUC 88
- ruc15
- 7
- 0
- 88
-
- 100
-
- 3
-
-
-
- GFSensemble 5KM
- gefsNdgd
- 7
- 2
- 197
-
- 107
-
- 3
-
-
-
- World wide ECMWF
- ecmwfg
- 98
- 0
- 2
-
- 137
-
- 3
-
-
-
- World wide ECMWF 1 degree WAVE
- ECMWFWAVE
- 98
- 0
- 374
-
- 255
-
- 3
-
-
-
- World wide ECMWF 1 degree WAVE
- ECMWFWAVE
- 98
- 0
- 375
-
- 104
- 255
-
- 3
-
-
-
- RUC2A
- RUC
- 7
- 0
- 888
-
- 105
-
- 1
-
-
-
- MPE
- MPE
- 9
- 0
- 304
-
- 160
- 161
-
- 1
-
-
-
- rfcMPE
- MPE
- 9
- 0
- 304
-
- 154
- 155
- 156
- 157
- 158
- 159
- 170
- 171
- 172
-
- 1
-
-
-
- GFSLAMP-Stn
- GFSLAMP
- 7
- 0
- 888
-
- 999
-
- 1
-
-
-
- NAM80
- nam80
- 7
- 0
- 211
-
- 84
-
- 6
-
-
-
- RUC80
- ruc80
- 7
- 0
- 211
-
- 86
-
- 3
-
-
-
- GFS180
- AVN
- 7
- 0
- 202
-
- 96
- 77
- 81
-
- 6
-
-
-
- NGM80
- NGM
- 7
- 0
- 211
-
- 39
-
- 6
-
-
-
- gfsLR
- MRF
- 7
- 0
- 202
-
- 78
- 80
- 82
- 94
-
- 12
-
-
-
- GFS360
- GFS201
- 7
- 0
- 201
-
- 96
- 81
-
- 6
-
-
-
- GFS North American High Resolution (32km)
- gfs32
- 7
- 0
- 221
-
- 81
- 96
-
- 6
-
-
-
- GFS in the ECMWF grid navigation
- gfs
- 7
- 0
- 375
-
- 96
- 81
-
- 6
-
-
-
- gfsLR
- mrfNH
- 7
- 0
- 201
-
- 78
- 80
- 82
- 94
-
- 12
-
-
-
- GFS90
- GFS213
- 7
- 0
- 213
-
- 77
- 81
- 96
-
- 6
-
-
-
- NGM90
- NGM213
- 7
- 0
- 213
-
- 39
-
- 6
-
-
-
- NGM180
- NGM202
- 7
- 0
- 202
-
- 39
-
- 6
-
-
-
-
- GFS80
- AVN211
- 7
- 0
- 211
-
- 77
- 81
- 96
-
- 6
-
-
-
- NAM 20km
- nam20
- 7
- 0
- 215
-
- 84
-
- 3
-
-
-
- WAFS
- WAFS
- 7
- 0
- 45
-
- 80
- 81
- 82
- 94
- 96
-
- 6
-
-
-
- GFSensemble
- ENSEMBLE
- 7
- 2
- 371
-
- 80
- 81
- 82
- 94
- 96
-
- 6
-
-
-
- GFSensemble
- ENSEMBLE37
- 7
- 2
- 37
-
- 80
- 81
- 82
- 94
- 96
-
- 6
-
-
-
- GFSensemble
- ENSEMBLE38
- 7
- 2
- 38
-
- 80
- 81
- 82
- 94
- 96
-
- 6
-
-
-
- GFSensemble
- ENSEMBLE39
- 7
- 2
- 39
-
- 80
- 81
- 82
- 94
- 96
-
- 6
-
-
-
- GFSensemble
- ENSEMBLE40
- 7
- 2
- 40
-
- 80
- 81
- 82
- 94
- 96
-
- 6
-
-
-
- GFSensemble
- ENSEMBLE41
- 7
- 2
- 41
-
- 80
- 81
- 82
- 94
- 96
-
- 6
-
-
-
- GFSensemble
- ENSEMBLE42
- 7
- 2
- 42
-
- 80
- 81
- 82
- 94
- 96
-
- 6
-
-
-
- GFSensemble
- ENSEMBLE43
- 7
- 2
- 43
-
- 80
- 81
- 82
- 94
- 96
-
- 6
-
-
-
- GFSensemble
- ENSEMBLE44
- 7
- 2
- 44
-
- 80
- 81
- 82
- 94
- 96
-
- 6
-
-
-
- NAMWX
- NAM212
- 7
- 0
- 212
-
- 89
-
- 3
-
-
-
- GFS190
- AVN203
- 7
- 0
- 203
-
- 77
- 81
- 96
-
- 12
-
-
-
- GFS150
- MRF204
- 7
- 0
- 204
-
- 78
- 80
- 82
- 94
-
- 12
-
-
-
- GFS150
- MRF205
- 7
- 0
- 205
-
- 78
- 80
- 82
- 94
-
- 12
-
-
-
- NGM95
- NGM207
- 7
- 0
- 207
-
- 39
-
- 6
-
-
-
- NGM95
- NAM207
- 7
- 0
- 207
-
- 84
-
- 6
-
-
-
- Coastal Ocean Circulation
- ofsGmex
- 7
- 0
- 15058391
-
- 45
-
- 6
-
-
-
- Coastal Ocean Circulation Short Term Forecast
- ofsWatl
- 7
- 0
- -26535243
-
- 45
-
- 6
-
-
-
-
- UKMET
- UKMETNorthernHemisphere
- 74
- 0
- 371
-
- 15
- 44
- 45
-
- 6
-
-
-
- UKMET
- UKMET37
- 74
- 0
- 37
-
- 15
- 44
- 45
-
- 6
-
-
-
- UKMET
- UKMET38
- 74
- 0
- 38
-
- 15
- 44
- 45
-
- 6
-
-
-
- UKMET
- UKMET39
- 74
- 0
- 39
-
- 15
- 44
- 45
-
- 6
-
-
-
- UKMET
- UKMET40
- 74
- 0
- 40
-
- 15
- 44
- 45
-
- 6
-
-
-
- UKMET
- UKMET41
- 74
- 0
- 41
-
- 15
- 44
- 45
-
- 6
-
-
-
- UKMET
- UKMET42
- 74
- 0
- 42
-
- 15
- 44
- 45
-
- 6
-
-
-
- UKMET
- UKMET43
- 74
- 0
- 43
-
- 15
- 44
- 45
-
- 6
-
-
-
- UKMET
- UKMET44
- 74
- 0
- 44
-
- 15
- 44
- 45
-
- 6
-
-
-
- UKMET
- ukmet
- 74
- 0
- 45
-
- 15
- 44
- 45
-
- 6
-
-
-
- GFSGbl
- AVNNorthernHemisphere
- 7
- 2
- 371
-
- 96
- 77
- 81
-
- 6
-
-
-
- GFSGbl
- AVN37
- 7
- 2
- 37
-
- 96
- 77
- 81
-
- 6
-
-
-
- GFSGbl
- AVN38
- 7
- 2
- 38
-
- 96
- 77
- 81
-
- 6
-
-
-
- GFSGbl
- AVN39
- 7
- 2
- 39
-
- 96
- 77
- 81
-
- 6
-
-
-
- GFSGbl
- AVN40
- 7
- 2
- 40
-
- 96
- 77
- 81
-
- 6
-
-
-
- GFSGbl
- AVN41
- 7
- 2
- 41
-
- 96
- 77
- 81
-
- 6
-
-
-
- GFSGbl
- AVN42
- 7
- 2
- 42
-
- 96
- 77
- 81
-
- 6
-
-
-
- GFSGbl
- AVN43
- 7
- 2
- 43
-
- 96
- 77
- 81
-
- 6
-
-
-
- GFSGbl
- AVN44
- 7
- 2
- 44
-
- 96
- 77
- 81
-
- 6
-
-
-
- GWW
- gww375
- 7
- 0
- 375
-
- 10
- 255
-
- 6
-
-
-
- NWW3
- nww3
- 7
- 0
- 233
-
- 88
-
- 6
-
-
-
- Southern Hemisphere High Resolution Sea Ice
- iceSouth
- 7
- 0
- 400
-
- 120
-
- 1
-
-
-
- Sea Ice Concentration 0.5x0.5 Degree Southern Hemisphere
- iceSHP5
- 7
- 0
- 405
-
- 120
-
- 1
-
-
-
- Sea Ice Concentration 12.7km by 12.7km Southern Hemisphere
-
- iceSH12
- 7
- 0
- 172
-
- 120
-
- 1
-
-
-
- Sea Ice Concentration 12.7km by 12.7km Northern Hemisphere
- iceNH12
- 7
- 0
- 171
-
- 120
-
- 1
-
-
-
- Sea Ice Concentration 1/12 by 1/12 Degree Global
- ice12th
- 7
- 0
- 173
-
- 120
-
- 1
-
-
-
- Sea Ice Concentration 25.4km by 25.4km Southern Hemisphere
-
- iceSH
- 7
- 0
- 220
-
- 120
-
- 1
-
-
-
- Sea Ice Concentration 25.4km by 25.4km Northern Hemisphere
- iceNH
- 7
- 0
- 219
-
- 120
-
- 1
-
-
-
- Sea Ice Concentration 0.5x0.5 Degrees Global
- iceP5
- 7
- 0
- 235
-
- 120
-
- 1
-
-
-
- RFCqpf
- RFCqpf
- 7
- 5
- 226
-
- 181
-
- 6
-
-
-
- RUC40
- RUC40
- 7
- 0
- 236
-
- 105
-
- 1
-
-
-
- GFS75
- AVN225
- 7
- 0
- 225
-
- 96
- 77
- 81
-
- 6
-
-
-
- AKWAVE
- waveAK
- 7
- 0
- 239
-
- 122
-
- 6
-
-
-
- WNAwave
- wave15mAtl
- 7
- 0
- 238
-
- 121
- 123
- 255
-
- 6
-
-
-
- AK-NAM40
- mesoNam216
- 7
- 0
- 216
-
- 84
-
- 6
-
-
-
- NAM20
- mesoNam217
- 7
- 0
- 217
-
- 84
-
- 6
-
-
-
- NAM 12km and NAM GOES 12km
- nam12
- 7
- 0
- 218
-
- 84
-
- 3
-
-
-
- AK-NAM12
- NAM242
- 7
- 0
- 242
-
- 84
-
- 3
-
-
-
- NAM Hawaii
- namNestHI
- 7
- 0
- 406
-
- 84
-
- 3
-
-
-
- NAM Alaska
- NAMAK
- 7
- 0
- 198
-
- 84
-
- 3
-
-
-
- NAM over the contiguous US 16X Resolution(5Km) Lambert Conformal
- nam5
- 7
- 0
- 227
-
- 84
-
- 3
-
-
-
- NAM Puerto Rico
- namPR
- 7
- 0
- 407
-
- 84
-
- 3
-
-
-
- GLERL
- GLERL
- 161
- 1
- 176
-
- 99
-
- 12
-
-
-
- HPCqpf
- HPCqpf
- 7
- 5
- 226
-
- 180
-
- 6
-
-
-
- ENPwave
- ENPWAVE
- 7
- 0
- 253
-
- 124
- 255
-
- 6
-
-
-
- North Pacific Hurricane Wave Model
- NPWAVE
- 7
- 0
- 253
-
- 125
-
- 6
-
-
-
- HPCdelta
- HPCdelta
- 7
- 5
- 215
-
- 183
-
- 12
-
-
-
- TPC-HurWind
- HurWind226
- 7
- 0
- 226
-
- 30
-
- 6
-
-
-
- GuamHurWind
- HurWind175
- 7
- 0
- 175
-
- 30
-
- 6
-
-
-
- HawHurWind
- HurWind250
- 7
- 0
- 250
-
- 30
-
- 6
-
-
-
- CPCoutlook-Long
- CPCoutlook211
- 7
- 0
- 211
-
- 30
-
- 720
-
-
-
- Climatological Calibrated Precipitation Analysis (360x181)
- ccpa
- 7
- 4
- 3
-
- 184
-
- 1
-
-
-
- CCPA global 1.0 degree (360x181)
- ccpa
- 7
- 4
- 229
-
- 184
-
- 1
-
-
-
- Climatological Calibrated Precipitation Analysis 2.5km
- ccpa2P5
- 7
- 4
- 110
-
- 184
-
- 1
-
-
-
- Climatological Calibrated Precipitation Analysis 5km
- ccpa5K
- 7
- 4
- 197
-
- 184
-
- 1
-
-
-
- Global 1/12 degree Lat/Lon -SST-Analysis
- sst12th
- 7
- 4
- 173
-
- 44
-
- 1
-
-
-
- Climatological Calibrated Precipitation Analysis over US and Puerto Rico
- ccpaUS
- 7
- 4
- 240
-
- 184
-
- 1
-
-
-
- CCPA over conus 0.5 DEGREE
- ccpaP5
- 7
- 4
- 402
-
- 184
-
- 1
-
-
-
- CCPA global 1.0 degree (361x181)
- ccpa2
- 7
- 4
- 375
-
- 184
-
- 1
-
-
-
- RTG-SST-Analysis
- RTGSST
- 7
- 0
- 235
-
- 44
-
- 1
-
-
-
- Global 0.5 degree Lat/Lon -SST-Analysis
- sstP5
- 7
- 4
- 235
-
- 44
-
- 1
-
-
-
- NICICE
- NICICE
- 7
- 0
- 218
-
- 120
-
- 1
-
-
-
- AK-NICICE
- AKNICICE
- 7
- 0
- 242
-
- 120
-
- 1
-
-
-
- Downscaled GFS with Eta Extension over US
- dgexConus
- 7
- 0
- 185
-
- 115
-
- 6
-
-
-
- Downscaled GFS with Eta Extension over Alaska
- dgexAK
- 7
- 0
- 186
-
- 115
-
- 6
-
-
-
- HPCGuide
- HPCGuide
- 7
- 5
- 197
-
- 183
-
- 6
-
-
-
- GFSGuide
- GFSGuide
- 7
- 4
- 232
-
- 96
- 81
- 77
-
- 6
-
-
-
- GFS40
- GFS212
- 7
- 0
- 212
-
- 96
- 81
- 77
-
- 6
-
-
-
- AK-GFS
- GFS160
- 7
- 0
- 160
-
- 96
- 81
- 77
-
- 6
-
-
-
- PR-GFS
- GFS254
- 7
- 0
- 254
-
- 96
- 81
- 77
-
- 6
-
-
-
- SJU-GFS
- GFS161
- 7
- 0
- 161
-
- 96
- 81
- 77
-
- 6
-
-
-
- TPCWindProb
- TPCWindProb
- 7
- 10
- 231
-
- 30
-
- 6
-
-
-
- MOSGuide
- MOSGuide
- 7
- 14
- 197
-
- 96
-
- 6
-
-
-
- OPCWave-W-ATL
- OPCWave180
- 7
- 6
- 180
-
- 30
-
- 24
-
-
-
- OPCWave-NE-PAC
- OPCWave181
- 7
- 6
- 181
-
- 30
-
- 24
-
-
-
- OPCWave-TE-PAC
- OPCWave182
- 7
- 10
- 182
-
- 30
-
- 24
-
-
-
- RUC13
- ruc13
- 7
- 0
- 130
-
- 105
-
- 1
-
-
-
- RUCIcing
- RUCIcing
- 7
- 0
- 236
-
- 191
-
- 1
-
-
-
- RTMA Grid over the contiguous US - 16X Resolution
- RTMA5KM
- 7
- 0
- 197
-
- 109
-
- 1
-
-
-
- RTMA Grid over the contiguous US - 32X Resolution
- RTMA2P5KM
- 7
- 4
- 1971
-
- 109
-
- 1
-
-
-
- RTMA Grid over - Guam(Mercator)
- rtmaGuam
- 7
- 4
- 199
-
- 109
-
- 1
-
-
-
- RTMA
- rtma
- 7
- 4
- 197
-
- 109
-
- 1
-
-
-
- RTMA-AK
- rtmaAK
- 7
- 0
- 198
-
- 109
-
- 1
-
-
-
- RTMA-AK
- rtmaAK
- 7
- 4
- 198
-
- 109
-
- 1
-
-
-
- RTMA-HI
- RTMAHI
- 7
- 4
- 196
-
- 109
-
- 1
-
-
-
- RTMA-PR
- RTMAPR
- 7
- 4
- 195
-
- 109
-
- 1
-
-
-
- SREF 3h Mean
- srefMean
- 7
- 0
- 212
-
- 113
-
- 3
-
-
-
- SREF 3h Prob
- srefProb
- 7
- 2
- 212
-
- 113
-
- 3
-
-
-
- AK-SREF
- SREF216
- 7
- 2
- 216
-
- 113
-
- 3
-
-
-
- PR-SREF
- SREF243
- 7
- 2
- 243
-
- 113
-
- 3
-
-
-
- RTG-SST-HR-Analysis
- RTGSSTHR
- 7
- 0
- 173
-
- 44
-
- 1
-
-
-
- GFSLAMP-Grid
- GFSLAMPTstorm
- 7
- 14
- 197
-
- 108
-
- 1
-
-
-
- ECMWF-HiRes
- ECMWFHiRes
- 98
- 0
- 232
-
- 0
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 118
- 119
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171
- 172
- 173
- 174
- 175
- 176
- 177
- 178
- 179
- 180
- 181
- 182
- 183
- 184
- 185
- 186
- 187
- 188
- 189
- 190
- 191
- 192
- 193
- 194
- 195
- 196
- 197
- 198
- 199
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209
- 210
- 211
- 212
- 213
- 214
- 215
- 216
- 217
- 218
- 219
- 220
- 221
- 222
- 223
- 224
- 225
- 226
- 227
- 228
- 229
- 230
- 231
- 232
- 233
- 234
- 235
- 236
- 237
- 238
- 239
- 240
- 241
- 242
- 243
- 244
- 245
- 246
- 247
- 248
- 249
- 250
- 251
- 252
- 253
- 254
- 255
-
- 12
-
-
-
-
- ECMWF-LowRes
- ECMWF1
- 98
- 0
- 255101
-
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171
- 172
- 173
- 174
- 175
- 176
- 177
- 178
- 179
- 180
- 181
- 182
- 183
- 184
- 185
- 186
- 187
- 188
- 189
- 190
- 191
- 192
- 193
- 194
- 195
- 196
- 197
- 198
- 199
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209
- 210
- 211
- 212
- 213
- 214
- 215
- 216
- 217
- 218
- 219
- 220
- 221
- 222
- 223
- 224
- 225
- 226
- 227
- 228
- 229
- 230
- 231
- 232
- 233
- 234
- 235
- 236
- 237
- 238
- 239
- 240
- 241
- 242
- 243
- 244
- 245
- 246
- 247
- 248
- 249
- 250
- 251
- 252
- 253
- 254
- 255
-
- 24
-
-
-
- ECMWF-LowRes
- ECMWF2
- 98
- 0
- 255102
-
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171
- 172
- 173
- 174
- 175
- 176
- 177
- 178
- 179
- 180
- 181
- 182
- 183
- 184
- 185
- 186
- 187
- 188
- 189
- 190
- 191
- 192
- 193
- 194
- 195
- 196
- 197
- 198
- 199
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209
- 210
- 211
- 212
- 213
- 214
- 215
- 216
- 217
- 218
- 219
- 220
- 221
- 222
- 223
- 224
- 225
- 226
- 227
- 228
- 229
- 230
- 231
- 232
- 233
- 234
- 235
- 236
- 237
- 238
- 239
- 240
- 241
- 242
- 243
- 244
- 245
- 246
- 247
- 248
- 249
- 250
- 251
- 252
- 253
- 254
- 255
-
- 24
-
-
-
- ECMWF-LowRes
- ECMWF3
- 98
- 0
- 255103
-
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171
- 172
- 173
- 174
- 175
- 176
- 177
- 178
- 179
- 180
- 181
- 182
- 183
- 184
- 185
- 186
- 187
- 188
- 189
- 190
- 191
- 192
- 193
- 194
- 195
- 196
- 197
- 198
- 199
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209
- 210
- 211
- 212
- 213
- 214
- 215
- 216
- 217
- 218
- 219
- 220
- 221
- 222
- 223
- 224
- 225
- 226
- 227
- 228
- 229
- 230
- 231
- 232
- 233
- 234
- 235
- 236
- 237
- 238
- 239
- 240
- 241
- 242
- 243
- 244
- 245
- 246
- 247
- 248
- 249
- 250
- 251
- 252
- 253
- 254
- 255
-
- 24
-
-
-
- ECMWF-LowRes
- ECMWF4
- 98
- 0
- 255104
-
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171
- 172
- 173
- 174
- 175
- 176
- 177
- 178
- 179
- 180
- 181
- 182
- 183
- 184
- 185
- 186
- 187
- 188
- 189
- 190
- 191
- 192
- 193
- 194
- 195
- 196
- 197
- 198
- 199
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209
- 210
- 211
- 212
- 213
- 214
- 215
- 216
- 217
- 218
- 219
- 220
- 221
- 222
- 223
- 224
- 225
- 226
- 227
- 228
- 229
- 230
- 231
- 232
- 233
- 234
- 235
- 236
- 237
- 238
- 239
- 240
- 241
- 242
- 243
- 244
- 245
- 246
- 247
- 248
- 249
- 250
- 251
- 252
- 253
- 254
- 255
-
- 24
-
-
-
- ECMWF-LowRes
- ECMWF5
- 98
- 0
- 255105
-
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171
- 172
- 173
- 174
- 175
- 176
- 177
- 178
- 179
- 180
- 181
- 182
- 183
- 184
- 185
- 186
- 187
- 188
- 189
- 190
- 191
- 192
- 193
- 194
- 195
- 196
- 197
- 198
- 199
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209
- 210
- 211
- 212
- 213
- 214
- 215
- 216
- 217
- 218
- 219
- 220
- 221
- 222
- 223
- 224
- 225
- 226
- 227
- 228
- 229
- 230
- 231
- 232
- 233
- 234
- 235
- 236
- 237
- 238
- 239
- 240
- 241
- 242
- 243
- 244
- 245
- 246
- 247
- 248
- 249
- 250
- 251
- 252
- 253
- 254
- 255
-
- 24
-
-
-
- ECMWF-LowRes
- ECMWF6
- 98
- 0
- 255106
-
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171
- 172
- 173
- 174
- 175
- 176
- 177
- 178
- 179
- 180
- 181
- 182
- 183
- 184
- 185
- 186
- 187
- 188
- 189
- 190
- 191
- 192
- 193
- 194
- 195
- 196
- 197
- 198
- 199
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209
- 210
- 211
- 212
- 213
- 214
- 215
- 216
- 217
- 218
- 219
- 220
- 221
- 222
- 223
- 224
- 225
- 226
- 227
- 228
- 229
- 230
- 231
- 232
- 233
- 234
- 235
- 236
- 237
- 238
- 239
- 240
- 241
- 242
- 243
- 244
- 245
- 246
- 247
- 248
- 249
- 250
- 251
- 252
- 253
- 254
- 255
-
- 24
-
-
-
- ECMWF-LowRes
- ECMWF7
- 98
- 0
- 255107
-
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171
- 172
- 173
- 174
- 175
- 176
- 177
- 178
- 179
- 180
- 181
- 182
- 183
- 184
- 185
- 186
- 187
- 188
- 189
- 190
- 191
- 192
- 193
- 194
- 195
- 196
- 197
- 198
- 199
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209
- 210
- 211
- 212
- 213
- 214
- 215
- 216
- 217
- 218
- 219
- 220
- 221
- 222
- 223
- 224
- 225
- 226
- 227
- 228
- 229
- 230
- 231
- 232
- 233
- 234
- 235
- 236
- 237
- 238
- 239
- 240
- 241
- 242
- 243
- 244
- 245
- 246
- 247
- 248
- 249
- 250
- 251
- 252
- 253
- 254
- 255
-
- 24
-
-
-
- ECMWF-LowRes
- ECMWF8
- 98
- 0
- 255108
-
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171
- 172
- 173
- 174
- 175
- 176
- 177
- 178
- 179
- 180
- 181
- 182
- 183
- 184
- 185
- 186
- 187
- 188
- 189
- 190
- 191
- 192
- 193
- 194
- 195
- 196
- 197
- 198
- 199
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209
- 210
- 211
- 212
- 213
- 214
- 215
- 216
- 217
- 218
- 219
- 220
- 221
- 222
- 223
- 224
- 225
- 226
- 227
- 228
- 229
- 230
- 231
- 232
- 233
- 234
- 235
- 236
- 237
- 238
- 239
- 240
- 241
- 242
- 243
- 244
- 245
- 246
- 247
- 248
- 249
- 250
- 251
- 252
- 253
- 254
- 255
-
- 24
-
-
-
- HPC
- HPCqpfNDFD
- 7
- 5
- 197
-
- 180
-
- 6
-
-
-
- NamDNG5
- NamDNG5
- 7
- 0
- 197
-
- 89
-
- 3
-
-
-
- HPE
- HPE
- 9
- 0
- 303
-
- 165
-
- 300
-
-
-
- BiasHPE
- BHPE
- 9
- 0
- 303
-
- 166
-
- 300
-
-
-
- RaobOA
- RaobOA
- 7
- 0
- 888
-
- 999
-
- 12
-
-
-
- MetarOA
- MetarOA
- 7
- 0
- 230
-
- 999
-
- 1
-
-
-
- Global Multi-Grid Wave
- wave30mAO
- 7
- 0
- 90042500
-
- 11
-
- 3
-
-
-
- GlobalWave
- gwwP5
- 7
- 0
- 11
-
- 11
-
- 3
-
-
-
- AKwave 0.25X0.167 degree Lan/Lon grid - Alaska
- wave10mAK
- 7
- 0
- 15
-
- 11
-
- 3
-
-
-
- AKwave 0.25X0.167 degree Lan/Lon grid - Alaska
- wave10mAK
- 7
- 0
- 15
-
- 255
-
- 3
-
-
-
- AKwave 0.133X0.067 degree Lan/Lon grid - Alaska
- wave4mAK
- 7
- 0
- 16
-
- 11
-
- 3
-
-
-
- Wave 0.167 degree Lan/Lon grid - US Eastern Pacific
- wave10mEP
- 7
- 0
- 14
-
- 11
-
- 3
-
-
-
- Wave 0.167 degree Lan/Lon grid - US Weste Coast
- wave10mWC
- 7
- 0
- 13
-
- 11
-
- 3
-
-
-
- Wave 0.167 degree Lan/Lon grid - US Weste Coast
- wave10mWC
- 7
- 0
- 13
-
- 255
-
- 3
-
-
-
- Wave 0.067 degree Lan/Lon grid - US Weste Coast
- wave4mWC
- 7
- 0
- 17
-
- 11
-
- 3
-
-
-
- Global Multi-Grid Wave Model 0.167 degree -- US East Coast
- gww10mEC
- 7
- 0
- 12
-
- 11
- 255
-
- 3
-
-
-
- Global Multi-Grid Wave Model 0.167 degree-- Hawaii
- gww10mHI
- 7
- 0
- 14
-
- 255
-
- 3
-
-
-
- Global Multi-Grid Wave Model 0.133X0.067 degree-- Alaska
- gww4mAK
- 7
- 0
- 16
-
- 255
-
- 3
-
-
-
- Global Multi-Grid Wave Model 0.067 degree-- US West Coast
- gww4mWC
- 7
- 0
- 17
-
- 255
-
- 3
-
-
-
- Global Multi-Grid Wave Model 0.067 degree-- US East Coast
- gww4mEC
- 7
- 0
- 18
-
- 255
-
- 3
-
-
-
- Global Multi-Grid Wave Model 0.067 degree-- US East Coast
- gww4mEC
- 7
- 0
- 18
-
- 11
-
- 3
-
-
-
- TPCSurgeProb
- TPCSurgeProb
- 7
- 0
- 888
-
- 12
-
- 6
-
-
-
- RUC13
- ruc13
- 7
- 8
- 130
-
- 105
-
- 1
-
-
-
- Aviation
- AVIATION
- 7
- 8
- 252
-
- 191
- 105
-
- 1
-
-
-
- Aviation-Icing
- AWCICING
- 7
- 8
- 255202
-
- 191
-
- 1
-
-
-
- Aviation-Turb
- AWCTURB
- 7
- 8
- 255202
-
- 105
-
- 1
-
-
-
- Aviation
- AVIATION
- 7
- 0
- 255202
-
- 191
- 105
-
- 1
-
-
-
- Aviation
- AVIATION
- 7
- 0
- 255203
-
- 191
-
- 1
-
-
-
- Aviation
- AVIATION
- 7
- 8
- 255203
-
- 191
- 105
-
- 1
-
-
-
- AK-GriddedMOS
- MOSGuideAK
- 7
- 14
- 1023
-
- 96
-
- 3
-
-
-
- NamDNG5-AK
- NamDNG5AK
- 7
- 0
- 198
-
- 89
-
- 3
-
-
-
- NamDNG5-HI
- NamDNG5HI
- 7
- 0
- 196
-
- 89
-
- 3
-
-
-
- NamDNG5-PR
- NamDNG5PR
- 7
- 0
- 195
-
- 89
-
- 3
-
-
-
- ARW-Guam
- hireswArwGuam
- 7
- 0
- 11731129
-
- 116
-
- 3
-
-
-
- ARW-PR
- hireswArwPR
- 7
- 0
- 13560489
-
- 116
-
- 3
-
-
-
- HiResW-ARW-PR
- hireswArwPR
- 7
- 0
- 255004
-
- 116
-
- 3
-
-
-
- HiResW-ARW-East
- hireswArwE
- 7
- 0
- 255001
-
- 116
-
- 3
-
-
-
- HiResW-ARW-West
- hireswArwW
- 7
- 0
- 255002
-
- 116
-
- 3
-
-
-
- HiResW-ARW-AK
- hireswArwAK
- 7
- 0
- 255003
-
- 116
-
- 3
-
-
-
- HiResW-ARW-HI
- hireswArwHI
- 7
- 0
- 255005
-
- 116
-
- 3
-
-
-
- NMM-GUAM
- hireswNmmGuam
- 7
- 0
- 11731129
-
- 112
-
- 3
-
-
-
- NMM-PR
- hireswNmmPR
- 7
- 0
- 13560489
-
- 112
-
- 3
-
-
-
- HiResW-NMM-East
- hireswNmmE
- 7
- 0
- 255001
-
- 112
-
- 3
-
-
-
-
- HiResW-NMM-West
- hireswNmmW
- 7
- 0
- 255002
-
- 112
-
- 3
-
-
-
- HiResW-NMM-AK
- hireswNmmAK
- 7
- 0
- 255003
-
- 112
-
- 3
-
-
-
- HiResW-NMM-PR
- hireswNmmPR
- 7
- 0
- 255004
-
- 112
-
- 3
-
-
-
- HiResW-NMM-HI
- hireswNmmHI
- 7
- 0
- 255005
-
- 112
-
- 3
-
-
-
-
- GRLKwave
- waveGL
- 7
- 0
- 176
-
- 131
-
- 1
-
-
-
- CPCoutlook-Short
- CPCoutlookShort
- 7
- 0
- 197
-
- 201
-
- 24
-
-
-
- CPCoutlook-Medium
- CPCoutlookMedium
- 7
- 0
- 197
-
- 200
-
- 24
-
-
-
- CPCoutlook-Short-AK
- CPCoutlookShortAK
- 7
- 0
- 198
-
- 201
-
- 3
-
-
-
- CPCoutlook-Medium-AK
- CPCoutlookMediumAK
- 7
- 0
- 198
-
- 200
-
- 3
-
-
-
- SPCGuide
- SPCGuide
- 7
- 0
- 197
-
- 0
-
- 1
-
-
-
- MSAS
- MSAS
- 7
- 0
- 888
-
- 999
-
- 1
-
-
-
- GFSBufr
- GfsBufr
- 7
- 0
- 888
-
- 999
-
- 1
-
-
-
- GFSSouthernHemisphere
- GFSSouthernHemisphere
- 7
- 0
- 28
-
- 81
- 96
-
- 1
-
-
-
- GoesBufr
- GoesBufr
- 7
- 0
- 888
-
- 999
-
- 1
-
-
-
- Metar
- Metar
- 7
- 0
- 120
-
- 999
-
- 1
-
-
-
- Ldad
- Ldad
- 7
- 0
- 139
-
- 999
-
- 1
-
-
-
- DMD
- DMD
- 7
- 0
- 888
-
- 999
-
- -10
-
-
-
- MDCRS
- MDCRS
- 7
- 0
- 888
-
- 999
-
- 1
-
-
-
- NAM Bufr
- NamBufr
- 7
- 0
- 888
-
- 999
-
- 1
-
-
-
- PoesBufr
- PoesBufr
- 7
- 0
- 888
-
- 999
-
- 1
-
-
-
- Profiler
- Profiler
- 7
- 0
- 888
-
- 999
-
- 1
-
-
-
- Raob
- Raob
- 7
- 0
- 888
-
- 999
-
- 12
-
-
-
- VWP
- VWP
- 7
- 0
- 888
-
- 999
-
- -6
-
-
-
- PR-NAM12
- mesoNam237
- 7
- 0
- 237
-
- 84
-
- 3
-
-
-
-
- FFG-TUA
- FFGTUA
- 9
- 150
- 240150
-
- 151
-
- 1
-
-
-
- FFG-ACR
- FFGACR
- 9
- 151
- 240151
-
- 151
-
- 1
-
-
-
- FFG-STR
- FFGSTR
- 9
- 152
- 240152
-
- 151
-
- 1
-
-
-
- FFG-RSA
- FFGRSA
- 9
- 153
- 240153
-
- 151
-
- 1
-
-
-
- FFG-ORN
- FFGORN
- 9
- 154
- 240154
-
- 151
-
- 1
-
-
-
- FFG-RHA
- FFGRHA
- 9
- 155
- 240155
-
- 151
-
- 1
-
-
-
- FFG-KRF
- FFGKRF
- 9
- 156
- 240156
-
- 151
-
- 1
-
-
-
- FFG-MSR
- FFGMSR
- 9
- 157
- 240157
-
- 151
-
- 1
-
-
-
- FFG-TAR
- FFGTAR
- 9
- 158
- 240158
-
- 151
-
- 1
-
-
-
- FFG-PTR
- FFGPTR
- 9
- 159
- 240159
-
- 151
-
- 1
-
-
-
- FFG-TIR
- FFGTIR
- 9
- 160
- 240160
-
- 151
-
- 1
-
-
-
- FFG-ALR
- FFGALR
- 9
- 161
- 240161
-
- 151
-
- 1
-
-
-
- FFG-FWR
- FFGFWR
- 9
- 162
- 240162
-
- 151
-
- 1
-
-
-
-
-
-
- SPE
- AUTOSPE
- 9
- 170
- 240
-
- 190
-
- 1
-
-
- SPE
- MANSPE
- 9
- 170
- 240
-
- 191
-
- 1
-
-
- QPE
- QPE
- 7
- 4
- 240
-
- 182
-
- 1
-
-
-
-
- RCM
- RCM
- 8
- 0
- 301
-
- 0
-
- 1
-
-
-
- NCWF
- NCWF
- 7
- 8
- 302
-
- 190
-
- 1
-
-
-
- NOGAPS - Ice Concentration Analysis
- NOGAPSWAVE
- 58
- 20
- 218
-
- 120
-
- 1
-
-
-
- AQM
- AQM196
- 7
- 0
- 196
-
- 211
-
- 8
-
-
-
- AQM
- AQM198
- 7
- 0
- 198
-
- 211
-
- 8
-
-
-
- AQM
- AQM227
- 7
- 0
- 227
-
- 211
-
- 8
-
-
-
-
- CMC-QLM
- CMCQLM
- 54
- 2
- -90045000
-
- 70
-
- 3
-
-
-
- Extratropical Storm Surge and Tide Operational Forecast System
- (US)
- estofsUS
- 7
- 4
- 1971
-
- 14
-
- 1
-
-
-
- Extratropical Storm Surge and Tide Operational Forecast System
- (PR)
- estofsPR
- 7
- 4
- 339227-95
-
- 14
-
- 1
-
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/purge/ncgribPurgeRules.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/purge/ncgribPurgeRules.xml
deleted file mode 100644
index 8ec526365d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/common_static/base/purge/ncgribPurgeRules.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
- 02-00:00:00
-
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/distribution/ncgrib.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/distribution/ncgrib.xml
deleted file mode 100644
index 0ca7e22359..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/distribution/ncgrib.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
- ^[YZ].[ABD-IMQRU-Z]... KWB.*
- ^YEI.[89]8 KWNH.*
- ^ZEX.98 KWNH.*
- ^H.[A-H]... ECMF.*
- ^H.[I-L]... EGRR.*
- ^H.[I-L]... KWBK.*
- ^H.X... KNWC.*
- ^O.[JMNQ]... KWBJ.*
- ^O.N... KWBM.*
- ^O.L... KWBI.*
- ^OEBA88 KNWC.*
- ^[YZ][UV]M.98 KNHC.*
- ^H[ET]QV[01][0-9] KWNC.*
- ^[LM].[ABDHMRSTU]... KWB.*
- ^[LM].M.98 KWNH.*
- ^[LM].E... KWBD.*
- ^L.U... KWBN.*
- ^L[AB]U[ABC].. KWNO.*
- ^L[UV]I... KWBJ.*
- ^[LM]DG... KNHC.*
- ^LJ[NP][NT]98 KWNM.*
- ^LJPZ98 KNHC.*
- ^ETWA88 KWBI.*
- ^LAMA98 KNES.*
- ^ZEGZ98.*
- ^ZETA98.*
- ^...... KWBX
- HAXA00 KWBC
- ^YVW[ABCDGJM]..
- ^ZVW[ADGJM]..
- ^YAW[BCDGJM]..
- ^Y[IJ]XA..
- ^YA[WX]A..
- ^ZDIA98
-
diff --git a/edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/ncgrib/ncgribModelNameMap.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/grib/ncgrib/ncgribModelNameMap.xml
similarity index 100%
rename from edexOsgi/com.raytheon.edex.plugin.grib/utility/edex_static/base/grib/ncgrib/ncgribModelNameMap.xml
rename to ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/grib/ncgrib/ncgribModelNameMap.xml
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/Aviation-Grid1.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/Aviation-Grid1.xml
deleted file mode 100644
index 730e78197d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/Aviation-Grid1.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 255201
- GDS 301x225 (Lambert Conformal) grid
- 6371229.0
- 6371229.0
- 301
- 225
- 16.281
- -126.138
- -95
- 20.318
- 20.318
- 25
- 25
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/Aviation-Grid2.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/Aviation-Grid2.xml
deleted file mode 100644
index 108a53de8c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/Aviation-Grid2.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 255202
- GDS 301x225 (Lambert Conformal) grid
- 6371229.0
- 6371229.0
- 301
- 225
- 16.281
- -126.138
- -95
- 20.318
- 20.318
- 25
- 25.05
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/Aviation-Grid3.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/Aviation-Grid3.xml
deleted file mode 100644
index c6495c9896..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/Aviation-Grid3.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 255203
- GDS 301x225 (Lambert Conformal) grid
- 6371229.0
- 6371229.0
- 301
- 225
- 16.281
- -126.138
- -95.001
- 20.318
- 20.318
- 24.999
- 24.999
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/CCPAC_Grid.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/CCPAC_Grid.xml
deleted file mode 100644
index f395a6843f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/CCPAC_Grid.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 402
- Global 721X361 Latitude/Longitude 0.5 deg Resolution
- 721
- 361
- -90
- 0
- 90
- 360
- 0.5
- 0.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/CCPAC_Gridc.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/CCPAC_Gridc.xml
deleted file mode 100644
index e45529689c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/CCPAC_Gridc.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 402
- Global 721X361 Latitude/Longitude 0.5 deg Resolution-Add one column
- 722
- 361
- -90
- 0
- 90
- 361
- 0.5
- 0.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/DCP_Grid.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/DCP_Grid.xml
deleted file mode 100644
index be7090d8b2..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/DCP_Grid.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 403
- Global 362X181 Latitude/Longitude 1 deg Resolution
- 362
- 181
- 90
- 0
- -90
- 361
- 1
- 1
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/DCP_Gridc.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/DCP_Gridc.xml
deleted file mode 100644
index 8ad7cafa8b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/DCP_Gridc.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 403
- Global 362X181 Latitude/Longitude 1 deg Resolution-Add one column
- 363
- 181
- 90
- 0
- -90
- 362
- 1
- 1
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/DHR-MOSAIC.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/DHR-MOSAIC.xml
deleted file mode 100644
index b54b7b2e01..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/DHR-MOSAIC.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 303
- DHR Mosaic grid
- 6356775
- 6378160
- 324
- 364
- 39.866
- -98.903
- -105
- 1.191
- 1.191
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid1.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid1.xml
deleted file mode 100644
index db4d4a5c2c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid1.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 255101
- ECMWF - Northern Hemisphere Lat Lon 90W-0
- 37
- 37
- 0
- -90
- 90
- 0
- 2.5
- 2.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid10.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid10.xml
deleted file mode 100644
index 9ffee4353c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid10.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 255110
- ECMWF - Southern Hemisphere Lat Lon 180W-90W
- 37
- 37
- 0
- -180
- -90
- -90
- 2.5
- 2.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid11.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid11.xml
deleted file mode 100644
index 10765f610b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid11.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 255111
- ECMWF - Southern Hemisphere Lat Lon 90W-0
- 37
- 37
- 0
- 90
- -90
- 180
- 2.5
- 2.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid12.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid12.xml
deleted file mode 100644
index 7697a65ec5..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid12.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 255112
- ECMWF - Southern Hemisphere Lat Lon 90W-0
- 37
- 37
- 0
- 0
- -90
- 90
- 2.5
- 2.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid2.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid2.xml
deleted file mode 100644
index 5f1548fc7c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid2.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 255102
- ECMWF - Northern Hemisphere Lat Lon 180W-90W
- 37
- 37
- 0
- 180
- 90
- -90
- 2.5
- 2.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid3.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid3.xml
deleted file mode 100644
index 2903565f4c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid3.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 255103
- ECMWF - Northern Hemisphere Lat Lon 90E-180E
- 37
- 37
- 0
- 90
- 90
- 180
- 2.5
- 2.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid4.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid4.xml
deleted file mode 100644
index f3b42af1a1..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid4.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 255104
- ECMWF - Northern Hemisphere Lat Lon 0-90E
- 37
- 37
- 0
- 0
- 90
- 90
- 2.5
- 2.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid5.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid5.xml
deleted file mode 100644
index f471d9db33..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid5.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 255105
- ECMWF - Tropical Belt Lat Lon 35N-35S 90W-0
- 37
- 29
- 35
- -90
- -35
- 0
- 2.5
- 2.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid6.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid6.xml
deleted file mode 100644
index f039f81e9d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid6.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 255106
- ECMWF - Tropical Belt Lat Lon 35N-35S 180W-90W
- 37
- 29
- 35
- 180
- -35
- -90
- 2.5
- 2.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid7.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid7.xml
deleted file mode 100644
index 0becf592b7..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid7.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 255107
- ECMWF - Tropical Belt Lat Lon 35N-35S 90E-180E
- 37
- 29
- 35
- 90
- -35
- 180
- 2.5
- 2.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid8.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid8.xml
deleted file mode 100644
index 9801e22670..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid8.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 255108
- ECMWF - Tropical Belt Lat Lon 35N-35S 0-90E
- 37
- 29
- 35
- 0
- -35
- 90
- 2.5
- 2.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid9.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid9.xml
deleted file mode 100644
index a869ab89af..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-Grid9.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 255109
- ECMWF - Southern Hemisphere Lat Lon 90W-0
- 37
- 37
- 0
- -90
- -90
- 0
- 2.5
- 2.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-composite.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-composite.xml
deleted file mode 100644
index bc2b8a07a9..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-composite.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 372
- World wide ECMWF Composite Northern Hemisphere Grid
- 148
- 37
- 0
- -179.9999
- 90
- 179.9999
- 1.25
- 1.25
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-composite2.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-composite2.xml
deleted file mode 100644
index 3541750a53..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-composite2.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 373
- World wide ECMWF Composite Tropical Belt Grid
- 148
- 29
- 35
- -179.9999
- -35
- 179.9999
- 1.25
- 1.25
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-wave1.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-wave1.xml
deleted file mode 100644
index f02c60612c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-wave1.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 374
- World wide ECMWF 1 degree WAVE
- 360
- 181
- -90
- 0
- 90
- 359
- 1
- 1
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-wave2.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-wave2.xml
deleted file mode 100644
index fbe38978ee..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF-wave2.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 375
- World wide ECMWF 1 degree WAVE
- 361
- 181
- 90
- 0
- -90
- 360
- 1
- 1
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF_Grid13.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF_Grid13.xml
deleted file mode 100644
index 2fe8a6d449..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF_Grid13.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 14529
- World wide ECMWF 2.5 degree WAVE
- 145
- 29
- 35
- 0
- -35
- 360
- 2.5
- 2.5
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF_Grid13c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF_Grid13c.xml
deleted file mode 100644
index 492f54a487..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF_Grid13c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 14529
- World wide ECMWF 2.5 degree WAVE -Add one column
- 146
- 29
- 35
- 0
- -35
- 362.5
- 2.5
- 2.5
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF_HR.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF_HR.xml
deleted file mode 100644
index 4eff6f9015..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ECMWF_HR.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 372
- Global ECMWF 361X181 Latitude/Longitude 1 deg Resolution
- 361
- 181
- 90
- 0
- -90
- 360
- 1
- 1
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ENSEMBLE-grid.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ENSEMBLE-grid.xml
deleted file mode 100644
index 86eb492e9d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ENSEMBLE-grid.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 371
- World wide ensemble grid
- 292
- 73
- 0
- -30
- 90
- -30.0001
- 1.25
- 1.25
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HYSPLIT.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HYSPLIT.xml
deleted file mode 100644
index e47e39e4e0..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HYSPLIT.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 36928220
- HYSPLIT
- 314
- 83
- 36.9
- -77.1
- 45.1
- -45.8
- 0.1
- 0.1
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HiResAK.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HiResAK.xml
deleted file mode 100644
index 3930903acb..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HiResAK.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 255003
- HIRES - 5 km Alaska
- 6371229.0
- 6371229.0
- 825
- 603
- 44.8
- -174.5
- -150
- 5
- 5
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HiResHI.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HiResHI.xml
deleted file mode 100644
index 66f2c113bb..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HiResHI.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 255005
- HIRES - 5 km Pacific (HI/Guam)
- 223
- 170
- 16.4
- -162.35
- 24.005
- -152.36
- 0.045
- 0.045
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HiResPR.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HiResPR.xml
deleted file mode 100644
index dd79ce984f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HiResPR.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 255004
- HIRES - 5 km Puerto Rico
- 223
- 170
- 14.4
- -71.5
- 22.005
- -61.51
- 0.045
- 0.045
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HiResWest.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HiResWest.xml
deleted file mode 100644
index 63e2174c0f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HiResWest.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 255002
- HIRES - 5 km Western US
- 6371229.0
- 6371229.0
- 884
- 614
- 24.5
- -129.2
- -108
- 5
- 5
- 40.5
- 40.5
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HiresEast.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HiresEast.xml
deleted file mode 100644
index 4117ffea45..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/HiresEast.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 255001
- HIRES - 5 km Eastern US
- 6371229.0
- 6371229.0
- 884
- 614
- 22.1
- -109.8
- -89
- 5
- 5
- 38
- 38
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/MPE.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/MPE.xml
deleted file mode 100644
index cd3334ee57..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/MPE.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 304
- MPE produced grid
- 6356775
- 6378160
- 81
- 91
- 39.86
- -98.90
- -105
- 4.762
- 4.762
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/NDFD_AK.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/NDFD_AK.xml
deleted file mode 100644
index 00f311cfe2..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/NDFD_AK.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 1023
- NDFD AK
- 6371200
- 6371200
- 1649
- 1105
- 40.5301
- -178.571
- -150
- 2.97656
- 2.97656
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/NOGAPS_Grid.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/NOGAPS_Grid.xml
deleted file mode 100644
index a1c05d09fa..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/NOGAPS_Grid.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 401
- Global 361X181 Latitude/Longitude 1 deg Resolution
- 361
- 181
- -90
- 0
- 90
- 360
- 1
- 1
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/NOGAPS_Gridc.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/NOGAPS_Gridc.xml
deleted file mode 100644
index 14112d84b4..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/NOGAPS_Gridc.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 401
- Global 361X181 Latitude/Longitude 1 deg Resolution-Add one column
- 362
- 181
- -90
- 0
- 90
- 361
- 1
- 1
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/NOGAPS_Gride.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/NOGAPS_Gride.xml
deleted file mode 100644
index f7ac0c6cdd..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/NOGAPS_Gride.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 401
- Global 360X181 Latitude/Longitude 1 deg Resolution
- 360
- 181
- -90
- 0
- 90
- 359
- 1
- 1
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/RTMA-Grid197.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/RTMA-Grid197.xml
deleted file mode 100644
index 4c4b0e1a8f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/RTMA-Grid197.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- 1971
- Grid over the contiguous United States - 32X Resolution
- (2.5 km)
- 6371229.0
- 6371229.0
- 2145
- 1377
- 20.192
- -121.550
- -95
- 2.540
- 2.540
- 25.0
- 25.0
- km
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid1.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid1.xml
deleted file mode 100644
index 1106c34bb3..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid1.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 1
- Tropical Strip (Mercator)
- 6371229.0
- 6371229.0
- 73
- 23
- -48.09
- 0
- 22.5
- 48.090
- 0
- 513.669
- 513.669
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid10.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid10.xml
deleted file mode 100644
index 219594e981..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid10.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 10
- Latitude/Longitude Ocean grid with (1,1) at (1E,64E) and (180,139) at (1W,74S) I increasing Eastward, Equator at J=65
- 180
- 139
- 64
- 1
- -74
- 359
- 2
- 1
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid101.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid101.xml
deleted file mode 100644
index 5380885ca1..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid101.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 101
- NGM Big C-Grid (Polar Stereographic)
- 6371229.0
- 6371229.0
- 113
- 91
- 10.528
- -137.146
- -105
- 91.452
- 91.452
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid104.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid104.xml
deleted file mode 100644
index b7ef7ff0c3..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid104.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 104
- NGM Super C grid used by NAM model (Polar Stereographic)
- 6371229.0
- 6371229.0
- 147
- 110
- -0.268
- -139.475
- -105
- 90.755
- 90.755
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid10c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid10c.xml
deleted file mode 100644
index 1a13df0bc6..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid10c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 10
- Latitude/Longitude Ocean grid with (1,1) at (1E,64E) and (180,139) at (1W,74S) I increasing Eastward, Equator at J=65 - Add one column
- 181
- 139
- 64
- 1
- -74
- 361
- 2
- 1
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid11.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid11.xml
deleted file mode 100644
index c569302f02..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid11.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 11
- Global 0.5 degree Latitude/Longitude grid
- 720
- 336
- 90
- 0
- -77.5
- 359.5
- 0.5
- 0.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid110.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid110.xml
deleted file mode 100644
index 9405c5902d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid110.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 110
- LDAS Grid over CONUS (longitude/latitude grid)
- 464
- 224
- 25.062
- -124.937
- 52.9375
- -67.0625
- 0.125
- 0.125
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid11c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid11c.xml
deleted file mode 100644
index eb139145a6..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid11c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 11
- Global 0.5 degree Latitude/Longitude grid - Add one column
- 721
- 336
- 90
- 0
- -77.5
- 360
- 0.5
- 0.5
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid12.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid12.xml
deleted file mode 100644
index 4d97d31a39..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid12.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 12
- 0.167 degree Latitude/Longitude for the US East Coast grid
- 301
- 331
- 55
- 260
- 0
- 310
- 0.167
- 0.167
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid126.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid126.xml
deleted file mode 100644
index 8b0f2041a1..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid126.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 126
- Global Gaussian Lon/Lat T126 Resolution
- 384
- 190
- 89.277
- 0
- -89.277
- 359.0625
- 0.9375
- 0
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid126c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid126c.xml
deleted file mode 100644
index 7306e952c1..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid126c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 126
- Global Gaussian Lon/Lat T126 Resolution-Add one column
- 385
- 190
- 89.277
- 0
- -89.277
- 360.00
- 0.9375
- 0
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid127.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid127.xml
deleted file mode 100644
index e045471862..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid127.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 127
- Global Gaussian Lon/Lat T254 Resolution
- 768
- 384
- 89.624
- 0
- -89.624
- 359.531
- 0.469
- 0
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid127c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid127c.xml
deleted file mode 100644
index 9321e31c7f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid127c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 127
- Global Gaussian Lon/Lat T254 Resolution-Add one column
- 769
- 384
- 89.624
- 0
- -89.624
- 360.00
- 0.469
- 0
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid128.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid128.xml
deleted file mode 100644
index 50a7b23acc..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid128.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 128
- Global Gaussian Lon/Lat T382 Resolution
- 1152
- 576
- 89.761
- 0
- -89.761
- 359.687
- 0.313
- 0
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid128c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid128c.xml
deleted file mode 100644
index d2612c2b29..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid128c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 128
- Global Gaussian Lon/Lat T382 Resolution-Add one column
- 1153
- 576
- 89.761
- 0
- -89.761
- 360.00
- 0.313
- 0
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid129.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid129.xml
deleted file mode 100644
index 0a259fd9af..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid129.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 129
- Global Gaussian Lon/Lat T574 Resolution
- 1760
- 880
- 89.844
- 0
- -89.844
- 359.795
- 0.205
- 0
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid129c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid129c.xml
deleted file mode 100644
index b37eb43820..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid129c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 129
- Global Gaussian Lon/Lat T574 Resolution-Add one column
- 1761
- 880
- 89.844
- 0
- -89.844
- 360.00
- 0.205
- 0
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid13.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid13.xml
deleted file mode 100644
index 59e14ac32e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid13.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 13
- 0.167 degree Latitude/Longitude for the US West Coast
- grid
- 241
- 151
- 50
- 210
- 25
- 250
- 0.167
- 0.167
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid130.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid130.xml
deleted file mode 100644
index 17f76b70fc..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid130.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 130
- Regional (CONUS) Lambert Conformal grid
- 6371229.0
- 6371229.0
- 451
- 337
- 16.281
- -126.138
- -95.0
- 13.545
- 13.545
- 25.0
- 25.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid138.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid138.xml
deleted file mode 100644
index 4ff0093571..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid138.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 138
- Air-Quality Forecasting CONUS
- 6371229.0
- 6371229.0
- 468
- 288
- 21.017
- -123.282
- -97
- 12
- 12
- 33
- 46
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid14.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid14.xml
deleted file mode 100644
index bac3aac5db..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid14.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- 14
- 0.167 degree Latitude/Longitude grid (for the Easter
- Pacific; includes Hawaii and extends to the Pacific islands of Guam
- etc.)
- 511
- 301
- 30
- 130
- -20
- 215
- 0.167
- 0.167
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid145.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid145.xml
deleted file mode 100644
index 5fe2120e67..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid145.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- 145
- Air-Quality Forecasting Northeast Intermediate
- Domain
- 6371229.0
- 6371229.0
- 169
- 145
- 32.174
- -90.159
- -79.5
- 12
- 12
- 36
- 46
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid146.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid146.xml
deleted file mode 100644
index a49ca24e97..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid146.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 146
- Air-Quality Forecasting Northeast Output Domain
- 6371229.0
- 6371229.0
- 166
- 142
- 32.353
- -89.994
- -79.5
- 12
- 12
- 36
- 46
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid147.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid147.xml
deleted file mode 100644
index 4b812a8f6c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid147.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 147
- Air-Quality Forecasting Eastern 3x Domain
- 6371229.0
- 6371229.0
- 268
- 259
- 24.595
- -100.998
- -97
- 12
- 12
- 33
- 45
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid148.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid148.xml
deleted file mode 100644
index 5f781dc24a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid148.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 148
- Air-Quality Forecasting CONUS 5x Domain
- 6371229.0
- 6371229.0
- 442
- 265
- 21.821
- -120.628
- -97
- 12
- 12
- 33
- 45
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid15.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid15.xml
deleted file mode 100644
index 294c03f4be..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid15.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 15
- 0.25 x 0.167 degree Latitude/Longitude grid for Alaska
- 401
- 187
- 75
- 140
- 44
- 240
- 0.25
- 0.167
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid150.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid150.xml
deleted file mode 100644
index 5b2b656460..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid150.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 150
- Central America - Latitude/Longitude grid for 12km
- NAM
- 401
- 201
- 5
- -100
- 25
- -60
- 0.1
- 0.1
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid151.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid151.xml
deleted file mode 100644
index c8f25bdb44..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid151.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 151
- Grid over North America (Polar Stereographic)
- 6371229.0
- 6371229.0
- 478
- 429
- 7.45
- -144.140
- -110
- 33.812
- 33.812
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid16.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid16.xml
deleted file mode 100644
index 2ad72d561f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid16.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 16
- 0.133 x 0.067 degree Latitude/Longitude grid for
- Alaska
- 548
- 391
- 74
- 165
- 48
- 237.933
- 0.133
- 0.067
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid160.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid160.xml
deleted file mode 100644
index afc4e6fe80..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid160.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- 160
- North Polar Stereographic grid for Alaska (Quadruple
- grid 203)
- 6371229.0
- 6371229.0
- 180
- 156
- 19.132
- 174.163
- -150.0
- 47.625
- 47.625
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid161.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid161.xml
deleted file mode 100644
index 727c56f81e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid161.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 161
- Lat/Lon grid for Puerto Rico
- 137
- 102
- 50.750
- 271.75
- -0.25
- 340.25
- 0.5
- 0.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid163.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid163.xml
deleted file mode 100644
index 518f6635ea..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid163.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 163
- Regional - CONUS 5 km grid
- 6371229.0
- 6371229.0
- 1008
- 722
- 20.6
- -118.3
- -95
- 5
- 5
- 38
- 38
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid17.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid17.xml
deleted file mode 100644
index 0bfa2e96e1..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid17.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 17
- 0.067 degree Latitude/Longitude grid for the US West
- Coast ; includes Hawaii
- 736
- 526
- 50
- 195
- 15
- 244
- 0.067
- 0.067
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid170.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid170.xml
deleted file mode 100644
index 701e31d722..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid170.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 170
- Global Gaussian Lon/Lat T170 Resolution
- 512
- 256
- 89.463
- 0
- -89.463
- 359.2975
- 0.7025
- 0
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid170c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid170c.xml
deleted file mode 100644
index 5cccf210ed..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid170c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 170
- Global Gaussian Lon/Lat T170 Resolution-Add one column
- 513
- 256
- 89.463
- 0
- -89.463
- 360.00
- 0.7025
- 0
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid171.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid171.xml
deleted file mode 100644
index 998e2b7d2f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid171.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- 171
- Northern Hemisphere High Resolution Sea Ice Grid
- (polar stereographic)
- 6371229.0
- 6371229.0
- 770
- 930
- 25.032
- -119.559669
- -80
- 12.7
- 12.7
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid172.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid172.xml
deleted file mode 100644
index 0071a1050e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid172.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- 172
- Southern Hemisphere High Resolution Sea Ice Grid
- (polar stereographic)
- 6371229.0
- 6371229.0
- 690
- 710
- -36.899599
- 139.805573
- -80
- 12.7
- 12.7
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid172c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid172c.xml
deleted file mode 100644
index d38bb0f568..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid172c.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- 172
- Southern Hemisphere High Resolution Sea Ice Grid
- (polar stereographic)
- 6371229.0
- 6371229.0
- 690
- 710
- -36.899599
- 139.805573
- 100
- 12.7
- 12.7
- km
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid173.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid173.xml
deleted file mode 100644
index a8ccd7dc4b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid173.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 173
- Global 1/12 degree Lat/Lon grid
- 4320
- 2160
- 89.958333
- 0.041667
- -89.958333
- 359.958333
- 0.083333
- 0.083333
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid173c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid173c.xml
deleted file mode 100644
index 89c10b6997..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid173c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 173
- Global 1/12 degree Lon/Lat Grid-Add one column
- 4321
- 2160
- 89.958333
- 0.041667
- -89.958333
- 360.041666
- 0.083333
- 0.083333
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid174.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid174.xml
deleted file mode 100644
index 6bc649734e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid174.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 174
- Global High Resolution Sea Ice grid
- (longitude/latitude grid)
- 2880
- 1440
- 89.9375
- 0.0625
- -89.9375
- 359.9375
- 0.125
- 0.125
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid174c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid174c.xml
deleted file mode 100644
index 654068356c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid174c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 174
- Global High Resolution Sea Ice Lon/Lat Grid-Add one column
- 2881
- 1440
- 89.9375
- 0.0625
- -89.9375
- 360.0625
- 0.125
- 0.125
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid175.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid175.xml
deleted file mode 100644
index 7778031cc3..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid175.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 175
- Grid over Guam (10 km longitude/latitude grid)
- 556
- 334
- 0
- 130
- 30.060
- 180.040
- 0.09
- 0.09
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid176.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid176.xml
deleted file mode 100644
index ed6f4be3cb..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid176.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 176
- 0.050 x 0.035 degree Lat/Lon grid for the US Great
- Lakes
- 327
- 235
- 49.1
- 267.8
- 40.908
- 284.1
- 0.05
- 0.035
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid18.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid18.xml
deleted file mode 100644
index e843601f16..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid18.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 18
- 0.067 degree Latitude/Longitude grid for the US East
- Coast
- 586
- 481
- 47
- 261
- 15
- 300
- 0.067
- 0.067
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid180.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid180.xml
deleted file mode 100644
index c0bf7c4d82..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid180.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 180
- CONUS - Latitude/Longitude grid (for AFWA product)
- 200
- 200
- 5
- 260
- 50
- 305
- 0.226131
- 0.226131
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid181.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid181.xml
deleted file mode 100644
index 18f51e6416..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid181.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 181
- Central America/Caribbean - Latitude/Longitude grid
- (for AFWA product)
- 200
- 143
- 30
- 205
- 62.169998
- 249.959999
- 0.22593
- 0.226549
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid182.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid182.xml
deleted file mode 100644
index 4452eecff8..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid182.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 182
- Hawaii/North Pacific - Latitude/Longitude grid
- (for AFWA product)
- 178
- 134
- 0
- 220
- 30.129999
- 260.050003
- 0.226271
- 0.226541
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid183.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid183.xml
deleted file mode 100644
index 2a4b8d6d69..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid183.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 183
- Alaska - Latitude/Longitude grid (for AFWA product)
- 648
- 278
- 75.054
- 160
- 45.138
- 220.876
- 0.108
- 0.108
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid185.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid185.xml
deleted file mode 100644
index 12629a3365..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid185.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 185
- 12 km LCC limited domain CONUS grid (used by DGEX)
- 6371229.0
- 6371229.0
- 491
- 303
- 19.943
- -125.093
- -98
- 12
- 12
- 40
- 40
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid186.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid186.xml
deleted file mode 100644
index 5c86473dbf..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid186.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 186
- 12 km PSG limited domain Alaska grid (used by DGEX)
- 6371229.0
- 6371229.0
- 377
- 237
- 44.196
- 174.759
- -157
- 11.945
- 11.945
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid195.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid195.xml
deleted file mode 100644
index c6401c89dd..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid195.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 195
- Grid over - Puerto Rico (Mercator)
- 6371229.0
- 6371229.0
- 177
- 129
- 16.829
- -68.196
- 20
- 19.747
- -63.972
- 2.5
- 2.5
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid196.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid196.xml
deleted file mode 100644
index eb9c9335c1..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid196.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 196
- Grid over - Puerto Rico (Mercator)
- 6371229.0
- 6371229.0
- 321
- 225
- 18.067
- -161.626
- 20
- 23.082
- -153.969
- 2.5
- 2.5
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid197.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid197.xml
deleted file mode 100644
index 6fc53c8061..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid197.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- 197
- Grid over the contiguous United States - 16X Resolution
- (5 km)
- 6371229.0
- 6371229.0
- 1073
- 689
- 20.192
- -121.550
- -95
- 5.079
- 5.079
- 25.0
- 25.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid198.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid198.xml
deleted file mode 100644
index cf5d160a6e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid198.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 198
- Grid over Alaska (Polar Stereographic)
- 6371229.0
- 6371229.0
- 825
- 553
- 40.53
- -178.571
- -150
- 5.953
- 5.953
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid199.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid199.xml
deleted file mode 100644
index 0d47d82f25..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid199.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 199
- Grid over - Guam (Mercator)
- 6371229.0
- 6371229.0
- 193
- 193
- 12.350
- 143.686
- 20
- 16.794
- 148.280
- 2.5
- 2.5
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid2.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid2.xml
deleted file mode 100644
index 9c4111f4fb..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid2.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 2
- 10512-point (144x73) global longitude-latitude
- grid
- 144
- 73
- 90
- 0
- -90
- 357.5
- 2.5
- 2.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid201.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid201.xml
deleted file mode 100644
index d36d268940..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid201.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 201
- Northern Hemispheric (polar stereographic)
- 6371229.0
- 6371229.0
- 65
- 65
- -20.826
- -150.0
- -105.0
- 381
- 381
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid202.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid202.xml
deleted file mode 100644
index a7718ca46a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid202.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 202
- National - CONUS (polar stereographic)
- 6371229.0
- 6371229.0
- 65
- 43
- 7.838
- -141.028
- -105
- 190.5
- 190.5
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid203.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid203.xml
deleted file mode 100644
index 293e6c63b8..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid203.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 203
- National - Alaska (polar stereographic)
- 6371229.0
- 6371229.0
- 45
- 39
- 19.132
- 174.163
- -150
- 190.5
- 190.5
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid204.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid204.xml
deleted file mode 100644
index bb65377895..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid204.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 204
- National - Hawaii (Mercator)
- 6371229.0
- 6371229.0
- 93
- 68
- -25
- 110
- 20
- 60.644
- -109.129
- 160
- 160
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid205.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid205.xml
deleted file mode 100644
index 0715dbac6b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid205.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 205
- National - Puerto Rico (polar stereographic)
- 6371229.0
- 6371229.0
- 45
- 39
- 0.616
- -84.904
- -60
- 190.5
- 190.5
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid206.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid206.xml
deleted file mode 100644
index 784405382b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid206.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 206
- Regional - Central US MARD (Lambert Conformal)
- 6371229.0
- 6371229.0
- 51
- 41
- 22.289
- -117.991
- -95
- 81.2705
- 81.2705
- 25.0
- 25.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid207.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid207.xml
deleted file mode 100644
index 5f243cbbdf..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid207.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 207
- Regional - Alaska (polar stereographic)
- 6371229.0
- 6371229.0
- 49
- 35
- 42.085
- -175.641
- -150
- 95.250
- 95.250
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid208.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid208.xml
deleted file mode 100644
index 456c697dd2..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid208.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 208
- Regional - Hawaii (Mercator)
- 6371229.0
- 6371229.0
- 29
- 27
- 9.343
- -167.315
- 20
- 28.092
- -145.878
- 80
- 80
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid209.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid209.xml
deleted file mode 100644
index ce25faacf2..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid209.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- 209
- Regional - NOAMIM - Intermediate Resolution North
- American Master Grid (Lambert Conformal)
- 6371229.0
- 6371229.0
- 275
- 223
- -4.850
- -151.1
- -111
- 44
- 44
- 45.0
- 45.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid210.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid210.xml
deleted file mode 100644
index 8d6bc2be1c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid210.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 210
- Regional - Puerto Rico (Mercator)
- 6371229.0
- 6371229.0
- 25
- 25
- 9
- -77
- 20
- 26.422
- -58.625
- 80
- 80
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid211.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid211.xml
deleted file mode 100644
index b72b88a6dd..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid211.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 211
- Regional - CONUS (Lambert Conformal)
- 6371229.0
- 6371229.0
- 93
- 65
- 12.19
- -133.459
- -95.0
- 81.2705
- 81.2705
- 25.0
- 25.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid212.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid212.xml
deleted file mode 100644
index 0c52c2dd8b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid212.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- 212
- Regional - CONUS - Double Resolution (Lambert
- Conformal)
- 6371229.0
- 6371229.0
- 185
- 129
- 12.19
- -133.459
- -95.0
- 40.635
- 40.635
- 25.0
- 25.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid213.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid213.xml
deleted file mode 100644
index 213be5ca89..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid213.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- 213
- National - CONUS - Double Resolution (polar
- stereographic)
- 6371229.0
- 6371229.0
- 129
- 85
- 7.838
- -141.028
- -105.0
- 95.250
- 95.250
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid214.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid214.xml
deleted file mode 100644
index 40ce8ce810..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid214.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- 214
- Regional - Alaska - Double Resolution (polar
- stereographic)
- 6371229.0
- 6371229.0
- 97
- 69
- 42.085
- -175.641
- -150
- 47.625
- 47.625
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid215.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid215.xml
deleted file mode 100644
index 17d81e4935..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid215.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- 215
- grid over the contiguous United States - Quadruple
- Resolution (used by the 29-km NAM model)(Lambert Conformal)
- 6371229.0
- 6371229.0
- 369
- 257
- 12.190
- -133.459
- -95.0
- 20.317625
- 20.317625
- 25.0
- 25.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid216.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid216.xml
deleted file mode 100644
index 59ae519f97..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid216.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 216
- grid over Alaska (polar stereographic)
- 6371229.0
- 6371229.0
- 139
- 107
- 30.0
- -173.0
- -135.0
- 45
- 45
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid217.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid217.xml
deleted file mode 100644
index acdc4f556f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid217.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- 217
- Grid over Alaska - Double Resolution grid (polar
- stereographic)
- 6371229.0
- 6371229.0
- 277
- 213
- 30.0
- -173.0
- -135.0
- 22.5
- 22.5
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid218.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid218.xml
deleted file mode 100644
index 2ed2d27782..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid218.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- 218
- Grid over the Contiguous United States (used by the
- 12-km NAM Model) (Lambert Conformal)
- 6371229.0
- 6371229.0
- 614
- 428
- 12.19
- -133.459
- -95.0
- 12.191
- 12.191
- 25.0
- 25.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid219.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid219.xml
deleted file mode 100644
index ad02e8886e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid219.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- 219
- grid over the Northern Hemisphere to depict SSMI-derived
- ice concentrations (polar stereographic)
- 6371229.0
- 6371229.0
- 385
- 465
- 25.032
- -119.560
- -80
- 25.4
- 25.4
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid220.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid220.xml
deleted file mode 100644
index 62e700fd50..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid220.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- 220
- Grid over the Southern Hemisphere to depict
- SSMI-derived ice concentrations (polar stereographic)
- 6371229.0
- 6371229.0
- 345
- 355
- -36.866
- 139.806
- 100
- 25.4
- 25.4
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid221.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid221.xml
deleted file mode 100644
index 9084126583..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid221.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- 221
- Regional - NOAMHI - High Resolution North American
- Master Grid (Lambert Conformal)
- 6371229.0
- 6371229.0
- 349
- 277
- 1
- -145.5
- -107
- 32.46341
- 32.46341
- 50.0
- 50.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid222.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid222.xml
deleted file mode 100644
index 88d803a4a3..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid222.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- 222
- Regional - NOAMLO - Low Resolution North American
- Master Grid (Lambert Conformal)
- 6371229.0
- 6371229.0
- 138
- 112
- -4.850
- -151.1
- -111
- 88
- 88
- 45
- 45
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid223.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid223.xml
deleted file mode 100644
index d39d5c5227..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid223.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- 223
- Hemispheric - Double Resolution (Lambert
- Conformal)
- 6371229.0
- 6371229.0
- 129
- 129
- -20.826
- -150
- -105
- 190.5
- 190.5
- 45
- 45
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid224.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid224.xml
deleted file mode 100644
index be10580224..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid224.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 224
- Southern Hemispheric (polar stereographic)
- 6371229.0
- 6371229.0
- 65
- 65
- 20.826
- 120
- -105
- 381
- 381
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid225.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid225.xml
deleted file mode 100644
index 12f162f92a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid225.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 225
- National Double Resolution - Hawaii (Mercator)
- 6371229.0
- 6371229.0
- 185
- 135
- -25
- 110
- 20
- 60.64
- -109.129
- 80
- 80
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid226.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid226.xml
deleted file mode 100644
index 90ed196d91..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid226.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- 226
- grid over the contiguous United States - 8X Resolution
- (10 km) (Used by the Radar mosaics) (Lambert Conformal)
- 6371229.0
- 6371229.0
- 737
- 513
- 12.190
- -133.459
- -95.0
- 10.1588125
- 10.1588125
- 25.0
- 25.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid227.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid227.xml
deleted file mode 100644
index 69feb42d43..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid227.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
- 227
- grid over the contiguous United States - 16X Resolution
- (5 km) (Used by the Radar Stage IV precipitation analyses and
- Satellite-derived Precipitation Estimates and SMOKES grids) (Lambert
- Conformal)
- 6371229.0
- 6371229.0
- 1473
- 1025
- 12.190
- -133.459
- -95.0
- 5.079
- 5.079
- 25.0
- 25.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid228.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid228.xml
deleted file mode 100644
index f798817545..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid228.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 228
- Global (longitude/latitude grid)
- 144
- 73
- 90
- 0
- -90
- 357.5
- 2.5
- 2.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid228c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid228c.xml
deleted file mode 100644
index 468b353a43..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid228c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 228
- Global Lon/Lat Grid-Add one column
- 145
- 73
- 90
- 0
- -90
- 360.00
- 2.5
- 2.5
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid229.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid229.xml
deleted file mode 100644
index 839cf1765c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid229.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 229
- Global (longitude/latitude grid)
- 360
- 181
- 90
- 0
- -90
- 359
- 1
- 1
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid229c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid229c.xml
deleted file mode 100644
index 9078031485..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid229c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 229
- Global Lon/Lat Grid-Add one column
- 361
- 181
- 90
- 0
- -90
- 360
- 1
- 1
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid230.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid230.xml
deleted file mode 100644
index 4918afe41d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid230.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 230
- Global Lon/Lat Grid
- 720
- 361
- 90
- 0
- -90
- 359.50
- 0.5
- 0.5
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid230c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid230c.xml
deleted file mode 100644
index 5157e0b49c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid230c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 230
- Global Lon/Lat Grid-Add one column
- 721
- 361
- 90
- 0
- -90
- 360
- 0.5
- 0.5
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid231.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid231.xml
deleted file mode 100644
index 696d73d2fd..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid231.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 231
- Northern Hemisphere (longitude/latitude grid)
- 720
- 181
- 0
- 0
- 90
- 359.5
- 0.5
- 0.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid231c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid231c.xml
deleted file mode 100644
index 136e4dc2cb..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid231c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 231
- Northern Hemisphere Lon/Lat Grid-Add one column
- 721
- 181
- 0
- 0
- 90
- 360
- 0.5
- 0.5
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid232.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid232.xml
deleted file mode 100644
index 1e0bc33471..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid232.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 232
- Northern Hemisphere (longitude/latitude grid)
- 360
- 91
- 0
- 0
- 90
- 359
- 1
- 1
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid232c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid232c.xml
deleted file mode 100644
index 8a4444b0b3..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid232c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 232
- Northern Hemisphere Lon/Lat Grid-Add one column
- 361
- 91
- 0
- 0
- 90
- 360
- 1
- 1
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid233.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid233.xml
deleted file mode 100644
index 939732e719..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid233.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 233
- Regional (longitude/latitude grid)
- 288
- 157
- 78
- 0
- -78
- 358.75
- 1.25
- 1
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid233c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid233c.xml
deleted file mode 100644
index ca9ba4ac38..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid233c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 233
- Regional Lon/Lat Grid-Add one column
- 289
- 157
- 78
- 0
- -78
- 360
- 1.25
- 1
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid234.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid234.xml
deleted file mode 100644
index b32567cacf..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid234.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 234
- Regional (longitude/latitude grid)
- 131
- 121
- 15
- -98
- -45
- -65
- 0.25
- 0.25
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid235.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid235.xml
deleted file mode 100644
index 9822207f8e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid235.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 235
- Global (longitude/latitude grid)
- 720
- 360
- 89.750
- 0.25
- -89.750
- -0.25
- 0.5
- 0.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid235c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid235c.xml
deleted file mode 100644
index 3797ffeafa..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid235c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 235
- Global Lon/Lat Grid-Add one column
- 721
- 360
- 89.750
- 0.250
- -89.750
- 360.250
- 0.5
- 0.5
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid236.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid236.xml
deleted file mode 100644
index c62a1d7dbd..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid236.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 236
- Regional - CONUS (Lambert Conformal)
- 6356775
- 6378160
- 151
- 113
- 16.281
- -126.138
- -95
- 40.63525
- 40.63525
- 25.0
- 25.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid237.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid237.xml
deleted file mode 100644
index c2964e5438..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid237.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 237
- Puerto Rico FAA Regional Grid (Lambert Conformal)
- 6371229.0
- 6371229.0
- 54
- 47
- 16.201
- -74.280
- -107
- 32.46341
- 32.46341
- 50.0
- 50.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid238.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid238.xml
deleted file mode 100644
index a2907270c6..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid238.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 238
- Western North Atlantic (longitude/latitude grid)
- 275
- 203
- 50.250
- 261.75
- -0.25
- 330.25
- 0.25
- 0.25
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid239.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid239.xml
deleted file mode 100644
index 72a1f1b83e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid239.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 239
- Alaska Regional (longitude/latitude grid)
- 155
- 123
- 75.250
- 159.5
- 44.750
- 236.5
- 0.5
- 0.25
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240.xml
deleted file mode 100644
index 788d073103..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- 240
- HRAP Grid over the Contiguous United States and Puerto
- Rico (polar stereographic)
- 6371229.0
- 6371229.0
- 1121
- 881
- 23.098
- -119.036
- -105
- 4.7625
- 4.7625
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240ALR.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240ALR.xml
deleted file mode 100644
index d0b574008e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240ALR.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 240161
- HRAP Grid for ALR (Southeast RFC Peachtree, Georgia)
- 6371229.0
- 6371229.0
- 335
- 412
- 27.033
- -91.417
- -105
- 4.762
- 4.762
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240FWR.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240FWR.xml
deleted file mode 100644
index 57b3ae3849..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240FWR.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 240162
- HRAP Grid for WFR (West Gulf RFC Fort Worth, Texas)
- 6371229.0
- 6371229.0
- 425
- 390
- 24.852
- -108.99
- -105
- 4.762
- 4.762
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240KRF.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240KRF.xml
deleted file mode 100644
index 8903fee0bc..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240KRF.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 240156
- HRAP Grid for KRF (Missouri Basin RFC Pleasant Hill, Missouri)
- 6371229.0
- 6371229.0
- 485
- 325
- 37.275
- -112.71
- -105
- 4.762
- 4.762
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240MSR.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240MSR.xml
deleted file mode 100644
index 5a3a383a71..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240MSR.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 240157
- HRAP Grid for MSR (North Central RFC Chanhassen, Minnesota)
- 6371229.0
- 6371229.0
- 450
- 350
- 37.87
- -105.515
- -105
- 4.762
- 4.762
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240ORN.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240ORN.xml
deleted file mode 100644
index 7454134c87..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240ORN.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 240154
- HRAP Grid for ORN (Lower Mississippi RFC Slidel, Louisiana)
- 6371229.0
- 6371229.0
- 419
- 419
- 28.686
- -98.791
- -105
- 4.762
- 4.762
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240PTR.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240PTR.xml
deleted file mode 100644
index e03020f108..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240PTR.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 240159
- HRAP Grid for PTR (Northwest RFC Portland, Oregon)
- 6371229.0
- 6371229.0
- 400
- 378
- 37.952
- -124.207
- -105
- 4.762
- 4.762
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240RHA.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240RHA.xml
deleted file mode 100644
index fc6403abdd..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240RHA.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 240155
- HRAP Grid for RHA (Middle Atlantic RFC State College, PA)
- 6371229.0
- 6371229.0
- 200
- 200
- 38.025
- -83.346
- -105
- 4.762
- 4.762
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240RSA.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240RSA.xml
deleted file mode 100644
index 640d1bd4cb..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240RSA.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 240153
- HRAP Grid for RSA (California-Nevada RFC Sacramento, California)
- 6371229.0
- 6371229.0
- 235
- 335
- 30.91
- -120.872
- -105
- 4.762
- 4.762
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240STR.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240STR.xml
deleted file mode 100644
index cf1f554c30..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240STR.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 240152
- HRAP Grid for STR (Colorado Basin RFC Salt Lake City, Utah)
- 6371229.0
- 6371229.0
- 260
- 360
- 30.027
- -114.429
- -105
- 4.762
- 4.762
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240TAR.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240TAR.xml
deleted file mode 100644
index 424c8d52c6..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240TAR.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 240158
- HRAP Grid for TAR (Northeast RFC Taunton, Massachusetts)
- 6371229.0
- 6371229.0
- 180
- 235
- 42.057
- -80.004
- -105
- 4.762
- 4.762
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240TIR.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240TIR.xml
deleted file mode 100644
index 658172817b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240TIR.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 240160
- HRAP Grid for TIR (Ohio Basin RFC Wilmington, Ohio)
- 6371229.0
- 6371229.0
- 195
- 235
- 36.34
- -89.895
- -105
- 4.762
- 4.762
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240TUA.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240TUA.xml
deleted file mode 100644
index c7de95fc07..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid240TUA.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 240150
- HRAP Grid for TUA (Arkansas-Red River RFC Tulsa, Oklahoma)
- 6371229.0
- 6371229.0
- 335
- 159
- 33.603
- -106.455
- -105
- 4.762
- 4.762
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid241.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid241.xml
deleted file mode 100644
index 10a5859728..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid241.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- 241
- Regional - NOAMHI - High Resolution North American
- Grid (Lambert Conformal)
- 6371229.0
- 6371229.0
- 549
- 445
- -4.850
- -151.1
- -111
- 22
- 22
- 45.0
- 45.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid242.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid242.xml
deleted file mode 100644
index 3fabbff6eb..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid242.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- 242
- Grid over Alaska - Quadruple Resolution Grid (polar
- stereographic)
- 6371229.0
- 6371229.0
- 553
- 425
- 30.0
- -173.0
- -135.0
- 11.25
- 11.25
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid243.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid243.xml
deleted file mode 100644
index f8a32619cc..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid243.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 243
- Eastern North Pacific (longitude/latitude grid)
- 126
- 101
- 10
- 190
- 50
- 240
- 0.5
- 0.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid244.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid244.xml
deleted file mode 100644
index 491475cac9..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid244.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 244
- North Atlantic Hurricane (longitude/latitude grid)
- 275
- 203
- 50.250
- -98.25
- -0.25
- -29.750
- 0.4
- 0.4
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid245.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid245.xml
deleted file mode 100644
index d8aa08981b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid245.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- 245
- Regional - NOAMHI - High Resolution over Eastern
- US (Lambert Conformal for 8 km NMM)
- 6371229.0
- 6371229.0
- 336
- 372
- 22.980
- -92.840
- -80
- 8
- 8
- 35.0
- 35.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid246.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid246.xml
deleted file mode 100644
index 0498faa6a4..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid246.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- 246
- Regional - NOAMHI - High Resolution over Western
- US (Lambert Conformal for 8 km NMM)
- 6371229.0
- 6371229.0
- 332
- 371
- 25.970
- -127.973
- -115
- 8
- 8
- 40.0
- 40.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid247.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid247.xml
deleted file mode 100644
index 0f2d7ea64c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid247.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- 247
- Regional - NOAMHI - High Resolution over Central
- US (Lambert Conformal for 8 km NMM)
- 6371229.0
- 6371229.0
- 336
- 372
- 22.980
- -110.840
- -98
- 8
- 8
- 35.0
- 35.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid248.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid248.xml
deleted file mode 100644
index 7424eef426..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid248.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 248
- Puerto Rico (longitude/latitude grid)
- 135
- 101
- 14.5
- -71.5
- 22
- -61.45
- 0.1
- 0.1
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid249.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid249.xml
deleted file mode 100644
index 3ab1cb3666..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid249.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- 249
- Grid over Alaska for 10-km Alaska nest (Polar
- Stereographic)
- 6371229.0
- 6371229.0
- 367
- 343
- 45.4
- -171.6
- -150
- 9.86789
- 9.86789
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid250.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid250.xml
deleted file mode 100644
index 700526bcb0..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid250.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 250
- Grid over Hawaii for 8 km NMM and TPC TCM product
- (longitude/latitude grid)
- 135
- 101
- 16.5
- -162
- 24
- -151.95
- 0.2
- 0.2
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid251.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid251.xml
deleted file mode 100644
index 682d68d515..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid251.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 251
- Coastal Ocean Forecast System Grid - North Atlantic
- Region (longitude/latitude grid)
- 332
- 210
- 26.350
- -83.050
- 47.250
- -49.950
- 0.1
- 0.1
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid252.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid252.xml
deleted file mode 100644
index b8f990fde5..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid252.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 252
- Regional - CONUS (Lambert Conformal)
- 6371229.0
- 6371229.0
- 301
- 225
- 26.281
- -126.138
- -95
- 20.317625
- 20.317625
- 25.0
- 25.0
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid253.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid253.xml
deleted file mode 100644
index 69fcd3cf83..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid253.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 253
- Eastern North Pacific Regional (longitude/latitude
- grid)
- 373
- 224
- 60.5
- 189.75
- 4.750
- 282.75
- 0.25
- 0.25
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid254.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid254.xml
deleted file mode 100644
index ecd3cd80be..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid254.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 254
- Mercator grid for Pacific Region
- 6371229.0
- 6371229.0
- 369
- 300
- 35.0
- 110.0
- 20.0
- 60.789
- -109.129
- 40
- 40
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid28.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid28.xml
deleted file mode 100644
index f7416f27a1..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid28.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 28
- 4225-point (65x65) S. Hemisphere polar stereographic grid oriented 80W; Pole at (33,33)
- 6371229.0
- 6371229.0
- 65
- 65
- 20.826
- -150.0
- -105.0
- 381
- 381
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid29.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid29.xml
deleted file mode 100644
index e3259b96e1..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid29.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 29
- 5365-point (145x37) N. Hemisphere
- longitude/latitude grid
- 145
- 37
- 0
- 0
- 90
- 359.999
- 2.5
- 2.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid3.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid3.xml
deleted file mode 100644
index 91c51f8468..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid3.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 3
- Global Latitude/Longitude 1 deg Resolution
- 360
- 181
- 90
- 0
- -90
- 359
- 1
- 1
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid30.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid30.xml
deleted file mode 100644
index 1e264de235..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid30.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 30
- 5365-point (145x37) S. Hemisphere longitude/latitude grid
- 145
- 37
- -90
- 0
- 0
- 359.999
- 2.5
- 2.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid33.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid33.xml
deleted file mode 100644
index ddc537d997..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid33.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 33
- 8326-point (181x46) N. Hemisphere
- longitude/latitude grid
- 181
- 46
- 0
- 0
- 90
- 359.999
- 2
- 2
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid34.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid34.xml
deleted file mode 100644
index 6989b1c8d1..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid34.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 34
- 8326-point (181x46) S. Hemisphere
- longitude/latitude grid
- 181
- 46
- -90
- 0
- 0
- 359.999
- 2
- 2
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid37.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid37.xml
deleted file mode 100644
index cf4d82b219..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid37.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 37
- Quasi-regular grid Northern Hemisphere
- Longitude range 330E - 60E
- 73
- 73
- 0
- -30
- 90
- 60
- 1.25
- 1.25
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid38.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid38.xml
deleted file mode 100644
index 53e597c4f7..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid38.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 38
- Quasi-regular grid Northern Hemisphere
- Longitude range 60E - 150E
- 73
- 73
- 0
- 60
- 90
- 150
- 1.25
- 1.25
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid39.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid39.xml
deleted file mode 100644
index 987868386e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid39.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 39
- Quasi-regular grid Northern Hemisphere
- Longitude range 150E - 240E
- 73
- 73
- 0
- 150
- 90
- -120
- 1.25
- 1.25
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid3c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid3c.xml
deleted file mode 100644
index f5c23c4f93..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid3c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 3
- Global Latitude/Longitude 1 deg Resolution-Add one column
- 361
- 181
- 90
- 0
- -90
- 360
- 1
- 1
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid4.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid4.xml
deleted file mode 100644
index a25b3e4483..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid4.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 4
- 259920-point (720x361) global Lon/Lat grid
- 720
- 361
- 90
- 0
- -90
- 359.5
- 0.5
- 0.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid40.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid40.xml
deleted file mode 100644
index 11586b6c4a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid40.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 40
- Quasi-regular grid Northern Hemisphere
- Longitude range 240E - 330E
- 73
- 73
- 0
- -120
- 90
- -30
- 1.25
- 1.25
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid406.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid406.xml
deleted file mode 100644
index 81d8920cd5..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid406.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 406
- Grid over - Hawaiinest hiresf (Mercator)
- 6371229.0
- 6371229.0
- 321
- 225
- 18.073
- -161.525
- 20
- 23.088
- -153.869
- 2.5
- 2.5
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid407.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid407.xml
deleted file mode 100644
index bdf0905da5..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid407.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- 407
- Grid over - Puerto Rico hiresf (Mercator)
- 6371229.0
- 6371229.0
- 544
- 310
- 15
- -75.5
- 20
- 22.005
- -62.509
- 2.5
- 2.5
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid408.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid408.xml
deleted file mode 100644
index 2ef0f4c8e7..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid408.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 408
- 224231-point (721x311) global Lon/Lat grid
- 721
- 311
- 77.5
- 0
- -77.5
- 360
- 0.5
- 0.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid408c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid408c.xml
deleted file mode 100644
index 5d6be266c9..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid408c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 408
- 224231-point (722x311) global Lon/Lat grid - Add one column
- 722
- 311
- 77.5
- 0
- -77.5
- 361
- 0.5
- 0.5
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid41.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid41.xml
deleted file mode 100644
index 6996dc5d9f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid41.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 41
- Quasi-regular grid Southern Hemisphere
- Longitude range 330E - 60E
- 73
- 73
- -90
- 330
- 0
- 60
- 1.5
- 1.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid42.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid42.xml
deleted file mode 100644
index cf5554b58a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid42.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 42
- Quasi-regular grid Southern Hemisphere
- Longitude range 60E - 150E
- 73
- 73
- -90
- 60
- 0
- 150
- 1.5
- 1.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid43.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid43.xml
deleted file mode 100644
index 80419ceabc..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid43.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 43
- Quasi-regular grid Southern Hemisphere
- Longitude range 150E - 240E
- 73
- 73
- -90
- 150
- 0
- 240
- 1.5
- 1.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid44.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid44.xml
deleted file mode 100644
index cc20c7396d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid44.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 44
- Quasi-regular grid Southern Hemisphere
- Longitude range 240E - 330E
- 73
- 73
- -90
- 240
- 0
- 330
- 1.5
- 1.5
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid45.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid45.xml
deleted file mode 100644
index 54db8b6a93..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid45.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 45
- Global Latitude/Longitude 1.25 deg Resolution
- 288
- 145
- 90
- 0
- -90
- 358.750
- 1.25
- 1.25
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid45c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid45c.xml
deleted file mode 100644
index d1fecd32a1..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid45c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 45
- Global Latitude/Longitude 1.25 deg Resolution-Add one column
- 289
- 145
- 90
- 0
- -90
- 360.00
- 1.25
- 1.25
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid5.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid5.xml
deleted file mode 100644
index 497e073ae6..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid5.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 5
- LFM Analysis (Polar Stereographic)
- 6371229.0
- 6371229.0
- 53
- 57
- 7.647
- -133.443
- -105
- 190.5
- 190.5
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid6.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid6.xml
deleted file mode 100644
index a075bac54b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid6.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 6
- LFM Forecast (Polar Stereographic)
- 6371229.0
- 6371229.0
- 53
- 45
- 7.647
- -133.443
- -105
- 190.5
- 190.5
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid720.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid720.xml
deleted file mode 100644
index e22eac19a8..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid720.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 72051
- 0.167 degree Latitude/Longitude for the US East Coast grid
- 720
- 51
- 90
- 65
- 0
- 359.5
- 0.5
- 0.5
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid85.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid85.xml
deleted file mode 100644
index b76a6e0530..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid85.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 85
- 32400-point (360x90) N. Hemisphere
- longitude/latitude grid
- 360
- 90
- 0.5
- 0.5
- 89.5
- 359.5
- 1
- 1
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid86.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid86.xml
deleted file mode 100644
index 06bab8c018..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid86.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 86
- 32400-point (360x90) S. Hemisphere
- longitude/latitude grid
- 360
- 90
- -89.5
- 0.5
- -0.5
- 359.5
- 1
- 1
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid87.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid87.xml
deleted file mode 100644
index a92248bd80..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid87.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- 87
- U.S. Area; used in MAPS/RUC (60km at 40N) (N. Hem.
- polar stereographic)
- 6371229.0
- 6371229.0
- 81
- 62
- 22.8756
- -120.4911
- -105
- 68.153
- 68.153
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid88.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid88.xml
deleted file mode 100644
index 5dd087a168..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid88.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
- 88
- North American Area; used in RSAS (polar
- stereographic)
- 6371229.0
- 6371229.0
- 580
- 548
- 10
- -128
- -105
- 15
- 15
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid98.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid98.xml
deleted file mode 100644
index cadda74556..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid98.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 98
- Global Gaussian Lon/Lat T62 Resolution
- 192
- 94
- 88.542
- 0
- -88.542
- 358.125
- 1.875
- 0
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid98c.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid98c.xml
deleted file mode 100644
index d2aaf4d111..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid98c.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 98
- Global Gaussian Lon/Lat T62 Resolution-Add one column
- 193
- 94
- 88.542
- 0
- -88.542
- 360.00
- 1.875
- 0
- degree
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid99.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid99.xml
deleted file mode 100644
index 588488ba11..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/grid99.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 99
- 779385-point (669X1165) NAM Arakawa staggered E-grid 12 KM Lon/Lat grid
- 669
- 1165
- -7.446
- 215.861
- 54
- 254
- 0.09
- 0.077
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ncwf.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ncwf.xml
deleted file mode 100644
index 9985a9899d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/ncwf.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
- 302
- NCWF grid
- 1830
- 918
- 20.018
- 230.019
- 53.004
- 299.996
- 0.0382
- 0.0382
- degree
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/rcm.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/rcm.xml
deleted file mode 100644
index 73ddf80a0b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/rcm.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 301
- Radar Coded Message
- 6367470
- 6367470
- 460
- 360
- 23.097
- -119.036
- -105
- 11.906
- 11.906
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/seaice_south1_grid.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/seaice_south1_grid.xml
deleted file mode 100644
index a776a63771..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/seaice_south1_grid.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 405
- Sea Ice south 690X710 13km grid
- 6371229
- 6371229
- 690
- 710
- 36.866
- 139.806
- 100
- 12.7
- 12.7
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/seaice_south_grid.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/seaice_south_grid.xml
deleted file mode 100644
index 64ae07d53f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ncgrids/seaice_south_grid.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
- 400
- Sea Ice south 345X355 25km grid
- 6371229
- 6371229
- 345
- 355
- 36.866
- 139.806
- 100
- 25.4
- 25.4
- km
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/0.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/0.0.table
deleted file mode 100644
index 457947aded..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/0.0.table
+++ /dev/null
@@ -1,10 +0,0 @@
-#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table
-0:0:Meteorological products
-1:1:Hydrological products
-2:2:Land surface products
-3:3:Space products
-# 4-9 Reserved
-10:10:Oceanographic products
-# 11-191 Reserved
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/0.table
deleted file mode 100644
index 71a7cffbaa..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/0.table
+++ /dev/null
@@ -1,255 +0,0 @@
-1:1:MELBRNE
-2:2:MLBNWMC
-3:3:Melbourne (WMC)
-4:4:MOSCOW
-5:5:MSCWWMC
-6:6:Moscow (WMC)
-7:7:NCEP
-8:8:NWSTG
-9:9:NWSO
-10:10:CAIRO
-11:11:Cairo (RSMC/RAFC)
-12:12:DAKAR
-13:13:Dakar (RSMC/RAFC)
-14:14:NAIROBI
-15:15:Nairobi (RSMC/RAFC)
-16:16:ANTNRVO
-17:17:Tunis (RSMC)
-18:18:TUNIS
-19:19:Tunis-Casablanca (RSMC)
-20:20:LASPALM
-21:21:ALGIERS
-22:22:LAGOS
-23:23:Mozambique (NMC)
-24:24:Pretoria (RSMC)
-25:25:La Reunion (RSMC)
-26:26:KHBRVSK
-27:27:Khabarovsk (RSMC)
-28:28:NWDEHLI
-29:29:New Delhi (RSMC/RAFC)
-30:30:NVSBRSK
-31:31:Novosibirsk (RSMC)
-32:32:TASHKNT
-33:33:JEDDAH
-34:34:JMC
-35:35:Japanese Meteorological Agency - Tokyo (RSMC)
-36:36:BANGKOK
-37:37:ULANBAT
-38:38:BEIJING
-39:39:Beijing (RSMC)
-40:40:SEOUL
-41:41:BUENAIR
-42:42:BRAZIL
-43:43:Brasilia (RSMC/RAFC)
-44:44:Brasilia (RSMC/RAFC)
-45:45:SANTIAG
-46:46:BRZSPAC
-47:47:Columbia (NMC)
-48:48:Ecuador (NMC)
-49:49:Peru (NMC)
-50:50:Venezuela (NMC)
-51:51:MIAMI
-52:52:HURRCAN
-53:53:CMS
-54:54:Canadian Meteorological Service - Montreal (RSMC)
-55:55:SANFRAN
-56:56:ARINC Center
-57:57:USAFGWC
-58:58:USNFNOC
-59:59:FSL
-60:60:NCAR
-61:61:Service ARGOS - Landover, MD, USA
-62:62:US Naval Oceanographic Office
-63:63:Reserved
-64:64:HONOLUL
-65:65:DARWIN
-66:66:Darwin (RSMC)
-67:67:MLBNRMC
-68:68:Reserved
-69:69:WELLNTN
-70:70:Wellington (RSMC/RAFC)
-71:71:Nadi (RSMC)
-72:72:Singapore
-73:73:Malaysia (NMC)
-74:74:UKMET
-75:75:U.K. Met Office - Exeter (RSMC)
-76:76:MSCWRMC
-77:77:Reserved
-78:78:OFFNBCH
-79:79:Offenbach (RSMC)
-80:80:ROME
-81:81:Rome (RSMC)
-82:82:NRKPING
-83:83:Norrkoping
-84:84:French Weather Service - Toulouse
-85:85:FWST
-86:86:HELSNKI
-87:87:BELGRAD
-88:88:OSLO
-89:89:PRAGUE
-90:90:EPISKPI
-91:91:ANKARA
-92:92:FRANKFT
-93:93:LONDON
-94:94:COPNHGN
-95:95:ROTA
-96:96:ATHENS
-97:97:ESA
-98:98:ECMF
-99:99:DEBILT
-100:100:Brazzaville
-101:101:Abidjan
-102:102:Libyan Arab Jamahiriya (NMC)
-103:103:Madagascar (NMC)
-104:104:Mauritius (NMC)
-105:105:Niger (NMC)
-106:106:Seychelles (NMC)
-107:107:Uganda (NMC)
-108:108:Tanzania (NMC)
-109:109:Zimbabwe (NMC)
-110:110:Hong-Kong
-111:111:Afghanistan (NMC)
-112:112:Bahrain (NMC)
-113:113:Bangladesh (NMC)
-114:114:Bhutan (NMC)
-115:115:Cambodia (NMC)
-116:116:Democratic People's Republic of Korea (NMC)
-117:117:Islamic Republic of Iran (NMC)
-118:118:Iraq (NMC)
-119:119:Kazakhstan (NMC)
-120:120:Kuwait (NMC)
-121:121:Kyrgyz Republic (NMC)
-122:122:Lao People's Democratic Republic (NMC)
-123:123:Macao, China
-124:124:Maldives (NMC)
-125:125:Myanmar (NMC)
-126:126:Nepal (NMC)
-127:127:Oman (NMC)
-128:128:Pakistan (NMC)
-129:129:Qatar (NMC)
-130:130:Republic of Yemen (NMC)
-131:131:Sri Lanka (NMC)
-132:132:Tajikistan (NMC)
-133:133:Turkmenistan (NMC)
-134:134:United Arab Emirates (NMC)
-135:135:Uzbekistan (NMC)
-136:136:Socialist Republic of Viet Nam (NMC)
-137:137:Reserved
-138:138:Reserved
-139:139:Reserved
-140:140:Bolivia (NMC)
-141:141:Guyana (NMC)
-142:142:Paraguay (NMC)
-143:143:Suriname (NMC)
-144:144:Uruguay (NMC)
-145:145:French Guyana
-146:146:Brazilian Navy Hydrographic Center
-147:147:Reserved
-148:148:Reserved
-149:149:Reserved
-150:150:Antigua and Barbuda (NMC)
-151:151:Bahamas (NMC)
-152:152:Barbados (NMC)
-153:153:Belize (NMC)
-154:154:British Caribbean Territories Center
-155:155:San Jose
-156:156:Cuba (NMC)
-157:157:Dominica (NMC)
-158:158:Dominican Republic (NMC)
-159:159:El Salvador (NMC)
-160:160:US NOAA/NESDIS
-161:161:NOAA
-162:162:Guatemala (NMC)
-163:163:Haiti (NMC)
-164:164:Honduras (NMC)
-165:165:Jamaica (NMC)
-166:166:Mexico
-167:167:Netherlands Antilles and Aruba (NMC)
-168:168:Nicaragua (NMC)
-169:169:Panama (NMC)
-170:170:Saint Lucia (NMC)
-171:171:Trinidad and Tobago (NMC)
-172:172:French Departments
-173:173:Reserved
-174:174:Reserved
-175:175:Reserved
-176:176:Reserved
-177:177:Reserved
-178:178:Reserved
-179:179:Reserved
-180:180:Reserved
-181:181:Reserved
-182:182:Reserved
-183:183:Reserved
-184:184:Reserved
-185:185:Reserved
-186:186:Reserved
-187:187:Reserved
-188:188:Reserved
-189:189:Reserved
-190:190:Cook Islands (NMC)
-191:191:French Polynesia (NMC)
-192:192:Tonga (NMC)
-193:193:Vanuatu (NMC)
-194:194:Brunei (NMC)
-195:195:Indonesia (NMC)
-196:196:Kiribati (NMC)
-197:197:Federated States of Micronesia (NMC)
-198:198:New Caledonia (NMC)
-199:199:Niue
-200:200:Papua New Guinea (NMC)
-201:201:Philippines (NMC)
-202:202:Samoa (NMC)
-203:203:Solomon Islands (NMC)
-204:204:Reserved
-205:205:Reserved
-206:206:Reserved
-207:207:Reserved
-208:208:Reserved
-209:209:Reserved
-210:210:Frascati
-211:211:Lanion
-212:212:Lisboa
-213:213:Reykjavik
-214:214:Madrid
-215:215:Zurich
-216:216:Service ARGOS - Toulouse, FR
-217:217:Bratislava
-218:218:Budapest
-219:219:Ljubljana
-220:220:Warsaw
-221:221:Zagreb
-222:222:Albania (NMC)
-223:223:Armenia (NMC)
-224:224:Austria (NMC)
-225:225:Azerbaijan (NMC)
-226:226:Belarus (NMC)
-227:227:Belgium (NMC)
-228:228:Bosnia and Herzegovina (NMC)
-229:229:Bulgaria (NMC)
-230:230:Cyprus (NMC)
-231:231:Estonia (NMC)
-232:232:Georgia (NMC)
-233:233:Dublin
-234:234:Israel (NMC)
-235:235:Jordan (NMC)
-236:236:Latvia (NMC)
-237:237:Lebanon (NMC)
-238:238:Lithuania (NMC)
-239:239:Luxembourg
-240:240:Malta (NMC)
-241:241:Monaco
-242:242:Romania (NMC)
-243:243:Syrian Arab Republic (NMC)
-244:244:The former Yugoslav Republic of Macedonia (NMC)
-245:245:Ukraine (NMC)
-246:246:Republic of Moldova
-247:247:Reserved
-248:248:Reserved
-249:249:Reserved
-250:250:Reserved
-251:251:Reserved
-252:252:Reserved
-253:253:Reserved
-254:254:EUMETSAT Operations Center
-255:255:Missing Value
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/1.0.table
deleted file mode 100644
index 327fb8dbac..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/1.0.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# Code Table 1.0: GRIB Master Tables Version Number
-0:0:Experimental
-1:1:Initial operational version number
-2:2:Previous operational version number
-3:3:Current operational version number implemented on 2 November 2005
-# 4-254 Future operational version numbers
-255:255:Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used.
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/1.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/1.1.table
deleted file mode 100644
index 7c2731f5ee..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/1.1.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# Code Table 1.1 GRIB Local Tables Version Number
-0:0:Local tables not used
-# . Only table entries and templates from the current Master table are valid.
-# 1-254 Number of local tables version used
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/1.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/1.2.table
deleted file mode 100644
index 845a68b5f8..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/1.2.table
+++ /dev/null
@@ -1,8 +0,0 @@
-# CODE TABLE 1.2, Significance of Reference Time
-0:0:Analysis
-1:1:Start of forecast
-2:2:Verifying time of forecast
-3:3:Observation time
-# 4-191 Reserved
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/1.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/1.3.table
deleted file mode 100644
index 8aa6e1429a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/1.3.table
+++ /dev/null
@@ -1,10 +0,0 @@
-# CODE TABLE 1.3, Production status of data
-0:0:Operational products
-1:1:Operational test products
-2:2:Research products
-3:3:Re-analysis products
-4:4:TIGGE Operational products
-5:5:TIGGE test products
-# 4-191 Reserved
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/1.4.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/1.4.table
deleted file mode 100644
index 31a5749047..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/1.4.table
+++ /dev/null
@@ -1,12 +0,0 @@
-# CODE TABLE 1.4, Type of data
-0:0:Analysis products
-1:1:Forecast products
-2:2:Analysis and forecast products
-3:3:Control forecast products
-4:4:Perturbed forecast products
-5:5:Control and perturbed forecast products
-6:6:Processed satellite observations
-7:7:Processed radar observations
-# 8-191 Reserved
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.0.table
deleted file mode 100644
index 3715b7f285..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.0.table
+++ /dev/null
@@ -1,6 +0,0 @@
-# CODE TABLE 3.0, Source of Grid Definition
-0:0:Specified in Code table 3.1
-1:1:Predetermined grid definition Defined by originating centre
-# 2-191 Reserved
-# 192-254 Reserved for local use
-255:255:A grid definition does not apply to this product
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.1.table
deleted file mode 100644
index 0434f8e589..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.1.table
+++ /dev/null
@@ -1,42 +0,0 @@
-# CODE TABLE 3.1, Grid Definition Template Number
-0:0:Latitude/longitude
-#0:0:Latitude/longitude. Also called equidistant cylindrical, or Plate Carree
-1:1:Rotated latitude/longitude
-2:2:Stretched latitude/longitude
-3:3:Stretched and rotated latitude/longitude
-# 4-9 Reserved
-10:10:Mercator
-# 11-19 Reserved
-20:20:Polar stereographic can be south or north
-# 21-29 Reserved
-30:30:Lambert Conformal can be secant or tangent, conical or bipolar
-31:31:Albers equal-area
-# 32-39 Reserved
-40:40:Gaussian latitude/longitude
-41:41:Rotated Gaussian latitude/longitude
-42:42:Stretched Gaussian latitude/longitude
-43:43:Stretched and rotated Gaussian latitude/longitude
-# 44-49 Reserved
-50:50:Spherical harmonic coefficients
-51:51:Rotated spherical harmonic coefficients
-52:52:Stretched spherical harmonic coefficients
-53:53:Stretched and rotated spherical harmonic coefficients
-# 54-89 Reserved
-90:90:Space view perspective or orthographic
-# 91-99 Reserved
-100:100:Triangular grid based on an icosahedron
-# 101-109 Reserved
-110:110:Equatorial azimuthal equidistant projection
-# 111-119 Reserved
-120:120:Azimuth-range projection
-# 121-999 Reserved
-1000:1000:Cross-section grid, with points equally spaced on the horizontal
-# 1001-1099 Reserved
-1100:1100:Hovmuller diagram grid, with points equally spaced on the horizontal
-# 1101-1199 Reserved
-1200:1200:Time section grid
-# 1201-32767 Reserved
-# 32768-65534 Reserved for local use
-32768:32768:Rotated Latitude/Longitude (Arakawa Staggered E-Grid)
-32769:32769:Rotated Latitude/Lognitude (Arakawa Non-E Staggered Grid)
-65535:65535:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.10.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.10.table
deleted file mode 100644
index 46e366139f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.10.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# FLAG TABLE 3.10, Scanning mode for one diamond
-1:0:Points scan in +i direction, i.e. from pole to equator
-1:1:Points scan in -i direction, i.e. from equator to pole
-2:0:Points scan in +j direction, i.e. from west to east
-2:1:Points scan in -j direction, i.e. from east to west
-3:0:Adjacent points in i direction are consecutive
-3:1:Adjacent points in j direction is consecutive
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.11.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.11.table
deleted file mode 100644
index fd7f87a1ed..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.11.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# CODE TABLE 3.11, Interpretation of list of numbers defining number of points
-0:0:There is no appended list
-1:1:Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows
-2:2:Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.15.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.15.table
deleted file mode 100644
index 4c43229be1..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.15.table
+++ /dev/null
@@ -1,25 +0,0 @@
-# CODE TABLE 3.15, Physical meaning of vertical coordinate
-# 0-19 Reserved
-20:20:Temperature:K:T
-# 21-99 Reserved
-100:100:Pressure:Pa:P
-101:101:Pressure deviation from mean sea level:Pa:PRESD
-102:102:Altitude above mean sea level:m:ALTMSL
-103:103:Height above ground (see Note 1):m:HGTAG
-104:104:Sigma coordinate
-105:105:Hybrid coordinate
-106:106:Depth below land surface:m:DPBLW
-107:pt:Potential temperature (theta):K:POT
-108:108:Pressure deviation from ground to level:Pa:PRESDEV
-109:pv:Potential vorticity:K *m^-2 *kg^-1 *s^-1:PV
-110:110:Geometrical height:m:GHT
-111:111:Eta coordinate (see Note 2)
-112:112:Geopotential height:gpm:GH
-# 113-159 Reserved
-160:160:Depth below sea level:m:DPMSL
-# 161-191 Reserved
-# 192-254 Reserved for local use
-255:255:Missing
-# Notes:
-# (1) Negative values associated to this coordinate will indicate depth below ground surface. If values are all below surface, use of entry 106 is recommended, with positive coordinate values instead.
-# (2) The Eta vertical coordinate system involves normalizing the pressure at some point on a specific level by the mean sea level pressure at that point.
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.2.table
deleted file mode 100644
index e85d273334..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.2.table
+++ /dev/null
@@ -1,11 +0,0 @@
-# CODE TABLE 3.2, Shape of the Earth
-0:0:Earth assumed spherical with radius = 6,367,470.0 m
-1:1:Earth assumed spherical with radius specified by data producer
-2:2:Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6,378,160.0 m, minor axis = 6,356,775.0 m, f = 1/297.0)
-3:3:Earth assumed oblate spheroid with major and minor axes specified by data producer
-4:4:Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6,378,137.0 m, minor axis = 6,356,752.314 m, f = 1/298.257222101)
-5:5:Earth assumed represented by WGS84 (as used by ICAO since 1998)
-6:6:Earth assumed spherical with radius of 6,371,229.0 m
-# 7-191 Reserved
-# 192- 254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.20.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.20.table
deleted file mode 100644
index 1f9ea402a6..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.20.table
+++ /dev/null
@@ -1,6 +0,0 @@
-# CODE TABLE 3.20, Type of horizontal line
-0:0:Rhumb
-1:1:Great circle
-# 2-191 Reserved
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.21.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.21.table
deleted file mode 100644
index 774c67db1d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.21.table
+++ /dev/null
@@ -1,8 +0,0 @@
-# CODE TABLE 3.21, Vertical dimension coordinate values definition
-0:0:Explicit coordinate values set
-1:1:Linear coordinates
-# 2-10 Reserved
-11:11:Geometric coordinates
-# 12-191 Reserved
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.3.table
deleted file mode 100644
index 9ab78f5029..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.3.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# FLAG TABLE 3.3, Resolution and Component Flags
-3:0:i direction increments not given
-3:1:i direction increments given
-4:0:j direction increments not given
-4:1:j direction increments given
-5:0:Resolved u- and v- components of vector quantities relative to easterly and northerly directions
-5:1:Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates respectively
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.4.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.4.table
deleted file mode 100644
index f5a41e06bb..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.4.table
+++ /dev/null
@@ -1,9 +0,0 @@
-# FLAG TABLE 3.4, Scanning Mode
-1:0:Points of first row or column scan in the +i (+x) direction
-1:1:Points of first row or column scan in the -i (-x) direction
-2:0:Points of first row or column scan in the -j (-y) direction
-2:1:Points of first row or column scan in the +j (+y) direction
-3:0:Adjacent points in i (x) direction are consecutive
-3:1:Adjacent points in j (y) direction is consecutive
-4:0:All rows scan in the same direction
-4:1:Adjacent rows scans in the opposite direction
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.5.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.5.table
deleted file mode 100644
index 260a3ea3eb..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.5.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# FLAG TABLE 3.5, Projection Centre
-1:0:North Pole is on the projection plane
-1:1:South Pole is on the projection plane
-2:0:Only one projection centre is used
-2:1:Projection is bi-polar and symmetric
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.6.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.6.table
deleted file mode 100644
index 11c71bb950..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.6.table
+++ /dev/null
@@ -1,2 +0,0 @@
-# CODE TABLE 3.6, Spectral data representation type
-1:1:The Associated Legendre Functions of the first kind are defined by:
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.7.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.7.table
deleted file mode 100644
index 09c74cde6b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.7.table
+++ /dev/null
@@ -1,11 +0,0 @@
-# Code Table 3.7: Spectral data representation mode
-0:0:Reserved
-1:1:The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1)
-# 2-254 Reserved
-255:255:Missing
-# Note:
-#
-#(1) Values of N(m) for common truncations cases:
-# Triangular M = J = K, N(m) = J
-# Rhomboidal K = J + M, N(m) = J+m
-# Trapezoidal K = J, K > M, N(m) = J
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.8.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.8.table
deleted file mode 100644
index 1648d719be..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.8.table
+++ /dev/null
@@ -1,8 +0,0 @@
-# Code table 3.8: Grid point position
-0:0:Grid points at triangle vertices
-1:1:Grid points at centres of triangles
-2:2:Grid points at midpoints of triangle sides
-# 3-191 Reserved
-# 192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.9.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.9.table
deleted file mode 100644
index 562ebfaea6..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/3.9.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole
-1:0:Clockwise orientation
-1:1:Anti-clockwise (i.e., counter-clockwise) orientation
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.0.table
deleted file mode 100644
index 48d1caf29b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.0.table
+++ /dev/null
@@ -1,25 +0,0 @@
-# CODE TABLE 4.0, Product Definition Template Number
-0:0:Analysis or forecast at a horizontal level or in a horizontal layer at a point in time
-1:1:Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time
-2:2:Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time
-3:3:Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time
-4:4:Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time
-5:5:Probability forecasts at a horizontal level or in a horizontal layer at a point in time
-6:6:Percentile forecasts at a horizontal level or in a horizontal layer at a point in time
-7:7:Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time
-8:8:Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval
-9:9:Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval
-10:10:Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval
-11:11:Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval
-12:12:Derived forecasts based in all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval
-13:13:Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval
-14:14:Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval
-20:20:Radar product
-30:30:Satellite product
-254:254:CCITT IA5 character string
-1000:1000:Cross section of analysis and forecast at a point in time
-1001:1001:Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time
-1002:1002:Cross-section of analysis and forecast, averaged or otherwise statistically processed
-1100:1100:Hovmuller-type grid with no averaging or other statistical processing
-1101:1101:Hovmuller-type grid with averaging or other statistical processing
-65335:65535:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.1.table
deleted file mode 100644
index fa9ed55592..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.1.table
+++ /dev/null
@@ -1,26 +0,0 @@
-# CODE TABLE 4.1, Category of parameters by product discipline
-0:0:Temperature
-1:1:Moisture
-2:2:Momentum
-3:3:Mass
-4:4:Short wave radiation
-5:5:Long wave radiation
-6:6:Cloud
-7:7:Thermodynamic stability indicies
-8:8:Kinematic stability indicies
-9:9:Temperature probabilities
-10:10:Moisture probabilities
-11:11:Momentum probabilities
-12:12:Mass probabilities
-13:13:Aerosols
-14:14:Trace gases (e.g. Ozone, CO2)
-15:15:Radar
-16:16:Forecast radar imagery
-17:17:Electrodynamics
-18:18:Nuclear/radiology
-19:19:Physical atmospheric properties
-#20-189 Reserved
-190:190:CCITT IA5 string
-191:191:Miscellaneous
-#192-254 Reserved for Local Use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.10.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.10.table
deleted file mode 100644
index 654125638c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.10.table
+++ /dev/null
@@ -1,13 +0,0 @@
-# CODE TABLE 4.10, Type of statistical processing
-0:0:Average
-1:1:Accumulation
-2:2:Maximum
-3:3:Minimum
-4:4:Difference (Value at the end of time range minus value at the beginning)
-5:5:Root mean square
-6:6:Standard deviation
-7:7:Covariance (Temporal variance)
-8:8:Difference (Value at the start of time range minus value at the end)
-9:9:Ratio
-# 192 254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.12.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.12.table
deleted file mode 100644
index 5602b37967..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.12.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# CODE TABLE 4.12, Operating Mode
-0:0:Maintenance Mode
-1:1:Clear air
-2:2:Precipitation
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.13.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.13.table
deleted file mode 100644
index f7d3a3091a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.13.table
+++ /dev/null
@@ -1,4 +0,0 @@
-# CODE TABLE 4.13, Quality Control Indicator
-0:0:No quality control applied
-1:1:Quality control applied
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.14.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.14.table
deleted file mode 100644
index 28b25681e7..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.14.table
+++ /dev/null
@@ -1,4 +0,0 @@
-# CODE TABLE 4.14, Clutter Filter Indicator
-0:0:No clutter filter used
-1:1:Clutter filter used
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.0.table
deleted file mode 100644
index 0dfe73f234..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.0.table
+++ /dev/null
@@ -1,34 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 0: Temperature
-0:0:Temperature:K:TMP:T
-1:1:Virtual temperature:K:VTMP
-2:2:Potential temperature:K:POT:PoT
-3:3:Pseudo-adiabatic potential temperature or equivalent potential temperature:K:EPOT
-4:4:Maximum temperature:K:TMAX:MxT
-5:5:Minimum temperature:K:TMIN:MnT
-6:6:Dew point temperature:K:DPT:DpT
-7:7:Dew point depression or deficit:K:DEPR:DpD
-8:8:Lapse rate:K/m:LAPR
-9:9:Temperature anomaly:K:TMPA:Ta
-10:10:Latent heat net flux:W/m^2:LHTFL:LHF
-11:11:Sensible heat net flux:W/m^2:SHTFL:SHF
-12:12:Heat index:K:HTX:HIdx
-13:13:Wind chill factor:K:WCI
-14:14:Minimum dew point depression:K:DEPMN
-15:15:Virtual potential temperature:K:VPTMP:VPT
-16:16:Snow phase change heat flux:W/m^2:SNOHF
-17:17:Skin Temperature:K:SKTMP
-#18-191 Reserved
-192:192:Snow Phase Change Heat Flux:W/m^2:SNOHF
-193:193:Temperature tendency by all radiation:K/S:TTRAD
-194:194:Relative Error Variance::REV
-195:195:Large Scale Condensate Heating rate:K/s:LRGHR
-196:196:Deep Convective Heating rate:K/s:CNVHR
-197:197:Total Downward Heat Flux at Surface:W/m^2:THFLX
-198:198:Temperature Tendency By All Physics:K/s:TTDIA
-199:199:Temperature Tendency By Non-radiation Physics:K/s:TTPHY
-200:200:Standard Dev. of IR Temp. over 1x1 deg. area:K:TSD1D
-201:201:Shallow Convective Heating rate:K/s:SHAHR
-202:202:Vertical Diffusion Heating rate:K/s:VDFHR
-203:203:Potential temperature at top of viscous sublayer:K:THZ0
-204:204:Tropical Cyclone Heat Potential:J/M^2K:TCHP
-255:255:Missing
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.1.table
deleted file mode 100644
index 896e11158b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.1.table
+++ /dev/null
@@ -1,72 +0,0 @@
- # Product Discipline 0: Meteorological products, Parameter Category 1: Moisture
- 0:0:Specific humidity:kg/kg:SPFH:SH
- 1:1:Relative humidity:%:RH
- 2:2:Humidity mixing ratio:kg/kg:MIXR
- 3:3:Precipitable water:mm:PWAT:PW
- 4:4:Vapor pressure:Pa:VAPP
- 5:5:Saturation deficit:Pa:SATD
- 6:6:Evaporation:mm:EVP
- 7:7:Precipitation rate:mm * s:PRATE:PR
- 8:8:Total precipitation:mm:APCP:TP
- 9:9:Large scale precipitation (non-convective):mm:NCPCP:LgSP
- 10:10:Convective precipitation:mm:ACPCP:CP
- 11:11:Snow depth:m:SNOD:SnD
- 12:12:Snowfall rate water equivalent:mm * s:SRWEQ
- 13:13:Water equivalent of accumulated snow depth:mm:WEASD
- 14:14:Convective snow:mm:SNOC
- 15:15:Large scale snow:mm:SNOL
- 16:16:Snow melt:mm:SNOM
- 17:17:Snow age:day:SNOAG
- 18:18:Absolute humidity:kg/m^3:AH
- 19:19:Precipitation type:(Code table 4.201):PTYPE:PTyp
- 20:20:Integrated liquid water:mm:ILW
- 21:21:Condensate:kg/kg:CONDE
- 22:22:Cloud mixing ratio:kg/kg:CLWMR
- 23:23:Ice water mixing ratio:kg/kg:ICMR
- 24:24:Rain mixing ratio:kg/kg:RWMR
- 25:25:Snow mixing ratio:kg/kg:SNMR
- 26:26:Horizontal moisture convergence:kg/kg*s:HMC
- 27:27:Maximum relative humidity:%:MAXRH
- 28:28:Maximum absolute humidity:kg/m^3:MAXAH
- 29:29:Total snowfall:m:TOTSN
- 30:30:Precipitable water category:(Code table 4.202):PWC
- 31:31:Hail:m:HAIL
- 32:32:Graupel (snow pellets):kg/kg:GRAUP
- 33:33:Categorical rain : (See Code table 4.222):CRAIN
- 34:34:Categorical freezing rain :(See Code table 4.222):CFRZR
- 35:35:Categorical ice pellets : (See Code table 4.222):CICEP
- 36:36:Categorical snow :(See Code table 4.222):CSNOW
- 37:37:Convective precipitation rate:mm * s:CPRAT
- 38:38:Horizontal moisture divergence:kg/kg*s:MCONV
- 39:39:Percent frozen precipitation:%:CPOFP
- 40:40:Potential evaporation:mm:PEVAP
- 41:41:Potential evaporation rate:W/m^2:PEVPR
- 42:42:Snow cover:%:SNOWC
- 43:43:Rain fraction of total cloud water:Proportion:FRAIN
- 44:44:Rime factor:Numeric:RIME
- 45:45:Total column integrated rain:mm:TCOLR
- 46:46:Total column integrated snow:mm:TCOLS
- 47:47:Large Scale Water Precipitation (Non-Convective):mm:LSWP
- 48:48:Convective Water Precipitation:mm:CWP
- 49:49:Total Water Precipitation:mm:TWATP
- 50:50:Total Snow Precipitation:mm:TSNOWP
- 51:51:Total Column Water(Vertically integrated total water (vapour+cloud water/ice):mm:TCWAT
- 52:52:Total Precipitation Rate:mm*s:TPRATE
- 53:53:Total Snowfall Rate Water Equivalent:mm*s:TSRWE
- 54:54:Large Scale Precipitation Rate:mm*s:LSPRATE
- 55:55:Convective Snowfall Rate Water Equivalent:mm*s:CSRWE
- 56:56:Large Scale Snowfall Rate Water Equivalent:mm*s:LSSRWE
- 57:57:Total Snowfall Rate:m/s:TSRATE
- 58:58:Convective Snowfall Rate:m/s:CSRATE
- 59:59:Large Scale Snowfall Rate:m/s:LSSRATE
- 60:60:Snow Depth Water Equivalent:mm:SDWE
- 61:61:Snow Density:kg/m^3:SDEN
- 62:62:Snow Evaporation:mm:SEVAP
- 63:63:Reserved
- 64:64:Total Column Integrated Water Vapour:mm:TCIWV
- 65:65:Rain Precipitation Rate:mm*s:RPRATE
- 66:66:Snow Precipitation Rate:mm*s:SPRATE
- 67:67:Freezing Rain Precipitation Rate:mm*s:FPRATE
- 68:68:Ice Pellets Precipitation Rate:mm*s:IPRATE
-#69-191 Reserved
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.13.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.13.table
deleted file mode 100644
index f6a3bb14d1..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.13.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 13: Aerosols
-0:0:Aerosol type:(Code table 4.205):AETYP
-# 1-191 Reserved
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.14.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.14.table
deleted file mode 100644
index e856b907f0..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.14.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 14: Trace Gases
-0:0:Total ozone:Dobson:TOZNE
-1:1:Ozone mixing ratio:kg/kg:O3MR
-2:2:Total Column Integrated Ozone:Dobson:TCIOZ
-# 2-191 Reserved
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.15.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.15.table
deleted file mode 100644
index 299980651c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.15.table
+++ /dev/null
@@ -1,13 +0,0 @@
-# Product Discipline 0 - Meteorological products, Parameter Category 15: Radar
-0:0:Base spectrum width:m/s:BASSW
-1:1:Base reflectivity:dB:BASR
-2:2:Base radial velocity:m/s:BASRV
-3:3:Vertically-integrated liquid:kg/m:VILIQ
-4:4:Layer-maximum base reflectivity:dB:LMBSR
-5:5:Precipitation:mm:PRCP
-6:6:Radar spectra (1)::RDSP1
-7:7:Radar spectra (2)::RDSP2
-8:8:Radar spectra (3)::RDSP3
-# 9-191 Reserved
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.16.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.16.table
deleted file mode 100644
index 396ac99194..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.16.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# Product Discipline 0 - Meteorological products, Parameter Category 16: Forecast Radar Imagery
-# 0-191 Reserved
-255:255:Missing
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.17.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.17.table
deleted file mode 100644
index 1451e1e093..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.17.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# Product Discipline 0 - Meterological products, Paramater Category 17: Electrodynamics
-# 0-191 Reserved
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.18.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.18.table
deleted file mode 100644
index b87656e745..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.18.table
+++ /dev/null
@@ -1,14 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 18: Nuclear/radiology
-0:0:Air concentration of Caesium 137:Bq/m^3:AC137
-1:1:Air concentration of Iodine 131:Bq/m^3:AI131
-2:2:Air concentration of radioactive pollutant:Bq/m^3:ARADP
-3:3:Ground deposition of Caesium 137:Bq/m^2:GC137
-4:4:Ground deposition of Iodine 131:Bq/m^2:GI131
-5:5:Ground deposition of radioactive:Bq/m^2:GRADP
-6:6:Time-integrated air concentration of caesium pollutant:Bq*s/m^3:TACONCP
-7:7:Time-integrated air concentration of iodine pollutant:Bq*s/m^3:TACONIP
-8:8:Time-integrated air concentration of radioactive pollutant:Bq*s/m^3:TACONRDP
-# 9-191 Reserved
-#192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.19.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.19.table
deleted file mode 100644
index 62476c4f56..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.19.table
+++ /dev/null
@@ -1,25 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 19: Physical atmospheric properties
-0:0:Visibility:m:VIS:Vis
-1:1:Albedo:%:ALBDO
-2:2:Thunderstorm probability:%:TSTM:ThP
-3:3:mixed layer depth:m:MIXHT
-4:4:Volcanic ash:(Code table 4.206):VASH
-5:5:Icing top:m:ICETP
-6:6:Icing base:m:ICEBS
-7:7:Icing:(Code Table 4.207):ICING
-8:8:Turbulence top:m:TRBTP
-9:9:Turbulence base:m:TRBBS
-10:10:Turbulence:(Code table 4.208):TURB
-11:11:Turbulent kinetic energy:J/kg:TKE
-12:12:Planetary boundary layer regime:(Code table 4.209):PBLR
-13:13:Contrail intensity:(Code table 4.210):CONTI
-14:14:Contrail engine type:(Code table 4.211):CONTE
-15:15:Contrail top:m:CONTT
-16:16:Contrail base:m:CONTB
-17:17:Maximum snow albedo:%:MXSALB
-18:18:Snow free albedo:%:SNFALB
-19:19:Snow Albedo:%:SALBD
-# 19-191 Reserved
-#192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.190.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.190.table
deleted file mode 100644
index 5386e3e2e9..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.190.table
+++ /dev/null
@@ -1,6 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 190: CCITT IA5 string
-0:0:Arbitrary text string:CCITTIA5:ARBTXT
-# 1-191 Reserved
-# 192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.191.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.191.table
deleted file mode 100644
index 80e2427d0c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.191.table
+++ /dev/null
@@ -1,6 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 191: Miscellaneous
-0:0:Seconds prior to initial reference time (defined in Section 1):TSEC:s
-# 1-191 Reserved
-# 192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.2.table
deleted file mode 100644
index 0881496952..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.2.table
+++ /dev/null
@@ -1,39 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 2: Momentum
-0:0:Wind direction (from which blowing):deg true:WDIR:WD
-1:1:Wind speed:m/s:WIND:WS
-2:2:u-component of wind:m/s:UGRD:uW
-3:3:v-component of wind:m/s:VGRD:vW
-4:4:Stream function:m^2/s:STRM
-5:5:Velocity potential:m^2/s:VPOT:VPT
-6:6:Montgomery stream function:m^2/s^2:MNTSF:MSG
-7:7:Sigma coordinate vertical velocity:s^-1:SGCVV:SVV
-8:8:Vertical velocity pressure:Pa/s:VVEL:PVV
-9:9:Vertical velocity geometric:m/s:DZDT:GVV
-10:10:Absolute vorticity:s^-1:ABSV:AV
-11:11:Absolute divergence:s^-1:ABSD
-12:12:Relative vorticity:s^-1:RELV:RV
-13:13:Relative divergence:s^-1:RELD
-14:14:Potential vorticity:K * m^2 * kg^-1* s^-1:PVORT
-15:15:Vertical u-component shear:s^-1:VUCSH
-16:16:Vertical v-component shear:s^-1:VVCSH
-17:17:Momentum flux, u component:N/m^2:UFLX
-18:18:Momentum flux, v component:N/m^2:VFLX
-19:19:Wind mixing energy:J:WMIXE
-20:20:Boundary layer dissipation:W/m^2:BLYSP
-21:21:Maximum wind speed:m/s:MAXWS
-22:22:Wind speed gust:m/s:WGS
-23:23:u-component of wind gust:m/s:UGUST
-24:24:v-component of wind gust:m/s:UGUST
-25:25:Vertical speed shear:s^-1:VWSH
-26:26:Horizontal momentum flux:N/m^2:MFLX
-27:27:U-component storm motion:m/s:USTM
-28:28:V-component storm motion:m/s:VSTM
-29:29:Drag coefficient:Numeric:CD
-30:30:Frictional velocity:m/s:FRICV
-# 31-191 Reserved
-# 192-254 Reserved for local use
-# AWIPS override of the PWS parameters
-198:198:Incremental Prob WS 34 kts or greater:%:PWS34
-199:199:Incremental Prob WS 50 kts or greater:%:PWS50
-200:200:Incremental Prob WS 50 kts or greater:%:PWS64
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.3.table
deleted file mode 100644
index d473b82222..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.3.table
+++ /dev/null
@@ -1,29 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 3: Mass
- 0:0:Pressure:Pa:PRES :P
- 1:1:Pressure reduced to MSL:Pa:PRMSL:PMSL
- 2:2:Pressure tendency:Pa/s:PTEND:PT
- 3:3:ICAO Standard Atmosphere Reference Height:m:ICAHT
- 4:4:Geopotential:m^2/s^2:GP:GP
- 5:5:Geopotential height:gpm:HGT:GH
- 6:6:Geometric height:m:DIST:GeH
- 7:7:Standard deviation of height:m:HSTDV
- 8:8:Pressure anomaly:Pa:PRESA:Pa
- 9:9:Geopotential height anomaly:gpm:GPA:GHa
- 10:10:Density:kg/m^3:DEN
- 11:11:Altimeter setting:Pa:ASET
- 12:12:Thickness:m:THICK
- 13:13:Pressure altitude:m:PALT
- 14:14:Density altitude:m:DALT
- 15:15:5-wave geopotential height:gpm:5WAVH
- 16:16:Zonal flux of gravity wave stress:N/m^2:UGWD
- 17:17:Meridional flux of gravity wave stress:N/m^2:VGWD
- 18:18:Planetary boundary layer height:m:HPBL
- 19:19:5-wave geopotential height anomaly:gpm:5WAVA
- 20:20:Standard Deviation Of Sub-Grid Scale Orography:m:SDSGSO
-21:21:Angle Of Sub-Grid Scale Orography:Rad:AOSGSO
-22:22:Slope Of Sub-Grid Scale Orography:Numeric:SSGSO
-23:23:Gravity Of Sub-Grid Scale Orography:W/m^2:GSGSO
-24:24:Anisotropy Of Sub-Grid Scale Orography:Numeric:ASGSO
-# 20-191 Reserved
-# 192-254 Reserved for local use
- 255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.4.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.4.table
deleted file mode 100644
index 927691e22a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.4.table
+++ /dev/null
@@ -1,21 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 4: Short-wave Radiation
-0:0:Net short-wave radiation flux (surface):W/m^2:NSWRS
-1:1:Net short-wave radiation flux (top of atmosphere):W/m^2:NSWRT
-2:2:Short wave radiation flux:W/m^2:SWAVR
-3:3:Global radiation flux:W/m^2:GRAD
-4:4:Brightness temperature:K:BRTMP
-5:5:Radiance (with respect to wave number):W * m^-1 *sr^-1:LWRAD
-6:6:Radiance (with respect to wave length):W * m^-3 *sr^-1:SWRAD
-7:7:Downward short-wave radiation flux:W/m^2:DSWRF
-8:8:Upward short-wave radiation flux:W/m^2:USWRF
-9:9:Net Short Wave Radiation Flux:W/m^2:NSWRF
-10:10:Photosynthetically Active Radiation:W/m^2:PHOTAR
-11:11:Net Short-Wave Radiation Flux, Clear Sky:W/m^2:NSWRFCS
-12:12:Downward UV Radiation:W/m^2:DWUVR
-#13-49:Reserved
-50:50:UV Index (Under Clear Sky):Numeric:UVIUCS
-51:51:UV Index:J/m^2:UVI
-# 52:191:Reserved
-#192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.5.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.5.table
deleted file mode 100644
index c71b2038f8..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.5.table
+++ /dev/null
@@ -1,12 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 5: Long-wave Radiation
-0:0:Net long wave radiation flux (surface):W/m^2:NLWRS:NLRS
-1:1:Net long wave radiation flux (top of atmosphere):W/m^2:NLWRT
-2:2:Long wave radiation flux:W/m^2:LWAVR
-3:3:Downward long-wave radiation flux:W/m^2:DLWRF
-4:4:Upward long-wave radiation flux:W/m^2:ULWRF
-5:5:Net Long-Wave Radiation Flux:W/m^2:NLWRF
-6:6:Net Long-Wave Radiation Flux, Clear Sky:W/m^2:NLWRCS
-# 7-191 Reserved
-#192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.6.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.6.table
deleted file mode 100644
index 3256d85d60..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.6.table
+++ /dev/null
@@ -1,32 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 6: Cloud
-0:0:Cloud ice:mm:CICE:CIce
-1:1:Total cloud cover:%:TCDC:TCC
-2:2:Convective cloud cover:%:CDCON
-3:3:Low cloud cover:%:LCDC
-4:4:Medium cloud cover:%:MCDC
-5:5:High cloud cover:%:HCDC
-6:6:Cloud water:mm:CWAT
-7:7:Cloud amount:%:CAMT
-8:8:Cloud type:(Code table 4.203):CTYP:CTyp
-9:9:Thunderstorm maximum tops:m:TSMT
-10:10:Thunderstorm coverage:(Code table 4.204):TSC
-11:11:Cloud base:m:CBASE:CB
-12:12:Cloud top:m:CTOP:CTop
-13:13:Ceiling:m:CCEIL:CC
-14:14:Non-convective cloud cover:%:CDLYR
-15:15:Cloud work function:J/kg:CWORK
-16:16:Convective cloud efficiency:Proportion:CUEFI
-17:17:Total condensate:kg/kg:TCOND
-18:18:Total column-integrated cloud water:mm:TCOLW
-19:19:Total column-integrated cloud ice:mm:TCOLI
-20:20:Total column-integrated condensate:mm:TCOLC
-21:21:Ice fraction of total condensate:Proportion:FICE
-22:22:Sunshine duration (ECMWF proposal, not WMO approved):s:SUN
-23:23:Cloud Ice Mixing Ratio:kg/kg:CDCIMR
-24:24:SunShine:Numeric:SUNS
-# 25-191 Reserved
-# 192-254 Reserved for local use
-200:200:Convective Cloud Mass Flux
-201:201:SunShineDuration
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.7.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.7.table
deleted file mode 100644
index c4f2cb3a86..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.0.7.table
+++ /dev/null
@@ -1,18 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 7: Thermodynamic Stability Indices
-0:0:Parcel lifted index (to 500 mb):K:PLI:PLI
-1:1:Best lifted index (to 500 mb):K:BLI:BLI
-2:2:K index:K:KX:KI
-3:3:KO index:K:KOX
-4:4:Total totals index:K:TTX
-5:5:Sweat index:Numeric:SX:SX
-6:6:Convective available potential energy:J/kg:CAPE
-7:7:Convective inhibition:J/kg:CIN:CIn
-8:8:Storm relative helicity:J/kg:HLCY:Heli
-9:9:Energy helicity index:Numeric:EHELX
-10:10:Surface lifted index:K:SLI
-11:11:Best (4-layer) lifted index:K:4LFTX
-12:12:Richardson number:Numeric:RI
-#13-191 Reserved
-#192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.1.0.table
deleted file mode 100644
index 1b39646177..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.1.0.table
+++ /dev/null
@@ -1,16 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products
-0:0:Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time):mm:FFG
-1:1:Flash flood runoff (Encoded as an accumulation over a floating subinterval of time):mm:FFRUN
-2:2:Remotely sensed snow cover:(Code table 4.215):RSSC
-3:3:Elevation of snow covered terrain:(Code table 4.216):ELSCT
-4:4:Snow water equivalent percent of normal:%:SWEPN
-5:5:Baseflow-groundwater runoff:mm:BGRUN
-6:6:Storm surface runoff:mm:SSRUN
-# 7-191 Reserved
-# 192-254 Reserved for local use
-255:255:Missing
-# Notes:
-# (1) Remotely sensed snow cover is expressed as a field of dimensionless, thematic values. The currently accepted values are for no-snow/no-cloud, 50, for clouds, 100, and for snow, 250. See code table 4.215.
-# (2) A data field representing snow coverage by elevation portrays at which elevations there is a snow pack. The elevation values typically range from 0 to 90 in 100 m increments. A value of 253 is used to represent a no-snow/no-cloud data point. A value of 254 is used to represent a data point at which snow elevation could not be estimated because of clouds obscuring the remote sensor (when using aircraft or satellite measurements).
-# (3) Snow water equivalent percent of normal is stored in percent of normal units. For example, a value of 110 indicates 110 percent of the normal snow water equivalent for a given depth of snow.
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.1.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.1.1.table
deleted file mode 100644
index bae0f25544..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.1.1.table
+++ /dev/null
@@ -1,8 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 1: Hydrology probabilities
-0:0:Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation):mm:CPPAF
-1:1:Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period):%:PPSUB
-2:2:Probability of 0.01 inch of precipitation (POP):%:POP
-#3-191 Reserved
-#192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.10.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.10.0.table
deleted file mode 100644
index 6d964a56ae..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.10.0.table
+++ /dev/null
@@ -1,20 +0,0 @@
-# Product Discipline 10: Oceanographic products, Parameter Category 0: Waves
-0:0:Wave spectra (1)::WVSP1:WSp1
-1:1:Wave spectra (2)::WVSP2:WSp2
-2:2:Wave spectra (3)::WVSP3:WSp3
-3:3:Significant height of combined wind waves and swell:m:WWSWHGT
-4:4:Direction of wind waves:Degree true:WWDIR
-5:5:Significant height of wind waves (m):m:WWHGT
-6:6:Mean period of wind waves:s:MNPERWW
-7:7:Direction of swell waves:Degree true:SWDIR
-8:8:Significant height of swell waves:m:SWHGT
-9:9:Mean period of swell waves:s:MNPERSW
-10:10:Primary wave direction:Degree true:PRWVDIR
-11:11:Primary wave mean period:s:PWMNPER
-12:12:Secondary wave direction:Degree true:SWDIR
-13:13:Secondary wave mean periods:s:SWMNPER
-# 14-191 Reserved
-# 192-254 Reserved for local use
-255:255:Missing
-
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.10.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.10.1.table
deleted file mode 100644
index 3610fbf2b6..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.10.1.table
+++ /dev/null
@@ -1,8 +0,0 @@
-# Product Discipline 10: Oceanographic products, Parameter Category 1: Currents
-0:0:Current direction:Degree true:DIRC
-1:1:Current speed:m/s:SPC
-2:2:u-component of current:m/s:UOGRD
-3:3:v-component of current:m/s:VOGRD
-# 4-191 Reserved
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.10.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.10.2.table
deleted file mode 100644
index 523f124bdb..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.10.2.table
+++ /dev/null
@@ -1,13 +0,0 @@
-# Product Discipline 10: Oceanographic products, Parameter Category 2: Ice
-0:0:Ice cover:Proportion:ICEC
-1:1:Ice thickness:m:ICETK
-2:2:Direction of ice drift:Degree true:DICED
-3:3:Speed of ice drift:m/s:SICED
-4:4:u-component of ice drift:m/s:UICE
-5:5:v-component of ice drift:m/s:VICE
-6:6:Ice growth rate:m/s:ICEG
-7:7:Ice divergence:s^-1:ICED
-9:9:Ice Temperature:K:ICE T
-# 8-191 Reserved
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.10.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.10.3.table
deleted file mode 100644
index ea6cefe333..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.10.3.table
+++ /dev/null
@@ -1,6 +0,0 @@
-# Product Discipline 10: Oceanographic products, Parameter Category 3: Surface Properties
-0:0:Water temperature:K:TEMPWTR
-1:1:Deviation of sea level from mean:m:DEVMSL
-# 2-191 Reserved
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.10.4.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.10.4.table
deleted file mode 100644
index 9a8b6fd4e2..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.10.4.table
+++ /dev/null
@@ -1,9 +0,0 @@
-# Product Discipline 10: Oceanographic products, Parameter Category 4: Sub-surface Properties
-0:0:Main thermocline depth:m:MTHD
-1:1:Main thermocline anomaly:m:MTHA
-2:2:Transient thermocline depth:m:TTHDP
-3:3:Salinity:kg/kg:SALTY
-# 4-191 Reserved
-#192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.2.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.2.0.table
deleted file mode 100644
index cac531d2b2..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.2.0.table
+++ /dev/null
@@ -1,33 +0,0 @@
-# Product Discipline 2: Land surface products, Parameter Category 0: Vegetation/Biomass
-0:0:Land cover (0=sea, 1=land):Proportion:LAND
-1:1:Surface roughness:m:SFCR
-2:2:Soil temperature:K:TSOIL:TSOIL
-3:3:Soil moisture content:mm:SOILM:SOILM
-4:4:Vegetation:%:VEG
-5:5:Water runoff:mm:WATR
-6:6:Evapotranspiration:kg^-2*s^-1:EVAPT
-7:7:Model terrain height:m:MTHT
-8:8:Land use:(Code table 4.212):LANDU
-9:9:Volumetric soil moisture content:Proportion:SOILW
-10:10:Ground heat flux:W/m^2:GFLUX
-11:11:Moisture availability:%:MSTAV
-12:12:Exchange coefficient:mm * s:SFEXC
-13:13:Plant canopy surface water:mm:CNWAT
-14:14:Blackadars mixing length scale:m:BMIXL
-15:15:Canopy conductance:m/s:CCOND
-16:16:Minimal stomatal resistance:s/m:RSMIN
-17:17:Wilting point:Proportion:WILT
-18:18:Solar parameter in canopy conductance:Proportion:RCS
-19:19:Temperature parameter in canopy conductance:Proportion:RCT
-20:20:Soil moisture parameter in canopy conductance:Proportion:RCSOL
-21:21:Humidity parameter in canopy conductance:Proportion:RCQ
-22:22:Soil Moisture:kg/m^3:SOILM
-23:23:Column-Integrated Soil Water:mm:CISOILW
-24:24:Heat Flux:W/m^2:HFLUX
-25:25:Volumetric Soil Moisture:m^3/m^3:VSOILM
-26:26:Wilting Point:kg/m^3:WILT
-27:27:Volumetric Wilting Moisture:m^3/m^3:VWILTM
-# 22-191 Reserved
-#192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.2.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.2.3.table
deleted file mode 100644
index 065e649653..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.2.3.table
+++ /dev/null
@@ -1,23 +0,0 @@
-# Product Discipline 2: Land surface products, Parameter Category 3: Soil Products
-0:0:Soil type:index (see GRIB 2 code table 4.213):SOTYP
-1:1:Upper layer soil temperature:K:ULST
-2:2:Upper layer soil moisture:kg/m^3:ULSM
-3:3:Lower layer soil moisture:kg/m^3:LLSM
-4:4:Bottom layer soil temperature:K:BLST
-5:5:Liquid volumetric soil moisture (non-frozen):Proportion:SOILL
-6:6:Number of soil layers in root zone:Numeric:RLYRS
-7:7:Transpiration stress-onset (soil moisture):Proportion:SMREF
-8:8:Direct evaporation cease (soil moisture):Proportion:SMDRY
-9:9:Soil porosity:Proportion:POROS
-10:10:Liquid Volumetric Soil Moisture (Non-Frozen):m^3/m^3:LIQVSM
-11:11:Volumetric Transpiration Stree-Onset(Soil Moisture):m^3/m^3:VOLTSO
-12:12:Transpiration Stree-Onset(Soil Moisture):kg/m^3:TRANSO
-13:13:Volumetric Direct Evaporation Cease(Soil Moisture):m^3/m^3:VOLDEC
-14:14:Direct Evaporation Cease(Soil Moisture):kg/m^3:DIREC
-15:15:Soil Porosity:m^3/m^3:SOILP
-16:16:Volumetric Saturation Of Soil Moisture:m^3/m^3:VSOSM
-17:17:Saturation Of Soil Moisture:kg/m^3:SATOSM
-# 18-191 Reserved
-#192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.3.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.3.0.table
deleted file mode 100644
index 55868657c4..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.3.0.table
+++ /dev/null
@@ -1,15 +0,0 @@
-# Product discipline 3: Space products, Parameter Category 0: Image format products
-0:0:Scaled radiance:Numeric:SCRAD
-1:1:Scaled albedo:Numeric:SCALB
-2:2:Scaled brightness temperature:Numeric:SCBT
-3:3:Scaled precipitable water:Numeric:SCPW
-4:4:Scaled lifted index:Numeric:SCLI
-5:5:Scaled cloud top pressure:Numeric:SCCTP
-6:6:Scaled skin temperature:Numeric:SCST
-7:7:Cloud mask:(Code table 4.217):CLOUDM
-8:8:Pixel scene type:(Code table 4.218):PIXST
-9:9:Fire Detection Indicator:(Code Table 4.223):FIREDI
-# 10-191 Reserved
-#192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.3.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.3.1.table
deleted file mode 100644
index 7c43153c63..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.3.1.table
+++ /dev/null
@@ -1,19 +0,0 @@
-# Product Discipline 3: Space products, Parameter Category 1: Quantitative products
-0:0:Estimated precipitation:mm:ESTPC
-1:1:Instantaneous rain rate:mm * s:INSTRR
-2:2:Cloud top:m:heightCTHGT
-3:3:Cloud top height quality indicator:(Code table 4.219):CTOPHQI
-4:4:Estimated u component of wind:m/s:ESTUWIND
-5:5:Estimated v component of wind:m/s:ESTVWIND
-6:6:Number Of Pixels Used:Numeric:NPIXU
-7:7:Solar Zenith Angle:Degree:SOLZA
-8:8:Relative Azimuth Angle:Degree:RAZA
-9:9:Reflectance in 0.6 Micron Channel:%:RFL06
-10:10:Reflectance in 0.8 Micron Channel:%:RFL08
-11:11:Reflectance in 1.6 Micron Channel:%:RFL16
-12:12:Reflectance in 3.9 Micron Channel:%:RFL39
-13:13:Atmospheric Divergence:s^-1:ATMDIV
-# 6-191 Reserved
-#192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.table
deleted file mode 100644
index ff95536454..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.2.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# CODE TABLE 4.2, Parameter number by product discipline and parameter category
-# 4 4 unknown
-# 151 151 unknown
-# 192 192 unknown
-# 255 255 Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.201.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.201.table
deleted file mode 100644
index f1f2bf521a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.201.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# CODE TABLE 4.201, Precipitation Type
-1:1:Rain
-2:2:Thunderstorm
-3:3:Freezing rain
-4:4:Mixed/ice
-5:5:Snow
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.202.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.202.table
deleted file mode 100644
index 72b3e924a3..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.202.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.202, Precipitable water category
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.203.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.203.table
deleted file mode 100644
index f1050ef014..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.203.table
+++ /dev/null
@@ -1,25 +0,0 @@
-# CODE TABLE 4.203, Cloud type
-0:0:Clear
-1:1:Cumulonimbus
-2:2:Stratus
-3:3:Stratocumulus
-4:4:Cumulus
-5:5:Altostratus
-6:6:Nimbostratus
-7:7:Altocumulus
-8:8:Cirrostratus
-9:9:Cirrocumulus
-10:10:Cirrus
-11:11:Cumulonimbus - ground based fog beneath the lowest layer
-12:12:Stratus - ground based fog beneath the lowest layer
-13:13:Stratocumulus - ground based fog beneath the lowest layer
-14:14:Cumulus - ground based fog beneath the lowest layer
-15:15:Altostratus - ground based fog beneath the lowest layer
-16:16:Nimbostratus - ground based fog beneath the lowest layer
-17:17:Altocumulus - ground based fog beneath the lowest layer
-18:18:Cirrostratus - ground based fog beneath the lowest layer
-19:19:Cirrocumulus - ground based fog beneath the lowest layer
-20:20:Cirrus - ground based fog beneath the lowest layer
-191:191:Unknown
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.204.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.204.table
deleted file mode 100644
index fc4664d30e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.204.table
+++ /dev/null
@@ -1,8 +0,0 @@
-# CODE TABLE 4.204, Thunderstorm coverage
-0:0:None
-1:1:Isolated (1% - 2%)
-2:2:Few (3% - 15%)
-3:3:Scattered (16% - 45%)
-4:4:Numerous (> 45%)
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.205.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.205.table
deleted file mode 100644
index 60a5a0433b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.205.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# CODE TABLE 4.205, Aerosol type
-0:0:Aerosol not present
-1:1:Aerosol present
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.206.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.206.table
deleted file mode 100644
index c2c8e34541..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.206.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# CODE TABLE 4.206, Volcanic ash
-0:0:Not present
-1:1:Present
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.207.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.207.table
deleted file mode 100644
index 354069e045..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.207.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# CODE TABLE 4.207, Icing
-0:0:None
-1:1:Light
-2:2:Moderate
-3:3:Severe
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.208.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.208.table
deleted file mode 100644
index 14b3eacb8e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.208.table
+++ /dev/null
@@ -1,8 +0,0 @@
-# CODE TABLE 4.208, Turbulence
-0:0:None (smooth)
-1:1:Light
-2:2:Moderate
-3:3:Severe
-4:4:Extreme
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.209.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.209.table
deleted file mode 100644
index 6582733177..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.209.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# CODE TABLE 4.209, Planetary boundary layer regime
-1:1:Stable
-2:2:Mechanically driven turbulence
-3:3:Forced convection
-4:4:Free convection
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.210.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.210.table
deleted file mode 100644
index 73eec2d2a6..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.210.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# CODE TABLE 4.210, Contrail intensity
-0:0:Contrail not present
-1:1:Contrail present
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.211.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.211.table
deleted file mode 100644
index 0e51d71f4f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.211.table
+++ /dev/null
@@ -1,6 +0,0 @@
-# CODE TABLE 4.211, Contrail engine type
-0:0:Low bypass
-1:1:High bypass
-2:2:Non bypass
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.212.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.212.table
deleted file mode 100644
index 4020262ad1..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.212.table
+++ /dev/null
@@ -1,16 +0,0 @@
-# CODE TABLE 4.212, Land Use
-1:1:Urban land
-2:2:Agriculture
-3:3:Range land
-4:4:Deciduous forest
-5:5:Coniferous forest
-6:6:Forest/wetland
-7:7:Water
-8:8:Wetlands
-9:9:Desert
-10:10:Tundra
-11:11:Ice
-12:12:Tropical forest
-13:13:Savannah
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.213.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.213.table
deleted file mode 100644
index 12f714822c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.213.table
+++ /dev/null
@@ -1,14 +0,0 @@
-# CODE:TABLE:4.213, Soil type
-1:1:Sand
-2:2:Loamy sand
-3:3:Sandy loam
-4:4:Silt loam:
-5:5:Organic (redefined)
-6:6:Sandy clay loam
-7:7:Silt clay loam
-8:8:Clay loam
-9:9:Sandy clay
-10:10:Silty clay
-11:11:Clay
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.215.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.215.table
deleted file mode 100644
index c9e1ab6224..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.215.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# CODE TABLE 4.215, Remotely Sensed Snow Coverage
-#0-49 Reserved
-50:50:No-snow/no-cloud
-100:100:Clouds
-250:250:Snow
-#251-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.216.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.216.table
deleted file mode 100644
index f4d6c9dfaf..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.216.table
+++ /dev/null
@@ -1,94 +0,0 @@
-# CODE TABLE 4.216, Elevation of Snow Covered Terrain
-0:0:Elevation in increments of 100 m
-1:1:Elevation in increments of 100 m
-2:2:Elevation in increments of 100 m
-3:3:Elevation in increments of 100 m
-4:4:Elevation in increments of 100 m
-5:5:Elevation in increments of 100 m
-6:6:Elevation in increments of 100 m
-7:7:Elevation in increments of 100 m
-8:8:Elevation in increments of 100 m
-9:9:Elevation in increments of 100 m
-10:10:Elevation in increments of 100 m
-11:11:Elevation in increments of 100 m
-12:12:Elevation in increments of 100 m
-13:13:Elevation in increments of 100 m
-14:14:Elevation in increments of 100 m
-15:15:Elevation in increments of 100 m
-16:16:Elevation in increments of 100 m
-17:17:Elevation in increments of 100 m
-18:18:Elevation in increments of 100 m
-19:19:Elevation in increments of 100 m
-20:20:Elevation in increments of 100 m
-21:21:Elevation in increments of 100 m
-22:22:Elevation in increments of 100 m
-23:23:Elevation in increments of 100 m
-24:24:Elevation in increments of 100 m
-25:25:Elevation in increments of 100 m
-26:26:Elevation in increments of 100 m
-27:27:Elevation in increments of 100 m
-28:28:Elevation in increments of 100 m
-29:29:Elevation in increments of 100 m
-30:30:Elevation in increments of 100 m
-31:31:Elevation in increments of 100 m
-32:32:Elevation in increments of 100 m
-33:33:Elevation in increments of 100 m
-34:34:Elevation in increments of 100 m
-35:35:Elevation in increments of 100 m
-36:36:Elevation in increments of 100 m
-37:37:Elevation in increments of 100 m
-38:38:Elevation in increments of 100 m
-39:39:Elevation in increments of 100 m
-40:40:Elevation in increments of 100 m
-41:41:Elevation in increments of 100 m
-42:42:Elevation in increments of 100 m
-43:43:Elevation in increments of 100 m
-44:44:Elevation in increments of 100 m
-45:45:Elevation in increments of 100 m
-46:46:Elevation in increments of 100 m
-47:47:Elevation in increments of 100 m
-48:48:Elevation in increments of 100 m
-49:49:Elevation in increments of 100 m
-50:50:Elevation in increments of 100 m
-51:51:Elevation in increments of 100 m
-52:52:Elevation in increments of 100 m
-53:53:Elevation in increments of 100 m
-54:54:Elevation in increments of 100 m
-55:55:Elevation in increments of 100 m
-56:56:Elevation in increments of 100 m
-57:57:Elevation in increments of 100 m
-58:58:Elevation in increments of 100 m
-59:59:Elevation in increments of 100 m
-60:60:Elevation in increments of 100 m
-61:61:Elevation in increments of 100 m
-62:62:Elevation in increments of 100 m
-63:63:Elevation in increments of 100 m
-64:64:Elevation in increments of 100 m
-65:65:Elevation in increments of 100 m
-66:66:Elevation in increments of 100 m
-67:67:Elevation in increments of 100 m
-68:68:Elevation in increments of 100 m
-69:69:Elevation in increments of 100 m
-70:70:Elevation in increments of 100 m
-71:71:Elevation in increments of 100 m
-72:72:Elevation in increments of 100 m
-73:73:Elevation in increments of 100 m
-74:74:Elevation in increments of 100 m
-75:75:Elevation in increments of 100 m
-76:76:Elevation in increments of 100 m
-77:77:Elevation in increments of 100 m
-78:78:Elevation in increments of 100 m
-79:79:Elevation in increments of 100 m
-80:80:Elevation in increments of 100 m
-81:81:Elevation in increments of 100 m
-82:82:Elevation in increments of 100 m
-83:83:Elevation in increments of 100 m
-84:84:Elevation in increments of 100 m
-85:85:Elevation in increments of 100 m
-86:86:Elevation in increments of 100 m
-87:87:Elevation in increments of 100 m
-88:88:Elevation in increments of 100 m
-89:89:Elevation in increments of 100 m
-90:90:Elevation in increments of 100 m
-254:254:Clouds
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.217.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.217.table
deleted file mode 100644
index 2b02edb81a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.217.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# CODE TABLE 4.217, Cloud mask type
-0:0:Clear over water
-1:1:Clear over land
-2:2:Cloud
-3:3:No data
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.220.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.220.table
deleted file mode 100644
index 63b2ea69d3..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.220.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# CODE TABLE 4.220, Horizontal dimension processed
-0:0:Latitude
-1:1:Longitude
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.221.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.221.table
deleted file mode 100644
index 21115a7b31..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.221.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# CODE TABLE 4.221, Treatment of missing data
-0:0:Not included
-1:1:Extrapolated
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.222.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.222.table
deleted file mode 100644
index 8e0a07cd67..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.222.table
+++ /dev/null
@@ -1,6 +0,0 @@
-# CODE TABLE 4.222, Categorical Result (NCEP)
-0:0:No
-1:1:Yes
-#4-191 Reserved
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.3.table
deleted file mode 100644
index 63cd8820ba..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.3.table
+++ /dev/null
@@ -1,13 +0,0 @@
-# CODE TABLE 4.3, Type of generating process
-0:0:Analysis
-1:1:Initialization
-2:2:Forecast
-3:3:Bias corrected forecast
-4:4:Ensemble forecast
-5:5:Probability forecast
-6:6:Forecast error
-7:7:Analysis error
-8:8:Observation
-# 9-191 Reserved
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.4.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.4.table
deleted file mode 100644
index e01f4a1e64..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.4.table
+++ /dev/null
@@ -1,16 +0,0 @@
-# CODE TABLE 4.4, Indicator of unit of time range
-0:0:Minute
-1:1:Hour
-2:2:Day
-3:3:Month
-4:4:Year
-5:5:Decade (10 years)
-6:6:Normal (30 years)
-7:7:Century (100 years)
-10:10:3 hours
-11:11:6 hours
-12:12:12 hours
-13:13:Second
-# 14:191:Reserved
-# 192:254:Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.5.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.5.table
deleted file mode 100644
index 55f43c2b73..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.5.table
+++ /dev/null
@@ -1,36 +0,0 @@
-#Code:table:4.5: Fixed surface types and units
-0:0:Reserved
-1:sfc:Ground or Water Surface::SFC
-2:2:Cloud Base Level::CBL
-3:3:Level of Cloud Tops::CTL
-4:4:level of 0C Isotherm::0DEG:FRZ
-5:5:Level of Adiabatic Condensation Lifted from the Surface::ADCL
-6:6:Maximum Wind Level::MWSL:MAXW
-7:7:Tropopause::TRO:TROP
-8:sfc:Nominal Top of the Atmosphere::NTAT
-9:9:Sea Bottom::SEAB
-10:10:Entire Atmosphere::EA
-11:11:Cumulonimbus Base:m:CB
-12:12:Cumulonimbus Top:m:CT
-#13-19 Reserved
-20:20:Isothermal Level:K:TMPL
-#21-99 Reserved
-100:pl:Isobaric Surface:Pa:ISBL:MB
-101:sfc:Mean Sea Level:Pa:MSL
-102:102:Specific Altitude Above Mean Sea Level:m:AMSL:FH
-103:sfc:Specified Height Level Above Ground:m:HTGL:FHAG
-104:104:Sigma Level::SIGL:SIG
-105:105:Hybrid Level::HYBL:HYB
-106:sfc:Depth Below Land surface:m:DBLL:BLS
-107:pt:Isentropic (theta) level:K:THEL:K
-108:108:Level at Specified Pressure Difference from Ground to Level:Pa:SPDL:LYRBL
-109:pv:Potential Vorticity:K * m^2/kg^1*s^1:PVL
-110:110:Reserved
-111:111:Eta Level:Eta value:ETAL:ETA
-# 112-116 Reserved
-117:117:Mixed Layer Depth:m:MIXL
-# 118-159 Reserved
-160:160:Depth Below Sea Level:m:DBSL:BSS
-#161-191 Reserved
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.6.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.6.table
deleted file mode 100644
index da388be6dd..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.6.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# CODE TABLE 4.6, Type of ensemble forecast
-0:0:Unperturbed high-resolution control forecast
-1:1:Unperturbed low-resolution control forecast
-2:2:Negatively perturbed forecast
-3:3:Positively perturbed forecast
-# 192 254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.7.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.7.table
deleted file mode 100644
index 7fab9777cc..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.7.table
+++ /dev/null
@@ -1,10 +0,0 @@
-# CODE TABLE 4.7, Derived forecast
-0:0:Unweighted mean of all members
-1:1:Weighted mean of all members
-2:2:Standard deviation with respect to cluster mean
-3:3:Standard deviation with respect to cluster mean, normalized
-4:4:Spread of all members
-5:5:Large anomaly index of all members (see Note)
-6:6:Unweighted mean of the cluster members
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.8.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.8.table
deleted file mode 100644
index addff8ec3c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.8.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# CODE TABLE 4.8, Clustering Method
-0:0:Anomaly correlation
-1:1:Root mean square
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.9.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.9.table
deleted file mode 100644
index 38de16b65b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/4.9.table
+++ /dev/null
@@ -1,8 +0,0 @@
-# CODE TABLE 4.9, Probability Type
-0:0:Probability of event below lower limit
-1:1:Probability of event above upper limit
-2:2:Probability of event between lower and upper limits (range includes the lower limit but not the upper limit)
-3:3:Probability of event above lower limit
-4:4:Probability of event below upper limit
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.0.table
deleted file mode 100644
index 7be9fae3db..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.0.table
+++ /dev/null
@@ -1,18 +0,0 @@
-# CODE TABLE 5.0, Data Representation Template Number
-0:0:Grid point data - simple packing
-1:1:Matrix value - simple packing
-2:2:Grid point data - complex packing
-3:3:Grid point data - complex packing and spatial differencing
-4:4:Grid point data - raw packing
-# 5-39 Reserved
-40:40:JPEG2000 Packing
-41:41:PNG Packing
-# 42-49 Reserved
-50:50:Spectral data -simple packing
-51:51:Spherical harmonics data - complex packing
-# 52-191:Reserved
-# 192-254 Reserved for local use
-255:255:Missing
-# 256-65535 Reserved
-40000:40000:JPEG2000 Packing
-40010:40010:PNG Packing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.1.table
deleted file mode 100644
index 3a954d108a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.1.table
+++ /dev/null
@@ -1,6 +0,0 @@
-# CODE TABLE 5.1, Type of original field values
-0:0:Floating point
-1:1:Integer
-# 2-191 Reserved
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.2.table
deleted file mode 100644
index 918cf44b93..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.2.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# CODE TABLE 5.2, Matrix coordinate value function definition
-0:0:Explicit coordinate values set
-1:1:Linear coordinates (f(1) = C1 ; f(n) = f(n - 1) + C2)
-11:11:Geometric coordinates (f(1) = C1 ; f(n) = f(n - 1) * C2)
-# 2-191: Reserved
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.3.table
deleted file mode 100644
index 5db982b450..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.3.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# CODE TABLE 5.3, Matrix coordinate parameter
-1:1:Direction Degrees true:DIRDEGTRU:Degree true
-2:2:Frequency:s^-1:FREQ
-3:3:Radial number (2pi/lambda):m-1:RDLNUM
-# 4-191 Reserved
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.40.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.40.table
deleted file mode 100644
index a60452c8db..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.40.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# Code Table 5.40: Type of Compression
-0:0:Lossless
-1:1:Lossy
-#2-254 Reserved
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.40000.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.40000.table
deleted file mode 100644
index e2fe79331f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.40000.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# Code Table 5.40000: Type of Compression
-0:0:Lossless
-1:1:Lossy
-#2-254 Reserved
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.5.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.5.table
deleted file mode 100644
index 84b81160ae..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.5.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# CODE TABLE 5.5, Missing Value Management for Complex Packing
-0:0:No explicit missing values included within data values
-1:1:Primary missing values included within data values
-2:2:Primary and secondary missing values included within data values
-# 3-191 Reserved
-# 192 254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.6.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.6.table
deleted file mode 100644
index 706db0aa23..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.6.table
+++ /dev/null
@@ -1,6 +0,0 @@
-# CODE TABLE 5.6, Order of Spatial Differencing
-0:0:Reserved
-1:1:First-order spatial differencing
-2:2:Second-order spatial differencing
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.7.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.7.table
deleted file mode 100644
index 0f654e0711..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.7.table
+++ /dev/null
@@ -1,6 +0,0 @@
-# CODE TABLE 5.7, Precision of floating-point numbers
-0:0:Reserved
-1:1:IEEE 32-bit (I=4 in Section 7)
-2:2:IEEE 64-bit (I=8 in Section 7)
-3:3:IEEE 128-bit (I=16 in Section 7)
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.8.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.8.table
deleted file mode 100644
index b71fb2bb19..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/5.8.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# CODE TABLE 5.8, lossless compression method
-1:no:no compression method
-2:lzw:lzw compression
-3:lzwhd:lzw compression - horizontal differencing
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/6.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/6.0.table
deleted file mode 100644
index d1a15abeb2..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/6.0.table
+++ /dev/null
@@ -1,6 +0,0 @@
-# CODE TABLE 6.0, Bit Map Indicator
-0:0:A bit map applies to this product and is specified in this Section
-1:1:A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section
-#2-253 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section
-254:254:A bit map defined previously in the same "GRIB" message applies to this product
-255:255:A bit map does not apply to this product
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/A-center7.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/A-center7.table
deleted file mode 100644
index 2b57643c1e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/A-center7.table
+++ /dev/null
@@ -1,84 +0,0 @@
-0:0:MODEL0
-2:2:UVI
-3:3:TRANDIS
-5:5:SDPT
-6:6:ARLDM
-10:10:GWW
-11:11:GMGW
-12:12:PSS
-19:19:LFM
-25:25:SCA
-30:30:FCSTRGEN
-31:31:VALUPOST
-39:39:NGM
-42:42:GOIA
-43:43:GOIF
-44:44:SSTA
-45:45:COCM
-49:49:OZONETIR
-52:52:OZONENIM
-53:53:LFM4
-64:64:ROI
-68:68:T80L18A
-69:69:T80L18M
-70:70:QLM
-73:73:FFMOPC
-74:74:GMWW
-75:75:GAWW
-76:76:MRFBC
-77:77:AVN126
-78:78:MRF126
-79:79:BACKUP
-80:80:T62
-81:81:GFS
-82:82:GDAS
-84:84:ETA12
-86:86:RUC
-87:87:ENSMB
-88:88:NWW3
-89:89:NMM
-90:90:T62L28M
-91:91:T62L28A
-92:92:T62L28MF
-93:93:T62L28MG
-94:94:T170L42M
-95:95:T126L42M
-96:96:GFS
-100:100:RUCSFC60
-101:101:RUCSFC40
-105:105:RUC2
-107:107:GEFS
-108:108:LAMP
-109:109:RTMA
-110:110:ETA15
-112:112:WRFNMM
-113:113:SREF
-114:114:NAEFS
-115:115:DGEX
-116:116:WRFEM
-120:120:ICE
-121:121:WNAWAVE
-122:122:AKWAVE
-123:123:NAHURWAV
-124:124:ENPWAVE
-125:125:NPHURWAV
-126:126:SEAICE
-127:127:LAKEICE
-128:128:GBLOCEAN
-130:130:MERGE
-131:131:GRLKWAVE
-150:150:NWSRFS
-151:151:NWSFFGS
-152:152:WSR88DS2
-153:153:WSR88DS3
-180:180:HPCQPF
-181:181:QPF
-182:182:QPE
-183:183:NDFDDEL
-184:184:CCPA
-190:190:NATCONV
-191:191:CURICEPOT
-199:199:CFSR
-200:200:CPCMANU
-201:201:CPCAUTO
-210:210:EPAAIR
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/A-center9.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/A-center9.table
deleted file mode 100644
index b45f6db37e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/A-center9.table
+++ /dev/null
@@ -1,19 +0,0 @@
-0:0:MODEL0
-150:150:NWSRFS
-151:151:NWSFFGS
-152:152:WSR88D2
-154:154:QPE
-155:155:QPE
-156:156:QPE
-157:157:QPE
-158:158:QPE
-159:159:QPE
-160:160:QPE
-161:161:QPE
-170:170:QPE
-171:171:QPE
-172:172:QPE
-180:180:QPF
-185:185:NOHRSCO
-190:190:AESPE
-191:191:MANSPE
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/A-center98.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/A-center98.table
deleted file mode 100644
index 3e94159556..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/A-center98.table
+++ /dev/null
@@ -1,256 +0,0 @@
-0:0:ECMFMOD-1DEG
-1:1:ECMFMOD-1DEG
-2:2:ECMFMOD-1DEG
-3:3:ECMFMOD-1DEG
-4:4:ECMFMOD-1DEG
-5:5:ECMFMOD-1DEG
-6:6:ECMFMOD-1DEG
-7:7:ECMFMOD-1DEG
-8:8:ECMFMOD-1DEG
-9:9:ECMFMOD-1DEG
-10:10:ECMFMOD-1DEG
-11:11:ECMFMOD-1DEG
-12:12:ECMFMOD-1DEG
-13:13:ECMFMOD-1DEG
-14:14:ECMFMOD-1DEG
-15:15:ECMFMOD-1DEG
-16:16:ECMFMOD-1DEG
-17:17:ECMFMOD-1DEG
-18:18:ECMFMOD-1DEG
-19:19:ECMFMOD-1DEG
-20:20:ECMFMOD-1DEG
-21:21:ECMFMOD-1DEG
-22:22:ECMFMOD-1DEG
-23:23:ECMFMOD-1DEG
-24:24:ECMFMOD-1DEG
-25:25:ECMFMOD-1DEG
-26:26:ECMFMOD-1DEG
-27:27:ECMFMOD-1DEG
-28:28:ECMFMOD-1DEG
-29:29:ECMFMOD-1DEG
-30:30:ECMFMOD-1DEG
-31:31:ECMFMOD-1DEG
-32:32:ECMFMOD-1DEG
-33:33:ECMFMOD-1DEG
-34:34:ECMFMOD-1DEG
-35:35:ECMFMOD-1DEG
-36:36:ECMFMOD-1DEG
-37:37:ECMFMOD-1DEG
-38:38:ECMFMOD-1DEG
-39:39:ECMFMOD-1DEG
-40:40:ECMFMOD-1DEG
-41:41:ECMFMOD-1DEG
-42:42:ECMFMOD-1DEG
-43:43:ECMFMOD-1DEG
-44:44:ECMFMOD-1DEG
-45:45:ECMFMOD-1DEG
-46:46:ECMFMOD-1DEG
-47:47:ECMFMOD-1DEG
-48:48:ECMFMOD-1DEG
-49:49:ECMFMOD-1DEG
-50:50:ECMFMOD-1DEG
-51:51:ECMFMOD-1DEG
-52:52:ECMFMOD-1DEG
-53:53:ECMFMOD-1DEG
-54:54:ECMFMOD-1DEG
-55:55:ECMFMOD-1DEG
-56:56:ECMFMOD-1DEG
-57:57:ECMFMOD-1DEG
-58:58:ECMFMOD-1DEG
-59:59:ECMFMOD-1DEG
-60:60:ECMFMOD-1DEG
-61:61:ECMFMOD-1DEG
-62:62:ECMFMOD-1DEG
-63:63:ECMFMOD-1DEG
-64:64:ECMFMOD-1DEG
-65:65:ECMFMOD-1DEG
-66:66:ECMFMOD-1DEG
-67:67:ECMFMOD-1DEG
-68:68:ECMFMOD-1DEG
-69:69:ECMFMOD-1DEG
-70:70:ECMFMOD-1DEG
-71:71:ECMFMOD-1DEG
-72:72:ECMFMOD-1DEG
-73:73:ECMFMOD-1DEG
-74:74:ECMFMOD-1DEG
-75:75:ECMFMOD-1DEG
-76:76:ECMFMOD-1DEG
-77:77:ECMFMOD-1DEG
-78:78:ECMFMOD-1DEG
-79:79:ECMFMOD-1DEG
-80:80:ECMFMOD-1DEG
-81:81:ECMFMOD-1DEG
-82:82:ECMFMOD-1DEG
-83:83:ECMFMOD-1DEG
-84:84:ECMFMOD-1DEG
-85:85:ECMFMOD-1DEG
-86:86:ECMFMOD-1DEG
-87:87:ECMFMOD-1DEG
-88:88:ECMFMOD-1DEG
-89:89:ECMFMOD-1DEG
-90:90:ECMFMOD-1DEG
-91:91:ECMFMOD-1DEG
-92:92:ECMFMOD-1DEG
-93:93:ECMFMOD-1DEG
-94:94:ECMFMOD-1DEG
-95:95:ECMFMOD-1DEG
-96:96:ECMFMOD-1DEG
-97:97:ECMFMOD-1DEG
-98:98:ECMFMOD-1DEG
-99:99:ECMFMOD-1DEG
-100:100:ECMFMOD-1DEG
-101:101:ECMFMOD-1DEG
-102:102:ECMFMOD-1DEG
-103:103:ECMFMOD-1DEG
-104:104:ECMFMOD-1DEG
-105:105:ECMFMOD-1DEG
-106:106:ECMFMOD-1DEG
-107:107:ECMFMOD-1DEG
-108:108:ECMFMOD-1DEG
-109:109:ECMFMOD-1DEG
-110:110:ECMFMOD-1DEG
-111:111:ECMFMOD-1DEG
-112:112:ECMFMOD-1DEG
-113:113:ECMFMOD-1DEG
-114:114:ECMFMOD-1DEG
-115:115:ECMFMOD-1DEG
-116:116:ECMFMOD-1DEG
-117:117:ECMFMOD-1DEG
-118:118:ECMFMOD-1DEG
-119:119:ECMFMOD-1DEG
-120:120:ECMFMOD-1DEG
-121:121:ECMFMOD-1DEG
-122:122:ECMFMOD-1DEG
-123:123:ECMFMOD-1DEG
-124:124:ECMFMOD-1DEG
-125:125:ECMFMOD-1DEG
-126:126:ECMFMOD-1DEG
-127:127:ECMFMOD-1DEG
-128:128:ECMFMOD-1DEG
-129:129:ECMFMOD-1DEG
-130:130:ECMFMOD-1DEG
-131:131:ECMFMOD-1DEG
-132:132:ECMFMOD-1DEG
-133:133:ECMFMOD-1DEG
-134:134:ECMFMOD-1DEG
-135:135:ECMFMOD-1DEG
-136:136:ECMFMOD-1DEG
-137:137:ECMFMOD-1DEG
-138:138:ECMFMOD-1DEG
-139:139:ECMFMOD-1DEG
-140:140:ECMFMOD-1DEG
-141:141:ECMFMOD-1DEG
-142:142:ECMFMOD-1DEG
-143:143:ECMFMOD-1DEG
-144:144:ECMFMOD-1DEG
-145:145:ECMFMOD-1DEG
-146:146:ECMFMOD-1DEG
-147:147:ECMFMOD-1DEG
-148:148:ECMFMOD-1DEG
-149:149:ECMFMOD-1DEG
-150:150:ECMFMOD-1DEG
-151:151:ECMFMOD-1DEG
-152:152:ECMFMOD-1DEG
-153:153:ECMFMOD-1DEG
-154:154:ECMFMOD-1DEG
-155:155:ECMFMOD-1DEG
-156:156:ECMFMOD-1DEG
-157:157:ECMFMOD-1DEG
-158:158:ECMFMOD-1DEG
-159:159:ECMFMOD-1DEG
-160:160:ECMFMOD-1DEG
-161:161:ECMFMOD-1DEG
-162:162:ECMFMOD-1DEG
-163:163:ECMFMOD-1DEG
-164:164:ECMFMOD-1DEG
-165:165:ECMFMOD-1DEG
-166:166:ECMFMOD-1DEG
-167:167:ECMFMOD-1DEG
-168:168:ECMFMOD-1DEG
-169:169:ECMFMOD-1DEG
-170:170:ECMFMOD-1DEG
-171:171:ECMFMOD-1DEG
-172:172:ECMFMOD-1DEG
-173:173:ECMFMOD-1DEG
-174:174:ECMFMOD-1DEG
-175:175:ECMFMOD-1DEG
-176:176:ECMFMOD-1DEG
-177:177:ECMFMOD-1DEG
-178:178:ECMFMOD-1DEG
-179:179:ECMFMOD-1DEG
-180:180:ECMFMOD-1DEG
-181:181:ECMFMOD-1DEG
-182:182:ECMFMOD-1DEG
-183:183:ECMFMOD-1DEG
-184:184:ECMFMOD-1DEG
-185:185:ECMFMOD-1DEG
-186:186:ECMFMOD-1DEG
-187:187:ECMFMOD-1DEG
-188:188:ECMFMOD-1DEG
-189:189:ECMFMOD-1DEG
-190:190:ECMFMOD-1DEG
-191:191:ECMFMOD-1DEG
-192:192:ECMFMOD-1DEG
-193:193:ECMFMOD-1DEG
-194:194:ECMFMOD-1DEG
-195:195:ECMFMOD-1DEG
-196:196:ECMFMOD-1DEG
-197:197:ECMFMOD-1DEG
-198:198:ECMFMOD-1DEG
-199:199:ECMFMOD-1DEG
-200:200:ECMFMOD-1DEG
-201:201:ECMFMOD-1DEG
-202:202:ECMFMOD-1DEG
-203:203:ECMFMOD-1DEG
-204:204:ECMFMOD-1DEG
-205:205:ECMFMOD-1DEG
-206:206:ECMFMOD-1DEG
-207:207:ECMFMOD-1DEG
-208:208:ECMFMOD-1DEG
-209:209:ECMFMOD-1DEG
-210:210:ECMFMOD-1DEG
-211:211:ECMFMOD-1DEG
-212:212:ECMFMOD-1DEG
-213:213:ECMFMOD-1DEG
-214:214:ECMFMOD-1DEG
-215:215:ECMFMOD-1DEG
-216:216:ECMFMOD-1DEG
-217:217:ECMFMOD-1DEG
-218:218:ECMFMOD-1DEG
-219:219:ECMFMOD-1DEG
-220:220:ECMFMOD-1DEG
-221:221:ECMFMOD-1DEG
-222:222:ECMFMOD-1DEG
-223:223:ECMFMOD-1DEG
-224:224:ECMFMOD-1DEG
-225:225:ECMFMOD-1DEG
-226:226:ECMFMOD-1DEG
-227:227:ECMFMOD-1DEG
-228:228:ECMFMOD-1DEG
-229:229:ECMFMOD-1DEG
-230:230:ECMFMOD-1DEG
-231:231:ECMFMOD-1DEG
-232:232:ECMFMOD-1DEG
-233:233:ECMFMOD-1DEG
-234:234:ECMFMOD-1DEG
-235:235:ECMFMOD-1DEG
-236:236:ECMFMOD-1DEG
-237:237:ECMFMOD-1DEG
-238:238:ECMFMOD-1DEG
-239:239:ECMFMOD-1DEG
-240:240:ECMFMOD-1DEG
-241:241:ECMFMOD-1DEG
-242:242:ECMFMOD-1DEG
-243:243:ECMFMOD-1DEG
-244:244:ECMFMOD-1DEG
-245:245:ECMFMOD-1DEG
-246:246:ECMFMOD-1DEG
-247:247:ECMFMOD-1DEG
-248:248:ECMFMOD-1DEG
-249:249:ECMFMOD-1DEG
-250:250:ECMFMOD-1DEG
-251:251:ECMFMOD-1DEG
-252:252:ECMFMOD-1DEG
-253:253:ECMFMOD-1DEG
-254:254:ECMFMOD-1DEG
-255:255:ECMFMOD-1DEG
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/C-center161.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/C-center161.table
deleted file mode 100644
index fade501567..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/C-center161.table
+++ /dev/null
@@ -1 +0,0 @@
-1:1:GLERL
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/C-center59.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/C-center59.table
deleted file mode 100644
index 47afc735cb..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/C-center59.table
+++ /dev/null
@@ -1,2 +0,0 @@
-1:1:RAPB
-2:2:LAPB
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/C-center7.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/C-center7.table
deleted file mode 100644
index 40124a32d2..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/C-center7.table
+++ /dev/null
@@ -1,16 +0,0 @@
-1:1:RAP
-2:2:EP
-3:3:CO
-4:4:EMC
-5:5:HPC
-6:6:MPC
-7:7:CPC
-8:8:AWC
-9:9:SPC
-10:10:TPC
-11:11:TDL
-12:12:ORA
-13:13:FAA
-14:14:MDL
-15:15:NAR
-16:16:SEC
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/C-center9.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/C-center9.table
deleted file mode 100644
index 942191be30..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/-1/-1/C-center9.table
+++ /dev/null
@@ -1,136 +0,0 @@
-1:1:KABR
-2:2:KALY
-3:3:KABQ
-4:4:KAMA
-5:5:PAFC
-6:6:KFFC
-7:7:KEWX
-8:8:KLWX
-9:9:KBYZ
-10:10:KBGM
-11:11:KBMX
-12:12:KBIS
-13:13:KBOI
-14:14:KBOX
-15:15:KBRO
-16:16:KBUF
-17:17:KBTV
-18:18:KILX
-19:19:KCTP
-20:20:KCHS
-21:21:KRLX
-22:22:KCYS
-23:23:KLOT
-24:24:KILN
-25:25:KCLE
-26:26:KCAE
-27:27:KCRP
-28:28:KFWD
-29:29:KBOU
-30:30:KDMX
-31:31:KDTX
-32:32:KDDC
-33:33:KDLH
-34:34:KFGF
-35:35:KEPZ
-36:36:KLKN
-37:37:KEKA
-38:38:PAFG
-39:39:KFGZ
-40:40:KGGW
-41:41:KGLD
-42:42:KGJT
-43:43:KGRR
-44:44:KTFX
-45:45:KGRB
-46:46:KGSP
-47:47:PGUA
-48:48:KGID
-49:49:PHFO
-50:50:KHGX
-51:51:KIND
-52:52:KJKL
-53:53:KJAN
-54:54:KJAX
-55:55:PAJK
-56:56:KEAX
-57:57:KMRX
-58:58:KARX
-59:59:KLCH
-60:60:KVEF
-61:61:KLZK
-62:62:KLOX
-63:63:KLMK
-64:64:KLUB
-65:65:KMQT
-66:66:KMFR
-67:67:KMLB
-68:68:KMEG
-69:69:KMFL
-70:70:KMAF
-71:71:KMKX
-72:72:KMPX
-73:73:KMSO
-74:74:KMOB
-75:75:KMHX
-76:76:KOHX
-77:77:KAPX
-78:78:KLIX
-79:79:KOKX
-80:80:KIWX
-81:81:KLBF
-82:82:KOUN
-83:83:KOAX
-84:84:KPAH
-85:85:KPDT
-86:86:KPHI
-87:87:KPSR
-88:88:KPBZ
-89:89:KPIH
-90:90:KGYX
-91:91:KPQR
-92:92:KPUB
-93:93:KDVN
-94:94:KRAH
-95:95:KUNR
-96:96:KREV
-97:97:KRIW
-98:98:KRNK
-99:99:KSTO
-100:100:KSLC
-101:101:KSJT
-102:102:KSGX
-103:103:KMTR
-104:104:KHNX
-105:105:TSJU
-106:106:KSEW
-107:107:KSHV
-108:108:KFSD
-109:109:KOTX
-110:110:KSGF
-111:111:KLSX
-112:112:KTAE
-113:113:KTBW
-114:114:KTOP
-115:115:KTWC
-116:116:KTSA
-117:117:KAKQ
-118:118:KICT
-119:119:KILM
-120:120:KCAR
-121:121:KEYW
-150:150:KTUA
-151:151:PACR
-152:152:KSTR
-153:153:KRSA
-154:154:KORN
-155:155:KRHA
-156:156:KKRF
-157:157:KMSR
-158:158:KTAR
-159:159:KPTR
-160:160:KTIR
-161:161:KALR
-162:162:KFWR
-163:163:NOHRSC
-170:170:KNES
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/161/0/A.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/161/0/A.table
deleted file mode 100644
index 7465ed5bed..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/161/0/A.table
+++ /dev/null
@@ -1 +0,0 @@
-99:99:GLWAVE
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/0.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/0.0.table
deleted file mode 100644
index 92717fe3d6..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/0.0.table
+++ /dev/null
@@ -1,3 +0,0 @@
-#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/1.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/1.2.table
deleted file mode 100644
index 72ab6f4660..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/1.2.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 1.2, Significance of Reference Time
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/1.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/1.3.table
deleted file mode 100644
index c13615473c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/1.3.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 1.3, Production status of data
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/1.4.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/1.4.table
deleted file mode 100644
index 4c0f4587ea..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/1.4.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 1.4, Type of data
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.0.table
deleted file mode 100644
index d4d74444d2..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.0.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 3.0, Source of Grid Definition
-# 192-254 Reserved for local use
-255:255:A grid definition does not apply to this product
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.15.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.15.table
deleted file mode 100644
index 0beb308747..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.15.table
+++ /dev/null
@@ -1,6 +0,0 @@
-# CODE TABLE 3.15, Physical meaning of vertical coordinate
-# 192-254 Reserved for local use
-255:255:Missing
-# Notes:
-# (1) Negative values associated to this coordinate will indicate depth below ground surface. If values are all below surface, use of entry 106 is recommended, with positive coordinate values instead.
-# (2) The Eta vertical coordinate system involves normalizing the pressure at some point on a specific level by the mean sea level pressure at that point.
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.2.table
deleted file mode 100644
index ac9521f630..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.2.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 3.2, Shape of the Earth
-# 192- 254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.20.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.20.table
deleted file mode 100644
index 704877e111..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.20.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 3.20, Type of horizontal line
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.21.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.21.table
deleted file mode 100644
index 64645b71b5..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.21.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 3.21, Vertical dimension coordinate values definition
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.8.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.8.table
deleted file mode 100644
index 975eb7013d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/3.8.table
+++ /dev/null
@@ -1,4 +0,0 @@
-# Code table 3.8: Grid point position
-# 192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.1.table
deleted file mode 100644
index 5cac0aa444..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.1.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.1, Category of parameters by product discipline
-#192-254 Reserved for Local Use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.10.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.10.table
deleted file mode 100644
index 39e385fcee..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.10.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.10, Type of statistical processing
-# 192 254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.12.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.12.table
deleted file mode 100644
index bc21f6e891..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.12.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.12, Operating Mode
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.13.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.13.table
deleted file mode 100644
index 9dbe42e9aa..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.13.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.13, Quality Control Indicator
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.14.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.14.table
deleted file mode 100644
index 6d09577539..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.14.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.14, Clutter Filter Indicator
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.0.table
deleted file mode 100644
index dc3e5565cf..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.0.table
+++ /dev/null
@@ -1,17 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 0: Temperature
-#192-254 Reserved for local use
-192:192:Snow Phase Change Heat Flux:W/m^2:SNOHF
-193:193:Temperature tendency by all radiation:K/s:TTRAD
-194:194:Relative Error Variance::REV
-195:195:Large Scale Condensate Heating rate:K/s:LRGHR
-196:196:Deep Convective Heating rate:K/s:CNVHR
-197:197:Total Downward Heat Flux at Surface:W/m^2:THFLX
-198:198:Temperature Tendency By All Physics:K/s:TTDIA
-199:199:Temperature Tendency By Non-radiation Physics:K/s:TTPHY
-200:200:Standard Dev. of IR Temp. over 1x1 deg. area:K:TSD1D
-201:201:Shallow Convective Heating rate:K/s:SHAHR
-202:202:Vertical Diffusion Heating rate:K/s:VDFHR
-203:203:Potential temperature at top of viscous sublayer:K:THZ0
-204:204:Tropical Cyclone Heat Potential:J/m^2*K:TCHP
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.1.table
deleted file mode 100644
index 819e3e470e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.1.table
+++ /dev/null
@@ -1,38 +0,0 @@
- # Product Discipline 0: Meteorological products, Parameter Category 1: Moisture
-#192-254 Reserved for local use
-192:192:Categorical Rain::CRAIN
-193:193:Categorical Freezing Rain::CFRZR
-194:194:Categorical Ice Pellets::CICEP
-195:195:Categorical Snow::CSNOW
-196:196:Convective Precipitation Rate:mm / s:CPRAT
-197:197:Horizontal Moisture Divergence:kg/kg*s:MCONV:MCon
-198:198:Minimum Relative Humidity:%:MINRH
-199:199:Potential Evaporation:mm:PEVAP
-200:200:Potential Evaporation Rage:W/m^2:PEVPR
-201:201:Snow Cover:%:SCP
-202:202:Rain Fraction of Total Liquid Water::FRAIN
-203:203:Rime Factor::FRIME
-204:204:Total Column Integrated Rain:mm:TCOLR
-205:205:Total Column Integrated Snow:mm:TCOLS
-206:206:Total Icing Potential Diagnostic::TIPD
-207:207:Number concentration for ice particles::NCIP
-208:208:Snow Temperature:K:SNOT
-209:209:Total column-integrated supercooled liquid water:mm:TCLSW
-210:210:Total column-integrated melting ice:mm:TCOLM
-211:211:Evaporation - Precipitation:cm/day:EMNP
-212:212:Sublimation (evaporation from snow):W/m^2:SBSNO
-213:213:Deep Convective Moistening Rate:kg/kg*s:CNVMR
-214:214:Shallow Convective Moistening Rate:kg/kg*s:SHAMR
-215:215:Vertical Diffusion Moistening Rate:kg/kg*s:VDFMR
-216:216:Condensation Pressure of Parcal Lifted From Indicate Surface:Pa:CONDP
-217:217:Large scale moistening rate:kg/kg/s:LRGMR
-218:218:Specific humidity at top of viscous sublayer:kg/kg:QZ0
-219:219:Maximum specific humidity at 2m:kg/kg:QMAX
-220:220:Minimum specific humidity at 2m:kg/kg:QMIN
-221:221:Liquid precipitation (rainfall):mm:ARAIN
-222:222:Snow temperature, depth-avg:K:SNOWT
-223:223:Total precipitation (nearest grid point):mm:APCPN
-224:224:Convective precipitation (nearest grid point):mm:ACPCPN
-242:242:Relative Humidity with Respect to Precipitable Water:%:RHPW
-225:225:Freezing Rain:mm:FRZR
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.13.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.13.table
deleted file mode 100644
index 86eb318180..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.13.table
+++ /dev/null
@@ -1,8 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 13: Aerosols
-# 192-254 Reserved for local use
-192:192:Particulate matter (coarse):mm*g/m^3:PMTC
-193:193:Particulate matter (fine):mm*g/m^3:PMTF
-194:194:Particulate matter (fine):log10(mm*g/m^3):LPMTF
-195:195:Integrated column particulate matter (fine):log10(mm*g/m^3):LIPMF
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.14.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.14.table
deleted file mode 100644
index 0e434e3212..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.14.table
+++ /dev/null
@@ -1,14 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 14: Trace Gases
-#192-254 Reserved for local use
-192:192:Ozone Mixing Ratio:kg/kg:O3MR
-193:193:Ozone Concentration (PPB):PPB:OZCON
-194:194:Categorical Ozone Concentration::OZCAT
-195:195:Ozone vertical diffusion:kg/kg/s:VDFOZ
-196:196:Ozone production:kg/kg/s:POZ
-197:197:Ozone tendency:kg/kg/s:TOZ
-198:198:Ozone production from temperature term:kg/kg/s:POZT
-199:199:Ozone production from col ozone term:kg/kg/s:POZO
-200:200:Ozone Daily Max from 1-h Average: ppbv:OZMAX1
-201:201:Ozone Daily Max from 8-h Average: ppbv:OZMAX8
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.15.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.15.table
deleted file mode 100644
index 10832dc85f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.15.table
+++ /dev/null
@@ -1,4 +0,0 @@
-# Product Discipline 0 - Meteorological products, Parameter Category 15: Radar
-# 192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.16.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.16.table
deleted file mode 100644
index 18e2c57f24..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.16.table
+++ /dev/null
@@ -1,9 +0,0 @@
-# Product Discipline 0 - Meteorological products, Parameter Category 16: Forecast Radar Imagery
-# 192-254 Reserved for Local Use
-192:192:Derived radar reflectivity backscatter from rain:mm^6/m^3:REFZR
-193:193:Derived radar reflectivity backscatter from ice:mm^6/m^3:REFZI
-194:194:Derived radar reflectivity backscatter from parameterized convection:mm^6/m^3:REFZC
-195:195:Derived radar reflectivity:dB:REFD
-196:196:Maximum/Composite radar reflectivity:dB:REFC
-197:197:Echo Top (See Note 1):m:RETOP
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.17.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.17.table
deleted file mode 100644
index 9c9e86f8af..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.17.table
+++ /dev/null
@@ -1,4 +0,0 @@
-# Product Discipline 0 - Meterological products, Paramater Category 17: Electrodynamics
-# 192-254 Reserved for Local Use
-192:192:Lightning::LTNG
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.18.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.18.table
deleted file mode 100644
index 66afde201c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.18.table
+++ /dev/null
@@ -1,4 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 18: Nuclear/radiology
-#192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.19.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.19.table
deleted file mode 100644
index 657a14e166..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.19.table
+++ /dev/null
@@ -1,69 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 19: Physical atmospheric properties
-0:0:Visibility:m:VIS
-1:1:Albedo:%:ALBDO
-2:2:Thunderstorm Probability:%:TSTM
-3:3:Mixed Layer Depth:m:MIXHT
-4:4:Volcanic Ash:See Table 4.206:VOLASH
-5:5:Icing Top:m:ICIT
-6:6:Icing Base:m:ICIB
-7:7:Icing:See Table 4.207:ICI
-8:8:Turbulence Top:m:TURBT
-9:9:Turbulence Base:m:TURBB
-10:10:Turbulence:See Table 4.208:TURB
-11:11:Turbulent Kinetic Energy:J kg-1:TKE
-12:12:Planetary Boundary Layer Regime:See Table 4.209:PBLREG
-13:13:Contrail Intensity:See Table 4.210:CONTI
-14:14:Contrail Engine Type:See Table 4.211:CONTET
-15:15:Contrail Top:m:CONTT
-16:16:Contrail Base:m:CONTB
-17:17:Maximum Snow Albedo*:%:MXSALB
-18:18:Snow-Free Albedo:%:SNFALB
-19:19:Snow Albedo:%:SALBD
-20:20:Icing:%:ICIP
-21:21:In-Cloud Turbulence:%:CTP
-22:22:Clear Air Turbulence (CAT):%:CAT
-23:23:Supercooled Large Droplet (SLD) Probabilitysee note 1:%:SLDP
-#192-254 Reserved for local use
-192:192:Maximum Snow Albedo:%:MXSALB
-193:193:Snow-Free Albedo:%:SNFALB
-194:194:Slight risk convective outlook:categorical:SRCONO
-195:195:Moderate risk convective outlook:categorical:MRCONO
-196:196:High risk convective outlook:categorical:HRCONO
-197:197:Tornado probability:%:PTOR
-198:198:Hail probability:%:HAILPROB
-199:199:Wind Probability:%:WINDPROB
-200:200:Significant Tornado probability:%:SIGTRNDPROB
-201:201:Significant Hail probability:%:SIGHAILPROB
-202:202:Significant Wind probability:%:SIGWINDPROB
-203:203:Categorical Thunderstorm (1-yes, 0-no):categorical:CTSTM
-204:204:Number of mixed layers next to surface:integer:MIXLY
-205:205:Flight Category::FLGHT
-206:206:Confidence - Ceiling::CICEL
-207:207:Confidence - Visibility::CIVIS
-208:208:Confidence - Flight Category::CIFLT
-209:209:Low-Level aviation interest::LAVNI
-210:210:High-Level aviation interest::HAVNI
-211:211:Visible, Black Sky Albedo:%:SBSALB
-212:212:Visible, White Sky Albedo:%:SWSALB
-213:213:Near IR, Black Sky Albedo:%:NBSALB
-214:214:Near IR, White Sky Albedo:%:NWSALB
-215:215:Total Probability of Severe Thunderstorms (Days 2,3):%:PRSVR
-216:216:Total Probability of Extreme Severe Thunderstorms (Days 2,3):%:PRSIGSV
-217:217:Mean Icing Potential:mm:MEI
-218:218:Maximum Icing Potential:mm:MAIP
-219:219:Mean in-Cloud Turbulence Potential:mm:MECTP
-220:220:Max in-Cloud Turbulence Potential:mm:MACTP
-221:221:Mean Cloud Air Turbulence Potential:mm:MECAT
-222:222:Maximum Cloud Air Turbulence Potential:mm:MACAT
-223:223:Cumulonimbus Horizontal Exten:%:CBHE
-224:224:Pressure at Cumulonimbus Bas:Pa:PCBB
-225:225:Pressure at Cumulonimbus To:Pa:PCBT
-226:226:Pressure at Embedded Cumulonimbus Bas:Pa:PECBB
-227:227:Pressure at Embedded Cumulonimbus To:Pa:PECBT
-228:228:ICAO Height at Cumulonimbus Bas:m:HCBB
-229:229:ICAO Height at Cumulonimbus To:m:HCBT
-230:230:ICAO Height at Embedded Cumulonimbus Bas:m:HECBB
-231:231:ICAO Height at Embedded Cumulonimbus To:m:HECBT
-232:232:Volcanic Ash Forecast Transport and Dispersion:log10(kg/m^3):VAFTD
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.190.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.190.table
deleted file mode 100644
index 8e801f764a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.190.table
+++ /dev/null
@@ -1,4 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 190: CCITT IA5 string
-# 192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.191.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.191.table
deleted file mode 100644
index d596dd044f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.191.table
+++ /dev/null
@@ -1,10 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 191: Miscellaneous
-# 192-254 Reserved for local use
-192:192:Latitude (-90 to +90):degrees:NLAT
-193:193:East Longitude (0 - 360):degrees:ELON
-194:194:Seconds prior to initial reference time:s:TSEC
-195:195:Model Layer number (From bottom up)::MLYNO
-196:196:Latitude (nearest neighbor) (-90 to +90):degrees:NLATN
-197:197:East Longitude (nearest neighbor) (0 - 360):degrees:ELONN
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.192.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.192.table
deleted file mode 100644
index 04a9433c6a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.192.table
+++ /dev/null
@@ -1,16 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 192: Covariance
-
-1:1:Covariance between zonal and meridional components of the wind. Defined as [uv]-[u][v], where "[]" indicates the mean over the indicated time span.:m^2/s^2:COVMZ
-2:2:Covariance between izonal component of the wind and temperature. Defined as [uT]-[u][T], where "[]" indicates the mean over the indicated time span.:K*m/s:COVTZ
-3:3:Covariance between meridional component of the wind and temperature. Defined as [vT]-[v][T], where "[]" indicates the mean over the indicated time span.:K*m/s:COVTM
-4:4:Covariance between temperature and vertical component of the wind. Defined as [wT]-[w][T], where "[]" indicates the mean over the indicated time span.:K*m/s:COVTW
-5:5:Covariance between zonal and zonal components of the wind. Defined as [uu]-[u][u], where "[]" indicates the mean over the indicated time span.:m^2/s^2:COVZZ
-6:6:Covariance between meridional and meridional components of the wind. Defined as [vv]-[v][v], where "[]" indicates the mean over the indicated time span.:m^2/s^2:COVMM
-7:7:Covariance between specific humidity and zonal components of the wind. Defined as [uq]-[u][q], where "[]" indicates the mean over the indicated time span.:kg/kg*m/s:COVQZ
-8:8:Covariance between specific humidity and meridional components of the wind. Defined as [vq]-[v][q], where "[]" indicates the mean over the indicated time span.:kg/kg*m/s:COVQM
-9:9:Covariance between temperature and vertical components of the wind. Defined as [ΩT]-[Ω][T], where "[]" indicates the mean over the indicated time span.:K*Pa/s:COVTVV
-10:10:Covariance between specific humidity and vertical components of the wind. Defined as [Ωq]-[Ω][q], where "[]" indicates the mean over the indicated time span.:kg/kg*Pa/s:COVQVV
-11:11:Covariance between surface pressure and surface pressure. Defined as [Psfc]-[Psfc][Psfc], where "[]" indicates the mean over the indicated time span.:Pa*Pa:COVPSPS
-12:12:Covariance between specific humidity and specific humidy. Defined as [qq]-[q][q], where "[]" indicates the mean over the indicated time span.:kg/kg*kg/kg:COVQQ
-13:13:Covariance between vertical and vertical components of the wind. Defined as [ΩΩ]-[Ω][Ω], where "[]" indicates the mean over the indicated time span.:Pa^2/s^2:COVVVVV
-14:14:Covariance between temperature and temperature. Defined as [TT]-[T][T], where "[]" indicates the mean over the indicated time span.:K*K:COVTT
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.2.table
deleted file mode 100644
index c7d9406d05..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.2.table
+++ /dev/null
@@ -1,36 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 2: Momentum
-# 192-254 Reserved for local use
-192:192:Vertical speed sheer:s^-1:VWSH:VSS
-193:193:Horizontal Momentum Flux:N/m^2:MFLX
-194:194:U-Component Storm Motion:m/s:USTM
-195:195:V-Component Storm Motion:m/s:VSTM
-196:196:Drag Coefficient::CD
-197:197:Frictional Velocity:m/s:FRICV
-198:198:Latitude of U Wind Component of Velocity:degrees:LAUV
-199:199:Longitude of U Wind Component of Velocity:degrees:LOUV
-200:200:Latitude of V Wind Component of Velocity:degrees:LAVV
-201:201:Longitude of V Wind Component of Velocity:degrees:LOVV
-202:202:Latitude of Presure Point:degrees:LAPP
-203:203:Longitude of Presure Point:degrees:LOPP
-204:204:Vertical Eddy Diffusivity Heat exchange:m^2/s:VEDH
-205:205:Covariance between Meridional and Zonal Components of the wind.:m^2/s^2:COVMZ
-206:206:Covariance between Temperature and Zonal Components of the wind.:K*m/s:COVTZ
-207:207:Covariance between Temperature and Meridional Components of the wind.:K*m/s:COVTM
-208:208:Vertical Diffusion Zonal Acceleration:m/s^2:VDFUA
-209:209:Vertical Diffusion Meridional Acceleration:m/s^2:VDFVA
-210:210:Gravity wave drag zonal acceleration:m/s^2:GWDU
-211:211:Gravity wave drag meridional acceleration:m/s^2:GWDV
-212:212:Convective zonal momentum mixing acceleration:m/s^2:CNVU
-213:213:Convective meridional momentum mixing acceleration:m/s^2:CNVV
-214:214:Tendency of vertical velocity:m/s^2:WTEND
-215:215:Omega (Dp/Dt) divide by density:K:OMGALF
-216:216:Convective Gravity wave drag zonal acceleration:m/s^2:CNGWDU
-217:217:Convective Gravity wave drag meridional acceleration:m/s^2:CNGWDV
-218:218:Velocity Point Model Surface::LMV
-219:219:Potential Vorticity (Mass-Weighted):m/s:PVMWW
-220:220:Hourly Maximum of Upward Vertical Vorticity in the lowest 400hPa:m/s:MAXUVV
-221:221:Hourly Maximum of Downward Vertical Vorticity in the lowest 400hPa:m/s:MAXDVV
-222:222:U Component of Hourly Maximum 10m Wind Speed:m/s:MAXUW
-223:223:V Component of Hourly Maximum 10m Wind Speed:m/s:MAXVW
-224:224:Ventilation Rate:m^2/s:VRATE
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.3.table
deleted file mode 100644
index f8361ae908..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.3.table
+++ /dev/null
@@ -1,24 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 3: Mass
-# 192-254 Reserved for local use
-192:192:MSLP (Eta model reduction):Pa:MSLET:EMSP
-193:193:5-Wave Geopotential Height:gpm:5WAVH:WGH
-194:194:Zonal Flux of Gravity Wave Stress:N/m^2:U-GWD
-195:195:Meridional Flux of Gravity Wave Stress:N/m^2:V-GWD
-196:196:Planetary Boundary Layer Height:m:HPBL
-197:197:5-Wave Geopotential Height Anomaly:gpm:5WAVA
-198:198:MSLP (MAPS System Reduction):Pa:MSLPM:MMSP
-199:199:3-hr pressure tendency (Std. Atmos. Reduction):Pa/s:TSLSA
-200:200:Pressure of level from which parcel was lifted:Pa:PLPL
-201:201:X-gradient of Log Pressure:m^-1:LPS X
-202:202:Y-gradient of Log Pressure:m^-1:LPS Y
-203:203:X-gradient of Height:m^-1:HGT X
-204:204:Y-gradient of Height:m^-1:HGT Y
-205:205:Layer Thickness:m:LAYTH
-206:206:Natural Log of Surface Pressure:ln(kPa):NLGSP
-207:207:Convective updraft mass flux:mm/s:CNVUMF
-208:208:Convective downdraft mass flux:mm/s:CNVDMF
-209:209:Convective detrainment mass flux:mm/s:CNVDEMF
-210:210:Mass Point Model Surface::LMH
-211:211:Geopotential Height (nearest grid point):gpm:HGTN
-212:212:Pressure (nearest grid point):Pa:PRESN
- 255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.4.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.4.table
deleted file mode 100644
index 741a656a44..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.4.table
+++ /dev/null
@@ -1,18 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 4: Short-wave Radiation
-#192-254 Reserved for local use
-192:192:Downward Short-Wave Rad. Flux:W/m^2:DSWRF
-193:193:Upward Short-Wave Rad. Flux:W/m^2:USWRF
-194:194:UV-B downward solar flux:W/m^2:DUVB
-195:195:Clear sky UV-B downward solar flux:W/m^2:CDUVB
-196:196:Clear sky downward solar flux:W/m^2:CSDSF
-197:197:Solar Radiative Heating Rate:K/s:SWHR
-198:198:Clear Sky Upward Solar Flux:W/m^2:CSUSF
-199:199:Cloud Forcing Net Solar Flux:W/m^2:CFNSF
-200:200:Visible Beam Downward Solar Flux:W/m^2:VBDSF
-201:201:Visible Diffuse Downward Solar Flux:W/m^2:VDDSF
-202:202:Near IR Beam Downward Solar Flux:W/m^2:NBDSF
-203:203:Near IR Diffuse Downward Solar Flux:W/m^2:NDDSF
-204:204:Downward Total radiation Flux:W/m^2:DTRF
-205:205:Upward Total radiation Flux:W/m^2:UTRF
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.5.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.5.table
deleted file mode 100644
index e6ee528f2e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.5.table
+++ /dev/null
@@ -1,10 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 5: Long-wave Radiation
-#192-254 Reserved for local use
-192:192:Downward Long-Wave Rad. Flux:W/m^2:DLWRF
-193:193:Upward Long-Wave Rad. Flux:W/m^2:ULWRF
-194:194:Long-Wave Radiative Heating Rate:K/s:LWHR
-195:195:Clear Sky Upward Long Wave Flux:W/m^2:CSULF
-196:196:Clear Sky Downward Long Wave Flux:W/m^2:CSDLF
-197:197:Cloud Forcing Net Long Wave Flux:W/m^2:CFNLF
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.6.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.6.table
deleted file mode 100644
index 677e57f358..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.6.table
+++ /dev/null
@@ -1,14 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 6: Cloud
-# 192-254 Reserved for local use
-192:192:Non-Convective Cloud Cover:%:CDLYR
-193:193:Cloud Work Function:J/kg:CWORK
-194:194:Convective Cloud Efficiency::CUEFI
-195:195:Total Condensate:kg/kg:TCOND
-196:196:Total Column-Integrated Cloud Water:mm:TCOLW
-197:197:Total Column-Integrated Cloud Ice:mm:TCOLI
-198:198:Total Column-Integrated Condensate:mm:TCOLC
-199:199:Ice fraction of total condensate::FICE
-200:200:Convective Cloud Mass Flux:Pa/s:MFLUX
-201:201:Sunshine Duration:s:SUNSD
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.7.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.7.table
deleted file mode 100644
index 30e610d5e4..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.0.7.table
+++ /dev/null
@@ -1,11 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 7: Thermodynamic Stability Indices
-#192-254 Reserved for local use
-192:192:Surface Lifted Index:K:LFTX:SLI
-193:193:Best (4 layer) Lifted Index:K:4LFTX:BLI
-194:194:Richardson Number:Numeric:RI
-195:195:Convective Weather Detection Index::CWDI
-196:196:Ultra Violet Index:J/m^2:UVI
-197:197:Updraft Helicity:m^2/s^2:UPHL
-198:198:Leaf Area Index::LAI
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.1.0.table
deleted file mode 100644
index b0f7b99a6d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.1.0.table
+++ /dev/null
@@ -1,10 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products
-# 192-254 Reserved for local use
-192:192:Baseflow-groundwater runoff:mm:BGRUN
-193:193:Storm surface runoff:mm:SSRUN
-255:255:Missing
-# Notes:
-# (1) Remotely sensed snow cover is expressed as a field of dimensionless, thematic values. The currently accepted values are for no-snow/no-cloud, 50, for clouds, 100, and for snow, 250. See code table 4.215.
-# (2) A data field representing snow coverage by elevation portrays at which elevations there is a snow pack. The elevation values typically range from 0 to 90 in 100 m increments. A value of 253 is used to represent a no-snow/no-cloud data point. A value of 254 is used to represent a data point at which snow elevation could not be estimated because of clouds obscuring the remote sensor (when using aircraft or satellite measurements).
-# (3) Snow water equivalent percent of normal is stored in percent of normal units. For example, a value of 110 indicates 110 percent of the normal snow water equivalent for a given depth of snow.
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.1.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.1.1.table
deleted file mode 100644
index ee7cd51aaf..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.1.1.table
+++ /dev/null
@@ -1,8 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 1: Hydrology probabilities
-#192-254 Reserved for local use
-192:192:Probability of Freezing Precipitation:%:CPOZP
-193:193:Probability of Frozen Precipitation:%:CPOFP
-194:194:Probability of precipitation exceeding flash flood guidance values:%:PPFFG
-195:195:Probability of Wetting Rain, exceeding in 0.10" in a given time period:%:CWR
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.0.table
deleted file mode 100644
index dd8bc6605f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.0.table
+++ /dev/null
@@ -1,6 +0,0 @@
-# Product Discipline 10: Oceanographic products, Parameter Category 0: Waves
-# 192-254 Reserved for local use
-192:192:Wave Steepness::WSTP
-255:255:Missing
-
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.1.table
deleted file mode 100644
index ae19d6cd16..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.1.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# Product Discipline 10: Oceanographic products, Parameter Category 1: Currents
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.191.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.191.table
deleted file mode 100644
index 9b1f77c4b8..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.191.table
+++ /dev/null
@@ -1,4 +0,0 @@
-# Product Discipline 10: Oceanographic products, Parameter Category 191: Miscallaneous
-0:0:Seconds Prior To Initial Reference Time:s:TSEC
-#1-191 Reserved
-255:255:Missing
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.2.table
deleted file mode 100644
index d4d07462da..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.2.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# Product Discipline 10: Oceanographic products, Parameter Category 2: Ice
-#192-254 Reserved for local use
-192:192:Ocean Mixed Layer U Velocity:m/s:OMLU
-193:193:Ocean Mixed Layer V Velocity:m/s:OMLV
-194:194:Barotropic U velocity:m/s:UBARO
-195:195:Barotropic V velocity:m/s:VBARO
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.3.table
deleted file mode 100644
index 0c38ae1afe..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.3.table
+++ /dev/null
@@ -1,14 +0,0 @@
-# Product Discipline 10: Oceanographic products, Parameter Category 3: Surface Properties
-#192-254 Reserved for local use
-192:192:Storm Surge:m:SURGE
-193:193:Extra Tropical Storm Surge:m:ETSRG
-194:194:Ocean Surface Elevation Relative to Geoid:m:ELEV
-195:195:Sea Surface Height Relative to Geoid:m:SSHG
-196:196:Ocean Mixed Layer Potential Density (Reference 2000m):kg/m^3:P2OMLT
-197:197:Net Air-Ocean Heat Flux:W/m^2:AOHFLX
-198:198:Assimilative Heat Flux:W/m^2:ASHFL
-199:199:Surface Temperature Trend:degree per day:SSTT
-200:200:Surface Salinity Trend:psu per day:SSST
-201:201:Kinetic Energy:J/kg:KENG
-202:202:Salt Flux:mm*s:SLTFL
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.4.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.4.table
deleted file mode 100644
index e2234c0d40..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.10.4.table
+++ /dev/null
@@ -1,10 +0,0 @@
-# Product Discipline 10: Oceanographic products, Parameter Category 4: Sub-surface Properties
-#192-254 Reserved for local use
-192:192:3-D Temperature:℃:WTMPC
-193:193:3-D Salinity::SALIN
-194:194:Barotropic Kinectic Energy:J/kg:BKENG
-195:195:Geometric Depth Below Sea Surface:m:DBSS
-196:196:Interface Depths:m:INTFD
-197:197:Ocean Heat Content:J/m^2:OHC
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.2.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.2.0.table
deleted file mode 100644
index 619c3819df..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.2.0.table
+++ /dev/null
@@ -1,43 +0,0 @@
-# Product Discipline 2: Land surface products, Parameter Category 0: Vegetation/Biomass
-#192-254 Reserved for local use
-192:192:Volumetric soil moisture content:Proportion:SOILW
-193:192:Ground heat flux:W/m^2:GFLUX
-194:194:Moisture availability:%:MSTAV
-195:195:Exchange coefficient:mm * s:SFEXC
-196:196:Plant canopy surface water:mm:CNWAT
-197:197:Blackadars mixing length scale:m:BMIXL
-198:198:Vegetation Type:Integer 0-13:VGTYP
-199:199:Canopy conductance:m/s:CCOND
-200:200:Minimal stomatal resistance:s/m:RSMIN
-201:201:Wilting point:Proportion:WILT
-202:202:Solar parameter in canopy conductance:Fraction:RCS
-203:203:Temperature parameter in canopy conductance:Fraction:RCT
-204:204:Humidity parameterin canopy conductance:Fraction:RCQ
-205:205:Soil moisture parameter in canopy conductance:Fraction:RCSOL
-206:206:Rate of water dropping from canopy to ground:unknown:RDRIP
-207:207:Ice-free water surface:%:ICWAT
-208:208:Surface exchange coefficients for T and Q divided by delta z:m/s:AKHS
-209:209:Surface exchange coefficients for U and V divided by delta z:m/s:AKMS
-210:210:Vegetation canopy temperature:K:VEGT
-211:211:Surface water storage:mm:SSTOR
-212:212:Liquid soil moisture content (non-frozen):mm:LSOIL
-213:213:Open water evaporation (standing water):W/m^2:EWATR
-214:214:Groundwater recharge:mm:GWREC
-215:215:Flood plain recharge:mm:QREC
-216:216:Roughness length for heat:m:SFCRH
-217:217:Normalized Difference Vegetation Index::NDVI
-218:218:Land-sea coverage (nearest neighbor):[land=1,sea=0]:LANDN
-219:219:Asymptotic mixing length scale:m:AMIXL
-220:220:Water vapor added by precip assimilation:mm:WVINC
-221:221:Water condensate added by precip assimilation:mm:WCINC
-222:222:Water Vapor Flux Convergance (Vertical Int):mm:WVCONV
-223:223:Water Condensate Flux Convergance (Vertical Int):mm:WCCONV
-224:224:Water Vapor Zonal Flux (Vertical Int):mm:WVUFLX
-225:225:Water Vapor Meridional Flux (Vertical Int):mm:WVVFLX
-226:226:Water Condensate Zonal Flux (Vertical Int):mm:WCUFLX
-227:227:Water Condensate Meridional Flux (Vertical Int):mm:WCVFLX
-228:228:Aerodynamic conductance:m/s:ACOND
-229:229:Canopy water evaporation:W/m^2:EVCW
-230:230:Transpiration:W/m^2:TRANS
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.2.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.2.3.table
deleted file mode 100644
index 3432fa9a81..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.2.3.table
+++ /dev/null
@@ -1,16 +0,0 @@
-# Product Discipline 2: Land surface products, Parameter Category 3: Soil Products
-#192-254 Reserved for local use
-192:192:Liquid volumetric soil moisture (non-frozen):Proportion:SOILL
-193:193:Number of soil layers in root zone::RLYRS
-194:194:Surface Slope Type:Index:SLTYP
-195:195:Transpiration stress-onset (soil moisture):Proportion:SMREF
-196:196:Direct evaporation cease (soil moisture):Proportion:SMDRY
-197:197:Soil porosity:Proportion:POROS
-198:198:Direct evaporation from bare soil:W/m^2:EVBS
-199:199:Land Surface Precipitation Accumulation:mm:LSPA
-200:200:Bare soil surface skin temperature:K:BARET
-201:201:Average surface skin temperature:K:AVSFT
-202:202:Effective radiative skin temperature:K:RADT
-203:203:Field Capacity:fraction:FLDCP
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.3.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.3.0.table
deleted file mode 100644
index 2b170ff4c7..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.3.0.table
+++ /dev/null
@@ -1,4 +0,0 @@
-# Product discipline 3: Space products, Parameter Category 0: Image format products
-#192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.3.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.3.1.table
deleted file mode 100644
index d528d034dc..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.3.1.table
+++ /dev/null
@@ -1,6 +0,0 @@
-# Product Discipline 3: Space products, Parameter Category 1: Quantitative products
-#192-254 Reserved for local use
-192:192:Scatterometer Estimated U Wind Component:m/s:SCESTUWIND
-193:193:Scatterometer Estimated V Wind Component:m/s:SCESTVWIND
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.3.192.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.3.192.table
deleted file mode 100644
index 0e789b15ac..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.2.3.192.table
+++ /dev/null
@@ -1,10 +0,0 @@
-# Product Discipline 3: Space Products, Parameter Category 192: Forecast Satellite Imagery
-0:0:Simulated Brightness Temperature for GOES 12, Channel 2:K:SBT122
-1:1:Simulated Brightness Temperature for GOES 12, Channel 3:K:SBT123
-2:2:Simulated Brightness Temperature for GOES 12, Channel 4:K:SBT124
-3:3:Simulated Brightness Temperature for GOES 12, Channel 5:K:SBT125
-4:4:Simulated Brightness Counts for GOES 12, Channel 3:Byte:SBC123
-5:5:Simulated Brightness Counts for GOES 12, Channel 4:Byte:SBC124
-#6-191: Reserved
-#192-254 Reserved for Local Use
-255:255:Missing
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.201.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.201.table
deleted file mode 100644
index ff854f8ce0..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.201.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.201, Precipitation Type
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.202.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.202.table
deleted file mode 100644
index 72b3e924a3..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.202.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.202, Precipitable water category
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.203.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.203.table
deleted file mode 100644
index 194a617dca..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.203.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.203, Cloud type
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.204.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.204.table
deleted file mode 100644
index 6dd8eddad0..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.204.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.204, Thunderstorm coverage
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.205.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.205.table
deleted file mode 100644
index d3a10a9f42..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.205.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.205, Aerosol type
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.206.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.206.table
deleted file mode 100644
index ad38ec23d8..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.206.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.206, Volcanic ash
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.207.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.207.table
deleted file mode 100644
index 0da827c63d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.207.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.207, Icing
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.208.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.208.table
deleted file mode 100644
index 3e80d5eb91..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.208.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.208, Turbulence
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.209.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.209.table
deleted file mode 100644
index be768523e3..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.209.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.209, Planetary boundary layer regime
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.210.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.210.table
deleted file mode 100644
index 40d3645e7c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.210.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.210, Contrail intensity
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.211.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.211.table
deleted file mode 100644
index de31f82779..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.211.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.211, Contrail engine type
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.212.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.212.table
deleted file mode 100644
index 3772bedb61..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.212.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.212, Land Use
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.213.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.213.table
deleted file mode 100644
index 772b1b17de..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.213.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE:TABLE:4.213, Soil type
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.215.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.215.table
deleted file mode 100644
index 210fd51310..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.215.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.215, Remotely Sensed Snow Coverage
-#251-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.217.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.217.table
deleted file mode 100644
index a934b4fdd3..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.217.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.217, Cloud mask type
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.220.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.220.table
deleted file mode 100644
index 9c8153ca5f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.220.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.220, Horizontal dimension processed
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.221.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.221.table
deleted file mode 100644
index 2999590ab8..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.221.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.221, Treatment of missing data
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.222.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.222.table
deleted file mode 100644
index fff52f9756..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.222.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.222, Categorical Result (NCEP)
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.3.table
deleted file mode 100644
index a528a77fbe..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.3.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.3, Type of generating process
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.4.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.4.table
deleted file mode 100644
index f9d0db827a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.4.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.4, Indicator of unit of time range
-# 192:254:Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.5.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.5.table
deleted file mode 100644
index 7005858a40..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.5.table
+++ /dev/null
@@ -1,42 +0,0 @@
-#Code:table:4.5: Fixed surface types and units
-#192-254 Reserved for local use
-200:200:Entire Atmosphere::EATM:EA
-201:201:Entire Ocean::EOCN
-204:204:Highest Tropospheric Freezing Level::HTFL
-206:206:Grid Scale Cloud Bottom Level::GCBL
-207:207:Grid Scale Cloud Top Level::GCTL
-209:209:Boundary Layer Cloud Bottom Level::BCBL
-210:210:Boundary Layer Cloud Top Level::BCTL
-211:211:Boundary Layer Cloud Layer::BCY
-212:212:Low Cloud Bottom Level::LCBL:CLG
-213:213:Low Cloud Top Level::LCTL
-214:214:Low Cloud Layer::LCY
-215:215:Cloud Ceiling::CCL
-220:220:Planetary Boundary Layer:: PBL
-221:221:Layer Between Two Hybrid Levels::LBTHL
-222:222:Middle Cloud Bottom Level::MCBL
-223:223:Middle Cloud Top Level::MCTL
-224:224:Middle Cloud Layer::MCY
-232:232:High Cloud Bottom Level::HCBL
-233:233:High Cloud Top Level::HCTL
-234:234:High Cloud Layer::HCL
-235:235:Ocean Isotherm Level:1/10 ℃:OITL
-236:236:Layer Between Two Depths Below Ocean Surface::OLYR
-237:237:Bottom of Ocean Mixed Layer (m):m:OBML
-238:238:Bottom of Ocean Isothermal Layer:m:OBIL
-239:239:Layer Ocean Surface and 26C Ocean Isothermal Level::LOS
-240:240:Ocean Mixed Layer::OML
-241:241:Ordered Sequence of Data::OSD
-242:242:Convective Cloud Bottom Level::CCBL
-243:243:Convective Cloud Top Level::CCTL
-244:244:Convective Cloud::CCY
-245:245:Lowest Level of the Wet Bulb Zero::LLTW
-246:246:Maximum Equivalent Potential Temperature level::MTHE:MEPT
-247:247:Equilibrium Level::EHLT:EL
-248:248:Shallow Convective Cloud Bottom Level::SCBL
-249:249:Shallow Convective Cloud Top Level::SCTL
-251:251:Deep Convective Cloud Bottom Level::DCBL
-252:252:Deep Convective Cloud Top Level::DCTL
-253:253:Lowest Bottom Level of Supercooled Liquid Water Layer::LSCLW
-254:254:Highest Top Level of Supercooled Liquid Water Layer::HSCLW
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.6.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.6.table
deleted file mode 100644
index 0d385dcb99..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.6.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.6, Type of ensemble forecast
-# 192 254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.7.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.7.table
deleted file mode 100644
index ef8484bffc..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.7.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.7, Derived forecast
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.8.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.8.table
deleted file mode 100644
index 25f097a5e7..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.8.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.8, Clustering Method
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.9.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.9.table
deleted file mode 100644
index e1e3edd4bf..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/4.9.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.9, Probability Type
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.0.table
deleted file mode 100644
index 66936885d9..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.0.table
+++ /dev/null
@@ -1,4 +0,0 @@
-# CODE TABLE 5.0, Data Representation Template Number
-# 192-254 Reserved for local use
-255:255:Missing
-# 256-65535 Reserved
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.1.table
deleted file mode 100644
index 5dbbcbc6ad..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.1.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 5.1, Type of original field values
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.2.table
deleted file mode 100644
index e280a94aa7..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.2.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 5.2, Matrix coordinate value function definition
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.3.table
deleted file mode 100644
index dee18c15d0..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.3.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 5.3, Matrix coordinate parameter
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.5.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.5.table
deleted file mode 100644
index 2ffc3108c7..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.5.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 5.5, Missing Value Management for Complex Packing
-# 192 254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.6.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.6.table
deleted file mode 100644
index fee1f01670..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/0/5.6.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 5.6, Order of Spatial Differencing
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/10/4.2.0.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/10/4.2.0.2.table
deleted file mode 100644
index c07720c13f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/10/4.2.0.2.table
+++ /dev/null
@@ -1,31 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 2: Momentum
-# 192-254 Reserved for local use
-192:192:Vertical speed sheer:s^-1:VWSH:VSS
-193:193:Horizontal Momentum Flux:N/m^2:MFLX
-194:194:U-Component Storm Motion:m/s:USTM
-195:195:V-Component Storm Motion:m/s:VSTM
-196:196:Drag Coefficient::CD
-197:197:Frictional Velocity:m/s:FRICV
-198:198:Latitude of U Wind Component of Velocity:degrees:LAUV
-199:199:Longitude of U Wind Component of Velocity:degrees:LOUV
-200:200:Latitude of V Wind Component of Velocity:degrees:LAVV
-201:201:Longitude of V Wind Component of Velocity:degrees:LOVV
-202:202:Latitude of Presure Point:degrees:LAPP
-203:203:Longitude of Presure Point:degrees:LOPP
-204:204:Vertical Eddy Diffusivity Heat exchange:m^2/s:VEDH
-205:205:Covariance between Meridional and Zonal Components of the wind.:m^2/s^2:COVMZ
-206:206:Covariance between Temperature and Zonal Components of the wind.:K*m/s:COVTZ
-207:207:Covariance between Temperature and Meridional Components of the wind.:K*m/s:COVTM
-208:208:Vertical Diffusion Zonal Acceleration:m/s^2:VDFUA
-209:209:Vertical Diffusion Meridional Acceleration:m/s^2:VDFVA
-210:210:Gravity wave drag zonal acceleration:m/s^2:GWDU
-211:211:Gravity wave drag meridional acceleration:m/s^2:GWDV
-212:212:Convective zonal momentum mixing acceleration:m/s^2:CNVU
-213:213:Convective meridional momentum mixing acceleration:m/s^2:CNVV
-214:214:Tendency of vertical velocity:m/s^2:WTEND
-215:215:Omega (Dp/Dt) divide by density:K:OMGALF
-216:216:Convective Gravity wave drag zonal acceleration:m/s^2:CNGWDU
-217:217:Convective Gravity wave drag meridional acceleration:m/s^2:CNGWDV
-218:218:Velocity Point Model Surface::LMV
-219:219:Potential Vorticity (Mass-Weighted):m/s:PVMWW
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/14/4.2.0.19.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/14/4.2.0.19.table
deleted file mode 100644
index 8779d5ed5d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/14/4.2.0.19.table
+++ /dev/null
@@ -1,45 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 19: Physical atmospheric properties
-#192-254 Reserved for local use
-192:192:Maximum Snow Albedo:%:MXSALB
-193:193:Snow-Free Albedo:%:SNFALB
-194:194:Slight risk convective outlook:categorical:SRCONO
-195:195:Moderate risk convective outlook:categorical:MRCONO
-196:196:High risk convective outlook:categorical:HRCONO
-197:197:Tornado probability:%:PTOR
-198:198:Hail probability:%:HAILPROB
-199:199:Wind Probability:%:WINDPROB
-200:200:Significant Tornado probability:%:SIGTRNDPROB
-201:201:Significant Hail probability:%:SIGHAILPROB
-202:202:Significant Wind probability:%:SIGWINDPROB
-203:203:Categorical Thunderstorm (1-yes, 0-no):categorical:CTSTM
-204:204:Number of mixed layers next to surface:integer:MIXLY
-205:205:Flight Category::FLGHT
-206:206:Confidence - Ceiling::CICEL
-207:207:Confidence - Visibility::CIVIS
-208:208:Confidence - Flight Category::CIFLT
-209:209:Low-Level aviation interest::LAVNI
-210:210:High-Level aviation interest::HAVNI
-211:211:Visible, Black Sky Albedo:%:SBSALB
-212:212:Visible, White Sky Albedo:%:SWSALB
-213:213:Near IR, Black Sky Albedo:%:NBSALB
-214:214:Near IR, White Sky Albedo:%:NWSALB
-215:215:Total Probability of Severe Thunderstorms (Days 2,3):%:PRSVR
-216:216:Total Probability of Extreme Severe Thunderstorms (Days 2,3):%:PRSIGSV
-217:217:Mean Icing Potential:mm:MEI
-218:218:Maximum Icing Potential:mm:MAIP
-219:219:Mean in-Cloud Turbulence Potential:mm:MECTP
-220:220:Max in-Cloud Turbulence Potential:mm:MACTP
-221:221:Mean Cloud Air Turbulence Potential:mm:MECAT
-222:222:Maximum Cloud Air Turbulence Potential:mm:MACAT
-223:223:Cumulonimbus Horizontal Exten:%:CBHE
-224:224:Pressure at Cumulonimbus Bas:Pa:PCBB
-225:225:Pressure at Cumulonimbus To:Pa:PCBT
-226:226:Pressure at Embedded Cumulonimbus Bas:Pa:PECBB
-227:227:Pressure at Embedded Cumulonimbus To:Pa:PECBT
-228:228:ICAO Height at Cumulonimbus Bas:m:HCBB
-229:229:ICAO Height at Cumulonimbus To:m:HCBT
-230:230:ICAO Height at Embedded Cumulonimbus Bas:m:HECBB
-231:231:ICAO Height at Embedded Cumulonimbus To:m:HECBT
-232:232:Volcanic Ash Forecast Transport and Dispersion:log10(kg/m^3):VAFTD
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.1.table
deleted file mode 100644
index f871626a2d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.1.table
+++ /dev/null
@@ -1,37 +0,0 @@
- # Product Discipline 0: Meteorological products, Parameter Category 1: Moisture
-#192-254 Reserved for local use
-192:192:Categorical Rain:non-dim:CRAIN
-193:193:Categorical Freezing Rain:non-dim:CFRZR
-194:194:Categorical Ice Pellets:non-dim:CICEP
-195:195:Categorical Snow:non-dim:CSNOW
-196:196:Convective Precipitation Rate:mm/s:CPRAT
-197:197:Horizontal Moisture Divergence:kg/kg*s:MCONV:MCon
-198:198:Minimum Relative Humidity:%:MINRH
-199:199:Potential Evaporation:mm:PEVAP
-200:200:Potential Evaporation Rage:W/m^2:PEVPR
-201:201:Snow Cover:%:SCP
-202:202:Rain Fraction of Total Liquid Water::FRAIN
-203:203:Rime Factor::FRIME
-204:204:Total Column Integrated Rain:mm:TCOLR
-205:205:Total Column Integrated Snow:mm:TCOLS
-206:206:Total Icing Potential Diagnostic::TIPD
-207:207:Number concentration for ice particles::NCIP
-208:208:Snow Temperature:K:SNOT
-209:209:Total column-integrated supercooled liquid water:mm:TCLSW
-210:210:Total column-integrated melting ice:mm:TCOLM
-211:211:Evaporation - Precipitation:cm/day:EMNP
-212:212:Sublimation (evaporation from snow):W/m^2:SBSNO
-213:213:Deep Convective Moistening Rate:kg/kg*s:CNVMR
-214:214:Shallow Convective Moistening Rate:kg/kg*s:SHAMR
-215:215:Vertical Diffusion Moistening Rate:kg/kg*s:VDFMR
-216:216:Condensation Pressure of Parcal Lifted From Indicate Surface:Pa:CONDP
-217:217:Large scale moistening rate:kg/kg/s:LRGMR
-218:218:Specific humidity at top of viscous sublayer:kg/kg:QZ0
-219:219:Maximum specific humidity at 2m:kg/kg:QMAX
-220:220:Minimum specific humidity at 2m:kg/kg:QMIN
-221:221:Liquid precipitation (rainfall):mm:ARAIN
-222:222:Snow temperature, depth-avg:K:SNOWT
-223:223:Total precipitation (nearest grid point):mm:APCPN
-224:224:Convective precipitation (nearest grid point):mm:ACPCPN
-225:225:Freezing Rain:mm:FRZR
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.14.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.14.table
deleted file mode 100644
index 790a682f15..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.14.table
+++ /dev/null
@@ -1,12 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 14: Trace Gases
-#192-254 Reserved for local use
-192:192:Ozone Mixing Ratio:kg/kg:O3MR
-193:193:Ozone Concentration (PPB):PPB:OZCON
-194:194:Categorical Ozone Concentration::OZCAT
-195:195:Ozone vertical diffusion:kg/kg/s:VDFOZ
-196:196:Ozone production:kg/kg/s:POZ
-197:197:Ozone tendency:kg/kg/s:TOZ
-198:198:Ozone production from temperature term:kg/kg/s:POZT
-199:199:Ozone production from col ozone term:kg/kg/s:POZO
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.2.table
deleted file mode 100644
index c07720c13f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.2.table
+++ /dev/null
@@ -1,31 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 2: Momentum
-# 192-254 Reserved for local use
-192:192:Vertical speed sheer:s^-1:VWSH:VSS
-193:193:Horizontal Momentum Flux:N/m^2:MFLX
-194:194:U-Component Storm Motion:m/s:USTM
-195:195:V-Component Storm Motion:m/s:VSTM
-196:196:Drag Coefficient::CD
-197:197:Frictional Velocity:m/s:FRICV
-198:198:Latitude of U Wind Component of Velocity:degrees:LAUV
-199:199:Longitude of U Wind Component of Velocity:degrees:LOUV
-200:200:Latitude of V Wind Component of Velocity:degrees:LAVV
-201:201:Longitude of V Wind Component of Velocity:degrees:LOVV
-202:202:Latitude of Presure Point:degrees:LAPP
-203:203:Longitude of Presure Point:degrees:LOPP
-204:204:Vertical Eddy Diffusivity Heat exchange:m^2/s:VEDH
-205:205:Covariance between Meridional and Zonal Components of the wind.:m^2/s^2:COVMZ
-206:206:Covariance between Temperature and Zonal Components of the wind.:K*m/s:COVTZ
-207:207:Covariance between Temperature and Meridional Components of the wind.:K*m/s:COVTM
-208:208:Vertical Diffusion Zonal Acceleration:m/s^2:VDFUA
-209:209:Vertical Diffusion Meridional Acceleration:m/s^2:VDFVA
-210:210:Gravity wave drag zonal acceleration:m/s^2:GWDU
-211:211:Gravity wave drag meridional acceleration:m/s^2:GWDV
-212:212:Convective zonal momentum mixing acceleration:m/s^2:CNVU
-213:213:Convective meridional momentum mixing acceleration:m/s^2:CNVV
-214:214:Tendency of vertical velocity:m/s^2:WTEND
-215:215:Omega (Dp/Dt) divide by density:K:OMGALF
-216:216:Convective Gravity wave drag zonal acceleration:m/s^2:CNGWDU
-217:217:Convective Gravity wave drag meridional acceleration:m/s^2:CNGWDV
-218:218:Velocity Point Model Surface::LMV
-219:219:Potential Vorticity (Mass-Weighted):m/s:PVMWW
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.3.table
deleted file mode 100644
index f8361ae908..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.3.table
+++ /dev/null
@@ -1,24 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 3: Mass
-# 192-254 Reserved for local use
-192:192:MSLP (Eta model reduction):Pa:MSLET:EMSP
-193:193:5-Wave Geopotential Height:gpm:5WAVH:WGH
-194:194:Zonal Flux of Gravity Wave Stress:N/m^2:U-GWD
-195:195:Meridional Flux of Gravity Wave Stress:N/m^2:V-GWD
-196:196:Planetary Boundary Layer Height:m:HPBL
-197:197:5-Wave Geopotential Height Anomaly:gpm:5WAVA
-198:198:MSLP (MAPS System Reduction):Pa:MSLPM:MMSP
-199:199:3-hr pressure tendency (Std. Atmos. Reduction):Pa/s:TSLSA
-200:200:Pressure of level from which parcel was lifted:Pa:PLPL
-201:201:X-gradient of Log Pressure:m^-1:LPS X
-202:202:Y-gradient of Log Pressure:m^-1:LPS Y
-203:203:X-gradient of Height:m^-1:HGT X
-204:204:Y-gradient of Height:m^-1:HGT Y
-205:205:Layer Thickness:m:LAYTH
-206:206:Natural Log of Surface Pressure:ln(kPa):NLGSP
-207:207:Convective updraft mass flux:mm/s:CNVUMF
-208:208:Convective downdraft mass flux:mm/s:CNVDMF
-209:209:Convective detrainment mass flux:mm/s:CNVDEMF
-210:210:Mass Point Model Surface::LMH
-211:211:Geopotential Height (nearest grid point):gpm:HGTN
-212:212:Pressure (nearest grid point):Pa:PRESN
- 255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.4.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.4.table
deleted file mode 100644
index 741a656a44..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.4.table
+++ /dev/null
@@ -1,18 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 4: Short-wave Radiation
-#192-254 Reserved for local use
-192:192:Downward Short-Wave Rad. Flux:W/m^2:DSWRF
-193:193:Upward Short-Wave Rad. Flux:W/m^2:USWRF
-194:194:UV-B downward solar flux:W/m^2:DUVB
-195:195:Clear sky UV-B downward solar flux:W/m^2:CDUVB
-196:196:Clear sky downward solar flux:W/m^2:CSDSF
-197:197:Solar Radiative Heating Rate:K/s:SWHR
-198:198:Clear Sky Upward Solar Flux:W/m^2:CSUSF
-199:199:Cloud Forcing Net Solar Flux:W/m^2:CFNSF
-200:200:Visible Beam Downward Solar Flux:W/m^2:VBDSF
-201:201:Visible Diffuse Downward Solar Flux:W/m^2:VDDSF
-202:202:Near IR Beam Downward Solar Flux:W/m^2:NBDSF
-203:203:Near IR Diffuse Downward Solar Flux:W/m^2:NDDSF
-204:204:Downward Total radiation Flux:W/m^2:DTRF
-205:205:Upward Total radiation Flux:W/m^2:UTRF
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.5.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.5.table
deleted file mode 100644
index e6ee528f2e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.5.table
+++ /dev/null
@@ -1,10 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 5: Long-wave Radiation
-#192-254 Reserved for local use
-192:192:Downward Long-Wave Rad. Flux:W/m^2:DLWRF
-193:193:Upward Long-Wave Rad. Flux:W/m^2:ULWRF
-194:194:Long-Wave Radiative Heating Rate:K/s:LWHR
-195:195:Clear Sky Upward Long Wave Flux:W/m^2:CSULF
-196:196:Clear Sky Downward Long Wave Flux:W/m^2:CSDLF
-197:197:Cloud Forcing Net Long Wave Flux:W/m^2:CFNLF
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.6.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.6.table
deleted file mode 100644
index d799aa484c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.6.table
+++ /dev/null
@@ -1,13 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 6: Cloud
-# 192-254 Reserved for local use
-192:192:Non-Convective Cloud Cover:%:CDLYR
-193:193:Cloud Work Function:J/kg:CWORK
-194:194:Convective Cloud Efficiency::CUEFI
-195:195:Total Condensate:kg/kg:TCOND
-196:196:Total Column-Integrated Cloud Water:mm:TCOLW
-197:197:Total Column-Integrated Cloud Ice:mm:TCOLI
-198:198:Total Column-Integrated Condensate:mm:TCOLC
-199:199:Ice fraction of total condensate::FICE
-200:200:Convective Cloud Mass Flux:Pa/s:MFLUX
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.7.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.7.table
deleted file mode 100644
index 30e610d5e4..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.0.7.table
+++ /dev/null
@@ -1,11 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 7: Thermodynamic Stability Indices
-#192-254 Reserved for local use
-192:192:Surface Lifted Index:K:LFTX:SLI
-193:193:Best (4 layer) Lifted Index:K:4LFTX:BLI
-194:194:Richardson Number:Numeric:RI
-195:195:Convective Weather Detection Index::CWDI
-196:196:Ultra Violet Index:J/m^2:UVI
-197:197:Updraft Helicity:m^2/s^2:UPHL
-198:198:Leaf Area Index::LAI
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.2.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.2.0.table
deleted file mode 100644
index 619c3819df..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.2.0.table
+++ /dev/null
@@ -1,43 +0,0 @@
-# Product Discipline 2: Land surface products, Parameter Category 0: Vegetation/Biomass
-#192-254 Reserved for local use
-192:192:Volumetric soil moisture content:Proportion:SOILW
-193:192:Ground heat flux:W/m^2:GFLUX
-194:194:Moisture availability:%:MSTAV
-195:195:Exchange coefficient:mm * s:SFEXC
-196:196:Plant canopy surface water:mm:CNWAT
-197:197:Blackadars mixing length scale:m:BMIXL
-198:198:Vegetation Type:Integer 0-13:VGTYP
-199:199:Canopy conductance:m/s:CCOND
-200:200:Minimal stomatal resistance:s/m:RSMIN
-201:201:Wilting point:Proportion:WILT
-202:202:Solar parameter in canopy conductance:Fraction:RCS
-203:203:Temperature parameter in canopy conductance:Fraction:RCT
-204:204:Humidity parameterin canopy conductance:Fraction:RCQ
-205:205:Soil moisture parameter in canopy conductance:Fraction:RCSOL
-206:206:Rate of water dropping from canopy to ground:unknown:RDRIP
-207:207:Ice-free water surface:%:ICWAT
-208:208:Surface exchange coefficients for T and Q divided by delta z:m/s:AKHS
-209:209:Surface exchange coefficients for U and V divided by delta z:m/s:AKMS
-210:210:Vegetation canopy temperature:K:VEGT
-211:211:Surface water storage:mm:SSTOR
-212:212:Liquid soil moisture content (non-frozen):mm:LSOIL
-213:213:Open water evaporation (standing water):W/m^2:EWATR
-214:214:Groundwater recharge:mm:GWREC
-215:215:Flood plain recharge:mm:QREC
-216:216:Roughness length for heat:m:SFCRH
-217:217:Normalized Difference Vegetation Index::NDVI
-218:218:Land-sea coverage (nearest neighbor):[land=1,sea=0]:LANDN
-219:219:Asymptotic mixing length scale:m:AMIXL
-220:220:Water vapor added by precip assimilation:mm:WVINC
-221:221:Water condensate added by precip assimilation:mm:WCINC
-222:222:Water Vapor Flux Convergance (Vertical Int):mm:WVCONV
-223:223:Water Condensate Flux Convergance (Vertical Int):mm:WCCONV
-224:224:Water Vapor Zonal Flux (Vertical Int):mm:WVUFLX
-225:225:Water Vapor Meridional Flux (Vertical Int):mm:WVVFLX
-226:226:Water Condensate Zonal Flux (Vertical Int):mm:WCUFLX
-227:227:Water Condensate Meridional Flux (Vertical Int):mm:WCVFLX
-228:228:Aerodynamic conductance:m/s:ACOND
-229:229:Canopy water evaporation:W/m^2:EVCW
-230:230:Transpiration:W/m^2:TRANS
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.2.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.2.3.table
deleted file mode 100644
index 3432fa9a81..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.2.2.3.table
+++ /dev/null
@@ -1,16 +0,0 @@
-# Product Discipline 2: Land surface products, Parameter Category 3: Soil Products
-#192-254 Reserved for local use
-192:192:Liquid volumetric soil moisture (non-frozen):Proportion:SOILL
-193:193:Number of soil layers in root zone::RLYRS
-194:194:Surface Slope Type:Index:SLTYP
-195:195:Transpiration stress-onset (soil moisture):Proportion:SMREF
-196:196:Direct evaporation cease (soil moisture):Proportion:SMDRY
-197:197:Soil porosity:Proportion:POROS
-198:198:Direct evaporation from bare soil:W/m^2:EVBS
-199:199:Land Surface Precipitation Accumulation:mm:LSPA
-200:200:Bare soil surface skin temperature:K:BARET
-201:201:Average surface skin temperature:K:AVSFT
-202:202:Effective radiative skin temperature:K:RADT
-203:203:Field Capacity:fraction:FLDCP
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.5.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.5.table
deleted file mode 100644
index 7005858a40..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/2/4.5.table
+++ /dev/null
@@ -1,42 +0,0 @@
-#Code:table:4.5: Fixed surface types and units
-#192-254 Reserved for local use
-200:200:Entire Atmosphere::EATM:EA
-201:201:Entire Ocean::EOCN
-204:204:Highest Tropospheric Freezing Level::HTFL
-206:206:Grid Scale Cloud Bottom Level::GCBL
-207:207:Grid Scale Cloud Top Level::GCTL
-209:209:Boundary Layer Cloud Bottom Level::BCBL
-210:210:Boundary Layer Cloud Top Level::BCTL
-211:211:Boundary Layer Cloud Layer::BCY
-212:212:Low Cloud Bottom Level::LCBL:CLG
-213:213:Low Cloud Top Level::LCTL
-214:214:Low Cloud Layer::LCY
-215:215:Cloud Ceiling::CCL
-220:220:Planetary Boundary Layer:: PBL
-221:221:Layer Between Two Hybrid Levels::LBTHL
-222:222:Middle Cloud Bottom Level::MCBL
-223:223:Middle Cloud Top Level::MCTL
-224:224:Middle Cloud Layer::MCY
-232:232:High Cloud Bottom Level::HCBL
-233:233:High Cloud Top Level::HCTL
-234:234:High Cloud Layer::HCL
-235:235:Ocean Isotherm Level:1/10 ℃:OITL
-236:236:Layer Between Two Depths Below Ocean Surface::OLYR
-237:237:Bottom of Ocean Mixed Layer (m):m:OBML
-238:238:Bottom of Ocean Isothermal Layer:m:OBIL
-239:239:Layer Ocean Surface and 26C Ocean Isothermal Level::LOS
-240:240:Ocean Mixed Layer::OML
-241:241:Ordered Sequence of Data::OSD
-242:242:Convective Cloud Bottom Level::CCBL
-243:243:Convective Cloud Top Level::CCTL
-244:244:Convective Cloud::CCY
-245:245:Lowest Level of the Wet Bulb Zero::LLTW
-246:246:Maximum Equivalent Potential Temperature level::MTHE:MEPT
-247:247:Equilibrium Level::EHLT:EL
-248:248:Shallow Convective Cloud Bottom Level::SCBL
-249:249:Shallow Convective Cloud Top Level::SCTL
-251:251:Deep Convective Cloud Bottom Level::DCBL
-252:252:Deep Convective Cloud Top Level::DCTL
-253:253:Lowest Bottom Level of Supercooled Liquid Water Layer::LSCLW
-254:254:Highest Top Level of Supercooled Liquid Water Layer::HSCLW
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/3/4.2.0.13.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/3/4.2.0.13.table
deleted file mode 100644
index 86eb318180..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/3/4.2.0.13.table
+++ /dev/null
@@ -1,8 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 13: Aerosols
-# 192-254 Reserved for local use
-192:192:Particulate matter (coarse):mm*g/m^3:PMTC
-193:193:Particulate matter (fine):mm*g/m^3:PMTF
-194:194:Particulate matter (fine):log10(mm*g/m^3):LPMTF
-195:195:Integrated column particulate matter (fine):log10(mm*g/m^3):LIPMF
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/4/4.2.10.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/4/4.2.10.3.table
deleted file mode 100644
index 0c38ae1afe..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/4/4.2.10.3.table
+++ /dev/null
@@ -1,14 +0,0 @@
-# Product Discipline 10: Oceanographic products, Parameter Category 3: Surface Properties
-#192-254 Reserved for local use
-192:192:Storm Surge:m:SURGE
-193:193:Extra Tropical Storm Surge:m:ETSRG
-194:194:Ocean Surface Elevation Relative to Geoid:m:ELEV
-195:195:Sea Surface Height Relative to Geoid:m:SSHG
-196:196:Ocean Mixed Layer Potential Density (Reference 2000m):kg/m^3:P2OMLT
-197:197:Net Air-Ocean Heat Flux:W/m^2:AOHFLX
-198:198:Assimilative Heat Flux:W/m^2:ASHFL
-199:199:Surface Temperature Trend:degree per day:SSTT
-200:200:Surface Salinity Trend:psu per day:SSST
-201:201:Kinetic Energy:J/kg:KENG
-202:202:Salt Flux:mm*s:SLTFL
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/5/4.5.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/5/4.5.table
deleted file mode 100644
index 7005858a40..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/5/4.5.table
+++ /dev/null
@@ -1,42 +0,0 @@
-#Code:table:4.5: Fixed surface types and units
-#192-254 Reserved for local use
-200:200:Entire Atmosphere::EATM:EA
-201:201:Entire Ocean::EOCN
-204:204:Highest Tropospheric Freezing Level::HTFL
-206:206:Grid Scale Cloud Bottom Level::GCBL
-207:207:Grid Scale Cloud Top Level::GCTL
-209:209:Boundary Layer Cloud Bottom Level::BCBL
-210:210:Boundary Layer Cloud Top Level::BCTL
-211:211:Boundary Layer Cloud Layer::BCY
-212:212:Low Cloud Bottom Level::LCBL:CLG
-213:213:Low Cloud Top Level::LCTL
-214:214:Low Cloud Layer::LCY
-215:215:Cloud Ceiling::CCL
-220:220:Planetary Boundary Layer:: PBL
-221:221:Layer Between Two Hybrid Levels::LBTHL
-222:222:Middle Cloud Bottom Level::MCBL
-223:223:Middle Cloud Top Level::MCTL
-224:224:Middle Cloud Layer::MCY
-232:232:High Cloud Bottom Level::HCBL
-233:233:High Cloud Top Level::HCTL
-234:234:High Cloud Layer::HCL
-235:235:Ocean Isotherm Level:1/10 ℃:OITL
-236:236:Layer Between Two Depths Below Ocean Surface::OLYR
-237:237:Bottom of Ocean Mixed Layer (m):m:OBML
-238:238:Bottom of Ocean Isothermal Layer:m:OBIL
-239:239:Layer Ocean Surface and 26C Ocean Isothermal Level::LOS
-240:240:Ocean Mixed Layer::OML
-241:241:Ordered Sequence of Data::OSD
-242:242:Convective Cloud Bottom Level::CCBL
-243:243:Convective Cloud Top Level::CCTL
-244:244:Convective Cloud::CCY
-245:245:Lowest Level of the Wet Bulb Zero::LLTW
-246:246:Maximum Equivalent Potential Temperature level::MTHE:MEPT
-247:247:Equilibrium Level::EHLT:EL
-248:248:Shallow Convective Cloud Bottom Level::SCBL
-249:249:Shallow Convective Cloud Top Level::SCTL
-251:251:Deep Convective Cloud Bottom Level::DCBL
-252:252:Deep Convective Cloud Top Level::DCTL
-253:253:Lowest Bottom Level of Supercooled Liquid Water Layer::LSCLW
-254:254:Highest Top Level of Supercooled Liquid Water Layer::HSCLW
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/8/4.2.0.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/8/4.2.0.1.table
deleted file mode 100644
index d49d59aa2a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/8/4.2.0.1.table
+++ /dev/null
@@ -1,108 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 1: moisture category
-0:0:Specific Humidity:kg kg-1:SPF H
-1:1:Relative Humidity:%:R H
-2:2:Humidity Mixing Ratio:kg kg-1:MIXR
-3:3:Precipitable Water:kg m-2:P WAT
-4:4:Vapor Pressure:Pa:VAPP
-5:5:Saturation Deficit:Pa:SAT D
-6:6:Evaporation:kg m-2:EVP
-7:7:Precipitation Rate:kg m-2 s-1:PRATE
-8:8:Total Precipitation:kg m-2:A PCP
-9:9:Large-Scale Precipitation (non-convective):kg m-2:NCPCP
-10:10:Convective Precipitation:kg m-2:ACPCP
-11:11:Snow Depth:m:SNO D
-12:12:Snowfall Rate Water Equivalent:kg m-2 s-1:SRWEQ
-13:13:Water Equivalent of Accumulated Snow Depth:kg m-2:WEASD
-14:14:Convect Snow:kg m-2:SNO C
-15:15:Large-Scale Snow:kg m-2:SNO L
-16:16:Snow Melt:kg m-2:SNO M
-17:17:Snow Age:day:SNOAG
-18:18:Absolute Humidity:kg m-3:ABSH
-19:19:Precipitation Type:See Table 4.201:PTYPE
-20:20:Integrated Liquid Water:kg m-2:ILIQW
-21:21:Condensate:kg kg-1:TCOND
-22:22:Cloud Mixing Ratio:kg kg-1:CLWMR
-23:23:Ice Water Mixing Ratio:kg kg-1:ICMR
-24:24:Rain Mixing Ratio:kg kg-1:RWMR
-25:25:Snow Mixing Ratio:kg kg-1:SNMR
-26:26:Horizontal Moisture Convergence:kg kg-1 s-1:MCONV
-27:27:Maximum Relative Humidity:%:MAXRH
-28:28:Maximum Absolute Humidity:kg m-3:MAXAH
-29:29:Total Snowfall:m:ASNOW
-30:30:Precipitable Water Category:See Table 4.202:PWCAT
-31:31:Hail:m:HAIL
-32:32:Grauple:kg kg-1:GRLE
-33:33:Categorical Rain:Code table 4.222:CRAIN
-34:34:Categorical Freezing Rain:Code table 4.222:CFRZR
-35:35:Categorical Ice Pellets:Code table 4.222:CICEP
-36:36:Categorical Snow:Code table 4.222:CSNOW
-37:37:Convective Precipitation Rate:kg m-2 s-1:CPRAT
-38:38:Horizontal Moisture Divergence:kg kg-1 s-1:MCONV
-39:39:Percent frozen precipitation:%:CPOFP
-40:40:Potential Evaporation:kg m-2:PEVAP
-41:41:Potential Evaporation Rate:W m-2:PEVPR
-42:42:Snow Cover:%:SNOWC
-43:43:Rain Fraction of Total Liquid Water:Proportion:FRAIN
-44:44:Rime Factor:Numeric:RIME
-45:45:Total Column Integrated Rain:kg m-2:TCOLR
-46:46:Total Column Integrated Snow:kg m-2:TCOLS
-47:47:Large Scale Water Precipitation (Non-Convective):kg m-2:LSWP
-48:48:Convective Water Precipitation:kg m-2:CWP
-49:49:Total Water Precipitation:kg m-2:TWATP
-50:50:Total Snow Precipitation:kg m-2:TSNOWP
-51:51:Total Column Water (Vertically integrated total water (vapour+cloud water/ice):kg m-2:TCWAT
-52:52:Total Precipitation Rate:kg m-2s-1:TPRATE
-53:53:Total Snowfall Rate Water Equivalent:kg m-2s-1:TSRWE
-54:54:Large Scale Precipitation Rate:kg m-2s-1:LSPRATE
-55:55:Convective Snowfall Rate Water Equivalent:kg m-2s-1:CSRWE
-56:56:Large Scale Snowfall Rate Water Equivalent:kg m-2s-1:LSSRWE
-57:57:Total Snowfall Rate:m s-1:TSRATE
-58:58:Convective Snowfall Rate:m s-1:CSRATE
-59:59:Large Scale Snowfall Rate:m s-1:LSSRATE
-60:60:Snow Depth Water Equivalent:kg m-2:SDWE
-61:61:Snow Density:kg m-3:SDEN
-62:62:Snow Evaporation:kg m-2:SEVAP
-#63:63:Reserved::
-64:64:Total Column Integrated Water Vapour:kg m-2:TCIWV
-65:65:Rain Precipitation Rate:kg m-2s-1:RPRATE
-66:66:Snow Precipitation Rate:kg m-2s-1:SPRATE
-67:67:Freezing Rain Precipitation Rate:kg m-2s-1:FPRATE
-68:68:Ice Pellets Precipitation Rate:kg m-2s-1:IPRATE
-#69-191:69-191:Reserved::
-#192-254:192-254:Reserved for Local Use::
-192:192:Categorical Rain (yes=1; no=0)::CRAIN
-193:193:Categorical Freezing Rain (yes=1; no=0)::CFRZR
-194:194:Categorical Ice Pellets (yes=1; no=0)::CICEP
-195:195:Categorical Snow (yes=1; no=0)::CSNOW
-196:196:Convective Precipitation Rate:kg m-2 s-1:CPRAT
-197:197:Horizontal Moisture Divergence:kg kg-1 s-1:MCONV
-198:198:Minimum Relative Humidity:%:MINRH
-199:199:Potential Evaporation:kg m-2:PEVAP
-200:200:Potential Evaporation Rate:W m-2:PEVPR
-201:201:Snow Cover:%:SNOWC
-202:202:Rain Fraction of Total Liquid Water::FRAIN
-203:203:Rime Factor::RIME
-204:204:Total Column Integrated Rain:kg m-2:TCOLR
-205:205:Total Column Integrated Snow:kg m-2:TCOLS
-206:206:Total Icing Potential Diagnostic::TIPD
-207:207:Number concentration for ice particles::NCIP
-208:208:Snow temperature:K:SNO T
-209:209:Total column-integrated supercooled liquid water:kg m-2:TCLSW
-210:210:Total column-integrated melting ice:kg m-2:TCOLM
-211:211:Evaporation - Precipitation:cm per day:EMNP
-212:212:Sublimation (evaporation from snow):W m-2:SBSNO
-213:213:Deep Convective Moistening Rate:kg kg-1 s-1:CNVMR
-214:214:Shallow Convective Moistening Rate:kg kg-1 s-1:SHAMR
-215:215:Vertical Diffusion Moistening Rate:kg kg-1 s-1:VDFMR
-216:216:Condensation Pressure of Parcali Lifted From Indicate Surface:Pa:CONDP
-217:217:Large scale moistening rate:kg/kg/s:LRGMR
-218:218:Specific humidity at top of viscous sublayer:kg/kg:QZ0
-219:219:Maximum specific humidity at 2m:kg/kg:QMAX
-220:220:Minimum specific humidity at 2m:kg/kg:QMIN
-221:221:Liquid precipitation (rainfall):kg/m2:ARAIN
-222:222:Snow temperature, depth-avg:K:SNOWT
-223:223:Total precipitation (nearest grid point):kg/m2:APCPN
-224:224:Convective precipitation (nearest grid point):kg/m2:ACPCPN
-225:225:Freezing Rain:kg/m2:FRZR
-226:226:Predominant Weather:Numeric (See note 3):PWTHER
-255:255:Missing::
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/8/4.2.0.19.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/8/4.2.0.19.table
deleted file mode 100644
index eec61ff68b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/8/4.2.0.19.table
+++ /dev/null
@@ -1,60 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 19: Physical Atmospheric category
-0:0:Visibility:m:VIS
-1:1:Albedo:%:ALBDO
-2:2:Thunderstorm Probability:%:TSTM
-3:3:Mixed Layer Depth:m:MIXHT
-4:4:Volcanic Ash:See Table 4.206:VOLASH
-5:5:Icing Top:m:ICIT
-6:6:Icing Base:m:ICIB
-7:7:Icing:See Table 4.207:ICI
-8:8:Turbulence Top:m:TURBT
-9:9:Turbulence Base:m:TURBB
-10:10:Turbulence:See Table 4.208:TURB
-11:11:Turbulent Kinetic Energy:J kg-1:TKE
-12:12:Planetary Boundary Layer Regime:See Table 4.209:PBLREG
-13:13:Contrail Intensity:See Table 4.210:CONTI
-14:14:Contrail Engine Type:See Table 4.211:CONTET
-15:15:Contrail Top:m:CONTT
-16:16:Contrail Base:m:CONTB
-17:17:Maximum Snow Albedo*:%:MXSALB
-18:18:Snow-Free Albedo:%:SNFALB
-19:19:Snow Albedo:%:SALBD
-20:20:Icing:%:ICIP
-21:21:In-Cloud Turbulence:%:CTP
-22:22:Clear Air Turbulence (CAT):%:CAT
-23:23:Supercooled Large Droplet (SLD) Probabilitysee note 1:%:SLDP
-#24-191:24-191:Reserved::
-#192-254:192-254:Reserved for Local Use::
-192:192:Maximum Snow Albedo:%:MXSALB
-193:193:Snow-Free Albedo:%:SNFALB
-194:194:Slight risk convective outlook:categorical:SRCONO
-195:195:Moderate risk convective outlook:categorical:MRCONO
-196:196:High risk convective outlook:categorical:HRCONO
-197:197:Tornado probability:%:TORPROB
-198:198:Hail probability:%:HAILPROB
-199:199:Wind probability:%:WINDPROB
-200:200:Significant Tornado probability:%:STORPROB
-201:201:Significant Hail probability:%:SHAILPRO
-202:202:Significant Wind probability:%:SWINDPRO
-203:203:Categorical Thunderstorm (1-yes, 0-no):categorical:TSTMC
-204:204:Number of mixed layers next to surface:integer:MIXLY
-205:205:Flight Category::FLGHT
-206:206:Confidence - Ceiling::CICEL
-207:207:Confidence - Visibility::CIVIS
-208:208:Confidence - Flight Category::CIFLT
-209:209:Low-Level aviation interest::LAVNI
-210:210:High-Level aviation interest::HAVNI
-211:211:Visible, Black Sky Albedo:%:SBSALB
-212:212:Visible, White Sky Albedo:%:SWSALB
-213:213:Near IR, Black Sky Albedo:%:NBSALB
-214:214:Near IR, White Sky Albedo:%:NWSALB
-215:215:Total Probability of Severe Thunderstorms (Days 2,3):%:PRSVR
-216:216:Total Probability of Extreme Severe Thunderstorms (Days 2,3):%:PRSIGSVR
-217:217:Supercooled Large Droplet (SLD) Icing:See Table 4.207See Note (1):SIPD
-218:218:Radiative emissivity::EPSR
-219:219:Turbulence Potential Forecast Index::TPFI
-#220-231:220-231:Reserved::
-232:232:Volcanic Ash Forecast Transport and Dispersion:log10(kg/m3):VAFTD
-233:233:Icing Probability:%: ICPRB
-234:234:Icing Severity::ICSEV
-255:255:Missing::
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/8/4.2.0.7.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/8/4.2.0.7.table
deleted file mode 100644
index 30e610d5e4..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/8/4.2.0.7.table
+++ /dev/null
@@ -1,11 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 7: Thermodynamic Stability Indices
-#192-254 Reserved for local use
-192:192:Surface Lifted Index:K:LFTX:SLI
-193:193:Best (4 layer) Lifted Index:K:4LFTX:BLI
-194:194:Richardson Number:Numeric:RI
-195:195:Convective Weather Detection Index::CWDI
-196:196:Ultra Violet Index:J/m^2:UVI
-197:197:Updraft Helicity:m^2/s^2:UPHL
-198:198:Leaf Area Index::LAI
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/8/4.5.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/8/4.5.table
deleted file mode 100644
index 7005858a40..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/7/8/4.5.table
+++ /dev/null
@@ -1,42 +0,0 @@
-#Code:table:4.5: Fixed surface types and units
-#192-254 Reserved for local use
-200:200:Entire Atmosphere::EATM:EA
-201:201:Entire Ocean::EOCN
-204:204:Highest Tropospheric Freezing Level::HTFL
-206:206:Grid Scale Cloud Bottom Level::GCBL
-207:207:Grid Scale Cloud Top Level::GCTL
-209:209:Boundary Layer Cloud Bottom Level::BCBL
-210:210:Boundary Layer Cloud Top Level::BCTL
-211:211:Boundary Layer Cloud Layer::BCY
-212:212:Low Cloud Bottom Level::LCBL:CLG
-213:213:Low Cloud Top Level::LCTL
-214:214:Low Cloud Layer::LCY
-215:215:Cloud Ceiling::CCL
-220:220:Planetary Boundary Layer:: PBL
-221:221:Layer Between Two Hybrid Levels::LBTHL
-222:222:Middle Cloud Bottom Level::MCBL
-223:223:Middle Cloud Top Level::MCTL
-224:224:Middle Cloud Layer::MCY
-232:232:High Cloud Bottom Level::HCBL
-233:233:High Cloud Top Level::HCTL
-234:234:High Cloud Layer::HCL
-235:235:Ocean Isotherm Level:1/10 ℃:OITL
-236:236:Layer Between Two Depths Below Ocean Surface::OLYR
-237:237:Bottom of Ocean Mixed Layer (m):m:OBML
-238:238:Bottom of Ocean Isothermal Layer:m:OBIL
-239:239:Layer Ocean Surface and 26C Ocean Isothermal Level::LOS
-240:240:Ocean Mixed Layer::OML
-241:241:Ordered Sequence of Data::OSD
-242:242:Convective Cloud Bottom Level::CCBL
-243:243:Convective Cloud Top Level::CCTL
-244:244:Convective Cloud::CCY
-245:245:Lowest Level of the Wet Bulb Zero::LLTW
-246:246:Maximum Equivalent Potential Temperature level::MTHE:MEPT
-247:247:Equilibrium Level::EHLT:EL
-248:248:Shallow Convective Cloud Bottom Level::SCBL
-249:249:Shallow Convective Cloud Top Level::SCTL
-251:251:Deep Convective Cloud Bottom Level::DCBL
-252:252:Deep Convective Cloud Top Level::DCTL
-253:253:Lowest Bottom Level of Supercooled Liquid Water Layer::LSCLW
-254:254:Highest Top Level of Supercooled Liquid Water Layer::HSCLW
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/74/0/A.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/74/0/A.table
deleted file mode 100644
index a36c8dd4d4..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/74/0/A.table
+++ /dev/null
@@ -1,3 +0,0 @@
-15:14:UNIFIED
-44:44:UNIFIED
-45:45:UNIFIED
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/150/4.2.1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/150/4.2.1.0.table
deleted file mode 100644
index fdab73f19f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/150/4.2.1.0.table
+++ /dev/null
@@ -1,36 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products
-# 192-254 Reserved for local use
-
-192:192:Cond 25% pcpn smy fractile past 24 hrs:mm:EF25M
-193:193:Cond 50% pcpn smy fractile past 24 hrs:mm:EF50M
-194:194:Percent pcpn in 1st 6-h sub-period of 24 hr period:%:PCTP1
-195:195:Percent pcpn in 2nd 6-h sub-period of 24 hr period:%:PCTP2
-196:196:Percent pcpn in 3rd 6-h sub-period of 24 hr period:%:PCTP3
-197:197:Percent pcpn in 4th 6-h sub-period of 24 hr period:%:PCTP4
-198:198:Probability of 0.01 inches of precipitation:%:POP
-205:205:Accumulated Snow Depth:m:ASD
-207:207:Snow Cover (snow=250,clouds=100,neither=50)::SC
-208:208:Snow Cover by elevation (snow=0-252,neither=253,clouds=254):dm:SCE
-209:209:Snow water equivalent:cm:SCE
-210:210:Snow water equivalent percent of normal:%:SWEPN
-
-221:221:1-hr flash flood guidance:mm:FFG01
-222:222:3-hr flash flood guidance:mm:FFG03
-223:223:6-hr flash flood guidance:mm:FFG06
-224:224:12-hr flash flood guidance:mm:FFG12
-225:225:24-hr flash flood guidance:mm:FFG24
-226:226:1-hr flash flood runoff values:mm:FFR01
-227:227:3-hr flash flood runoff values:mm:FFR03
-228:228:6-hr flash flood runoff values:mm:FFR06
-229:229:12-hr flash flood runoff values:mm:FFR12
-230:230:24-hr flash flood runoff values:mm:FFR24
-
-
-
-
-237:237:1-hr Quantitative Precip Estimate:mm:QPE01_TUA
-239:239:6-hr Quantitative Precip Estimate:mm:QPE06_TUA
-242:242:24-hr Quantitative Precip Estimate:mm:QPE24_TUA
-
-247:247:6-hr Quantitative Precip Forecast:mm:QPF06_TUA
-250:250:24-hr Quantitative Precip Forecast:mm:QPF24_TUA
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/151/4.2.1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/151/4.2.1.0.table
deleted file mode 100644
index 0ea5f14a21..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/151/4.2.1.0.table
+++ /dev/null
@@ -1,34 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products
-# 192-254 Reserved for local use
-
-192:192:Cond 25% pcpn smy fractile past 24 hrs:mm:EF25M
-193:193:Cond 50% pcpn smy fractile past 24 hrs:mm:EF50M
-194:194:Percent pcpn in 1st 6-h sub-period of 24 hr period:%:PCTP1
-195:195:Percent pcpn in 2nd 6-h sub-period of 24 hr period:%:PCTP2
-196:196:Percent pcpn in 3rd 6-h sub-period of 24 hr period:%:PCTP3
-197:197:Percent pcpn in 4th 6-h sub-period of 24 hr period:%:PCTP4
-198:198:Probability of 0.01 inches of precipitation:%:POP
-205:205:Accumulated Snow Depth:m:ASD
-207:207:Snow Cover (snow=250,clouds=100,neither=50)::SC
-208:208:Snow Cover by elevation (snow=0-252,neither=253,clouds=254):dm:SCE
-209:209:Snow water equivalent:cm:SCE
-210:210:Snow water equivalent percent of normal:%:SWEPN
-
-221:221:1-hr flash flood guidance:mm:FFG01
-222:222:3-hr flash flood guidance:mm:FFG03
-223:223:6-hr flash flood guidance:mm:FFG06
-224:224:12-hr flash flood guidance:mm:FFG12
-225:225:24-hr flash flood guidance:mm:FFG24
-226:226:1-hr flash flood runoff values:mm:FFR01
-227:227:3-hr flash flood runoff values:mm:FFR03
-228:228:6-hr flash flood runoff values:mm:FFR06
-229:229:12-hr flash flood runoff values:mm:FFR12
-230:230:24-hr flash flood runoff values:mm:FFR24
-
-
-237:237:1-hr Quantitative Precip Estimate:mm:QPE01_ACR
-239:239:6-hr Quantitative Precip Estimate:mm:QPE06_ACR
-242:242:24-hr Quantitative Precip Estimate:mm:QPE24_ACR
-
-247:247:6-hr Quantitative Precip Forecast:mm:QPF06_ACR
-250:250:24-hr Quantitative Precip Forecast:mm:QPF24_ACR
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/152/4.2.1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/152/4.2.1.0.table
deleted file mode 100644
index 3ed3ba0876..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/152/4.2.1.0.table
+++ /dev/null
@@ -1,34 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products
-# 192-254 Reserved for local use
-
-192:192:Cond 25% pcpn smy fractile past 24 hrs:mm:EF25M
-193:193:Cond 50% pcpn smy fractile past 24 hrs:mm:EF50M
-194:194:Percent pcpn in 1st 6-h sub-period of 24 hr period:%:PCTP1
-195:195:Percent pcpn in 2nd 6-h sub-period of 24 hr period:%:PCTP2
-196:196:Percent pcpn in 3rd 6-h sub-period of 24 hr period:%:PCTP3
-197:197:Percent pcpn in 4th 6-h sub-period of 24 hr period:%:PCTP4
-198:198:Probability of 0.01 inches of precipitation:%:POP
-205:205:Accumulated Snow Depth:m:ASD
-207:207:Snow Cover (snow=250,clouds=100,neither=50)::SC
-208:208:Snow Cover by elevation (snow=0-252,neither=253,clouds=254):dm:SCE
-209:209:Snow water equivalent:cm:SCE
-210:210:Snow water equivalent percent of normal:%:SWEPN
-
-221:221:1-hr flash flood guidance:mm:FFG01
-222:222:3-hr flash flood guidance:mm:FFG03
-223:223:6-hr flash flood guidance:mm:FFG06
-224:224:12-hr flash flood guidance:mm:FFG12
-225:225:24-hr flash flood guidance:mm:FFG24
-226:226:1-hr flash flood runoff values:mm:FFR01
-227:227:3-hr flash flood runoff values:mm:FFR03
-228:228:6-hr flash flood runoff values:mm:FFR06
-229:229:12-hr flash flood runoff values:mm:FFR12
-230:230:24-hr flash flood runoff values:mm:FFR24
-
-
-237:237:1-hr Quantitative Precip Estimate:mm:QPE01_STR
-239:239:6-hr Quantitative Precip Estimate:mm:QPE06_STR
-242:242:24-hr Quantitative Precip Estimate:mm:QPE24_STR
-
-247:247:6-hr Quantitative Precip Forecast:mm:QPF06_STR
-250:250:24-hr Quantitative Precip Forecast:mm:QPF24_STR
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/153/4.2.1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/153/4.2.1.0.table
deleted file mode 100644
index 0df5e9b38d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/153/4.2.1.0.table
+++ /dev/null
@@ -1,34 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products
-# 192-254 Reserved for local use
-
-192:192:Cond 25% pcpn smy fractile past 24 hrs:mm:EF25M
-193:193:Cond 50% pcpn smy fractile past 24 hrs:mm:EF50M
-194:194:Percent pcpn in 1st 6-h sub-period of 24 hr period:%:PCTP1
-195:195:Percent pcpn in 2nd 6-h sub-period of 24 hr period:%:PCTP2
-196:196:Percent pcpn in 3rd 6-h sub-period of 24 hr period:%:PCTP3
-197:197:Percent pcpn in 4th 6-h sub-period of 24 hr period:%:PCTP4
-198:198:Probability of 0.01 inches of precipitation:%:POP
-205:205:Accumulated Snow Depth:m:ASD
-207:207:Snow Cover (snow=250,clouds=100,neither=50)::SC
-208:208:Snow Cover by elevation (snow=0-252,neither=253,clouds=254):dm:SCE
-209:209:Snow water equivalent:cm:SCE
-210:210:Snow water equivalent percent of normal:%:SWEPN
-
-221:221:1-hr flash flood guidance:mm:FFG01
-222:222:3-hr flash flood guidance:mm:FFG03
-223:223:6-hr flash flood guidance:mm:FFG06
-224:224:12-hr flash flood guidance:mm:FFG12
-225:225:24-hr flash flood guidance:mm:FFG24
-226:226:1-hr flash flood runoff values:mm:FFR01
-227:227:3-hr flash flood runoff values:mm:FFR03
-228:228:6-hr flash flood runoff values:mm:FFR06
-229:229:12-hr flash flood runoff values:mm:FFR12
-230:230:24-hr flash flood runoff values:mm:FFR24
-
-
-237:237:1-hr Quantitative Precip Estimate:mm:QPE01_RSA
-239:239:6-hr Quantitative Precip Estimate:mm:QPE06_RSA
-242:242:24-hr Quantitative Precip Estimate:mm:QPE24_RSA
-
-247:247:6-hr Quantitative Precip Forecast:mm:QPF06_RSA
-250:250:24-hr Quantitative Precip Forecast:mm:QPF24_RSA
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/154/4.2.1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/154/4.2.1.0.table
deleted file mode 100644
index 4fe28858c0..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/154/4.2.1.0.table
+++ /dev/null
@@ -1,34 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products
-# 192-254 Reserved for local use
-
-192:192:Cond 25% pcpn smy fractile past 24 hrs:mm:EF25M
-193:193:Cond 50% pcpn smy fractile past 24 hrs:mm:EF50M
-194:194:Percent pcpn in 1st 6-h sub-period of 24 hr period:%:PCTP1
-195:195:Percent pcpn in 2nd 6-h sub-period of 24 hr period:%:PCTP2
-196:196:Percent pcpn in 3rd 6-h sub-period of 24 hr period:%:PCTP3
-197:197:Percent pcpn in 4th 6-h sub-period of 24 hr period:%:PCTP4
-198:198:Probability of 0.01 inches of precipitation:%:POP
-205:205:Accumulated Snow Depth:m:ASD
-207:207:Snow Cover (snow=250,clouds=100,neither=50)::SC
-208:208:Snow Cover by elevation (snow=0-252,neither=253,clouds=254):dm:SCE
-209:209:Snow water equivalent:cm:SCE
-210:210:Snow water equivalent percent of normal:%:SWEPN
-
-221:221:1-hr flash flood guidance:mm:FFG01
-222:222:3-hr flash flood guidance:mm:FFG03
-223:223:6-hr flash flood guidance:mm:FFG06
-224:224:12-hr flash flood guidance:mm:FFG12
-225:225:24-hr flash flood guidance:mm:FFG24
-226:226:1-hr flash flood runoff values:mm:FFR01
-227:227:3-hr flash flood runoff values:mm:FFR03
-228:228:6-hr flash flood runoff values:mm:FFR06
-229:229:12-hr flash flood runoff values:mm:FFR12
-230:230:24-hr flash flood runoff values:mm:FFR24
-
-
-237:237:1-hr Quantitative Precip Estimate:mm:QPE01_ORN
-239:239:6-hr Quantitative Precip Estimate:mm:QPE06_ORN
-242:242:24-hr Quantitative Precip Estimate:mm:QPE24_ORN
-
-247:247:6-hr Quantitative Precip Forecast:mm:QPF06_ORN
-250:250:24-hr Quantitative Precip Forecast:mm:QPF24_ORN
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/155/4.2.1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/155/4.2.1.0.table
deleted file mode 100644
index c6fd940b8e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/155/4.2.1.0.table
+++ /dev/null
@@ -1,34 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products
-# 192-254 Reserved for local use
-
-192:192:Cond 25% pcpn smy fractile past 24 hrs:mm:EF25M
-193:193:Cond 50% pcpn smy fractile past 24 hrs:mm:EF50M
-194:194:Percent pcpn in 1st 6-h sub-period of 24 hr period:%:PCTP1
-195:195:Percent pcpn in 2nd 6-h sub-period of 24 hr period:%:PCTP2
-196:196:Percent pcpn in 3rd 6-h sub-period of 24 hr period:%:PCTP3
-197:197:Percent pcpn in 4th 6-h sub-period of 24 hr period:%:PCTP4
-198:198:Probability of 0.01 inches of precipitation:%:POP
-205:205:Accumulated Snow Depth:m:ASD
-207:207:Snow Cover (snow=250,clouds=100,neither=50)::SC
-208:208:Snow Cover by elevation (snow=0-252,neither=253,clouds=254):dm:SCE
-209:209:Snow water equivalent:cm:SCE
-210:210:Snow water equivalent percent of normal:%:SWEPN
-
-221:221:1-hr flash flood guidance:mm:FFG01
-222:222:3-hr flash flood guidance:mm:FFG03
-223:223:6-hr flash flood guidance:mm:FFG06
-224:224:12-hr flash flood guidance:mm:FFG12
-225:225:24-hr flash flood guidance:mm:FFG24
-226:226:1-hr flash flood runoff values:mm:FFR01
-227:227:3-hr flash flood runoff values:mm:FFR03
-228:228:6-hr flash flood runoff values:mm:FFR06
-229:229:12-hr flash flood runoff values:mm:FFR12
-230:230:24-hr flash flood runoff values:mm:FFR24
-
-
-237:237:1-hr Quantitative Precip Estimate:mm:QPE01_RHA
-239:239:6-hr Quantitative Precip Estimate:mm:QPE06_RHA
-242:242:24-hr Quantitative Precip Estimate:mm:QPE24_RHA
-
-247:247:6-hr Quantitative Precip Forecast:mm:QPF06_RHA
-250:250:24-hr Quantitative Precip Forecast:mm:QPF24_RHA
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/156/4.2.1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/156/4.2.1.0.table
deleted file mode 100644
index 7372ebb40a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/156/4.2.1.0.table
+++ /dev/null
@@ -1,34 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products
-# 192-254 Reserved for local use
-
-192:192:Cond 25% pcpn smy fractile past 24 hrs:mm:EF25M
-193:193:Cond 50% pcpn smy fractile past 24 hrs:mm:EF50M
-194:194:Percent pcpn in 1st 6-h sub-period of 24 hr period:%:PCTP1
-195:195:Percent pcpn in 2nd 6-h sub-period of 24 hr period:%:PCTP2
-196:196:Percent pcpn in 3rd 6-h sub-period of 24 hr period:%:PCTP3
-197:197:Percent pcpn in 4th 6-h sub-period of 24 hr period:%:PCTP4
-198:198:Probability of 0.01 inches of precipitation:%:POP
-205:205:Accumulated Snow Depth:m:ASD
-207:207:Snow Cover (snow=250,clouds=100,neither=50)::SC
-208:208:Snow Cover by elevation (snow=0-252,neither=253,clouds=254):dm:SCE
-209:209:Snow water equivalent:cm:SCE
-210:210:Snow water equivalent percent of normal:%:SWEPN
-
-221:221:1-hr flash flood guidance:mm:FFG01
-222:222:3-hr flash flood guidance:mm:FFG03
-223:223:6-hr flash flood guidance:mm:FFG06
-224:224:12-hr flash flood guidance:mm:FFG12
-225:225:24-hr flash flood guidance:mm:FFG24
-226:226:1-hr flash flood runoff values:mm:FFR01
-227:227:3-hr flash flood runoff values:mm:FFR03
-228:228:6-hr flash flood runoff values:mm:FFR06
-229:229:12-hr flash flood runoff values:mm:FFR12
-230:230:24-hr flash flood runoff values:mm:FFR24
-
-
-237:237:1-hr Quantitative Precip Estimate:mm:QPE01_KRF
-239:239:6-hr Quantitative Precip Estimate:mm:QPE06_KRF
-242:242:24-hr Quantitative Precip Estimate:mm:QPE24_KRF
-
-247:247:6-hr Quantitative Precip Forecast:mm:QPF06_KRF
-250:250:24-hr Quantitative Precip Forecast:mm:QPF24_KRF
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/157/4.2.1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/157/4.2.1.0.table
deleted file mode 100644
index 1270023936..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/157/4.2.1.0.table
+++ /dev/null
@@ -1,34 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products
-# 192-254 Reserved for local use
-
-192:192:Cond 25% pcpn smy fractile past 24 hrs:mm:EF25M
-193:193:Cond 50% pcpn smy fractile past 24 hrs:mm:EF50M
-194:194:Percent pcpn in 1st 6-h sub-period of 24 hr period:%:PCTP1
-195:195:Percent pcpn in 2nd 6-h sub-period of 24 hr period:%:PCTP2
-196:196:Percent pcpn in 3rd 6-h sub-period of 24 hr period:%:PCTP3
-197:197:Percent pcpn in 4th 6-h sub-period of 24 hr period:%:PCTP4
-198:198:Probability of 0.01 inches of precipitation:%:POP
-205:205:Accumulated Snow Depth:m:ASD
-207:207:Snow Cover (snow=250,clouds=100,neither=50)::SC
-208:208:Snow Cover by elevation (snow=0-252,neither=253,clouds=254):dm:SCE
-209:209:Snow water equivalent:cm:SCE
-210:210:Snow water equivalent percent of normal:%:SWEPN
-
-221:221:1-hr flash flood guidance:mm:FFG01
-222:222:3-hr flash flood guidance:mm:FFG03
-223:223:6-hr flash flood guidance:mm:FFG06
-224:224:12-hr flash flood guidance:mm:FFG12
-225:225:24-hr flash flood guidance:mm:FFG24
-226:226:1-hr flash flood runoff values:mm:FFR01
-227:227:3-hr flash flood runoff values:mm:FFR03
-228:228:6-hr flash flood runoff values:mm:FFR06
-229:229:12-hr flash flood runoff values:mm:FFR12
-230:230:24-hr flash flood runoff values:mm:FFR24
-
-
-237:237:1-hr Quantitative Precip Estimate:mm:QPE01_MSR
-239:239:6-hr Quantitative Precip Estimate:mm:QPE06_MSR
-242:242:24-hr Quantitative Precip Estimate:mm:QPE24_MSR
-
-247:247:6-hr Quantitative Precip Forecast:mm:QPF06_MSR
-250:250:24-hr Quantitative Precip Forecast:mm:QPF24_MSR
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/158/4.2.1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/158/4.2.1.0.table
deleted file mode 100644
index 63766d774e..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/158/4.2.1.0.table
+++ /dev/null
@@ -1,34 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products
-# 192-254 Reserved for local use
-
-192:192:Cond 25% pcpn smy fractile past 24 hrs:mm:EF25M
-193:193:Cond 50% pcpn smy fractile past 24 hrs:mm:EF50M
-194:194:Percent pcpn in 1st 6-h sub-period of 24 hr period:%:PCTP1
-195:195:Percent pcpn in 2nd 6-h sub-period of 24 hr period:%:PCTP2
-196:196:Percent pcpn in 3rd 6-h sub-period of 24 hr period:%:PCTP3
-197:197:Percent pcpn in 4th 6-h sub-period of 24 hr period:%:PCTP4
-198:198:Probability of 0.01 inches of precipitation:%:POP
-205:205:Accumulated Snow Depth:m:ASD
-207:207:Snow Cover (snow=250,clouds=100,neither=50)::SC
-208:208:Snow Cover by elevation (snow=0-252,neither=253,clouds=254):dm:SCE
-209:209:Snow water equivalent:cm:SCE
-210:210:Snow water equivalent percent of normal:%:SWEPN
-
-221:221:1-hr flash flood guidance:mm:FFG01
-222:222:3-hr flash flood guidance:mm:FFG03
-223:223:6-hr flash flood guidance:mm:FFG06
-224:224:12-hr flash flood guidance:mm:FFG12
-225:225:24-hr flash flood guidance:mm:FFG24
-226:226:1-hr flash flood runoff values:mm:FFR01
-227:227:3-hr flash flood runoff values:mm:FFR03
-228:228:6-hr flash flood runoff values:mm:FFR06
-229:229:12-hr flash flood runoff values:mm:FFR12
-230:230:24-hr flash flood runoff values:mm:FFR24
-
-
-237:237:1-hr Quantitative Precip Estimate:mm:QPE01_TAR
-239:239:6-hr Quantitative Precip Estimate:mm:QPE06_TAR
-242:242:24-hr Quantitative Precip Estimate:mm:QPE24_TAR
-
-247:247:6-hr Quantitative Precip Forecast:mm:QPF06_TAR
-250:250:24-hr Quantitative Precip Forecast:mm:QPF24_TAR
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/159/4.2.1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/159/4.2.1.0.table
deleted file mode 100644
index c836ac2320..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/159/4.2.1.0.table
+++ /dev/null
@@ -1,34 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products
-# 192-254 Reserved for local use
-
-192:192:Cond 25% pcpn smy fractile past 24 hrs:mm:EF25M
-193:193:Cond 50% pcpn smy fractile past 24 hrs:mm:EF50M
-194:194:Percent pcpn in 1st 6-h sub-period of 24 hr period:%:PCTP1
-195:195:Percent pcpn in 2nd 6-h sub-period of 24 hr period:%:PCTP2
-196:196:Percent pcpn in 3rd 6-h sub-period of 24 hr period:%:PCTP3
-197:197:Percent pcpn in 4th 6-h sub-period of 24 hr period:%:PCTP4
-198:198:Probability of 0.01 inches of precipitation:%:POP
-205:205:Accumulated Snow Depth:m:ASD
-207:207:Snow Cover (snow=250,clouds=100,neither=50)::SC
-208:208:Snow Cover by elevation (snow=0-252,neither=253,clouds=254):dm:SCE
-209:209:Snow water equivalent:cm:SCE
-210:210:Snow water equivalent percent of normal:%:SWEPN
-
-221:221:1-hr flash flood guidance:mm:FFG01
-222:222:3-hr flash flood guidance:mm:FFG03
-223:223:6-hr flash flood guidance:mm:FFG06
-224:224:12-hr flash flood guidance:mm:FFG12
-225:225:24-hr flash flood guidance:mm:FFG24
-226:226:1-hr flash flood runoff values:mm:FFR01
-227:227:3-hr flash flood runoff values:mm:FFR03
-228:228:6-hr flash flood runoff values:mm:FFR06
-229:229:12-hr flash flood runoff values:mm:FFR12
-230:230:24-hr flash flood runoff values:mm:FFR24
-
-
-237:237:1-hr Quantitative Precip Estimate:mm:QPE01_PTR
-239:239:6-hr Quantitative Precip Estimate:mm:QPE06_PTR
-242:242:24-hr Quantitative Precip Estimate:mm:QPE24_PTR
-
-247:247:6-hr Quantitative Precip Forecast:mm:QPF06_PTR
-250:250:24-hr Quantitative Precip Forecast:mm:QPF24_PTR
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/160/4.2.1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/160/4.2.1.0.table
deleted file mode 100644
index 4875093fd7..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/160/4.2.1.0.table
+++ /dev/null
@@ -1,34 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products
-# 192-254 Reserved for local use
-
-192:192:Cond 25% pcpn smy fractile past 24 hrs:mm:EF25M
-193:193:Cond 50% pcpn smy fractile past 24 hrs:mm:EF50M
-194:194:Percent pcpn in 1st 6-h sub-period of 24 hr period:%:PCTP1
-195:195:Percent pcpn in 2nd 6-h sub-period of 24 hr period:%:PCTP2
-196:196:Percent pcpn in 3rd 6-h sub-period of 24 hr period:%:PCTP3
-197:197:Percent pcpn in 4th 6-h sub-period of 24 hr period:%:PCTP4
-198:198:Probability of 0.01 inches of precipitation:%:POP
-205:205:Accumulated Snow Depth:m:ASD
-207:207:Snow Cover (snow=250,clouds=100,neither=50)::SC
-208:208:Snow Cover by elevation (snow=0-252,neither=253,clouds=254):dm:SCE
-209:209:Snow water equivalent:cm:SCE
-210:210:Snow water equivalent percent of normal:%:SWEPN
-
-221:221:1-hr flash flood guidance:mm:FFG01
-222:222:3-hr flash flood guidance:mm:FFG03
-223:223:6-hr flash flood guidance:mm:FFG06
-224:224:12-hr flash flood guidance:mm:FFG12
-225:225:24-hr flash flood guidance:mm:FFG24
-226:226:1-hr flash flood runoff values:mm:FFR01
-227:227:3-hr flash flood runoff values:mm:FFR03
-228:228:6-hr flash flood runoff values:mm:FFR06
-229:229:12-hr flash flood runoff values:mm:FFR12
-230:230:24-hr flash flood runoff values:mm:FFR24
-
-
-237:237:1-hr Quantitative Precip Estimate:mm:QPE01_TIR
-239:239:6-hr Quantitative Precip Estimate:mm:QPE06_TIR
-242:242:24-hr Quantitative Precip Estimate:mm:QPE24_TIR
-
-247:247:6-hr Quantitative Precip Forecast:mm:QPF06_TIR
-250:250:24-hr Quantitative Precip Forecast:mm:QPF24_TIR
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/161/4.2.1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/161/4.2.1.0.table
deleted file mode 100644
index 8b5beab76a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/161/4.2.1.0.table
+++ /dev/null
@@ -1,34 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products
-# 192-254 Reserved for local use
-
-192:192:Cond 25% pcpn smy fractile past 24 hrs:mm:EF25M
-193:193:Cond 50% pcpn smy fractile past 24 hrs:mm:EF50M
-194:194:Percent pcpn in 1st 6-h sub-period of 24 hr period:%:PCTP1
-195:195:Percent pcpn in 2nd 6-h sub-period of 24 hr period:%:PCTP2
-196:196:Percent pcpn in 3rd 6-h sub-period of 24 hr period:%:PCTP3
-197:197:Percent pcpn in 4th 6-h sub-period of 24 hr period:%:PCTP4
-198:198:Probability of 0.01 inches of precipitation:%:POP
-205:205:Accumulated Snow Depth:m:ASD
-207:207:Snow Cover (snow=250,clouds=100,neither=50)::SC
-208:208:Snow Cover by elevation (snow=0-252,neither=253,clouds=254):dm:SCE
-209:209:Snow water equivalent:cm:SCE
-210:210:Snow water equivalent percent of normal:%:SWEPN
-
-221:221:1-hr flash flood guidance:mm:FFG01
-222:222:3-hr flash flood guidance:mm:FFG03
-223:223:6-hr flash flood guidance:mm:FFG06
-224:224:12-hr flash flood guidance:mm:FFG12
-225:225:24-hr flash flood guidance:mm:FFG24
-226:226:1-hr flash flood runoff values:mm:FFR01
-227:227:3-hr flash flood runoff values:mm:FFR03
-228:228:6-hr flash flood runoff values:mm:FFR06
-229:229:12-hr flash flood runoff values:mm:FFR12
-230:230:24-hr flash flood runoff values:mm:FFR24
-
-
-237:237:1-hr Quantitative Precip Estimate:mm:QPE01_ALR
-239:239:6-hr Quantitative Precip Estimate:mm:QPE06_ALR
-242:242:24-hr Quantitative Precip Estimate:mm:QPE24_ALR
-
-247:247:6-hr Quantitative Precip Forecast:mm:QPF06_ALR
-250:250:24-hr Quantitative Precip Forecast:mm:QPF24_ALR
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/162/4.2.1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/162/4.2.1.0.table
deleted file mode 100644
index a278eb6bdc..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/162/4.2.1.0.table
+++ /dev/null
@@ -1,34 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products
-# 192-254 Reserved for local use
-
-192:192:Cond 25% pcpn smy fractile past 24 hrs:mm:EF25M
-193:193:Cond 50% pcpn smy fractile past 24 hrs:mm:EF50M
-194:194:Percent pcpn in 1st 6-h sub-period of 24 hr period:%:PCTP1
-195:195:Percent pcpn in 2nd 6-h sub-period of 24 hr period:%:PCTP2
-196:196:Percent pcpn in 3rd 6-h sub-period of 24 hr period:%:PCTP3
-197:197:Percent pcpn in 4th 6-h sub-period of 24 hr period:%:PCTP4
-198:198:Probability of 0.01 inches of precipitation:%:POP
-205:205:Accumulated Snow Depth:m:ASD
-207:207:Snow Cover (snow=250,clouds=100,neither=50)::SC
-208:208:Snow Cover by elevation (snow=0-252,neither=253,clouds=254):dm:SCE
-209:209:Snow water equivalent:cm:SCE
-210:210:Snow water equivalent percent of normal:%:SWEPN
-
-221:221:1-hr flash flood guidance:mm:FFG01
-222:222:3-hr flash flood guidance:mm:FFG03
-223:223:6-hr flash flood guidance:mm:FFG06
-224:224:12-hr flash flood guidance:mm:FFG12
-225:225:24-hr flash flood guidance:mm:FFG24
-226:226:1-hr flash flood runoff values:mm:FFR01
-227:227:3-hr flash flood runoff values:mm:FFR03
-228:228:6-hr flash flood runoff values:mm:FFR06
-229:229:12-hr flash flood runoff values:mm:FFR12
-230:230:24-hr flash flood runoff values:mm:FFR24
-
-
-237:237:1-hr Quantitative Precip Estimate:mm:QPE01_FWR
-239:239:6-hr Quantitative Precip Estimate:mm:QPE06_FWR
-242:242:24-hr Quantitative Precip Estimate:mm:QPE24_FWR
-
-247:247:6-hr Quantitative Precip Forecast:mm:QPF06_FWR
-250:250:24-hr Quantitative Precip Forecast:mm:QPF24_FWR
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/170/4.2.1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/170/4.2.1.0.table
deleted file mode 100644
index a89a41f72d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/9/170/4.2.1.0.table
+++ /dev/null
@@ -1,39 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products
-# 192-254 Reserved for local use
-
-192:192:Cond 25% pcpn smy fractile past 24 hrs:mm:EF25M
-193:193:Cond 50% pcpn smy fractile past 24 hrs:mm:EF50M
-194:194:Percent pcpn in 1st 6-h sub-period of 24 hr period:%:PCTP1
-195:195:Percent pcpn in 2nd 6-h sub-period of 24 hr period:%:PCTP2
-196:196:Percent pcpn in 3rd 6-h sub-period of 24 hr period:%:PCTP3
-197:197:Percent pcpn in 4th 6-h sub-period of 24 hr period:%:PCTP4
-198:198:Probability of 0.01 inches of precipitation:%:POP
-205:205:Accumulated Snow Depth:m:ASD
-207:207:Snow Cover (snow=250,clouds=100,neither=50)::SC
-208:208:Snow Cover by elevation (snow=0-252,neither=253,clouds=254):dm:SCE
-209:209:Snow water equivalent:cm:SCE
-210:210:Snow water equivalent percent of normal:%:SWEPN
-
-221:221:1-hr flash flood guidance:mm:FFG01
-222:222:3-hr flash flood guidance:mm:FFG03
-223:223:6-hr flash flood guidance:mm:FFG06
-224:224:12-hr flash flood guidance:mm:FFG12
-225:225:24-hr flash flood guidance:mm:FFG24
-226:226:1-hr flash flood runoff values:mm:FFR01
-227:227:3-hr flash flood runoff values:mm:FFR03
-228:228:6-hr flash flood runoff values:mm:FFR06
-229:229:12-hr flash flood runoff values:mm:FFR12
-230:230:24-hr flash flood runoff values:mm:FFR24
-
-232:232:Precip rate:mm/hr:PR
-233:233:Precip rate:mm/hr:PR
-234:234:Storm total precip accum:mm:STPA
-235:235:Storm total precip accum:mm:STPA
-
-
-237:237:1-hr Quantitative Precip Estimate:mm:QPE01
-239:239:6-hr Quantitative Precip Estimate:mm:QPE06
-242:242:24-hr Quantitative Precip Estimate:mm:QPE24
-
-247:247:6-hr Quantitative Precip Forecast:mm:QPF06
-250:250:24-hr Quantitative Precip Forecast:mm:QPF24
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/0.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/0.0.table
deleted file mode 100644
index 92717fe3d6..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/0.0.table
+++ /dev/null
@@ -1,3 +0,0 @@
-#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/1.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/1.2.table
deleted file mode 100644
index 72ab6f4660..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/1.2.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 1.2, Significance of Reference Time
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/1.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/1.3.table
deleted file mode 100644
index c13615473c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/1.3.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 1.3, Production status of data
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/1.4.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/1.4.table
deleted file mode 100644
index 4c0f4587ea..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/1.4.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 1.4, Type of data
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.0.table
deleted file mode 100644
index d4d74444d2..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.0.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 3.0, Source of Grid Definition
-# 192-254 Reserved for local use
-255:255:A grid definition does not apply to this product
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.15.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.15.table
deleted file mode 100644
index bc205ca8ec..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.15.table
+++ /dev/null
@@ -1,25 +0,0 @@
-# CODE TABLE 3.15, Physical meaning of vertical coordinate
-# 0-19 Reserved
-20:20:Temperature:K:TMP
-# 21-99 Reserved
-100:100:Pressure:Pa:PRES
-101:101:Pressure deviation from mean sea level:Pa:PRESD
-102:102:Altitude above mean sea level:m:ALTMSL
-103:103:Height above ground (see Note 1):m:HGTAG
-104:104:Sigma coordinate
-105:105:Hybrid coordinate
-106:106:Depth below land surface:m:DPBLW
-107:pt:Potential temperature (theta):K:POT
-108:108:Pressure deviation from ground to level:Pa:PRESDEV
-109:pv:Potential vorticity:K *m^-2* kg^-1 *s^-1:PV
-110:110:Geometrical height:m:GHT
-111:111:Eta coordinate (see Note 2)
-112:112:Geopotential height:gpm:HGT
-# 113-159 Reserved
-160:160:Depth below sea level:m:DPMSL
-# 161-191 Reserved
-# 192-254 Reserved for local use
-255:255:Missing
-# Notes:
-# (1) Negative values associated to this coordinate will indicate depth below ground surface. If values are all below surface, use of entry 106 is recommended, with positive coordinate values instead.
-# (2) The Eta vertical coordinate system involves normalizing the pressure at some point on a specific level by the mean sea level pressure at that point.
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.2.table
deleted file mode 100644
index ac9521f630..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.2.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 3.2, Shape of the Earth
-# 192- 254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.20.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.20.table
deleted file mode 100644
index 704877e111..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.20.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 3.20, Type of horizontal line
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.21.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.21.table
deleted file mode 100644
index 64645b71b5..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.21.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 3.21, Vertical dimension coordinate values definition
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.8.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.8.table
deleted file mode 100644
index 1648d719be..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.8.table
+++ /dev/null
@@ -1,8 +0,0 @@
-# Code table 3.8: Grid point position
-0:0:Grid points at triangle vertices
-1:1:Grid points at centres of triangles
-2:2:Grid points at midpoints of triangle sides
-# 3-191 Reserved
-# 192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.9.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.9.table
deleted file mode 100644
index 562ebfaea6..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/3.9.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole
-1:0:Clockwise orientation
-1:1:Anti-clockwise (i.e., counter-clockwise) orientation
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.1.table
deleted file mode 100644
index 5cac0aa444..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.1.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.1, Category of parameters by product discipline
-#192-254 Reserved for Local Use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.10.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.10.table
deleted file mode 100644
index 39e385fcee..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.10.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.10, Type of statistical processing
-# 192 254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.12.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.12.table
deleted file mode 100644
index 78cd80e8be..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.12.table
+++ /dev/null
@@ -1,2 +0,0 @@
-# CODE TABLE 4.12, Operating Mode
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.13.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.13.table
deleted file mode 100644
index 84f5fae012..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.13.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.13, Quality Control Indicator
-#192-254 Reserved for local use
-255:255:Missing
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.14.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.14.table
deleted file mode 100644
index 6d09577539..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.14.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.14, Clutter Filter Indicator
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.0.table
deleted file mode 100644
index c8d5917c94..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.0.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 0: Temperature
-#192-254 Reserved for local use
-192:192:Snow Phase Change Heat Flux:W/m^2:SNOHF
-193:193:Temperature tendency by all radiation:K*s^-1:TTRAD
-255:255:Missing
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.1.table
deleted file mode 100644
index 39d8da9dec..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.1.table
+++ /dev/null
@@ -1,19 +0,0 @@
- # Product Discipline 0: Meteorological products, Parameter Category 1: Moisture
-192:192:Categorical Rain:non-dim:CRAIN
-193:193:Categorical Freezing Rain:non-dim:CFRZR
-194:194:Categorical Ice Pellets:non-dim:CICEP
-195:195:Categorical Snow:non-dim:CSNOW
-196:196:Convective Precipitation Rate:kg*m^-2*s^-1:CPRAT
-197:197:Horizontal Moisture Divergence:kg*kg^-1*s^-1:MCONV
-198:198
-199:199:Potential Evaporation:mm:PEVAP
-200:200:Potential Evaporation Rage:W/m^2:PEVPR
-201:201:Snow Cover:%:SNOWC
-202:202:Rain Fraction of Total Liquid Water:non-dim:FRAIN
-203:203:Rime Factor:non-dim:RIME
-204:204:Total Column Integrated Rain:mm:TCOLR
-205:205:Total Column Integrated Snow:mm:TCOLS
-206:206:Total Icing Potential Diagnostic:non-dim:TIPD
-207:207:Number concentration for ice particles:non-dim:NCIP
-208:208:Snow Temperature:K:SNOT
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.13.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.13.table
deleted file mode 100644
index 8a9933601f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.13.table
+++ /dev/null
@@ -1,9 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 13: Aerosols
-# 1-191 Reserved
-# 192-254 Reserved for local use
-192:192:Particulate matter (coarse):mg * m^-3:PMTC
-193:193:Particulate matter (fine):mg * m^-3:PMTF
-194:194:Particulate matter (fine):log10(mg * m^-3):LPMTF
-195:195:Integrated column particulate matter (fine):log10(mg * m^-3):LIPMF
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.14.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.14.table
deleted file mode 100644
index 90b4c4751b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.14.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 14: Trace Gases
-#192-254 Reserved for local use
-192:192:Ozone Mixing Ratio:kg * kg^-1:O3MR
-193:193:Ozone Concentration (PPB):PPB:OZCON
-194:194:Categorical Ozone Concentration:Non-Dim:OZCAT
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.15.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.15.table
deleted file mode 100644
index 10832dc85f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.15.table
+++ /dev/null
@@ -1,4 +0,0 @@
-# Product Discipline 0 - Meteorological products, Parameter Category 15: Radar
-# 192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.16.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.16.table
deleted file mode 100644
index 45dd37e4c5..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.16.table
+++ /dev/null
@@ -1,9 +0,0 @@
-# Product Discipline 0 - Meteorological products, Parameter Category 16: Forecast Radar Imagery
-# 0-191 Reserved
-# 192-254 Reserved for Local Use
-192:192:Derived radar reflectivity backscatter from rain:mm^6*m^-3:REFZR
-193:193:Derived radar reflectivity backscatter from ice:mm^6*m^-3:REFZI
-194:194:Derived radar reflectivity backscatter from parameterized convection:mm^6*m^-3:REFZC
-195:195:Derived radar reflectivity:dB:REFD
-196:196:Maximum/Composite radar reflectivity:dB:REFC
-255:255:Missing
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.17.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.17.table
deleted file mode 100644
index d7b9f06cfe..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.17.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# Product Discipline 0 - Meterological products, Paramater Category 17: Electrodynamics
-# 0-191 Reserved
-# 192-254 Reserved for Local Use
-192:192:Lightning:non-dim:LTNG
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.18.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.18.table
deleted file mode 100644
index 66afde201c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.18.table
+++ /dev/null
@@ -1,4 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 18: Nuclear/radiology
-#192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.19.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.19.table
deleted file mode 100644
index 2a0e663e79..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.19.table
+++ /dev/null
@@ -1,45 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 19: Physical atmospheric properties
-#192-254 Reserved for local use
-192:192:Maximum Snow Albedo:%:MXSALB
-193:193:Snow-Free Albedo:%:SNFALB
-194:194:Slight risk convective outlook:categorical:
-195:195:Moderate risk convective outlook
-196:196:High risk convective outlook
-197:197:Tornado probability:%:TRNDPROB
-198:198:Hail probability:%:HAILPROB
-199:199:Wind Probability:%:WINDPROB
-200:200:Significant Tornado probability:%:SIGTRNDPROB
-201:201:Significant Hail probability:%:SIGHAILPROB
-202:202:Significant Wind probability:%:SIGWINDPROB
-203:203:Categorical Thunderstorm (1-yes, 0-no):categorical:TSTMC
-204:204:Number of mixed layers next to surface:integer:MIXLY
-205:205:Flight Category:FLGHT
-206:206:Confidence - Ceiling:CICEL
-207:207:Confidence - Visibility:CIVIS
-208:208:Confidence - Flight Category:CIFLT
-209:209:Low-Level aviation interest:LAVNI
-210:210:High-Level aviation interest:HAVNI
-211:211:Visible, Black Sky Albedo:SBSALB
-212:212:Visible, White Sky Albedo:SWSALB
-213:213:Near IR, Black Sky Albedo:NBSALB
-214:214:Near IR, White Sky Albedo:NWSALB
-215:215:Total Probability of Severe Thunderstorms (Days 2,3):PRSVR
-216:216:Total Probability of Extreme Severe Thunderstorms (Days 2,3):%:PRSIGSV
-217:217:Mean Icing Potential:mm:MEI
-218:218:Maximum Icing Potential:mm:MAIP
-219:219:Mean in-Cloud Turbulence Potential:mm:MECTP
-220:220:Max in-Cloud Turbulence Potential:mm:MACTP
-221:221:Mean Cloud Air Turbulence Potential:mm:MECAT
-222:222:Maximum Cloud Air Turbulence Potential:mm:MACAT
-223:223:Cumulonimbus Horizontal Exten:%:CBHE
-224:224:Pressure at Cumulonimbus Bas:Pa:PCBB
-225:225:Pressure at Cumulonimbus To:Pa:PCBT
-226:226:Pressure at Embedded Cumulonimbus Bas:Pa:PECBB
-227:227:Pressure at Embedded Cumulonimbus To:Pa:PECBT
-228:228:ICAO Height at Cumulonimbus Bas:m:HCBB
-229:229:ICAO Height at Cumulonimbus To:m:HCBT
-230:230:ICAO Height at Embedded Cumulonimbus Bas:m:HECBB
-231:231:ICAO Height at Embedded Cumulonimbus To:m:HECBT
-232:232:Volcanic Ash Forecast Transport and Dispersion:log10(kg/m3):VAFTD
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.190.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.190.table
deleted file mode 100644
index 8e801f764a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.190.table
+++ /dev/null
@@ -1,4 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 190: CCITT IA5 string
-# 192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.191.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.191.table
deleted file mode 100644
index 3cc12525d5..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.191.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 191: Miscellaneous
-# 192-254 Reserved for local use
-192:192:Latitude (-90 to +90):deg:NLAT
-193:193:East Longitude (0 - 360):deg:ELON
-194:194:Seconds prior to initial reference time:s:TSEC
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.2.table
deleted file mode 100644
index 93973317e5..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.2.table
+++ /dev/null
@@ -1,9 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 2: Momentum
-# 192-254 Reserved for local use
-192:192:Vertical speed sheer:s^-1:VWSH
-193:193:Horizontal Momentum Flux:N * m-2:MFLX
-194:194:U-Component Storm Motion:m/s:USTM
-195:195:V-Component Storm Motion:m/s:VSTM
-196:Drag Coefficient:non-dim:CD
-197:197:Frictional Velocity:m/s:FRICV
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.3.table
deleted file mode 100644
index 66772c6a0d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.3.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 3: Mass
-# 192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.4.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.4.table
deleted file mode 100644
index b8bd0537cf..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.4.table
+++ /dev/null
@@ -1,9 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 4: Short-wave Radiation
-#192-254 Reserved for local use
-192:192:Downward Short-W/m^2:DSWRF
-193:193:Upward Short-W/m^2:USWRF
-194:194:UV-B downward solar flux:W/m^2:DUVB
-195:195:Clear sky UV-B downward solar flux:W/m^2:CDUVB
-196:196:Clear sky downward solar flux:W/m^2:CSDSF
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.5.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.5.table
deleted file mode 100644
index 9c1b487025..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.5.table
+++ /dev/null
@@ -1,6 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 5: Long-wave Radiation
-#192-254 Reserved for local use
-192:192:Downward Long-W/m^2:DLWRF
-193:193:Upward Long-W/m^2:ULWRF
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.6.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.6.table
deleted file mode 100644
index 2af6f01c89..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.6.table
+++ /dev/null
@@ -1,12 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 6: Cloud
-# 192-254 Reserved for local use
-192:192:Non-Convective Cloud Cover:%:CDLYR
-193:193:Cloud Work Function:J/kg:CWORK
-194:194:Convective Cloud Efficiency:non-dim:CUEFI
-195:195:Total Condensate:kg * kg^-1:TCOND
-196:196:Total Column-Integrated Cloud Water:mm:TCOLW
-197:197:Total Column-Integrated Cloud Ice:mm:TCOLI
-198:198:Total Column-Integrated Condensate:mm:TCOLC
-199:199:Ice fraction of total condensate:non-dim:FICE
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.7.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.7.table
deleted file mode 100644
index 54052e455c..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.0.7.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# Product Discipline 0: Meteorological products, Parameter Category 7: Thermodynamic Stability Indices
-#192-254 Reserved for local use
-192:192:Surface Lifted Index:K:LFTX
-193:193:Best (4 layer) Lifted Index:K:4LFTX
-194:194:Richardson Number:Numeric:RI
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.1.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.1.0.table
deleted file mode 100644
index 5f35228eef..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.1.0.table
+++ /dev/null
@@ -1,8 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products
-# 192-254 Reserved for local use
-255:255:Missing
-# Notes:
-# (1) Remotely sensed snow cover is expressed as a field of dimensionless, thematic values. The currently accepted values are for no-snow/no-cloud, 50, for clouds, 100, and for snow, 250. See code table 4.215.
-# (2) A data field representing snow coverage by elevation portrays at which elevations there is a snow pack. The elevation values typically range from 0 to 90 in 100 m increments. A value of 253 is used to represent a no-snow/no-cloud data point. A value of 254 is used to represent a data point at which snow elevation could not be estimated because of clouds obscuring the remote sensor (when using aircraft or satellite measurements).
-# (3) Snow water equivalent percent of normal is stored in percent of normal units. For example, a value of 110 indicates 110 percent of the normal snow water equivalent for a given depth of snow.
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.1.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.1.1.table
deleted file mode 100644
index fe607a66ec..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.1.1.table
+++ /dev/null
@@ -1,7 +0,0 @@
-# Product Discipline 1: Hydrologic products, Parameter Category 1: Hydrology probabilities
-#192-254 Reserved for local use
-192:192:Probability of Freezing Precipitation:%:PFREZPREC
-193:193:Probability of Frozen Precipitation:%:PFROZPREC
-194:194:Probability of precipitation exceeding flash flood guidance values:%:PPFFG
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.10.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.10.0.table
deleted file mode 100644
index 305da8b9b2..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.10.0.table
+++ /dev/null
@@ -1,5 +0,0 @@
-# Product Discipline 10: Oceanographic products, Parameter Category 0: Waves
-# 192-254 Reserved for local use
-255:255:Missing
-
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.10.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.10.1.table
deleted file mode 100644
index ae19d6cd16..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.10.1.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# Product Discipline 10: Oceanographic products, Parameter Category 1: Currents
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.10.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.10.2.table
deleted file mode 100644
index 248402c91b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.10.2.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# Product Discipline 10: Oceanographic products, Parameter Category 2: Ice
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.10.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.10.3.table
deleted file mode 100644
index 2ee7327d08..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.10.3.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# Product Discipline 10: Oceanographic products, Parameter Category 3: Surface Properties
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.10.4.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.10.4.table
deleted file mode 100644
index 24eb58ef4b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.10.4.table
+++ /dev/null
@@ -1,4 +0,0 @@
-# Product Discipline 10: Oceanographic products, Parameter Category 4: Sub-surface Properties
-#192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.2.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.2.0.table
deleted file mode 100644
index 04471fe3eb..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.2.0.table
+++ /dev/null
@@ -1,20 +0,0 @@
-# Product Discipline 2: Land surface products, Parameter Category 0: Vegetation/Biomass
-#192-254 Reserved for local use
-192:192:Volumetric soil moisture content:Proportion:SOILW
-193:192:Ground heat flux:W/m^2:GFLUX
-194:194:Moisture availability:%:MSTAV
-195:195:Exchange coefficient:kg*m^-2*s^-1:SFEXC
-196:196:Plant canopy surface water:mm:CNWAT
-197:197:Blackadars mixing length scale:m:BMIXL
-198:198:Vegetation Type:Integer 0-13:VGTYP
-199:199:Canopy conductance:m/s:CCOND
-200:200:Minimal stomatal resistance:s/m:RSMIN
-201:201:Wilting point:Proportion:WILT
-202:202:Solar parameter in canopy conductance:Fraction:RCS
-203:203:Temperature parameter in canopy conductance:Fraction:RCT
-204:204:Humidity parameterin canopy conductance:Fraction:RCQ
-205:205:Soil moisture parameter in canopy conductance:Fraction:RCSOL
-206:206:Rate of water dropping from canopy to:RDRIP:ground
-207:207:Ice-free water:ICWAT:surface
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.2.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.2.3.table
deleted file mode 100644
index 3e54c38f7a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.2.3.table
+++ /dev/null
@@ -1,10 +0,0 @@
-# Product Discipline 2: Land surface products, Parameter Category 3: Soil Products
-#192-254 Reserved for local use
-192:192:Liquid volumetric soil moisture (non-frozen):Proportion:SOILL
-193:193:Number of soil layers in root zone:non-dim:RLYRS
-194:194:Surface Slope Type:Index:SLTYP
-195:195:Transpiration stress-onset (soil moisture):Proportion:SMREF
-196:196:Direct evaporation cease (soil moisture):Proportion:SMDRY
-197:197:Soil porosity:Proportion:POROS
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.3.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.3.0.table
deleted file mode 100644
index 2b170ff4c7..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.3.0.table
+++ /dev/null
@@ -1,4 +0,0 @@
-# Product discipline 3: Space products, Parameter Category 0: Image format products
-#192-254 Reserved for local use
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.3.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.3.1.table
deleted file mode 100644
index d528d034dc..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.2.3.1.table
+++ /dev/null
@@ -1,6 +0,0 @@
-# Product Discipline 3: Space products, Parameter Category 1: Quantitative products
-#192-254 Reserved for local use
-192:192:Scatterometer Estimated U Wind Component:m/s:SCESTUWIND
-193:193:Scatterometer Estimated V Wind Component:m/s:SCESTVWIND
-255:255:Missing
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.201.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.201.table
deleted file mode 100644
index ff854f8ce0..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.201.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.201, Precipitation Type
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.202.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.202.table
deleted file mode 100644
index 72b3e924a3..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.202.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.202, Precipitable water category
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.203.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.203.table
deleted file mode 100644
index 194a617dca..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.203.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.203, Cloud type
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.204.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.204.table
deleted file mode 100644
index 6dd8eddad0..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.204.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.204, Thunderstorm coverage
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.205.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.205.table
deleted file mode 100644
index d3a10a9f42..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.205.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.205, Aerosol type
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.206.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.206.table
deleted file mode 100644
index ad38ec23d8..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.206.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.206, Volcanic ash
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.207.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.207.table
deleted file mode 100644
index 0da827c63d..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.207.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.207, Icing
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.208.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.208.table
deleted file mode 100644
index 3e80d5eb91..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.208.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.208, Turbulence
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.209.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.209.table
deleted file mode 100644
index be768523e3..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.209.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.209, Planetary boundary layer regime
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.210.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.210.table
deleted file mode 100644
index 73878e3578..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.210.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.210, Contrail intensity
-#192-254 Reserved for local use
-255:255:Missing
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.211.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.211.table
deleted file mode 100644
index de31f82779..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.211.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.211, Contrail engine type
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.212.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.212.table
deleted file mode 100644
index 3772bedb61..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.212.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.212, Land Use
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.213.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.213.table
deleted file mode 100644
index 772b1b17de..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.213.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE:TABLE:4.213, Soil type
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.215.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.215.table
deleted file mode 100644
index 210fd51310..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.215.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.215, Remotely Sensed Snow Coverage
-#251-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.217.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.217.table
deleted file mode 100644
index a934b4fdd3..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.217.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.217, Cloud mask type
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.220.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.220.table
deleted file mode 100644
index 9c8153ca5f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.220.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.220, Horizontal dimension processed
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.221.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.221.table
deleted file mode 100644
index 2999590ab8..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.221.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.221, Treatment of missing data
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.222.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.222.table
deleted file mode 100644
index fff52f9756..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.222.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.222, Categorical Result (NCEP)
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.3.table
deleted file mode 100644
index 21d3a1452a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.3.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.3, Type of generating process
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.4.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.4.table
deleted file mode 100644
index 1d8c4f940b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.4.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.4, Indicator of unit of time range
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.5.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.5.table
deleted file mode 100644
index da01ce3c17..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.5.table
+++ /dev/null
@@ -1,37 +0,0 @@
-#Code:table:4.5: Fixed surface types and units
-#192-254 Reserved for local use
-200:200:Entire atmosphere (considered as a single layer)::EATM
-201:201:Entire ocean (considered as a single layer)::EOCN
-204:204:Highest tropospheric freezing level::HTFL
-206:206:Grid scale cloud bottom level::GCBL
-207:207:Grid scale cloud top level::GCTL
-209:209:Boundary layer cloud bottom level::BCBL
-210:210:Boundary layer cloud top level::BCTL
-211:211:Boundary layer cloud layer::BCY
-212:212:Low cloud bottom level::LCBL
-213:213:Low cloud top level::LCTL
-214:214:Low cloud layer::LCY
-215:215:Cloud ceiling::CCL
-222:222:Middle cloud bottom level::MCBL
-223:223:Middle cloud top level::MCTL
-224:224:Middle cloud layer::MCY
-232:232:High cloud bottom level::HCBL
-233:233:High cloud top level::HCTL
-234:234:High cloud layer::HCL
-235:235:Ocean Isotherm Level (1/10 deg C):C:OITL
-236:236:Layer between two depths below ocean surface::OLYR
-237:237:Bottom of Ocean Mixed Layer (m):m:OBML
-238:238:Bottom of Ocean Isothermal Layer:m:OBIL
-242:242:Convective cloud bottom level::CCBL
-243:243:Convective cloud top level::CCTL
-244:244:Convective cloud::CCY
-245:245:Lowest level of the wet bulb zero::LLTW
-246:246:Maximum equivalent potential temperature level::MTHE
-247:247:Equilibrium level::EHLT
-248:248:Shallow convective cloud bottom level::SCBL
-249:249:Shallow convective cloud top level::SCTL
-251:251:Deep convective cloud bottom level::DCBL
-252:252:Deep convective cloud top level::DCTL
-253:253:Lowest bottom level of supercooled liquid water layer::LSCLW
-254:254:Highest top level of supercooled liquid water layer::HSCLW
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.6.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.6.table
deleted file mode 100644
index 1b7c8c5af9..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.6.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.6, Type of ensemble forecast
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.7.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.7.table
deleted file mode 100644
index ef8484bffc..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.7.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.7, Derived forecast
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.8.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.8.table
deleted file mode 100644
index 25f097a5e7..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.8.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.8, Clustering Method
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.9.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.9.table
deleted file mode 100644
index e1e3edd4bf..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/4.9.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 4.9, Probability Type
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.0.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.0.table
deleted file mode 100644
index a6fb156692..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.0.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 5.0, Data Representation Template Number
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.1.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.1.table
deleted file mode 100644
index 3ff7c82608..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.1.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 5.1, Type of original field values
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.2.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.2.table
deleted file mode 100644
index cf2c0a2e8b..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.2.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 5.2, Matrix coordinate value function definition
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.3.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.3.table
deleted file mode 100644
index f8b651ac4f..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.3.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 5.3, Matrix coordinate parameter
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.5.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.5.table
deleted file mode 100644
index a3e22f4dbe..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.5.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 5.5, Missing Value Management for Complex Packing
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.6.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.6.table
deleted file mode 100644
index fee1f01670..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/5.6.table
+++ /dev/null
@@ -1,3 +0,0 @@
-# CODE TABLE 5.6, Order of Spatial Differencing
-#192-254 Reserved for local use
-255:255:Missing
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/A.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/A.table
deleted file mode 100644
index 62ef54b93a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/A.table
+++ /dev/null
@@ -1,256 +0,0 @@
-0:0:ECMWF
-1:1:ECMWF
-2:2:ECMWF
-3:3:ECMWF
-4:4:ECMWF
-5:5:ECMWF
-6:6:ECMWF
-7:7:ECMWF
-8:8:ECMWF
-9:9:ECMWF
-10:10:ECMWF
-11:11:ECMWF
-12:12:ECMWF
-13:13:ECMWF
-14:14:ECMWF
-15:15:ECMWF
-16:16:ECMWF
-17:17:ECMWF
-18:18:ECMWF
-19:19:ECMWF
-20:20:ECMWF
-21:21:ECMWF
-22:22:ECMWF
-23:23:ECMWF
-24:24:ECMWF
-25:25:ECMWF
-26:26:ECMWF
-27:27:ECMWF
-28:28:ECMWF
-29:29:ECMWF
-30:30:ECMWF
-31:31:ECMWF
-32:32:ECMWF
-33:33:ECMWF
-34:34:ECMWF
-35:35:ECMWF
-36:36:ECMWF
-37:37:ECMWF
-38:38:ECMWF
-39:39:ECMWF
-40:40:ECMWF
-41:41:ECMWF
-42:42:ECMWF
-43:43:ECMWF
-44:44:ECMWF
-45:45:ECMWF
-46:46:ECMWF
-47:47:ECMWF
-48:48:ECMWF
-49:49:ECMWF
-50:50:ECMWF
-51:51:ECMWF
-52:52:ECMWF
-53:53:ECMWF
-54:54:ECMWF
-55:55:ECMWF
-56:56:ECMWF
-57:57:ECMWF
-58:58:ECMWF
-59:59:ECMWF
-60:60:ECMWF
-61:61:ECMWF
-62:62:ECMWF
-63:63:ECMWF
-64:64:ECMWF
-65:65:ECMWF
-66:66:ECMWF
-67:67:ECMWF
-68:68:ECMWF
-69:69:ECMWF
-70:70:ECMWF
-71:71:ECMWF
-72:72:ECMWF
-73:73:ECMWF
-74:74:ECMWF
-75:75:ECMWF
-76:76:ECMWF
-77:77:ECMWF
-78:78:ECMWF
-79:79:ECMWF
-80:80:ECMWF
-81:81:ECMWF
-82:82:ECMWF
-83:83:ECMWF
-84:84:ECMWF
-85:85:ECMWF
-86:86:ECMWF
-87:87:ECMWF
-88:88:ECMWF
-89:89:ECMWF
-90:90:ECMWF
-91:91:ECMWF
-92:92:ECMWF
-93:93:ECMWF
-94:94:ECMWF
-95:95:ECMWF
-96:96:ECMWF
-97:97:ECMWF
-98:98:ECMWF
-99:99:ECMWF
-100:100:ECMWF
-101:101:ECMWF
-102:102:ECMWF
-103:103:ECMWF
-104:104:ECMWF
-105:105:ECMWF
-106:106:ECMWF
-107:107:ECMWF
-108:108:ECMWF
-109:109:ECMWF
-110:110:ECMWF
-111:111:ECMWF
-112:112:ECMWF
-113:113:ECMWF
-114:114:ECMWF
-115:115:ECMWF
-116:116:ECMWF
-117:117:ECMWF
-118:118:ECMWF
-119:119:ECMWF
-120:120:ECMWF
-121:121:ECMWF
-122:122:ECMWF
-123:123:ECMWF
-124:124:ECMWF
-125:125:ECMWF
-126:126:ECMWF
-127:127:ECMWF
-128:128:ECMWF
-129:129:ECMWF
-130:130:ECMWF
-131:131:ECMWF
-132:132:ECMWF
-133:133:ECMWF
-134:134:ECMWF
-135:135:ECMWF
-136:136:ECMWF
-137:137:ECMWF
-138:138:ECMWF
-139:139:ECMWF
-140:140:ECMWF
-141:141:ECMWF
-142:142:ECMWF
-143:143:ECMWF
-144:144:ECMWF
-145:145:ECMWF
-146:146:ECMWF
-147:147:ECMWF
-148:148:ECMWF
-149:149:ECMWF
-150:150:ECMWF
-151:151:ECMWF
-152:152:ECMWF
-153:153:ECMWF
-154:154:ECMWF
-155:155:ECMWF
-156:156:ECMWF
-157:157:ECMWF
-158:158:ECMWF
-159:159:ECMWF
-160:160:ECMWF
-161:161:ECMWF
-162:162:ECMWF
-163:163:ECMWF
-164:164:ECMWF
-165:165:ECMWF
-166:166:ECMWF
-167:167:ECMWF
-168:168:ECMWF
-169:169:ECMWF
-170:170:ECMWF
-171:171:ECMWF
-172:172:ECMWF
-173:173:ECMWF
-174:174:ECMWF
-175:175:ECMWF
-176:176:ECMWF
-177:177:ECMWF
-178:178:ECMWF
-179:179:ECMWF
-180:180:ECMWF
-181:181:ECMWF
-182:182:ECMWF
-183:183:ECMWF
-184:184:ECMWF
-185:185:ECMWF
-186:186:ECMWF
-187:187:ECMWF
-188:188:ECMWF
-189:189:ECMWF
-190:190:ECMWF
-191:191:ECMWF
-192:192:ECMWF
-193:193:ECMWF
-194:194:ECMWF
-195:195:ECMWF
-196:196:ECMWF
-197:197:ECMWF
-198:198:ECMWF
-199:199:ECMWF
-200:200:ECMWF
-201:201:ECMWF
-202:202:ECMWF
-203:203:ECMWF
-204:204:ECMWF
-205:205:ECMWF
-206:206:ECMWF
-207:207:ECMWF
-208:208:ECMWF
-209:209:ECMWF
-210:210:ECMWF
-211:211:ECMWF
-212:212:ECMWF
-213:213:ECMWF
-214:214:ECMWF
-215:215:ECMWF
-216:216:ECMWF
-217:217:ECMWF
-218:218:ECMWF
-219:219:ECMWF
-220:220:ECMWF
-221:221:ECMWF
-222:222:ECMWF
-223:223:ECMWF
-224:224:ECMWF
-225:225:ECMWF
-226:226:ECMWF
-227:227:ECMWF
-228:228:ECMWF
-229:229:ECMWF
-230:230:ECMWF
-231:231:ECMWF
-232:232:ECMWF
-233:233:ECMWF
-234:234:ECMWF
-235:235:ECMWF
-236:236:ECMWF
-237:237:ECMWF
-238:238:ECMWF
-239:239:ECMWF
-240:240:ECMWF
-241:241:ECMWF
-242:242:ECMWF
-243:243:ECMWF
-244:244:ECMWF
-245:245:ECMWF
-246:246:ECMWF
-247:247:ECMWF
-248:248:ECMWF
-249:249:ECMWF
-250:250:ECMWF
-251:251:ECMWF
-252:252:ECMWF
-253:253:ECMWF
-254:254:ECMWF
-255:255:ECMWF
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/C.table b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/C.table
deleted file mode 100644
index aff0b64bec..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/tables/98/0/C.table
+++ /dev/null
@@ -1 +0,0 @@
-0:0:ECMWF
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/thinnedModels/AVN.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/thinnedModels/AVN.xml
deleted file mode 100644
index fcf2650d9a..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/thinnedModels/AVN.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
- AVN-NorthernHemisphere
- 371
- AVN37:AVN38:AVN39:AVN40
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/thinnedModels/ECMWF-LoResNH.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/thinnedModels/ECMWF-LoResNH.xml
deleted file mode 100644
index 314eb3a8b1..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/thinnedModels/ECMWF-LoResNH.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
- ECMF-NorthernHemisphere
- 372
- ECMF2:ECMF1:ECMF4:ECMF3
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/thinnedModels/ECMWF-LoResTropicalBelt.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/thinnedModels/ECMWF-LoResTropicalBelt.xml
deleted file mode 100644
index 470df73752..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/thinnedModels/ECMWF-LoResTropicalBelt.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
- ECMF-Tropical
- 373
- ECMF6:ECMF5:ECMF8:ECMF7
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/thinnedModels/GFSensemble.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/thinnedModels/GFSensemble.xml
deleted file mode 100644
index c6573e50f3..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/thinnedModels/GFSensemble.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
- ENSEMBLE
- 371
- ENSEMBLE37:ENSEMBLE38:ENSEMBLE39:ENSEMBLE40
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/thinnedModels/UKMET.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/thinnedModels/UKMET.xml
deleted file mode 100644
index fbbd13ac42..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/thinnedModels/UKMET.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
- UKMET-NorthernHemisphere
- 371
- UKMET37:UKMET38:UKMET39:UKMET40
-
\ No newline at end of file
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ucar/glerl.tab b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ucar/glerl.tab
deleted file mode 100644
index f6c3a3edc4..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ucar/glerl.tab
+++ /dev/null
@@ -1,257 +0,0 @@
--1:7:-1:2
-0:var0:undefined
-1:PRES:Pressure [Pa]
-2:PRMSL:Pressure reduced to MSL [Pa]
-3:PTEND:Pressure tendency [Pa/s]
-4:PVORT:Pot vorticity [km^2/kg/s]
-5:ICAHT:ICAO Standard Atmosphere Reference Height [M]
-6:GP:Geopotential [m^2/s^2]
-7:HGT:Geopotential height [gpm]
-8:DIST:Geometric height [m]
-9:HSTDV:Std dev of height [m]
-10:TOZNE:Total ozone [Dobson]
-11:TMP:Temperature [K]
-12:VTMP:Virtual temperature [K]
-13:POT:Potential temperature [K]
-14:EPOT:Pseudo-adiabatic pot temperature [K]
-15:TMAX:Max temperature [K]
-16:TMIN:Min temperature [K]
-17:DPT:Dew point temperature [K]
-18:DEPR:Dew point depression [K]
-19:LAPR:Lapse rate [K/m]
-20:VIS:Visibility [m]
-21:RDSP1:Radar spectra 1 [non-dim]
-22:RDSP2:Radar spectra 2 [non-dim]
-23:RDSP3:Radar spectra 3 [non-dim]
-24:PLI:Parcel lifted index to 500 hPa [K]
-25:TMPA:Temperature anomaly [K]
-26:PRESA:Pressure anomaly [Pa]
-27:GPA:Geopotential height anomaly [gpm]
-28:WVSP1:Wave spectra 1 [non-dim]
-29:WVSP2:Wave spectra 2 [non-dim]
-30:WVSP3:Wave spectra 3 [non-dim]
-31:WDIR:Wind direction [degrees]
-32:WIND:Wind speed [m/s]
-33:UGRD:u wind [m/s]
-34:VGRD:v wind [m/s]
-35:STRM:Stream function [m^2/s]
-36:VPOT:Velocity potential [m^2/s]
-37:MNTSF:Montgomery stream function [m^2/s^2]
-38:SGCVV:Sigma coord vertical velocity [/s]
-39:VVEL:Pressure vertical velocity [Pa/s]
-40:DZDT:Geometric vertical velocity [m/s]
-41:ABSV:Absolute vorticity [1/s]
-42:ABSD:Absolute divergence [1/s]
-43:RELV:Relative vorticity [1/s]
-44:RELD:Relative divergence [1/s]
-45:VUCSH:Vertical u shear [1/s]
-46:VVCSH:Vertical v shear [1/s]
-47:DIRC:Direction of current [degrees]
-48:SPC:Speed of current [m/s]
-49:UOGRD:u of current [m/s]
-50:VOGRD:v of current [m/s]
-51:SPFH:Specific humidity [kg/kg]
-52:RH:Relative humidity [%]
-53:MIXR:Humidity mixing ratio [kg/kg]
-54:PWAT:Precipitable water [kg/m^2]
-55:VAPP:Vapor pressure [Pa]
-56:SATD:Saturation deficit [Pa]
-57:EVP:Evaporation [kg/m^2]
-58:CICE:Cloud Ice [kg/kg]
-59:PRATE:Precipitation rate [kg/m^2/s]
-60:TSTM:Thunderstorm probability [%]
-61:APCP:Total precipitation [kg/m^2]
-62:NCPCP:Large scale precipitation [kg/m^2]
-63:ACPCP:Convective precipitation [kg/m^2]
-64:SRWEQ:Snowfall rate water equiv [kg/m^2/s]
-65:WEASD:Accumulated snow [kg/m^2]
-66:SNOD:Snow depth [m]
-67:MIXHT:Mixed layer depth [m]
-68:TTHDP:Transient thermocline depth [m]
-69:MTHD:Main thermocline depth [m]
-70:MTHA:Main thermocline anomaly [m]
-71:TCDC:Total cloud cover [%]
-72:CDCON:Convective cloud cover [%]
-73:LCDC:Low level cloud cover [%]
-74:MCDC:Mid level cloud cover [%]
-75:HCDC:High level cloud cover [%]
-76:CWAT:Cloud water [kg/kg]
-77:BLI:Best lifted index to 500 hPa [K]
-78:SNOC:Convective snow [kg/m^2]
-79:SNOL:Large scale snow [kg/m^2]
-80:WTMP:Water temperature [K]
-81:LAND:Land cover land=1;sea=0 []
-82:DSLM:Deviation of sea level from mean [m]
-83:SFCR:Surface roughness [m]
-84:ALBDO:Albedo [%]
-85:TSOIL:Soil temperature [K]
-86:SOILM:Soil moisture content [kg/m^2]
-87:VEG:Vegetation [%]
-88:SALTY:Salinity [kg/kg]
-89:DEN:Density [kg/m^3]
-90:WATR:Water runoff [kg/m^2]
-91:ICEC:Ice concentration ice=1;no ice=0 [fraction]
-92:ICETK:Ice thickness [m]
-93:DICED:Direction of ice drift [degrees]
-94:SICED:Speed of ice drift [m/s]
-95:UICE:u of ice drift [m/s]
-96:VICE:v of ice drift [m/s]
-97:ICEG:Ice growth rate [m/s]
-98:ICED:Ice divergence [/s]
-99:SNOM:Snow melt [kg/m^2]
-100:HTSGW:Sig height of wind waves and swell [m]
-101:WVDIR:Direction of wind waves [degrees]
-102:WVHGT:Sig height of wind waves [m]
-103:WVPER:Mean period of wind waves [s]
-104:SWDIR:Direction of swell waves [degrees]
-105:SWELL:Sig height of swell waves [m]
-106:SWPER:Mean period of swell waves [s]
-107:DIRPW:Primary wave direction [degrees]
-108:PERPW:Primary wave mean period [s]
-109:DIRSW:Secondary wave direction [degrees]
-110:PERSW:Secondary wave mean period [s]
-111:NSWRS:Net short wave surface [W/m^2]
-112:NLWRS:Net long wave surface [W/m^2]
-113:NSWRT:Net short wave top [W/m^2]
-114:NLWRT:Net long wave top [W/m^2]
-115:LWAVR:Long wave [W/m^2]
-116:SWAVR:Short wave [W/m^2]
-117:GRAD:Global radiation [W/m^2]
-118:BRTMP:Brightness temperature [K]
-119:LWRAD:Radiance with respect to wave no [W/m/sr]
-120:SWRAD:Radiance with respect ot wave len [W/m^3/sr]
-121:LHTFL:Latent heat flux [W/m^2]
-122:SHTFL:Sensible heat flux [W/m^2]
-123:BLYDP:Boundary layer dissipation [W/m^2]
-124:UFLX:Zonal momentum flux [N/m^2]
-125:VFLX:Meridional momentum flux [N/m^2]
-126:WMIXE:Wind mixing energy [J]
-127:IMGD:Image data []
-128:MSLSA:Mean sea level pressure Std Atm [Pa]
-129:MSLMA:Mean sea level pressure MAPS [Pa]
-130:MSLET:Mean sea level pressure NAM model [Pa]
-131:LFTX:Surface lifted index [K]
-132:4LFTX:Best 4-layer lifted index [K]
-133:KX:K index [K]
-134:SX:Sweat index [K]
-135:MCONV:Horizontal moisture divergence [kg/kg/s]
-136:VWSH:Vertical speed shear [1/s]
-137:TSLSA:3-hr pressure tendency Std Atmos Red [Pa/s]
-138:BVF2:Brunt-Vaisala frequency^2 [1/s^2]
-139:PVMW:Potential vorticity mass-weighted [1/s/m]
-140:CRAIN:Categorical rain [yes=1;no=0]
-141:CFRZR:Categorical freezing rain [yes=1;no=0]
-142:CICEP:Categorical ice pellets [yes=1;no=0]
-143:CSNOW:Categorical snow [yes=1;no=0]
-144:SOILW:Volumetric soil moisture [fraction]
-145:PEVPR:Potential evaporation rate [W/m^2]
-146:CWORK:Cloud work function [J/kg]
-147:U-GWD:Zonal gravity wave stress [N/m^2]
-148:V-GWD:Meridional gravity wave stress [N/m^2]
-149:PV:Potential vorticity [m^2/s/kg]
-150:COVMZ:Covariance between u and v [m^2/s^2]
-151:COVTZ:Covariance between u and T [K*m/s]
-152:COVTM:Covariance between v and T [K*m/s]
-153:CLWMR:Cloud water [kg/kg]
-154:O3MR:Ozone mixing ratio [kg/kg]
-155:GFLUX:Ground heat flux [W/m^2]
-156:CIN:Convective inhibition [J/kg]
-157:CAPE:Convective Avail Pot Energy [J/kg]
-158:TKE:Turbulent kinetic energy [J/kg]
-159:CONDP:Lifted parcel condensation pressure [Pa]
-160:CSUSF:Clear sky upward solar flux [W/m^2]
-161:CSDSF:Clear sky downward solar flux [W/m^2]
-162:CSULF:Clear sky upward long wave flux [W/m^2]
-163:CSDLF:Clear sky downward long wave flux [W/m^2]
-164:CFNSF:Cloud forcing net solar flux [W/m^2]
-165:CFNLF:Cloud forcing net long wave flux [W/m^2]
-166:VBDSF:Visible beam downward solar flux [W/m^2]
-167:VDDSF:Visible diffuse downward solar flux [W/m^2]
-168:NBDSF:Near IR beam downward solar flux [W/m^2]
-169:NDDSF:Near IR diffuse downward solar flux [W/m^2]
-170:RWMR:Rain water mixing ratio [kg/kg]
-171:SNMR:Snow mixing ratio [kg/kg]
-172:MFLX:Momentum flux [N/m^2]
-173:LMH:Mass point model surface [non-dim]
-174:LMV:Velocity point model surface [non-dim]
-175:MLYNO:Model layer number from bottom up [non-dim]
-176:NLAT:Latitude -90 to +90 [degrees]
-177:ELON:East longitude 0-360 [degrees]
-178:ICMR:Ice mixing ratio [kg/kg]
-179:GRMR:Graupel mixing ratio [kg/kg]
-180:GUST:Surface wind gust [m/s]
-181:LPSX:x-gradient of log pressure [1/m]
-182:LPSY:y-gradient of log pressure [1/m]
-183:HGTX:x-gradient of height [m/m]
-184:HGTY:y-gradient of height [m/m]
-185:TURB:Turbulence SIGMET AIRMET [non-dim]
-186:ICNG:Icing SIGMET AIRMET [non-dim]
-187:LTNG:Lightning [non-dim]
-188:DRIP:Rate of water dropping from canopy to gnd [kg/m^2]
-189:VPTMP:Virtual pot temperature [K]
-190:HLCY:Storm relative helicity [m^2/s^2]
-191:PROB:Prob from ensemble [non-dim]
-192:PROBN:Prob from ensemble norm to clim expect [non-dim]
-193:POP:Prob of precipitation [%]
-194:CPOFP:Prob of frozen precipitation [%]
-195:CPOZP:Prob of freezing precipitation [%]
-196:USTM:u-component of storm motion [m/s]
-197:VSTM:v-component of storm motion [m/s]
-198:NCIP:No concen ice particles []
-199:EVBS:Direct evaporation from bare soil [W/m^2]
-200:EVCW:Canopy water evaporation [W/m^2]
-201:ICWAT:Ice-free water surface [%]
-202:CWDI:Convective weather detection index []
-203:VAFTAD:VAFTAD []
-204:DSWRF:Downward short wave flux [W/m^2]
-205:DLWRF:Downward long wave flux [W/m^2]
-206:UVI:Ultra violet index 1 hour centered at solar noon [J/m^2]
-207:MSTAV:Moisture availability [%]
-208:SFEXC:Exchange coefficient [(kg/m^3)(m/s)]
-209:MIXLY:No of mixed layers next to surface [integer]
-210:TRANS:Transpiration [W/m^2]
-211:USWRF:Upward short wave flux [W/m^2]
-212:ULWRF:Upward long wave flux [W/m^2]
-213:CDLYR:Non-convective cloud [%]
-214:CPRAT:Convective precip rate [kg/m^2/s]
-215:TTDIA:Temperature tendency by all physics [K/s]
-216:TTRAD:Temperature tendency by all radiation [K/s]
-217:TTPHY:Temperature tendency by non-radiation physics [K/s]
-218:PREIX:Precip index 0-1 [fraction]
-219:TSD1D:Std dev of IR T over 1x1 deg area [K]
-220:NLGSP:Natural log of surface pressure [ln(kPa)]
-221:HPBL:Planetary boundary layer height [m]
-222:5WAVH:5-wave geopotential height [gpm]
-223:CNWAT:Plant canopy surface water [kg/m^2]
-224:SOTYP:Soil type Zobler [0..9]
-225:VGTYP:Vegetation type as in SiB [0..13]
-226:BMIXL:Blackadars mixing length scale [m]
-227:AMIXL:Asymptotic mixing length scale [m]
-228:PEVAP:Pot evaporation [kg/m^2]
-229:SNOHF:Snow phase-change heat flux [W/m^2]
-230:5WAVA:5-wave geopot height anomaly [gpm]
-231:MFLUX:Convective cloud mass flux [Pa/s]
-232:DTRF:Downward total radiation flux [W/m^2]
-233:UTRF:Upward total radiation flux [W/m^2]
-234:BGRUN:Baseflow-groundwater runoff [kg/m^2]
-235:SSRUN:Storm surface runoff [kg/m^2]
-236:SIPD:Supercooled large droplet SLD icing pot diagn []
-237:O3TOT:Total ozone [kg/m^2]
-238:SNOWC:Snow cover [%]
-239:SNOT:Snow temperature [K]
-240:COVTW:Covariance T and w [K*m/s]
-241:LRGHR:Large scale condensation heating [K/s]
-242:CNVHR:Deep convective heating [K/s]
-243:CNVMR:Deep convective moistening [kg/kg/s]
-244:SHAHR:Shallow convective heating [K/s]
-245:SHAMR:Shallow convective moistening [kg/kg/s]
-246:VDFHR:Vertical diffusion heating [K/s]
-247:VDFUA:Vertical diffusion zonal accel [m/s^2]
-248:VDFVA:Vertical diffusion meridional accel [m/s^2]
-249:VDFMR:Vertical diffusion moistening [kg/kg/s]
-250:SWHR:Solar radiative heating [K/s]
-251:LWHR:Longwave radiative heating [K/s]
-252:CD:Drag coefficient [non-dim]
-253:FRICV:Friction velocity [m/s]
-254:RI:Richardson number [non-dim]
-255:var255:undefined
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ucar/userTables.lst b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ucar/userTables.lst
deleted file mode 100644
index 7a37b7d173..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrib/ucar/userTables.lst
+++ /dev/null
@@ -1 +0,0 @@
-161: 1: 3: glerl.tab
diff --git a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrid/ncgribLevelsMap.xml b/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrid/ncgribLevelsMap.xml
deleted file mode 100644
index 33c672e674..0000000000
--- a/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/utility/edex_static/base/ncgrid/ncgribLevelsMap.xml
+++ /dev/null
@@ -1,108 +0,0 @@
-
-
-
diff --git a/ncep/gov.noaa.nws.ncep.edex.uengine/META-INF/MANIFEST.MF b/ncep/gov.noaa.nws.ncep.edex.uengine/META-INF/MANIFEST.MF
index fd317105fc..c4b8f5e341 100644
--- a/ncep/gov.noaa.nws.ncep.edex.uengine/META-INF/MANIFEST.MF
+++ b/ncep/gov.noaa.nws.ncep.edex.uengine/META-INF/MANIFEST.MF
@@ -16,14 +16,12 @@ Require-Bundle: com.raytheon.edex.uengine,
com.raytheon.uf.common.parameter,
gov.noaa.nws.ncep.edex.common;bundle-version="1.0.0",
gov.noaa.nws.ncep.common.dataplugin.mcidas;bundle-version="1.0.0",
- gov.noaa.nws.ncep.common.dataplugin.ncgrib;bundle-version="1.0.0",
com.raytheon.uf.common.dataplugin.radar;bundle-version="1.0.0",
com.raytheon.uf.common.dataplugin.satellite;bundle-version="1.0.0",
com.raytheon.edex.plugin.modelsounding;bundle-version="1.12.1174",
com.raytheon.edex.plugin.bufrua;bundle-version="1.12.1174",
com.raytheon.uf.common.dataplugin.level;bundle-version="1.12.1174",
com.raytheon.uf.edex.pointdata;bundle-version="1.12.1174",
- gov.noaa.nws.ncep.edex.plugin.ncgrib;bundle-version="1.0.0",
gov.noaa.nws.ncep.common.dataplugin.ncuair;bundle-version="1.0.0",
com.raytheon.uf.common.gridcoverage;bundle-version="1.0.0"
Export-Package: gov.noaa.nws.ncep.edex.uengine.output,
@@ -40,7 +38,6 @@ Import-Package: com.raytheon.edex.plugin.modelsounding.common,
gov.noaa.nws.ncep.common.tools,
gov.noaa.nws.ncep.edex.common.metparameters,
gov.noaa.nws.ncep.edex.common.metparameters.parameterconversion,
- gov.noaa.nws.ncep.edex.plugin.ncgrib.dao,
javax.measure.converter,
javax.measure.unit,
org.apache.commons.logging
diff --git a/ncep/gov.noaa.nws.ncep.edex.uengine/src/gov/noaa/nws/ncep/edex/uengine/tasks/profile/MdlSoundingQuery.java b/ncep/gov.noaa.nws.ncep.edex.uengine/src/gov/noaa/nws/ncep/edex/uengine/tasks/profile/MdlSoundingQuery.java
index 8b513a5b71..6e4429efe7 100644
--- a/ncep/gov.noaa.nws.ncep.edex.uengine/src/gov/noaa/nws/ncep/edex/uengine/tasks/profile/MdlSoundingQuery.java
+++ b/ncep/gov.noaa.nws.ncep.edex.uengine/src/gov/noaa/nws/ncep/edex/uengine/tasks/profile/MdlSoundingQuery.java
@@ -16,70 +16,58 @@ package gov.noaa.nws.ncep.edex.uengine.tasks.profile;
* 02/28/2012 Chin Chen modify several sounding query algorithms for better performance
* 03/28/2012 Chin Chen Add new API to support query multiple Points at one shoot and using
* dataStore.retrieveGroups()
+ * Oct 15, 2012 2473 bsteffen Remove ncgrib
*
*
*
* @author Chin Chen
* @version 1.0
*/
-import gov.noaa.nws.ncep.edex.common.sounding.NcSoundingCube;
import gov.noaa.nws.ncep.edex.common.sounding.NcSoundingLayer;
import gov.noaa.nws.ncep.edex.common.sounding.NcSoundingModel;
import gov.noaa.nws.ncep.edex.common.sounding.NcSoundingProfile;
import gov.noaa.nws.ncep.edex.common.sounding.NcSoundingTimeLines;
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.NcgribModel;
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.NcgribRecord;
+
+import java.awt.Point;
import java.util.ArrayList;
import java.util.List;
import javax.measure.converter.UnitConverter;
import javax.measure.unit.NonSI;
import javax.measure.unit.SI;
-import com.raytheon.edex.plugin.modelsounding.common.SoundingSite;
-import com.raytheon.uf.edex.database.DataAccessLayerException;
-import com.raytheon.uf.edex.database.dao.CoreDao;
-import com.raytheon.uf.edex.database.dao.DaoConfig;
-import com.raytheon.uf.edex.database.query.DatabaseQuery;
-import com.raytheon.edex.uengine.tasks.query.TableQuery;
-import com.raytheon.uf.common.dataplugin.grid.GridConstants;
-import com.raytheon.uf.common.dataplugin.grid.GridRecord;
-import java.awt.Point;
import org.geotools.coverage.grid.GridGeometry2D;
import org.geotools.geometry.GeneralDirectPosition;
-
-import com.raytheon.uf.common.dataplugin.PluginException;
-import com.raytheon.uf.common.geospatial.ISpatialObject;
-import com.raytheon.uf.common.geospatial.MapUtil;
-
-//import org.opengis.geometry.Envelope;
-
import org.opengis.geometry.DirectPosition;
import org.opengis.referencing.FactoryException;
import org.opengis.referencing.crs.CoordinateReferenceSystem;
import org.opengis.referencing.operation.MathTransform;
-
-import com.vividsolutions.jts.geom.CoordinateSequence;
+import com.raytheon.edex.uengine.tasks.query.TableQuery;
+import com.raytheon.uf.common.dataplugin.PluginException;
+import com.raytheon.uf.common.dataplugin.grid.GridConstants;
+import com.raytheon.uf.common.dataplugin.grid.GridInfoRecord;
+import com.raytheon.uf.common.dataplugin.grid.GridRecord;
+import com.raytheon.uf.common.geospatial.ISpatialObject;
+import com.raytheon.uf.common.geospatial.MapUtil;
+import com.raytheon.uf.common.geospatial.PointUtil;
+import com.raytheon.uf.edex.database.DataAccessLayerException;
+import com.raytheon.uf.edex.database.dao.CoreDao;
+import com.raytheon.uf.edex.database.dao.DaoConfig;
+import com.raytheon.uf.edex.database.query.DatabaseQuery;
import com.vividsolutions.jts.geom.Coordinate;
+import com.vividsolutions.jts.geom.CoordinateSequence;
import com.vividsolutions.jts.geom.Geometry;
import com.vividsolutions.jts.geom.GeometryFactory;
import com.vividsolutions.jts.geom.LinearRing;
-import com.raytheon.uf.common.geospatial.PointUtil;
import com.vividsolutions.jts.geom.Polygon;
import com.vividsolutions.jts.geom.impl.CoordinateArraySequence;
+//import org.opengis.geometry.Envelope;
public class MdlSoundingQuery {
- private static final String NCGRIB_TBL_NAME = "ncgrib";//obsoleting....
private static final String D2DGRIB_TBL_NAME = "grid";
- private static String NC_PARMS = "HGHT, UREL, VREL, TMPK, OMEG, RELH";
- //private static String NC_PARMS = "HGHT, UREL, VREL, TMPK, DWPK, SPFH, OMEG, RELH";
private static String D2D_PARMS = "GH, uW, vW,T, DWPK, SPFH,OMEG, RH";
- private enum NcParmNames {
- HGHT, UREL, VREL, TMPK, DWPK, SPFH, OMEG, RELH
- };
-
private enum D2DParmNames {
GH, uW, vW, T, DWPK, SPFH, OMEG, RH
@@ -131,8 +119,8 @@ public class MdlSoundingQuery {
+ mdlType
+ "' ORDER BY reftime DESC");
- CoreDao dao = new CoreDao(DaoConfig.forClass(NcgribRecord.class));
- refTimeAry = (Object[]) dao.executeSQLQuery(queryStr);
+ CoreDao dao = new CoreDao(DaoConfig.forClass(GridRecord.class));
+ refTimeAry = dao.executeSQLQuery(queryStr);
tl.setTimeLines(refTimeAry);
@@ -415,13 +403,8 @@ public class MdlSoundingQuery {
public static NcSoundingModel getMdls(String pluginName) {
NcSoundingModel mdls = new NcSoundingModel();
Object[] mdlName = null;
- if (pluginName.equalsIgnoreCase(NCGRIB_TBL_NAME)) {
- CoreDao dao = new CoreDao(DaoConfig.forClass(NcgribModel.class));
- String queryStr = new String("Select Distinct modelname FROM ncgrib_models ORDER BY modelname");
- mdlName = (Object[]) dao.executeSQLQuery(queryStr);
- }
- else if (pluginName.equalsIgnoreCase(D2DGRIB_TBL_NAME)) {
- CoreDao dao = new CoreDao(DaoConfig.forClass(NcgribModel.class));
+ if (pluginName.equalsIgnoreCase(D2DGRIB_TBL_NAME)) {
+ CoreDao dao = new CoreDao(DaoConfig.forClass(GridInfoRecord.class));
String queryStr = new String("Select Distinct modelname FROM grib_models ORDER BY modelname");
mdlName = (Object[]) dao.executeSQLQuery(queryStr);
}
@@ -441,32 +424,7 @@ public class MdlSoundingQuery {
ISpatialObject spatialArea = null;
MathTransform crsFromLatLon = null;
- if (pluginName.equalsIgnoreCase(NCGRIB_TBL_NAME)) {
- CoreDao dao = new CoreDao(DaoConfig.forClass(NcgribRecord.class));
- DatabaseQuery query = new DatabaseQuery(
- NcgribRecord.class.getName());
- query.setMaxResults(new Integer(1));
- query.addQueryParam("modelName", modelName);
- query.addQueryParam("dataTime.refTime", refTime);
- query.addQueryParam("dataTime.validPeriod.start", validTime);
- String spacingUnit = null;
-
- try {
- List recList = ((List) dao
- .queryByCriteria(query));
- if (recList.size() == 0) {
- return false;
- } else {
- NcgribRecord rec = recList.get(0);
- spatialArea = rec.getSpatialObject();
- }
- } catch (DataAccessLayerException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- return false;
- }
-
- } else if (pluginName.equalsIgnoreCase(D2DGRIB_TBL_NAME)) {
+ if (pluginName.equalsIgnoreCase(D2DGRIB_TBL_NAME)) {
CoreDao dao = new CoreDao(DaoConfig.forClass(GridRecord.class));
DatabaseQuery query = new DatabaseQuery(GridRecord.class.getName());
@@ -552,32 +510,7 @@ public class MdlSoundingQuery {
ISpatialObject spatialArea = null;
MathTransform crsFromLatLon = null;
- if (pluginName.equalsIgnoreCase(NCGRIB_TBL_NAME)) {
- CoreDao dao = new CoreDao(DaoConfig.forClass(NcgribRecord.class));
- DatabaseQuery query = new DatabaseQuery(
- NcgribRecord.class.getName());
- query.setMaxResults(new Integer(1));
- query.addQueryParam("modelName", modelName);
- query.addQueryParam("dataTime.refTime", refTime);
- query.addQueryParam("dataTime.validPeriod.start", validTime);
- String spacingUnit = null;
-
- try {
- List recList = ((List) dao
- .queryByCriteria(query));
- if (recList.size() == 0) {
- return false;
- } else {
- NcgribRecord rec = recList.get(0);
- spatialArea = rec.getSpatialObject();
- }
- } catch (DataAccessLayerException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- return false;
- }
-
- } else if (pluginName.equalsIgnoreCase(D2DGRIB_TBL_NAME)) {
+ if (pluginName.equalsIgnoreCase(D2DGRIB_TBL_NAME)) {
CoreDao dao = new CoreDao(DaoConfig.forClass(GridRecord.class));
DatabaseQuery query = new DatabaseQuery(GridRecord.class.getName());
@@ -649,44 +582,7 @@ public class MdlSoundingQuery {
public static Float getModelSfcPressure(Point pnt, String refTime,
String validTime, String pluginName, String modelName) {
- if (pluginName.equalsIgnoreCase(NCGRIB_TBL_NAME)) {
- CoreDao dao = new CoreDao(DaoConfig.forClass(NcgribRecord.class));
- DatabaseQuery query = new DatabaseQuery(
- NcgribRecord.class.getName());
- query.addQueryParam("glevel1", 0);
- query.addQueryParam("glevel2", -9999);
- query.addQueryParam("parm", "PRES");
- query.addQueryParam("vcord", "NONE");
- query.addQueryParam("modelName", modelName);
- query.addQueryParam("dataTime.refTime", refTime);
- query.addQueryParam("dataTime.validPeriod.start", validTime);
-
- NcgribRecord rec = null;
- try {
- List recList = ((List) dao
- .queryByCriteria(query));
- if (recList.size() == 0) {
- return null;
- } else {
- rec = recList.get(0);
- PointIn pointIn = new PointIn(pluginName, rec, pnt.x, pnt.y);
- try {
- float fdata = pointIn.getPointData();
- return new Float(fdata);
- } catch (PluginException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- return null;
- }
- }
-
- } catch (DataAccessLayerException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- return null;
- }
-
- } else if (pluginName.equalsIgnoreCase(D2DGRIB_TBL_NAME)) {
+ if (pluginName.equalsIgnoreCase(D2DGRIB_TBL_NAME)) {
CoreDao dao = new CoreDao(DaoConfig.forClass(GridRecord.class));
DatabaseQuery query = new DatabaseQuery(GridRecord.class.getName());
@@ -751,133 +647,7 @@ public class MdlSoundingQuery {
List soundingProfileList = new ArrayList();
List fdataArrayList = new ArrayList();
//long t01 = System.currentTimeMillis();
- if (pluginName.equalsIgnoreCase(NCGRIB_TBL_NAME)) {
- List recList = new ArrayList(); ;
- TableQuery query;
- try {
- query = new TableQuery("metadata",
- NcgribRecord.class.getName());
- query.addParameter("vcord", "PRES");
- query.addParameter("modelName", modelName);
- query.addList("parm",NC_PARMS);//parmList.toString()); //
- query.addParameter("dataTime.refTime", refTime);
- query.addParameter("dataTime.validPeriod.start", validTime);
- //query.addParameter("glevel1", level.toString());
- query.setSortBy("glevel1", false);
- recList = (List) query.execute();
- //System.out.println("Ncgrib group query0 result size ="+ recList.size());
-
- if (recList.size() != 0) {
-
- PointIn pointIn = new PointIn(pluginName, recList.get(0));
- //Chin note:
- // We query multiple points, and for each point, query all levels (pressure) and all parameters
- //(at that level) with one shot.
- // The return array list (fdataArrayList) are listed in the same order as querying list "points"
- // Each element (float[]) of the returned array list, represent a Point data, contains the same number of
- // parameters and listed in the same order as querying rec array (recList.toArray())
- //However, returned element (float[]) does not tell you which parameter itself is.
- //Therefore, we have to use information in query rec array to find out returned value's type (which parameter it is)
- // Further, we have to sort and store returned values to NcSoundingLayer based on its level (pressure)
- // Parameters in same level should be stored in one same NcSoundingLayer,
- // NcSoundingLayers for same Point should be stored in same NcSoundingProfile.
- fdataArrayList = pointIn.getHDF5GroupDataPoints(recList.toArray(),points);
- }
- }catch (DataAccessLayerException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- catch (Exception e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- int index=0;
- GridGeometry2D geom = MapUtil.getGridGeometry(spatialArea);
- CoordinateReferenceSystem crs = geom.getCoordinateReferenceSystem();
- Coordinate coord= new Coordinate(45,45);
-
- for(float[] fdataArray: fdataArrayList ){
- //one fdataArray is for one Point or say one profile
- NcSoundingProfile pf = new NcSoundingProfile();
- List soundLyList = new ArrayList();
- Point pnt = points.get(index);
- Object[] recArray = recList.toArray();
- for (Object level : levels){
- NcSoundingLayer soundingLy = new NcSoundingLayer();
- int pressure= (Integer)level;
- soundingLy.setPressure( pressure);
-
- for (int i=0; i < recArray.length; i++) {
- NcgribRecord rec1 = (NcgribRecord)recArray[i];
- float fdata = fdataArray[i];
- if(rec1.getGlevel1() == pressure){
- String prm = rec1.getParm();
-
- //long t01 = System.currentTimeMillis();
- switch (NcParmNames.valueOf(prm)) {
- case HGHT:
- soundingLy.setGeoHeight(fdata);
- break;
- case UREL:
- // HDF5 data in unit of m/s, convert to Knots 4/12/2012
- soundingLy.setWindU((float)metersPerSecondToKnots.convert(fdata));
- break;
- case VREL:
- // HDF5 data in unit of m/s, convert to Knots 4/12/2012
- soundingLy.setWindV((float)metersPerSecondToKnots.convert(fdata));
- break;
- case TMPK:
- soundingLy.setTemperature((float) kelvinToCelsius
- .convert(fdata));
- break;
- case DWPK:
- soundingLy.setDewpoint((float) kelvinToCelsius
- .convert(fdata));
- break;
- case SPFH:
- soundingLy.setSpecHumidity(fdata);
- break;
- case OMEG:
- soundingLy.setOmega(fdata);
- break;
- case RELH:
- soundingLy.setRelativeHumidity(fdata);
- break;
- }
- }
- }
- soundLyList.add(soundingLy);
- }
- try {
- coord = PointUtil.determineLatLon(pnt, crs, geom);
- } catch (Exception e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- //System.out.println(" point coord.y="+coord.y+ " coord.x="+ coord.x);
- pf.setStationLatitude(coord.y);
- pf.setStationLongitude( coord.x);
- //Float sfcPressure = getModelSfcPressure(pnt, refTime, validTime,
- // pluginName, modelName);
- //System.out.println("getModelSfcPressure took "+ (System.currentTimeMillis()-t013) + " ms");
- //if (sfcPressure == null) {
- pf.setSfcPress(-9999.f);
- //}
- //else {
- // pf.setSfcPress(sfcPressure);
- //}
- //System.out.println("surface pressure ="+pf.getSfcPress());
- //calculate dew point if necessary
- MergeSounding ms = new MergeSounding();
- //ms.spfhToDewpoint(layerList);
- ms.rhToDewpoint(soundLyList);
- //System.out.println("MergeSounding took "+ (System.currentTimeMillis()-t014) + " ms");
- pf.setSoundingLyLst(soundLyList);
- soundingProfileList.add(pf);
- index++;
- }
- }
- else if (pluginName.equalsIgnoreCase(D2DGRIB_TBL_NAME)) {
+ if (pluginName.equalsIgnoreCase(D2DGRIB_TBL_NAME)) {
List recList = new ArrayList(); ;
TableQuery query;
try {
@@ -1199,28 +969,7 @@ public class MdlSoundingQuery {
String pluginName, String modelName) {
// List>vals = null;
- if (pluginName.equalsIgnoreCase(NCGRIB_TBL_NAME)) {
- CoreDao dao = new CoreDao(DaoConfig.forClass(NcgribRecord.class));
- DatabaseQuery query = new DatabaseQuery(
- NcgribRecord.class.getName());
- query.addDistinctParameter("glevel1");
- query.addQueryParam("parm", "HGHT");
- query.addQueryParam("vcord", "PRES");
-
- query.addQueryParam("modelName", modelName);
- query.addQueryParam("dataTime.refTime", refTime);
- query.addQueryParam("dataTime.validPeriod.start", validTime);
- query.addOrder("glevel1", false);
-
- try {
- return (List>) dao.queryByCriteria(query);
- } catch (DataAccessLayerException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- return null;
- }
-
- } else if (pluginName.equalsIgnoreCase(D2DGRIB_TBL_NAME)) {
+ if (pluginName.equalsIgnoreCase(D2DGRIB_TBL_NAME)) {
CoreDao dao = new CoreDao(DaoConfig.forClass(GridRecord.class));
DatabaseQuery query = new DatabaseQuery(GridRecord.class.getName());
query.addDistinctParameter(GridConstants.LEVEL_ONE);
@@ -1269,35 +1018,7 @@ public class MdlSoundingQuery {
Point pnt = null;
- if (pluginName.equalsIgnoreCase(NCGRIB_TBL_NAME)) {
- CoreDao dao = new CoreDao(DaoConfig.forClass(NcgribRecord.class));
- DatabaseQuery query = new DatabaseQuery(
- NcgribRecord.class.getName());
- query.addQueryParam("parm", "HGHT");
- query.addQueryParam("vcord", "PRES");
- query.addQueryParam("modelName", modelName);
- query.addQueryParam("dataTime.refTime", refTime);
- query.addQueryParam("dataTime.validPeriod.start", validTime);
- query.addQueryParam("glevel1", level);
-
- NcgribRecord rec;
- try {
- List recList = ((List) dao
- .queryByCriteria(query));
- if (recList.size() == 0) {
- return null;
- } else {
- rec = recList.get(0);
- spatialArea = rec.getSpatialObject();
- }
- } catch (DataAccessLayerException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- return null;
- }
-
-
- } else if (pluginName.equalsIgnoreCase(D2DGRIB_TBL_NAME)) {
+ if (pluginName.equalsIgnoreCase(D2DGRIB_TBL_NAME)) {
CoreDao dao = new CoreDao(DaoConfig.forClass(GridRecord.class));
DatabaseQuery query = new DatabaseQuery(GridRecord.class.getName());
diff --git a/ncep/gov.noaa.nws.ncep.edex.uengine/src/gov/noaa/nws/ncep/edex/uengine/tasks/profile/PointIn.java b/ncep/gov.noaa.nws.ncep.edex.uengine/src/gov/noaa/nws/ncep/edex/uengine/tasks/profile/PointIn.java
index 49c0153832..9a6ded83a2 100644
--- a/ncep/gov.noaa.nws.ncep.edex.uengine/src/gov/noaa/nws/ncep/edex/uengine/tasks/profile/PointIn.java
+++ b/ncep/gov.noaa.nws.ncep.edex.uengine/src/gov/noaa/nws/ncep/edex/uengine/tasks/profile/PointIn.java
@@ -20,32 +20,19 @@
package gov.noaa.nws.ncep.edex.uengine.tasks.profile;
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.NcgribRecord;
-import gov.noaa.nws.ncep.edex.plugin.ncgrib.dao.NcgribDao;
-
import java.awt.Point;
-import java.io.File;
import java.util.ArrayList;
-import java.util.HashMap;
import java.util.List;
-import java.util.Map;
-import com.raytheon.uf.edex.core.EDEXUtil;
-import com.raytheon.uf.edex.database.dao.CoreDao;
-import com.raytheon.uf.edex.database.dao.DaoConfig;
-import com.raytheon.uf.edex.database.plugin.PluginDao;
-import com.raytheon.uf.edex.database.plugin.PluginFactory;
-import com.raytheon.edex.uengine.tasks.ScriptTask;
import com.raytheon.uf.common.dataplugin.PluginDataObject;
import com.raytheon.uf.common.dataplugin.PluginException;
-import com.raytheon.uf.common.dataplugin.persist.IHDFFilePathProvider;
import com.raytheon.uf.common.dataplugin.persist.IPersistable;
-import com.raytheon.uf.common.datastorage.DataStoreFactory;
import com.raytheon.uf.common.datastorage.IDataStore;
import com.raytheon.uf.common.datastorage.Request;
-import com.raytheon.uf.common.datastorage.records.IDataRecord;
import com.raytheon.uf.common.datastorage.records.FloatDataRecord;
-import com.raytheon.uf.common.localization.IPathManager;
+import com.raytheon.uf.common.datastorage.records.IDataRecord;
+import com.raytheon.uf.edex.database.plugin.PluginDao;
+import com.raytheon.uf.edex.database.plugin.PluginFactory;
/**
* PointIn task derived from original uEngine PointIn task. Reads a file in from
@@ -58,7 +45,7 @@ import com.raytheon.uf.common.localization.IPathManager;
* Mar 29, 2007 njensen Initial Creation
* 03/28/2012 Chin Chen Add new APIs to support query multiple Points at one shoot and using
* dataStore.retrieveGroups()
-
+ * Oct 15, 2012 2473 bsteffen Remove unused imports
*
*
*/
diff --git a/ncep/gov.noaa.nws.ncep.edex.uengine/src/gov/noaa/nws/ncep/edex/uengine/utility/GempakConvert.java b/ncep/gov.noaa.nws.ncep.edex.uengine/src/gov/noaa/nws/ncep/edex/uengine/utility/GempakConvert.java
index 0608f0e15c..42dd8321c0 100644
--- a/ncep/gov.noaa.nws.ncep.edex.uengine/src/gov/noaa/nws/ncep/edex/uengine/utility/GempakConvert.java
+++ b/ncep/gov.noaa.nws.ncep.edex.uengine/src/gov/noaa/nws/ncep/edex/uengine/utility/GempakConvert.java
@@ -1,43 +1,37 @@
package gov.noaa.nws.ncep.edex.uengine.utility;
+import gov.noaa.nws.ncep.common.dataplugin.mcidas.McidasMapCoverage;
+
import java.io.BufferedWriter;
+import java.io.DataOutputStream;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
-import java.io.DataOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
-import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
+
import javax.xml.bind.JAXBException;
+import com.raytheon.uf.common.dataplugin.PluginDataObject;
+import com.raytheon.uf.common.dataquery.requests.RequestConstraint;
+import com.raytheon.uf.common.datastorage.records.IDataRecord;
+import com.raytheon.uf.common.datastorage.records.ShortDataRecord;
import com.raytheon.uf.common.geospatial.ISpatialObject;
import com.raytheon.uf.common.gridcoverage.GridCoverage;
import com.raytheon.uf.common.gridcoverage.LambertConformalGridCoverage;
import com.raytheon.uf.common.gridcoverage.LatLonGridCoverage;
import com.raytheon.uf.common.gridcoverage.MercatorGridCoverage;
import com.raytheon.uf.common.gridcoverage.PolarStereoGridCoverage;
-import com.raytheon.uf.common.dataplugin.PluginDataObject;
-import com.raytheon.uf.common.datastorage.records.IDataRecord;
-import com.raytheon.uf.common.datastorage.records.ShortDataRecord;
import com.raytheon.uf.common.message.CatalogAttribute;
import com.raytheon.uf.common.message.CatalogItem;
import com.raytheon.uf.common.message.response.ResponseMessageCatalog;
import com.raytheon.uf.common.serialization.DynamicSerializationManager;
-import com.raytheon.uf.common.serialization.SerializationException;
import com.raytheon.uf.common.serialization.DynamicSerializationManager.SerializationType;
+import com.raytheon.uf.common.serialization.SerializationException;
import com.raytheon.uf.common.time.DataTime;
-import com.raytheon.uf.common.dataplugin.satellite.SatMapCoverage;
-import com.raytheon.uf.common.dataquery.requests.RequestConstraint;
-
-import gov.noaa.nws.ncep.common.dataplugin.mcidas.McidasMapCoverage;
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.spatial.projections.NcgridCoverage;
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.spatial.projections.LambertConformalNcgridCoverage;
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.spatial.projections.LatLonNcgridCoverage;
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.spatial.projections.MercatorNcgridCoverage;
-import gov.noaa.nws.ncep.common.dataplugin.ncgrib.spatial.projections.PolarStereoNcgridCoverage;
/**
* GempakConvert
@@ -62,6 +56,8 @@ import gov.noaa.nws.ncep.common.dataplugin.ncgrib.spatial.projections.PolarStere
* serialize2File, data2File, flipData
* 09/14/2010 284 mgamazaychikov Add addHours method
* 10/02/2013 2333 mschenke Removed unused function getSatHdrContent
+ * Oct 15, 2012 2473 bsteffen Remove unused imports
+ *
*
*
* @author mgamazaychikov
@@ -717,145 +713,6 @@ public class GempakConvert {
return aFileName;
}
- /*
- * Construct the grid navigation string
- */
- public static String getNcgridNavigationContent(ISpatialObject obj) throws JAXBException {
-
- NcgridCoverage gc = (NcgridCoverage)obj;
- StringBuffer resultsBuf = new StringBuffer();
-
- if (gc instanceof LatLonNcgridCoverage) {
- /*
- * LatLonGridCoverage
- */
- LatLonNcgridCoverage llgc = (LatLonNcgridCoverage) gc;
- resultsBuf.append("CED");
- resultsBuf.append(";");
- resultsBuf.append(llgc.getNx());
- resultsBuf.append(";");
- resultsBuf.append(llgc.getNy());
- resultsBuf.append(";");
- Double dummy = llgc.getLa1()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = llgc.getLo1()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = llgc.getLa2()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = llgc.getLo2()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = -9999.0;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = llgc.getDx()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = llgc.getDy()*10000;
- resultsBuf.append(dummy.intValue());
- }
- else if (gc instanceof LambertConformalNcgridCoverage) {
- resultsBuf.append("LCC");
- resultsBuf.append(";");
- LambertConformalNcgridCoverage lcgc = (LambertConformalNcgridCoverage) gc;
- resultsBuf.append(lcgc.getNx());
- resultsBuf.append(";");
- resultsBuf.append(lcgc.getNy());
- resultsBuf.append(";");
- Double dummy = lcgc.getLa1()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = lcgc.getLo1()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = lcgc.getLatin1()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = lcgc.getLatin2()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = lcgc.getLov()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = lcgc.getDx()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = lcgc.getDy()*10000;
- resultsBuf.append(dummy.intValue());
- }
- else if (gc instanceof MercatorNcgridCoverage) {
- /*
- * TODO - finish with MercatorGridCoverage
- */
- MercatorNcgridCoverage mgc = (MercatorNcgridCoverage) gc;
- resultsBuf.append("MER");
- resultsBuf.append(";");
- resultsBuf.append(mgc.getNx());
- resultsBuf.append(";");
- resultsBuf.append(mgc.getNy());
- resultsBuf.append(";");
- Double dummy = mgc.getLa1()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = mgc.getLo1()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = mgc.getLatin()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = mgc.getLa2()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = mgc.getLo2()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = mgc.getDx()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = mgc.getDy()*10000;
- resultsBuf.append(dummy.intValue());
- }
- else if (gc instanceof PolarStereoNcgridCoverage){
- /*
- * PolarStereoGridCoverage
- */
- PolarStereoNcgridCoverage psgc = (PolarStereoNcgridCoverage) gc;
- resultsBuf.append("STR");
- resultsBuf.append(";");
- resultsBuf.append(psgc.getNx());
- resultsBuf.append(";");
- resultsBuf.append(psgc.getNy());
- resultsBuf.append(";");
- Double dummy = psgc.getLa1()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = psgc.getLo1()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = -9999.0;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = -9999.0;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = psgc.getLov()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = psgc.getDx()*10000;
- resultsBuf.append(dummy.intValue());
- resultsBuf.append(";");
- dummy = psgc.getDy()*10000;
- resultsBuf.append(dummy.intValue());
- }
-
- String content = resultsBuf.toString();
- return content;
-
- }
-
/*
* Returns string representing updated by hours baseTime
*/
diff --git a/ncep/gov.noaa.nws.ncep.viz.common/src/gov/noaa/nws/ncep/viz/common/soundingQuery/NcSoundingQuery.java b/ncep/gov.noaa.nws.ncep.viz.common/src/gov/noaa/nws/ncep/viz/common/soundingQuery/NcSoundingQuery.java
index c8601e705a..a8af3abccf 100644
--- a/ncep/gov.noaa.nws.ncep.viz.common/src/gov/noaa/nws/ncep/viz/common/soundingQuery/NcSoundingQuery.java
+++ b/ncep/gov.noaa.nws.ncep.viz.common/src/gov/noaa/nws/ncep/viz/common/soundingQuery/NcSoundingQuery.java
@@ -1,4 +1,5 @@
package gov.noaa.nws.ncep.viz.common.soundingQuery;
+
/**
*
*
@@ -14,6 +15,8 @@ package gov.noaa.nws.ncep.viz.common.soundingQuery;
* 11/1/2010 362 Chin Chen Initial coding
* 12/16/2010 362 Chin Chen add support of BUFRUA observed sounding and PFC (NAM and GFS) model sounding data
* 02/15/2012 Chin Chen modify several sounding query algorithms for better performance
+ * Oct 15, 2012 2473 bsteffen Remove ncgrib
+
*
*
* @author Chin Chen
@@ -24,9 +27,9 @@ import gov.noaa.nws.ncep.edex.common.sounding.NcSoundingCube;
import gov.noaa.nws.ncep.edex.common.sounding.NcSoundingLayer;
import gov.noaa.nws.ncep.edex.common.sounding.NcSoundingLayer2;
import gov.noaa.nws.ncep.edex.common.sounding.NcSoundingModel;
+import gov.noaa.nws.ncep.edex.common.sounding.NcSoundingProfile.MdlSndType;
import gov.noaa.nws.ncep.edex.common.sounding.NcSoundingStnInfoCollection;
import gov.noaa.nws.ncep.edex.common.sounding.NcSoundingTimeLines;
-import gov.noaa.nws.ncep.edex.common.sounding.NcSoundingProfile.MdlSndType;
import java.util.Calendar;
import java.util.List;
@@ -39,7 +42,6 @@ import com.vividsolutions.jts.geom.Coordinate;
public class NcSoundingQuery {
public static int counter = 1;
- public static String NCGRIB_PLUGIN_NAME = "ncgrib";
public static String GRIB_PLUGIN_NAME = "grid";
public static long convertRefTimeStr(String refTimeStr) {
int year, mon, date, hr;
diff --git a/ncep/gov.noaa.nws.ncep.viz.resources/META-INF/MANIFEST.MF b/ncep/gov.noaa.nws.ncep.viz.resources/META-INF/MANIFEST.MF
index bfe40ba185..fda659921f 100644
--- a/ncep/gov.noaa.nws.ncep.viz.resources/META-INF/MANIFEST.MF
+++ b/ncep/gov.noaa.nws.ncep.viz.resources/META-INF/MANIFEST.MF
@@ -77,7 +77,6 @@ Import-Package: com.raytheon.uf.common.message.response,
com.raytheon.viz.core.gl,
com.raytheon.viz.core.graphing,
gov.noaa.nws.ncep.common.dataplugin.mcidas,
- gov.noaa.nws.ncep.common.dataplugin.ncgrib.ncdatatree,
gov.noaa.nws.ncep.common.dataplugin.ntrans,
gov.noaa.nws.ncep.common.dataplugin.pgen,
gov.noaa.nws.ncep.edex.common.ncinventory,