Skip to content

Commit

Permalink
Per #2883, backing out an unintended change I made to tcrmw_grid.cc. …
Browse files Browse the repository at this point in the history
…This change belongs on a different branch.
  • Loading branch information
JohnHalleyGotway committed May 13, 2024
1 parent 592cf89 commit e50cfd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libcode/vx_grid/tcrmw_grid.cc
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ RotatedLatLonGrid::latlon_to_xy(true_lat, true_lon, x, y);

x -= Nx*floor(x/Nx);

y -= Ny*floor(y/Ny);
x -= Nx*floor(x/Nx);


return;
Expand All @@ -442,7 +442,7 @@ void TcrmwGrid::xy_to_latlon(double x, double y, double & true_lat, double & tru

x -= Nx*floor(x/Nx);

y -= Ny*floor(y/Ny);
x -= Nx*floor(x/Nx);

RotatedLatLonGrid::xy_to_latlon(x, y, true_lat, true_lon);

Expand Down

0 comments on commit e50cfd3

Please sign in to comment.