We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fee25cd commit 34aaa7fCopy full SHA for 34aaa7f
1 file changed
src/gridtopology.jl
@@ -44,6 +44,10 @@ function getgridtopology(lon_vertices, lat_vertices, lev)
44
elseif isapprox_lon(NPlon, rot180(NPlon)) && isapprox(NPlat, rot180(NPlat))
45
return TripolarGridTopology(nx, ny, nz)
46
else
47
+ @warn """
48
+ Unknown grid topology detected. Things might not work as expected.
49
+ See `getgridtopology` function to see what failed the checks
50
+ """
51
return UnknownGridTopology(nx, ny, nz)
52
end
53
0 commit comments