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 828755c commit 72a2ddcCopy full SHA for 72a2ddc
mesaPlot/plot.py
@@ -5328,6 +5328,7 @@ def plotKip3(
5328
cbar_ax=None,
5329
cpad=0.0,
5330
cbar_extend="neither",
5331
+ zrng=None,
5332
):
5333
5334
if fig == None:
@@ -5563,6 +5564,9 @@ def plotKip3(
5563
5564
if cmax is not None:
5565
vmax = cmax
5566
5567
+ if zrng is not None:
5568
+ vmin = vmax - zrng
5569
+
5570
if not zaxis_contour:
5571
im1 = ax.imshow(
5572
data_z.T,
0 commit comments