Merge "Issue #2791 fix NaN handling of smoothed contours." into development

Former-commit-id: c64f0b2558 [formerly f9b86f97e0 [formerly 347b9555cfe67ee5643b92bd84afbd1e2899acd7]]
Former-commit-id: f9b86f97e0
Former-commit-id: d2ad1bf3f2
This commit is contained in:
Nate Jensen 2014-03-20 14:19:17 -05:00 committed by Gerrit Code Review
commit 616223209c

View file

@ -465,7 +465,7 @@ public abstract class ContourRenderable implements IRenderable {
DataSource source = FillValueFilter.apply((DataSource) data,
Constants.LEGACY_NAN);
source = new GeographicDataSource(source, gridGeometry);
return new DataSource[] { data };
return new DataSource[] { source };
} else {
return dataRecord;
}