Skip to content
Snippets Groups Projects
Commit 53d64f75 authored by GUEZ Lionel's avatar GUEZ Lionel
Browse files

Do plot grid bounding box if not `uniform_lon_lat`

Do not try to plot grid bounding box if not `uniform_lon_lat`, for
now.
parent 8ef8fd9d
No related branches found
No related tags found
No related merge requests found
......@@ -140,7 +140,7 @@ def snapshot(
def plot_grid_bb(grid_nml, ax):
"""Grid bounding box."""
if grid_nml is not None:
if grid_nml is not None and grid_nml["UNIFORM_LON_LAT"]:
step = grid_nml["STEP_DEG"]
rect = patches.Rectangle(
grid_nml["corner_deg"],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment