Skip to content

Commit

Permalink
Refined lune plot background grid appearance.
Browse files Browse the repository at this point in the history
  • Loading branch information
thurinj committed Jul 5, 2024
1 parent 9b9d303 commit 09e3e81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mtuq/graphics/uq/_matplotlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,8 +547,8 @@ def _generate_lune(ax=None):

# Generate curved gridlines
num_lines = 7
lon_lines = np.linspace(-30, 30, num_lines * 2 + 1)
lat_lines = np.linspace(-90, 90, num_lines)
lon_lines = np.linspace(-30, 30, num_lines)
lat_lines = np.linspace(-90, 90, num_lines * 2 + 1)

for lon_line in lon_lines:
lat_line = np.linspace(-90, 90, 1000)
Expand Down

0 comments on commit 09e3e81

Please sign in to comment.