Skip to content

Commit

Permalink
Fixup 03ef162
Browse files Browse the repository at this point in the history
  • Loading branch information
wdeconinck committed Oct 16, 2023
1 parent 1fa9822 commit b8a595a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/atlas/mesh/MeshBuilder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ void validate_grid_vs_mesh(const atlas::Grid& grid, size_t nb_nodes, const doubl

double lonlat[2];
const auto equal_within_roundoff = [](const double a, const double b) -> bool {
return std::abs(a - b) <= 360.0 + 1.0e-16;
return std::abs(a - b) <= 360.0 * 1.0e-16;
};

// Check lonlats for each supported grid type
Expand Down

0 comments on commit b8a595a

Please sign in to comment.