Issue #3455 Fix gridless grib models.

Former-commit-id: 1005d4d4b1 [formerly 7341c62f40] [formerly 1005d4d4b1 [formerly 7341c62f40] [formerly 12f84a9427 [formerly 1228b73957fc4a407e9075292faffeff3a84bdb4]]]
Former-commit-id: 12f84a9427
Former-commit-id: dd7791eb00 [formerly 5c437a4be9]
Former-commit-id: 06f70271f5
This commit is contained in:
Ben Steffensmeier 2014-07-30 16:38:51 -05:00
parent d5ea4c44bd
commit fe12b1d419

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.
* Oct 14, 2013 2473 bsteffen Remove lookup of deprecated grib files.
* Apr 25, 2014 2874 bsteffen Add processType
* Jul 30, 2014 3455 bsteffen Allow model matching with no grid defined.
*
*
* </pre>
@ -148,6 +149,9 @@ public class GribModelLookup {
return model;
}
}
} else {
String key = toKey(center, subcenter, null, process, processType);
return models.get(key);
}
return null;
}