Issue #2791 fix NaN handling of smoothed contours.

Former-commit-id: b9cbe28411 [formerly 76fcfe163e] [formerly b9cbe28411 [formerly 76fcfe163e] [formerly c5aac15437 [formerly a6f8a0bd2758008997555e08ea7245517535b1db]]]
Former-commit-id: c5aac15437
Former-commit-id: 133767ff26 [formerly a9ee8b9b2f]
Former-commit-id: 466ce63273
This commit is contained in:
Ben Steffensmeier 2014-03-20 13:34:52 -05:00
parent 51eda792e5
commit 49ebe73b07

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;
}