Skip to content
Snippets Groups Projects
Commit 28daf9e9 authored by Luc Maisonobe's avatar Luc Maisonobe
Browse files

Fixed bilinear interpolation base points.

parent d147f5c8
No related branches found
No related tags found
No related merge requests found
......@@ -279,9 +279,9 @@ public class GlobalPressureTemperature2Model implements WeatherModel {
final double[][] fval = new double[][] {
{
gridGetter.applyAsDouble(southWest),
gridGetter.applyAsDouble(southEast)
gridGetter.applyAsDouble(northWest)
}, {
gridGetter.applyAsDouble(northWest),
gridGetter.applyAsDouble(southEast),
gridGetter.applyAsDouble(northEast)
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment