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:
parent
df05080714
commit
5a51e70456
1 changed files with 6 additions and 4 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue