Skip to content

Commit

Permalink
related to recommited bugfix #13
Browse files Browse the repository at this point in the history
I forgot one function
  • Loading branch information
JetteReeg committed Jul 4, 2024
1 parent 4a3854f commit ec26385
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Landscape.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2391,7 +2391,9 @@ rasterdata CheckRasterFile(string fname)
infile >> header >> r.yllcorner;

if (header != "yllcorner" && header != "YLLCORNER") r.errors++;
infile >> header >> r.cellsize;
double tmpcellsize;
infile >> header >> tmpcellsize;
r.cellsize = (int) tmpcellsize;

if (header != "cellsize" && header != "CELLSIZE") r.errors++;
infile >> header >> inint;
Expand Down

0 comments on commit ec26385

Please sign in to comment.