Create Your Own Colormap

  • Detailed reference document of the VCS colormap can be found at here.

  • Let’s create your own VCS colormap.

  • Download ipynb file

Tutorial written by Jiwoo Lee (Oct. 2017)

Colormap for example 4 provided by Karl Taylor

Import modules

(back to top)

[1]:
import vcs
import MV2
from matplotlib.colors import LinearSegmentedColormap

Prepare a dummy array

(back to top) - Here I prepare a dummy 2D array (240 x 2), which is being used in this tutorial only for the visualization purpose.

[2]:
a = []

num_levels = 240

for i in range(0,num_levels):
  a.append(i/float(num_levels))

for i in range(0,num_levels):
  a.append(i/float(num_levels))

a = MV2.array(a)
a = MV2.reshape(a, (-1,num_levels))

a.id = 'dummy'

v = vcs.init()

Create a colormap

(back to top) - List of VCS default colormaps can be shown using vcs.listelements('colormap')

[3]:
vcs.listelements('colormap')
[3]:
['AMIP',
 'NCAR',
 'bl_to_darkred',
 'bl_to_drkorang',
 'blends',
 'blue2darkorange',
 'blue2darkred',
 'blue2green',
 'blue2grey',
 'blue2orange',
 'blue2orange2red',
 'blue_to_grey',
 'blue_to_grn',
 'blue_to_orange',
 'blue_to_orgred',
 'brown2blue',
 'brown_to_blue',
 'categorical',
 'classic',
 'default',
 'green2magenta',
 'grn_to_magenta',
 'inferno',
 'lightblue2darkblue',
 'ltbl_to_drkbl',
 'magma',
 'plasma',
 'rainbow',
 'rainbow_no_grn',
 'rainbownogreen',
 'sequential',
 'viridis',
 'white2blue',
 'white2green',
 'white2magenta',
 'white2red',
 'white2yellow',
 'white_to_blue',
 'white_to_green',
 'white_to_magenta',
 'white_to_red',
 'white_to_yellow']
[4]:
v.createcolormap('my_cmap')
vcs.listelements('colormap')
[4]:
['AMIP',
 'NCAR',
 'bl_to_darkred',
 'bl_to_drkorang',
 'blends',
 'blue2darkorange',
 'blue2darkred',
 'blue2green',
 'blue2grey',
 'blue2orange',
 'blue2orange2red',
 'blue_to_grey',
 'blue_to_grn',
 'blue_to_orange',
 'blue_to_orgred',
 'brown2blue',
 'brown_to_blue',
 'categorical',
 'classic',
 'default',
 'green2magenta',
 'grn_to_magenta',
 'inferno',
 'lightblue2darkblue',
 'ltbl_to_drkbl',
 'magma',
 'my_cmap',
 'plasma',
 'rainbow',
 'rainbow_no_grn',
 'rainbownogreen',
 'sequential',
 'viridis',
 'white2blue',
 'white2green',
 'white2magenta',
 'white2red',
 'white2yellow',
 'white_to_blue',
 'white_to_green',
 'white_to_magenta',
 'white_to_red',
 'white_to_yellow']
[5]:
v.setcolormap('my_cmap')
  • Let’s make the colormap palette as pure white first

  • Note that ‘my_cmap’ colormap is copy of the default colormap at the beginning

[6]:
for i in range(0,240):
    v.setcolorcell(i,100,100,100)
[7]:
v.setcolorcell(0,0,0,0) # black
v.setcolorcell(1,50,50,50) # gray
v.setcolorcell(2,75,75,75) # silver
v.setcolorcell(3,100,100,100) # white
v.setcolorcell(4,50,0,0) # maroon
v.setcolorcell(5,100,0,0) # red
v.setcolorcell(6,50,50,0) # olive
v.setcolorcell(7,100,100,0) # yellow
v.setcolorcell(8,0,50,0) # green
v.setcolorcell(9,0,100,0) # lime
v.setcolorcell(10,0,50,50) # teal
v.setcolorcell(11,0,100,100) # aqua
v.setcolorcell(12,0,0,50) # navy
v.setcolorcell(13,0,0,100) # blue
v.setcolorcell(14,50,0,50) # purple
v.setcolorcell(15,100,0,100) # fuchsia
  • Use box.color_1 and box.color_2 of boxfill to set starting and ending colors

[8]:
box = v.createboxfill()
box.color_1 = 0
box.color_2 = 15
box.colormap = 'my_cmap'
v.plot(a,box)
[8]:
../_images/Jupyter_Color_map_create_own_17_0.png

Alternative way of creating own colormaps

(back to top)

[9]:
def CreateOwnColormap(cmap_name, colors):

    # Create a Matplotlib colomap
    cm = LinearSegmentedColormap.from_list(cmap_name, colors, N=240)

    # Convert Matplotlib colormap to VCS one
    vcs_cmap = vcs.colors.matplotlib2vcs(cm, vcs_name=cmap_name)

    return vcs_cmap

Define name and colors for your own colormap

(back to top)

Example 1

(back to top)

[10]:
# Define my own colormap (name and sequentially varying colors)
cmap_name = 'cmap1'
colors = ['white','red','orange',
          'yellow','green','blue','violet',
          'purple','black']
CreateOwnColormap(cmap_name, colors)
[10]:
<vcs.colormap.Cp at 0x12183fa48>
  • Visualize example 1

[11]:
box = v.createboxfill()
box.color_1 = 0
box.color_2 = 239

box.colormap = 'cmap1'
v.plot(a,box)
[11]:
../_images/Jupyter_Color_map_create_own_24_0.png

Example 2

(back to top)

  • Define colors by using list of tuples of R, G, B numbers (0-1)

[12]:
cmap_name2 = 'cmap2'
colors2 = [(1,0,0),(1,1,1),(0,0,1)] # red, white, blue
CreateOwnColormap(cmap_name2, colors2)
[12]:
<vcs.colormap.Cp at 0x11f0ea470>
  • Visualize example 2

[13]:
v.clear()
box.colormap = 'cmap2'
v.plot(a,box)
[13]:
../_images/Jupyter_Color_map_create_own_28_0.png

Example 3

(back to top)

  • Similar to example 1 but with more complicated set up.

[14]:
cmap_name3 = 'cmap3'
colors3 = ['white','lavender','royalblue','navy',
           'darkviolet','darkred','tomato','darkorange',
           'orange','yellow']
CreateOwnColormap(cmap_name3, colors3)
[14]:
<vcs.colormap.Cp at 0x11f0ea368>
  • Visualize example 3

[15]:
v.clear()
box.colormap = 'cmap3'
v.plot(a,box)
[15]:
../_images/Jupyter_Color_map_create_own_32_0.png

Example 4

(back to top)

  • Similar to example 2 but with more complicated set up.

[16]:
cmap_name4 = 'cmap4'

colors4 = [(99,93,60),
           (99,80,40),
           (99,60,20),
           (99,40,11),
           (99,0,0),
           (51,0,0),
           (44,11,62),
           (0,40,99),
           (20,60,99),
           (40,80,99),
           (60,93,99),
           (80,99,99),
          ]

colors4 = MV2.divide(colors4,100.) # Convert range 0-100 to 0-1

CreateOwnColormap(cmap_name4, colors4)
[16]:
<vcs.colormap.Cp at 0x11f086100>
[17]:
v.clear()
box.colormap = 'cmap4'
v.plot(a,box)
[17]:
../_images/Jupyter_Color_map_create_own_35_0.png