Issue #1179 fix radar imagery to not display when there is no dual pol precip.
Former-commit-id:114b9ce95b
[formerly3c5497f87f
] [formerly 59acdd53fda99e5328fc46a5a1fc9a4b376de832 [formerly798e28b218
]] [formerly71391cdb59
[formerly798e28b218
[formerly 5eb3c4d62bcbdb458bc2895172601cb3fa38fa4b]]] Former-commit-id:71391cdb59
Former-commit-id: a21046a8051d56c28e7d31757b314c4bf7d58282 [formerly918e74fe20
] Former-commit-id:fd04a5be35
This commit is contained in:
parent
d8a38c6f35
commit
76c8f034a0
1 changed files with 5 additions and 1 deletions
|
@ -386,7 +386,11 @@ public class RadarImageResource<D extends IDescriptor> extends
|
|||
if (image == null || image.getCoverage() == null) {
|
||||
VizRadarRecord record = getRadarRecord(dataTime);
|
||||
if (record != null) {
|
||||
if (record.getStoredDataAsync() == null) {
|
||||
if (record.getNumRadials() == 0 || record.getNumBins() == 0) {
|
||||
// This is expected for dual pol precip products(DSD,DOD)
|
||||
// when it isn't raining.
|
||||
return null;
|
||||
} else if (record.getStoredDataAsync() == null) {
|
||||
issueRefresh();
|
||||
} else {
|
||||
try {
|
||||
|
|
Loading…
Add table
Reference in a new issue