Issue #3455 Fix gridless grib models.

Former-commit-id: 1228b73957fc4a407e9075292faffeff3a84bdb4
This commit is contained in:
Ben Steffensmeier 2014-07-30 16:38:51 -05:00
parent 216d3ba749
commit 12f84a9427

View file

@ -56,6 +56,7 @@ import com.raytheon.uf.common.util.mapping.MultipleMappingException;
* Apr 30, 2013 1961 bsteffen Add ability to disable grib tables. * Apr 30, 2013 1961 bsteffen Add ability to disable grib tables.
* Oct 14, 2013 2473 bsteffen Remove lookup of deprecated grib files. * Oct 14, 2013 2473 bsteffen Remove lookup of deprecated grib files.
* Apr 25, 2014 2874 bsteffen Add processType * Apr 25, 2014 2874 bsteffen Add processType
* Jul 30, 2014 3455 bsteffen Allow model matching with no grid defined.
* *
* *
* </pre> * </pre>
@ -148,6 +149,9 @@ public class GribModelLookup {
return model; return model;
} }
} }
} else {
String key = toKey(center, subcenter, null, process, processType);
return models.get(key);
} }
return null; return null;
} }