Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/solarpy/plotting/multiplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -628,8 +628,8 @@ def multiplot(times, data, meta, horizon=None, google_api_key=None, figsize=(24,
solar_azimuth=data["solar_azimuth"][mask],
solar_elevation=90 - data["solar_zenith"][mask],
ax=ax,
cmap=solarpy.plotting.two_part_colormap()
norm=TwoSlopeNorm(vmin=0, vcenter=0.05, vmax=0.7)
cmap=solarpy.plotting.two_part_colormap(),
Comment thread
AdamRJensen marked this conversation as resolved.
Outdated
norm=TwoSlopeNorm(vmin=0, vcenter=0.05, vmax=0.7),
colorbar_label=clabel,
northern_hemisphere=meta["latitude"] > 0,
)
Expand Down
Loading