Skip to content

Commit 6934f3d

Browse files
committed
naming consistency
1 parent 650d5d5 commit 6934f3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/java/com/bc/fiduceo/reader/slstr/SlstrPixelLocator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ public Point2D[] getPixelLocation(double lon, double lat) {
2727
final Point2D[] pixelLocations = super.getPixelLocation(lon, lat);
2828
for (final Point2D point : pixelLocations) {
2929
final double mappedX = transform.inverseCoordinate_X(point.getX());
30-
final double mappedy = transform.inverseCoordinate_Y(point.getY());
30+
final double mappedY = transform.inverseCoordinate_Y(point.getY());
3131

32-
point.setLocation(mappedX + 0.5, mappedy + 0.5);
32+
point.setLocation(mappedX + 0.5, mappedY + 0.5);
3333
}
3434
return pixelLocations;
3535
}

0 commit comments

Comments
 (0)