We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 644f5d4 commit 5b4ca44Copy full SHA for 5b4ca44
bluemath_tk/core/plotting/utils.py
@@ -105,7 +105,7 @@ def join_colormaps(
105
106
bounds1 = np.linspace(value_range1[0], value_range1[1], 129)
107
bounds2 = np.linspace(value_range2[0], value_range2[1], 129)
108
- all_bounds = np.concatenate([bounds1[:-1], bounds2])
+ all_bounds = np.sort(np.concatenate([bounds1[:-1], bounds2]))
109
110
norm = BoundaryNorm(boundaries=all_bounds, ncolors=len(newcolors))
111
0 commit comments