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

Fixed interpolation error.

parent 73a12c2c
No related branches found
No related tags found
No related merge requests found
......@@ -188,8 +188,8 @@ public class SimpleTile implements Tile {
public double interpolateElevation(double latitude, double longitude)
throws RuggedException {
final double doubleLatitudeIndex = getLatitudeIndex(latitude);
final double doubleLongitudeIndex = getLontitudeIndex(longitude);
final double doubleLatitudeIndex = getDoubleLatitudeIndex(latitude);
final double doubleLongitudeIndex = getDoubleLontitudeIndex(longitude);
final int latitudeIndex = (int) FastMath.floor(doubleLatitudeIndex);
final int longitudeIndex = (int) FastMath.floor(doubleLongitudeIndex);
if (latitudeIndex < 0 || latitudeIndex >= (latitudeRows - 2) ||
......
......@@ -94,6 +94,19 @@ public class SimpleTileTest {
}
@Test
public void testInterpolation() throws RuggedException {
SimpleTile tile = new SimpleTileFactory().createTile();
tile.setGeometry(0.0, 0.0, 1.0, 1.0, 50, 50);
tile.setElevation(20, 14, 91.0);
tile.setElevation(20, 15, 210.0);
tile.setElevation(21, 14, 162.0);
tile.setElevation(21, 15, 95.0);
Assert.assertEquals(150.5, tile.interpolateElevation(20.0, 14.5), 1.0e-10);
Assert.assertEquals(128.5, tile.interpolateElevation(21.0, 14.5), 1.0e-10);
Assert.assertEquals(146.1, tile.interpolateElevation(20.2, 14.5), 1.0e-10);
}
@Test
public void testOutOfBounds() throws RuggedException {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment