Issue #1260 Added an extra grid cell around the slab to improve interpolation results.

Change-Id: I9ffaa42402aa4527946bcc973577bfc7b2232f57

Former-commit-id: 51bbb17d43e7e458e75f3229ec1521ecc04517e9
This commit is contained in:
Ron Anderson 2012-11-02 14:43:32 -05:00
parent df05080714
commit 5a51e70456

View file

@ -353,10 +353,12 @@ public class NetCDFUtils {
yindex.add(igc.y);
}
int xmin = Collections.min(xindex) - 1;
int xmax = Collections.max(xindex) + 1;
int ymin = Collections.min(yindex) - 1;
int ymax = Collections.max(yindex) + 1;
// find min/max plus a little extra for so interpolation doesn't have
// edge effects
int xmin = Collections.min(xindex) - 2;
int xmax = Collections.max(xindex) + 2;
int ymin = Collections.min(yindex) - 2;
int ymax = Collections.max(yindex) + 2;
xmin = Math.max(0, xmin);
ymin = Math.max(0, ymin);