-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEOSOrangeBlue.py
28 lines (21 loc) · 980 Bytes
/
EOSOrangeBlue.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- coding: utf-8 -*-
"""
Created on Tue Mar 17 20:01:35 2020
@author: fenixnano
"""
#
colorlist = [[0.49072265625, 0.3198394775390625, 0.1322021484375, 1.0],
[0.673614501953125, 0.395721435546875, 0.1640167236328125, 1.0],
[0.8487091064453125, 0.49810791015625, 0.199127197265625, 1.0],
[0.959136962890625, 0.6641693115234375, 0.4729461669921875, 1.0],
[0.93994140625, 0.8194732666015625, 0.73516845703125, 1.0],
[0.9280242919921875, 0.9432525634765625, 0.9524383544921875, 1.0],
[0.7693023681640625, 0.8562164306640625, 0.92364501953125, 1.0],
[0.562713623046875, 0.687957763671875, 0.85186767578125, 1.0],
[0.356781005859375, 0.5228729248046875, 0.763336181640625, 1.0],
[0.2156524658203125, 0.3015899658203125, 0.6185760498046875, 1.0],
[0.065277099609375, 0.2276763916015625, 0.5663604736328125, 1.0]]
cmap_name = 'EOSorangeblue'
EOSorangeblue = LinearSegmentedColormap.from_list(
cmap_name, colorlist, N=128)
EOSorangeblue_r = EOSorangeblue.reversed()