double minLat = floor(bounds.getMinLat(), _latStep);
double maxLat = floor(bounds.getMaxLat(), _latStep);
double minLon = floor(bounds.getMinLon(), _lonStep);
double maxLon = floor(bounds.getMaxLon(), _lonStep);
CoordinateBounds dirtyRegion = new CoordinateBounds();
List<CoordinateBounds> dirtyRegions = new ArrayList<CoordinateBounds>();
for (double lat = minLat; lat <= maxLat; lat += _latStep) {
for (double lon = minLon; lon <= maxLon; lon += _lonStep) {
CoordinateBounds region = snapBounds(lat, lon, lat + _latStep, lon
+ _lonStep);
RegionCache cache = _cache.get(region);
if (cache == null) {
dirtyRegion.addBounds(region);
dirtyRegions.add(region);