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 951d2b6 commit 2f4def8Copy full SHA for 2f4def8
pysteps/visualization/precipfields.py
@@ -421,14 +421,14 @@ def _dynamic_formatting_floats(floatArray, colorscale='MeteoSwiss'):
421
422
return labels
423
424
-def _plot_map_basemap(bm_params, drawlonlatlines=False, coastlinecolor=(1,1,1),
425
- countrycolor=(0.3,0.3,0.3), continentcolor=(1,1,1),
426
- lakecolor=(0.7,0.7,0.7), rivercolor=(0.7,0.7,0.7),
427
- mapboundarycolor=(0.7,0.7,0.7)):
+def _plot_map_basemap(bm_params, drawlonlatlines=False, coastlinecolor=(0.3,0.3,0.3),
+ countrycolor=(0.3,0.3,0.3), continentcolor=(0.95,0.95,0.85),
+ lakecolor=(0.65,0.75,0.9), rivercolor=(0.65,0.75,0.9),
+ mapboundarycolor=(0.65,0.75,0.9)):
428
bm = Basemap(**bm_params)
429
430
if coastlinecolor is not None:
431
- bm.drawcoastlines(color=coastlinecolor, zorder=0.1)
+ bm.drawcoastlines(color=coastlinecolor, linewidth=0.1, zorder=0.1)
432
if countrycolor is not None:
433
bm.drawcountries(countrycolor, zorder=0.2)
434
if rivercolor is not None:
0 commit comments