View available colormaps for previous versions #544
-
Hi, all, I'm wondering if there is a way to view what color maps are available for previous versions? I see this list of default color maps from in the docs, but I am working on application that uses a older version ( Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I don't think they changed since 2.0 |
Beta Was this translation helpful? Give feedback.
-
Incase anyone stumbles on this in the future, I was able to check the registered color maps in my current version by doing the following: from rio_tiler.colormap import cmap
valid_cmaps = [key for key in cmap.data.keys()]
valid_cmaps.sort()
print(valid_cmaps) |
Beta Was this translation helpful? Give feedback.
Incase anyone stumbles on this in the future, I was able to check the registered color maps in my current version by doing the following: