Skip to content

Commit

Permalink
Merge pull request #172 from ecmwf/feature/fix-mercator
Browse files Browse the repository at this point in the history
gridType=mercator fix
  • Loading branch information
shahramn authored Oct 26, 2023
2 parents 0114346 + 40c129e commit 4fcb936
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/grib_iterator_class_mercator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ static int init_mercator(grib_handle* h,
false_easting = x0;
false_northing = y0;
for (j = 0; j < ny; j++) {
y = j * DiInMetres;
y = j * DjInMetres;
for (i = 0; i < nx; i++) {
const int index = i + j * nx;
double _x, _y;
Expand Down

0 comments on commit 4fcb936

Please sign in to comment.