Omaha #3263 Check for null when mosaic time matches.
Former-commit-id:df2fed2be3
[formerly5355ca8c1c
[formerly 913d70b860c1f129d1632dfd1d84e5fbcca5e2d9]] Former-commit-id:5355ca8c1c
Former-commit-id:c105de1a4c
This commit is contained in:
parent
57366a56b7
commit
0016b16e61
1 changed files with 11 additions and 2 deletions
|
@ -84,6 +84,7 @@ import com.vividsolutions.jts.geom.Coordinate;
|
|||
* May 21, 2009 6309 garmendariz Modified path for Geotools 2.6.4
|
||||
* May 01, 2014 3100 bsteffen perform time matching on data update.
|
||||
* Jun 02, 2014 2918 bsteffen Make dataTimes a synchronized list.
|
||||
* Jun 12, 2014 3263 bsteffen Check for null when async time matching.
|
||||
*
|
||||
*
|
||||
* </pre>
|
||||
|
@ -367,6 +368,15 @@ public class RadarMosaicResource extends
|
|||
* off the UI thread, preferably in the timeUpdateJob.
|
||||
*/
|
||||
private void updateTimes() {
|
||||
DataTime[] frameTimes = descriptor.getTimeMatchingMap().get(this);
|
||||
if (frameTimes == null) {
|
||||
/*
|
||||
* This has not been time matched so cannot time match against
|
||||
* mosaiced resources.
|
||||
*/
|
||||
issueRefresh();
|
||||
return;
|
||||
}
|
||||
for (ResourcePair pair : getResourceList()) {
|
||||
try {
|
||||
if (!(pair.getResourceData() instanceof AbstractRequestableResourceData)) {
|
||||
|
@ -375,8 +385,7 @@ public class RadarMosaicResource extends
|
|||
AbstractRequestableResourceData arrd = (AbstractRequestableResourceData) pair
|
||||
.getResourceData();
|
||||
DataTime[] availableTimes = arrd.getAvailableTimes();
|
||||
DataTime[] frameTimes = descriptor.getTimeMatchingMap().get(
|
||||
this);
|
||||
|
||||
DataTime[] displayTimes = timeMatch(frameTimes, availableTimes);
|
||||
// request any new times.
|
||||
PluginDataObject[] pdos = arrd.getLatestPluginDataObjects(
|
||||
|
|
Loading…
Add table
Reference in a new issue