Issue #3455 Fix gridless grib models.
Former-commit-id: 1228b73957fc4a407e9075292faffeff3a84bdb4
This commit is contained in:
parent
216d3ba749
commit
12f84a9427
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue