Skip to content

Commit

Permalink
commit_20231129_15:06
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiodelogu committed Nov 29, 2023
1 parent 458c236 commit 5501dfa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/Analyzer_Datasets/maps/lib_graph_map_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,9 @@ def plot_map_var(file_path, var_darray, var_time, var_limit_min=None, var_limit_

# Create a background map
if fig_background == 'stamen':
map_background = cimgt.Stamen('terrain-background')
log_stream.error(' ===> Cartopy background "stamen" is not supported by 2023-10-31. Please use "osm" instead.')
raise RuntimeError('Use "osm" or other cartopy background to render the map variable')
# map_background = cimgt.Stamen('terrain-background')
elif fig_background == 'osm':
'''
# https://stackoverflow.com/questions/57531716/valueerror-a-non-empty-list-of-tiles-should-be-provided-to-merge-cartopy-osm
Expand Down

0 comments on commit 5501dfa

Please sign in to comment.