@aguacerowx/javascript-sdk 0.0.16 → 0.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/AguaceroCore.js +90 -45
- package/dist/default-colormaps.js +524 -437
- package/dist/dictionaries.js +1996 -2411
- package/package.json +13 -2
- package/src/AguaceroCore.js +820 -172
- package/src/default-colormaps.js +1383 -986
- package/src/dictionaries.js +2119 -2548
- package/src/getBundleId.js +8 -22
- package/src/getBundleId.native.js +14 -0
- package/src/gridDecodePipeline.js +32 -0
- package/src/gridDecodeWorker.js +24 -0
- package/src/index.js +22 -1
- package/src/nexradTilts.js +128 -0
- package/src/nexrad_level3_catalog.js +26 -0
- package/src/nexrad_support.js +276 -0
- package/src/satellite_support.js +305 -0
|
@@ -5,29 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.DEFAULT_COLORMAPS = void 0;
|
|
7
7
|
const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
8
|
-
"ptypeRefl": {
|
|
9
|
-
"type": "fill",
|
|
10
|
-
"gridded": false,
|
|
11
|
-
"interpolationType": "interpolate",
|
|
12
|
-
"units": {
|
|
13
|
-
"dBZ": {
|
|
14
|
-
"colormap": [
|
|
15
|
-
// --- Rain Palette (Standard Reflectivity Values: 5 to 80) ---
|
|
16
|
-
5, "#00cc66", 35, "#ffff00", 70, "#ff8800", 80, "#ff0000",
|
|
17
|
-
// --- Snow Palette (Reflectivity Values Offset by +100) ---
|
|
18
|
-
105, "#33ccff", 135, "#8800cc", 170, "#ffccff", 180, "#dddddd",
|
|
19
|
-
// --- Freezing Rain Palette (Reflectivity Values Offset by +200) ---
|
|
20
|
-
205, "#ff3300", 230, "#ffaa33", 280, "#cc0066",
|
|
21
|
-
// icep
|
|
22
|
-
305, "#8800cc", 370, "#ffbb00", 380, "#dddddd"],
|
|
23
|
-
"breakpoints": []
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
8
|
"MergedZdr_04.00": {
|
|
28
|
-
type: "fill",
|
|
29
|
-
gridded: false,
|
|
30
|
-
interpolationType: "interpolate",
|
|
31
9
|
units: {
|
|
32
10
|
'dB': {
|
|
33
11
|
colormap: [-4.0, "#404040", -2.0, "#808080", -0.5, "#c0c0c0", 0.0, "#e0e0e0", 0.3, "#9966cc", 0.6, "#000080", 1.0, "#0066cc", 1.5, "#00cccc", 2.0, "#00ff00", 2.5, "#ffff00", 3.0, "#ff9900", 4.0, "#ff0000", 5.0, "#cc0000", 6.0, "#ff66cc", 8.0, "#ffffff", 20.0, "#800080"],
|
|
@@ -36,9 +14,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
36
14
|
}
|
|
37
15
|
},
|
|
38
16
|
"MergedRhoHV_04.00": {
|
|
39
|
-
type: "fill",
|
|
40
|
-
gridded: false,
|
|
41
|
-
interpolationType: "interpolate",
|
|
42
17
|
units: {
|
|
43
18
|
'None': {
|
|
44
19
|
colormap: [0.20, "#c0c0c0", 0.45, "#c0c0c0", 0.65, "#000080", 0.75, "#0000ff", 0.80, "#8066ff", 0.85, "#00ff00", 0.90, "#80ff00", 0.93, "#ffff00", 0.95, "#ffcc00", 0.96, "#ff9900", 0.97, "#ff6600", 0.98, "#ff0000", 0.99, "#cc0000", 1.00, "#800080", 1.05, "#ffccff", 3.00, "#800080"],
|
|
@@ -46,10 +21,56 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
46
21
|
}
|
|
47
22
|
}
|
|
48
23
|
},
|
|
24
|
+
// NEXRAD Level-2 variables (REF, PHI, ZDR, RHO, VEL, SW)
|
|
25
|
+
"nexrad_phi": {
|
|
26
|
+
units: {
|
|
27
|
+
'deg': {
|
|
28
|
+
colormap: [-180, "#0000ff", -90, "#00ff00", 0, "#ffff00", 90, "#ff9900", 180, "#ff0000"],
|
|
29
|
+
breakpoints: [-180, -90, 0, 90, 180]
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"nexrad_vel": {
|
|
34
|
+
units: {
|
|
35
|
+
'm/s': {
|
|
36
|
+
colormap: [-30, "#0000ff", -20, "#0066ff", -10, "#00ccff", -5, "#00ff00", 0, "#808080", 5, "#ffff00", 10, "#ff9900", 20, "#ff0000", 30, "#cc0000"],
|
|
37
|
+
breakpoints: [-30, -20, -10, -5, 0, 5, 10, 20, 30]
|
|
38
|
+
},
|
|
39
|
+
'mph': {
|
|
40
|
+
colormap: [-67, "#0000ff", -45, "#0066ff", -22, "#00ccff", -11, "#00ff00", 0, "#808080", 11, "#ffff00", 22, "#ff9900", 45, "#ff0000", 67, "#cc0000"],
|
|
41
|
+
breakpoints: [-67, -45, -22, -11, 0, 11, 22, 45, 67]
|
|
42
|
+
},
|
|
43
|
+
'kts': {
|
|
44
|
+
colormap: [-58, "#0000ff", -39, "#0066ff", -19, "#00ccff", -10, "#00ff00", 0, "#808080", 10, "#ffff00", 19, "#ff9900", 39, "#ff0000", 58, "#cc0000"],
|
|
45
|
+
breakpoints: [-58, -39, -19, -10, 0, 10, 19, 39, 58]
|
|
46
|
+
},
|
|
47
|
+
'km/h': {
|
|
48
|
+
colormap: [-108, "#0000ff", -72, "#0066ff", -36, "#00ccff", -18, "#00ff00", 0, "#808080", 18, "#ffff00", 36, "#ff9900", 72, "#ff0000", 108, "#cc0000"],
|
|
49
|
+
breakpoints: [-108, -72, -36, -18, 0, 18, 36, 72, 108]
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"nexrad_sw": {
|
|
54
|
+
units: {
|
|
55
|
+
'm/s': {
|
|
56
|
+
colormap: [0, "#00ff00", 2, "#80ff00", 4, "#ffff00", 6, "#ffcc00", 8, "#ff9900", 10, "#ff6600", 12, "#ff0000", 16, "#cc0000", 20, "#800080"],
|
|
57
|
+
breakpoints: [0, 2, 4, 6, 8, 10, 12, 16, 20]
|
|
58
|
+
},
|
|
59
|
+
'mph': {
|
|
60
|
+
colormap: [0, "#00ff00", 4.5, "#80ff00", 9, "#ffff00", 13, "#ffcc00", 18, "#ff9900", 22, "#ff6600", 27, "#ff0000", 36, "#cc0000", 45, "#800080"],
|
|
61
|
+
breakpoints: [0, 4.5, 9, 13, 18, 22, 27, 36, 45]
|
|
62
|
+
},
|
|
63
|
+
'kts': {
|
|
64
|
+
colormap: [0, "#00ff00", 3.9, "#80ff00", 7.8, "#ffff00", 11.7, "#ffcc00", 15.6, "#ff9900", 19.4, "#ff6600", 23.3, "#ff0000", 31.1, "#cc0000", 39, "#800080"],
|
|
65
|
+
breakpoints: [0, 3.9, 7.8, 11.7, 15.6, 19.4, 23.3, 31.1, 39]
|
|
66
|
+
},
|
|
67
|
+
'km/h': {
|
|
68
|
+
colormap: [0, "#00ff00", 7.2, "#80ff00", 14.4, "#ffff00", 21.6, "#ffcc00", 28.8, "#ff9900", 36, "#ff6600", 43.2, "#ff0000", 57.6, "#cc0000", 72, "#800080"],
|
|
69
|
+
breakpoints: [0, 7.2, 14.4, 21.6, 28.8, 36, 43.2, 57.6, 72]
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
},
|
|
49
73
|
"rotation": {
|
|
50
|
-
type: "fill",
|
|
51
|
-
gridded: false,
|
|
52
|
-
interpolationType: "interpolate",
|
|
53
74
|
units: {
|
|
54
75
|
's⁻¹': {
|
|
55
76
|
colormap: [0.000, "#e0e0e0", 0.003, "#c0c0c0", 0.004, "#a0a0a0", 0.005, "#808080", 0.006, "#666600", 0.007, "#999900", 0.008, "#cccc00", 0.009, "#ffff00", 0.010, "#ffff00", 0.011, "#cc0000", 0.012, "#cc0000", 0.013, "#ff0000", 0.014, "#ff0000", 0.015, "#ff0000", 0.020, "#00ffff"],
|
|
@@ -58,9 +79,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
58
79
|
}
|
|
59
80
|
},
|
|
60
81
|
"hail": {
|
|
61
|
-
type: "fill",
|
|
62
|
-
gridded: false,
|
|
63
|
-
interpolationType: "interpolate",
|
|
64
82
|
units: {
|
|
65
83
|
'mm': {
|
|
66
84
|
colormap: [0, "#00ffff", 1, "#00ffff", 2, "#0099ff", 4, "#0066ff", 6, "#00ff00", 8, "#00ff00", 10, "#00ff00", 15, "#ffff00", 20, "#ffcc00", 30, "#ff9900", 40, "#ff0000", 50, "#ff0000", 75, "#ff00ff", 100, "#8000ff"],
|
|
@@ -96,9 +114,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
96
114
|
}
|
|
97
115
|
},
|
|
98
116
|
"ff_ari": {
|
|
99
|
-
type: "fill",
|
|
100
|
-
gridded: false,
|
|
101
|
-
interpolationType: "interpolate",
|
|
102
117
|
units: {
|
|
103
118
|
'year': {
|
|
104
119
|
colormap: [0, "#e0e0e0", 1, "#00ff00", 2, "#00ff00", 3, "#ffff00", 4, "#ffff00", 6, "#ffcc00", 8, "#ff9900", 10, "#ff9900", 20, "#ff0000", 30, "#ff0000", 40, "#ff0000", 50, "#ff0000", 75, "#ff00ff", 100, "#ff00ff", 200, "#8000ff"],
|
|
@@ -107,9 +122,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
107
122
|
}
|
|
108
123
|
},
|
|
109
124
|
"lightning_prob": {
|
|
110
|
-
type: "fill",
|
|
111
|
-
gridded: false,
|
|
112
|
-
interpolationType: "interpolate",
|
|
113
125
|
units: {
|
|
114
126
|
'%': {
|
|
115
127
|
colormap: [10, "#00ccff", 20, "#0066ff", 30, "#00ff00", 40, "#00ff00", 50, "#00ff00", 60, "#ffff00", 70, "#ff9900", 80, "#ffccff", 90, "#ff00ff", 100, "#ffffff"],
|
|
@@ -118,9 +130,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
118
130
|
}
|
|
119
131
|
},
|
|
120
132
|
"vil": {
|
|
121
|
-
type: "fill",
|
|
122
|
-
gridded: false,
|
|
123
|
-
interpolationType: "interpolate",
|
|
124
133
|
units: {
|
|
125
134
|
'kg/m²': {
|
|
126
135
|
colormap: [0.1, "#00ffff", 1, "#00ffff", 2, "#0099ff", 3, "#0066ff", 4, "#00ff00", 5, "#00ff00", 6, "#00ff00", 7, "#ffff00", 8, "#ffcc00", 10, "#ff9900", 12, "#ff0000", 15, "#ff0000", 18, "#ff00ff", 25, "#8000ff", 30, "#8000ff", 40, "#ffffff", 50, "#e0e0e0", 60, "#c0c0c0", 70, "#606060"],
|
|
@@ -128,32 +137,39 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
128
137
|
}
|
|
129
138
|
}
|
|
130
139
|
},
|
|
140
|
+
"sde_change": {
|
|
141
|
+
units: {
|
|
142
|
+
'in': {
|
|
143
|
+
colormap: [-100, "#e60000", -50, "#e60000", 0, "#ffffff", 50, "#0000cc", 100, "#0000cc"],
|
|
144
|
+
breakpoints: [0]
|
|
145
|
+
},
|
|
146
|
+
'cm': {
|
|
147
|
+
colormap: [-300, "#e60000", -150, "#e60000", 0, "#ffffff", 150, "#0000cc", 300, "#0000cc"],
|
|
148
|
+
breakpoints: [0]
|
|
149
|
+
},
|
|
150
|
+
'mm': {
|
|
151
|
+
colormap: [-3000, "#e60000", -1500, "#e60000", 0, "#ffffff", 1500, "#0000cc", 3000, "#0000cc"],
|
|
152
|
+
breakpoints: [0]
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
},
|
|
131
156
|
"gh_tendency": {
|
|
132
|
-
type: "fill",
|
|
133
|
-
gridded: false,
|
|
134
|
-
interpolationType: "interpolate",
|
|
135
157
|
units: {
|
|
136
158
|
'dam': {
|
|
137
|
-
colormap: [-60, "#0000cc", -
|
|
159
|
+
colormap: [-60, "#0000cc", -20, "#0000cc", 0, "#ffffff", 20, "#e60000", 60, "#e60000"],
|
|
138
160
|
breakpoints: [-60, -58, -56, -54, -52, -50, -48, -46, -44, -42, -40, -38, -36, -34, -32, -30, -28, -26, -24, -22, -20, -18, -16, -14, -12, -10, -8, -6, -4, -2, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60]
|
|
139
161
|
}
|
|
140
162
|
}
|
|
141
163
|
},
|
|
142
164
|
"refc_0": {
|
|
143
|
-
type: "fill",
|
|
144
|
-
gridded: false,
|
|
145
|
-
interpolationType: "interpolate",
|
|
146
165
|
units: {
|
|
147
166
|
'dBZ': {
|
|
148
|
-
colormap: [5, "#
|
|
167
|
+
colormap: [5, "#8fd3fe", 10, "#4d9be6", 20, "#4d65b4", 25, "#239064", 30, "#91db69", 35, "#fbfe86", 40, "#f9c22b", 45, "#fb6b1d", 50, "#e83b3b", 55, "#ae2334", 60, "#6b3e75", 65, "#905ea9", 70, "#a884f3", 75, "#eaaded", 80, "#e8e8e8"],
|
|
149
168
|
breakpoints: [5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80]
|
|
150
169
|
}
|
|
151
170
|
}
|
|
152
171
|
},
|
|
153
172
|
"mslma_0": {
|
|
154
|
-
type: "line",
|
|
155
|
-
gridded: true,
|
|
156
|
-
interpolationType: "interpolate",
|
|
157
173
|
units: {
|
|
158
174
|
'hPa': {
|
|
159
175
|
colormap: [900, "#0033ff", 1000, "#00d5ff", 1002, "#ff6666", 1060, "#ff0000"],
|
|
@@ -162,9 +178,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
162
178
|
}
|
|
163
179
|
},
|
|
164
180
|
"pres2PVU": {
|
|
165
|
-
type: "fill",
|
|
166
|
-
gridded: false,
|
|
167
|
-
interpolationType: "interpolate",
|
|
168
181
|
units: {
|
|
169
182
|
'hPa': {
|
|
170
183
|
colormap: [20, "#cc3333", 150, "#ff9933", 210, "#ffdd00", 375, "#33cc66", 390, "#3366cc", 510, "#4d88ff", 570, "#66e6ff", 645, "#ff99ff", 750, "#cc33cc"],
|
|
@@ -173,9 +186,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
173
186
|
}
|
|
174
187
|
},
|
|
175
188
|
"theta2PVU": {
|
|
176
|
-
type: "fill",
|
|
177
|
-
gridded: false,
|
|
178
|
-
interpolationType: "interpolate",
|
|
179
189
|
units: {
|
|
180
190
|
'°K': {
|
|
181
191
|
colormap: [260, "#cc66cc", 300, "#cc0066", 320, "#66ccff", 345, "#3366cc", 350, "#00cc33", 375, "#ffee00", 450, "#ff3333"],
|
|
@@ -184,9 +194,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
184
194
|
}
|
|
185
195
|
},
|
|
186
196
|
"vo": {
|
|
187
|
-
type: "fill",
|
|
188
|
-
gridded: false,
|
|
189
|
-
interpolationType: "interpolate",
|
|
190
197
|
units: {
|
|
191
198
|
's⁻¹': {
|
|
192
199
|
colormap: [-80, "#444444", -40, "#444444", 0, "#dddddd", 4, "#ffee66", 12, "#ff9933", 20, "#ff6600", 32, "#cc3366", 40, "#9933aa", 60, "#3333ff", 72, "#333399", 80, "#00ffff", 150, "#ffffffff"],
|
|
@@ -195,83 +202,71 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
195
202
|
}
|
|
196
203
|
},
|
|
197
204
|
"bulk_shear_speed_upper": {
|
|
198
|
-
type: "fill",
|
|
199
|
-
gridded: true,
|
|
200
|
-
interpolationType: "interpolate",
|
|
201
205
|
units: {
|
|
202
206
|
'kts': {
|
|
203
|
-
colormap: [
|
|
207
|
+
colormap: [0, "#7f708a", 20, "#484a77", 40, "#4d9be6", 60, "#eaaded", 80, "#f04f78", 100, "#831c5d", 120, "#f7961a", 140, "#fbfe86", 200, "#ededed"],
|
|
204
208
|
breakpoints: [20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, 170, 180]
|
|
205
209
|
},
|
|
206
210
|
'm/s': {
|
|
207
|
-
colormap: [
|
|
211
|
+
colormap: [0, "#7f708a", 10, "#484a77", 20, "#4d9be6", 30, "#eaaded", 40, "#f04f78", 50, "#831c5d", 60, "#f7961a", 70, "#fbfe86", 100, "#ededed"],
|
|
208
212
|
breakpoints: [10, 14, 18, 22, 26, 30, 34, 38, 42, 46, 50, 54, 58, 62, 66, 70, 74, 78, 82, 86, 90]
|
|
209
213
|
}
|
|
210
214
|
}
|
|
211
215
|
},
|
|
212
216
|
"bulk_shear_speed_lower": {
|
|
213
|
-
type: "fill",
|
|
214
|
-
gridded: true,
|
|
215
|
-
interpolationType: "interpolate",
|
|
216
217
|
units: {
|
|
217
218
|
'kts': {
|
|
218
|
-
colormap: [
|
|
219
|
+
colormap: [0, "#7f708a", 20, "#494a77", 40, "#4d9be6", 60, "#eaaded", 80, "#f04f77", 100, "#821c5d"],
|
|
219
220
|
breakpoints: [10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90]
|
|
220
221
|
},
|
|
221
222
|
'm/s': {
|
|
222
|
-
colormap: [
|
|
223
|
+
colormap: [0, "#7f708a", 10, "#494a77", 20, "#4d9be6", 30, "#eaaded", 40, "#f04f77", 50, "#821c5d"],
|
|
223
224
|
breakpoints: [5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45]
|
|
224
225
|
}
|
|
225
226
|
}
|
|
226
227
|
},
|
|
227
228
|
"hlcy": {
|
|
228
|
-
type: "fill",
|
|
229
|
-
gridded: false,
|
|
230
|
-
interpolationType: "interpolate",
|
|
231
229
|
units: {
|
|
232
230
|
'm²/s²': {
|
|
233
|
-
colormap: [-1000, "#
|
|
231
|
+
colormap: [-1000, "#fbff86", -300, "#fbb954", 0, "#625565", 50, "#8fd3fe", 100, "#4d9be6", 150, "#4d65b4", 200, "#484a77", 250, "#323353", 300, "#831c5d", 400, "#c32454", 500, "#f04f78", 600, "#f68181", 700, "#fca790", 800, "#fdcbb0", 1500, "#ebebeb"],
|
|
234
232
|
breakpoints: [-1500, -1450, -1400, -1350, -1300, -1250, -1200, -1150, -1100, -1050, -1000, -950, -900, -850, -800, -750, -700, -650, -600, -550, -500, -450, -400, -350, -300, -250, -200, -150, -100, -50, 0, 50, 100, 150, 200, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 800, 850, 900, 950, 1000, 1050, 1100, 1150, 1200, 1250, 1300, 1350, 1400, 1450, 1500]
|
|
235
233
|
}
|
|
236
234
|
}
|
|
237
235
|
},
|
|
238
|
-
"
|
|
239
|
-
type: "fill",
|
|
240
|
-
gridded: false,
|
|
241
|
-
interpolationType: "interpolate",
|
|
236
|
+
"mxuphl": {
|
|
242
237
|
units: {
|
|
243
238
|
'm²/s²': {
|
|
244
|
-
colormap: [2, "#
|
|
239
|
+
colormap: [2, "#6754aa",
|
|
240
|
+
// deep purple
|
|
241
|
+
20, "#2a7fbb",
|
|
242
|
+
// blue
|
|
243
|
+
50, "#91d28c",
|
|
244
|
+
// green
|
|
245
|
+
100, "#f4fca9",
|
|
246
|
+
// yellow
|
|
247
|
+
130, "#ff9609",
|
|
248
|
+
// orange
|
|
249
|
+
160, "#d51c1c",
|
|
250
|
+
// red
|
|
251
|
+
200, "#d012a1",
|
|
252
|
+
// magenta
|
|
253
|
+
270, "#dd71c5",
|
|
254
|
+
// pink
|
|
255
|
+
400, "#671f6c" // dark purple
|
|
256
|
+
],
|
|
245
257
|
breakpoints: [2, 5, 10, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 120, 140, 160, 180, 200, 220, 240, 260, 280, 300, 320, 340, 360, 380, 400, 440, 480, 520, 560]
|
|
246
258
|
}
|
|
247
259
|
}
|
|
248
260
|
},
|
|
249
|
-
"mxuphl_3000": {
|
|
250
|
-
type: "fill",
|
|
251
|
-
gridded: false,
|
|
252
|
-
interpolationType: "interpolate",
|
|
253
|
-
units: {
|
|
254
|
-
'm²/s²': {
|
|
255
|
-
colormap: [2, "#99ffff", 90, "#0077ff", 100, "#ffee00", 200, "#ff66ff", 300, "#8800ee"],
|
|
256
|
-
breakpoints: [2, 5, 10, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, 170, 180, 190, 200, 220, 240, 260, 280, 300]
|
|
257
|
-
}
|
|
258
|
-
}
|
|
259
|
-
},
|
|
260
261
|
"ehi": {
|
|
261
|
-
type: "fill",
|
|
262
|
-
gridded: false,
|
|
263
|
-
interpolationType: "interpolate",
|
|
264
262
|
units: {
|
|
265
263
|
'None': {
|
|
266
|
-
colormap: [
|
|
264
|
+
colormap: [1, "#1fbc73", 2, "#fbfe86", 4, "#f9c22b", 6, "#e83b3b", 8, "#6e2727", 20, "#c7dcd0"],
|
|
267
265
|
breakpoints: [-20.0, -19.5, -19.0, -18.5, -18.0, -17.5, -17.0, -16.5, -16.0, -15.5, -15.0, -14.5, -14.0, -13.5, -13.0, -12.5, -12.0, -11.5, -11.0, -10.5, -10.0, -9.5, -9.0, -8.5, -8.0, -7.5, -7.0, -6.5, -6.0, -5.5, -5.0, -4.5, -4.0, -3.5, -3.0, -2.5, -2.0, -1.5, -1.0, -0.5, 0.0, 0.5, 1.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0, 4.5, 5.0, 5.5, 6.0, 6.5, 7.0, 7.5, 8.0, 8.5, 9.0, 9.5, 10.0, 10.5, 11.0, 11.5, 12.0, 12.5, 13.0, 13.5, 14.0, 14.5, 15.0, 15.5, 16.0, 16.5, 17.0, 17.5, 18.0, 18.5, 19.0, 19.5, 20.0]
|
|
268
266
|
}
|
|
269
267
|
}
|
|
270
268
|
},
|
|
271
269
|
"slr": {
|
|
272
|
-
type: "fill",
|
|
273
|
-
gridded: false,
|
|
274
|
-
interpolationType: "interpolate",
|
|
275
270
|
units: {
|
|
276
271
|
'in. Snow/in. Liquid': {
|
|
277
272
|
colormap: [1, "#ccffff", 7, "#0088ff", 9, "#7733cc", 10, "#ff66ff", 15, "#ffcc99", 50, "#ff8800"],
|
|
@@ -280,24 +275,18 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
280
275
|
}
|
|
281
276
|
},
|
|
282
277
|
"2t_2": {
|
|
283
|
-
type: "fill",
|
|
284
|
-
gridded: true,
|
|
285
|
-
interpolationType: "interpolate",
|
|
286
278
|
units: {
|
|
287
279
|
'°F': {
|
|
288
|
-
colormap: [-90, "#
|
|
280
|
+
colormap: [-90, "#ffffff", -60, "#c32454", -30, "#905ea9", 0, "#a884f3", 10, "#4d65b4", 20, "#4d9be6", 30, "#8fd3fe", 32, "#31e1b9", 40, "#0faf9b", 50, "#239064", 60, "#f9c22b", 70, "#f7961a", 80, "#fb6b1d", 90, "#e83b3b", 100, "#6e2727", 110, "#a884f3", 120, "#eaaded", 140, "#006600"],
|
|
289
281
|
breakpoints: [-90, -88, -86, -84, -82, -80, -78, -76, -74, -72, -70, -68, -66, -64, -62, -60, -58, -56, -54, -52, -50, -48, -46, -44, -42, -40, -38, -36, -34, -32, -30, -28, -26, -24, -22, -20, -18, -16, -14, -12, -10, -8, -6, -4, -2, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150]
|
|
290
282
|
},
|
|
291
283
|
'°C': {
|
|
292
|
-
colormap: [-
|
|
284
|
+
colormap: [-60, "#ffffff", -50, "#c32454", -35, "#905ea9", -15, "#a884f3", -10, "#4d65b4", -5, "#4d9be6", -1, "#8fd3fe", 0, "#31e1b9", 5, "#0faf9b", 10, "#239064", 15, "#f9c22b", 20, "#f7961a", 25, "#fb6b1d", 30, "#e83b3b", 40, "#6e2727", 50, "#a884f3", 55, "#eaaded"],
|
|
293
285
|
breakpoints: [-70, -68, -66, -64, -62, -60, -58, -56, -54, -52, -50, -48, -46, -44, -42, -40, -38, -36, -34, -32, -30, -28, -26, -24, -22, -20, -18, -16, -14, -12, -10, -8, -6, -4, -2, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70]
|
|
294
286
|
}
|
|
295
287
|
}
|
|
296
288
|
},
|
|
297
289
|
"t_iso": {
|
|
298
|
-
type: "line",
|
|
299
|
-
gridded: false,
|
|
300
|
-
interpolationType: "interpolate",
|
|
301
290
|
units: {
|
|
302
291
|
'°C': {
|
|
303
292
|
colormap: [0, "#0033ff"],
|
|
@@ -306,9 +295,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
306
295
|
}
|
|
307
296
|
},
|
|
308
297
|
"2d_2": {
|
|
309
|
-
type: "fill",
|
|
310
|
-
gridded: false,
|
|
311
|
-
interpolationType: "interpolate",
|
|
312
298
|
units: {
|
|
313
299
|
'°F': {
|
|
314
300
|
colormap: [-80, "#ff0000", -60, "#ff5500", -20, "#ffaa00", 32, "#dddddd", 33, "#66dd88", 50, "#00cc66", 60, "#0077ff", 80, "#66aaff", 90, "#ffffff"],
|
|
@@ -321,115 +307,94 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
321
307
|
}
|
|
322
308
|
},
|
|
323
309
|
"d": {
|
|
324
|
-
type: "fill",
|
|
325
|
-
gridded: false,
|
|
326
|
-
interpolationType: "interpolate",
|
|
327
310
|
units: {
|
|
328
311
|
'°C': {
|
|
329
|
-
colormap: [-70, "#
|
|
312
|
+
colormap: [-70, "#2e2230", -30, "#966c6c", 0, "#c7dcd0", 5, "#cddf6c", 10, "#1fbc73", 16, "#4d65b4", 22, "#4d9be6", 30, "#8fd3fe"],
|
|
330
313
|
breakpoints: [-70, -68, -66, -64, -62, -60, -58, -56, -54, -52, -50, -48, -46, -44, -42, -40, -38, -36, -34, -32, -30, -28, -26, -24, -22, -20, -18, -16, -14, -12, -10, -8, -6, -4, -2, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70]
|
|
331
314
|
}
|
|
332
315
|
}
|
|
333
316
|
},
|
|
334
317
|
"t": {
|
|
335
|
-
type: "fill",
|
|
336
|
-
gridded: true,
|
|
337
|
-
interpolationType: "interpolate",
|
|
338
318
|
units: {
|
|
339
319
|
'°C': {
|
|
340
|
-
colormap: [-50, "#
|
|
320
|
+
colormap: [-50, "#fdcbb0", -30, "#fca791", -20, "#f04f77", -10, "#494a77", 0, "#4d65b5", 1, "#239064", 10, "#fac22c", 20, "#b43831", 30, "#3e3647"],
|
|
341
321
|
breakpoints: [-50, -48, -46, -44, -42, -40, -38, -36, -34, -32, -30, -28, -26, -24, -22, -20, -18, -16, -14, -12, -10, -8, -6, -4, -2, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50]
|
|
342
322
|
}
|
|
343
323
|
}
|
|
344
324
|
},
|
|
345
325
|
"wind_speed_10": {
|
|
346
|
-
type: "fill",
|
|
347
|
-
gridded: true,
|
|
348
|
-
interpolationType: "interpolate",
|
|
349
326
|
units: {
|
|
350
327
|
'kts': {
|
|
351
|
-
colormap: [5, "#
|
|
328
|
+
colormap: [0, "#323353", 5, "#4d66b4", 10, "#4d9be6", 15, "#8fd3ff", 20, "#eaaeed", 25, "#a985f3", 30, "#f04f78", 40, "#f68181", 50, "#fca790", 60, "#fdcbb0", 70, "#fac22c", 80, "#f79618", 90, "#fb6b1d", 100, "#e83c3c", 110, "#0eb09c", 120, "#31e1b9", 130, "#8ef9e2"],
|
|
352
329
|
breakpoints: [5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150]
|
|
353
330
|
},
|
|
354
331
|
'mph': {
|
|
355
|
-
colormap: [5, "#
|
|
332
|
+
colormap: [0, "#323353", 5, "#4d66b4", 10, "#4d9be6", 15, "#8fd3ff", 25, "#eaaeed", 30, "#a985f3", 35, "#f04f78", 45, "#f68181", 60, "#fca790", 70, "#fdcbb0", 80, "#fac22c", 90, "#f79618", 105, "#fb6b1d", 115, "#e83c3c", 125, "#0eb09c", 140, "#31e1b9", 150, "#8ef9e2"],
|
|
356
333
|
breakpoints: [5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195, 200]
|
|
357
334
|
},
|
|
358
335
|
'm/s': {
|
|
359
|
-
colormap: [2, "#
|
|
336
|
+
colormap: [0, "#323353", 2.5, "#4d66b4", 5, "#4d9be6", 7.5, "#8fd3ff", 10, "#eaaeed", 12.5, "#a985f3", 15, "#f04f78", 20, "#f68181", 25, "#fca790", 30, "#fdcbb0", 35, "#fac22c", 40, "#f79618", 45, "#fb6b1d", 50, "#e83c3c", 55, "#0eb09c", 60, "#31e1b9", 65, "#8ef9e2"],
|
|
360
337
|
breakpoints: [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80]
|
|
361
338
|
},
|
|
362
339
|
'km/h': {
|
|
363
|
-
colormap: [10, "#
|
|
340
|
+
colormap: [0, "#323353", 2.5, "#4d66b4", 5, "#4d9be6", 7.5, "#8fd3ff", 10, "#eaaeed", 12.5, "#a985f3", 15, "#f04f78", 20, "#f68181", 25, "#fca790", 30, "#fdcbb0", 35, "#fac22c", 40, "#f79618", 45, "#fb6b1d", 50, "#e83c3c", 55, "#0eb09c", 60, "#31e1b9", 65, "#8ef9e2"],
|
|
364
341
|
breakpoints: [10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195, 200, 205, 210, 215, 220, 225, 230, 235, 240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295, 300]
|
|
365
342
|
}
|
|
366
343
|
}
|
|
367
344
|
},
|
|
368
345
|
"wind_speed_upper": {
|
|
369
|
-
type: "fill",
|
|
370
|
-
gridded: true,
|
|
371
|
-
interpolationType: "interpolate",
|
|
372
346
|
units: {
|
|
373
347
|
'kts': {
|
|
374
|
-
colormap: [
|
|
348
|
+
colormap: [0, "#3e3646", 10, "#484a77", 30, "#4d9be6", 50, "#8fd3fe", 70, "#eaaded", 90, "#905ea9", 110, "#6b3e75", 130, "#45293f", 150, "#c32454", 170, "#f68181", 190, "#fdcbb0", 210, "#ededed"],
|
|
375
349
|
breakpoints: [10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, 170, 180, 190, 200, 210, 220, 230, 240, 250]
|
|
376
350
|
},
|
|
377
351
|
'mph': {
|
|
378
|
-
colormap: [
|
|
352
|
+
colormap: [0, "#3e3646", 10, "#484a77", 35, "#4d9be6", 60, "#8fd3fe", 80, "#eaaded", 105, "#905ea9", 125, "#6b3e75", 150, "#45293f", 175, "#c32454", 195, "#f68181", 220, "#fdcbb0", 240, "#ededed"],
|
|
379
353
|
breakpoints: [10, 25, 35, 45, 55, 70, 80, 90, 105, 115, 125, 140, 150, 160, 170, 185, 195, 205, 220, 230, 240, 255, 265, 275, 290]
|
|
380
354
|
},
|
|
381
355
|
'm/s': {
|
|
382
|
-
colormap: [
|
|
356
|
+
colormap: [0, "#3e3646", 5, "#484a77", 15, "#4d9be6", 25, "#8fd3fe", 35, "#eaaded", 45, "#905ea9", 55, "#6b3e75", 65, "#45293f", 75, "#c32454", 85, "#f68181", 95, "#fdcbb0", 105, "#ededed"],
|
|
383
357
|
breakpoints: [5, 10, 15, 20, 25, 30, 36, 41, 46, 51, 57, 62, 67, 72, 77, 82, 88, 93, 98, 103, 108, 113, 118, 124, 129]
|
|
384
358
|
},
|
|
385
359
|
'km/h': {
|
|
386
|
-
colormap: [
|
|
360
|
+
colormap: [0, "#3e3646", 20, "#484a77", 55, "#4d9be6", 90, "#8fd3fe", 130, "#eaaded", 165, "#905ea9", 205, "#6b3e75", 240, "#45293f", 280, "#c32454", 315, "#f68181", 350, "#fdcbb0", 390, "#ededed"],
|
|
387
361
|
breakpoints: [20, 35, 55, 75, 95, 110, 130, 150, 165, 185, 205, 220, 240, 260, 280, 295, 315, 335, 350, 370, 390, 410, 425, 445, 460]
|
|
388
362
|
}
|
|
389
363
|
}
|
|
390
364
|
},
|
|
391
365
|
"wind_speed_mid": {
|
|
392
|
-
type: "fill",
|
|
393
|
-
gridded: true,
|
|
394
|
-
interpolationType: "interpolate",
|
|
395
366
|
units: {
|
|
396
367
|
'kts': {
|
|
397
|
-
colormap: [10, "#
|
|
368
|
+
colormap: [0, "#3e3646", 10, "#494a77", 20, "#4d9be6", 30, "#8fd3fe", 40, "#eaaded", 50, "#905ea9", 60, "#6c3e75", 70, "#45283f", 80, "#c32554", 90, "#f68180", 100, "#fdccb1", 150, "#ededed"],
|
|
398
369
|
breakpoints: [5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195, 200, 205, 210, 215, 220, 225, 230, 235, 240, 245, 250]
|
|
399
370
|
},
|
|
400
371
|
'mph': {
|
|
401
|
-
colormap: [10, "#
|
|
372
|
+
colormap: [0, "#3e3646", 10, "#494a77", 25, "#4d9be6", 35, "#8fd3fe", 45, "#eaaded", 60, "#905ea9", 70, "#6c3e75", 80, "#45283f", 90, "#c32554", 105, "#f68180", 115, "#fdccb1", 175, "#ededed"],
|
|
402
373
|
breakpoints: [5, 10, 15, 25, 30, 35, 40, 45, 50, 55, 65, 70, 75, 80, 85, 90, 100, 105, 110, 115, 120, 125, 130, 140, 145, 150, 155, 160, 165, 170, 180, 185, 190, 195, 200, 205, 210, 220, 225, 230, 235, 240, 245, 250, 260, 265, 270, 275, 280, 285, 290]
|
|
403
374
|
},
|
|
404
375
|
'm/s': {
|
|
405
|
-
colormap: [5, "#
|
|
376
|
+
colormap: [0, "#3e3646", 5, "#494a77", 10, "#4d9be6", 15, "#8fd3fe", 20, "#eaaded", 25, "#905ea9", 30, "#6c3e75", 35, "#45283f", 40, "#c32554", 45, "#f68180", 50, "#fdccb1", 75, "#ededed"],
|
|
406
377
|
breakpoints: [2, 5, 8, 10, 13, 15, 18, 20, 23, 26, 28, 31, 33, 36, 38, 41, 44, 46, 49, 51, 54, 57, 59, 62, 64, 67, 69, 72, 74, 77, 80, 82, 85, 87, 90, 92, 95, 97, 100, 103, 105, 108, 110, 113, 115, 118, 120, 123, 125, 128]
|
|
407
378
|
},
|
|
408
379
|
'km/h': {
|
|
409
|
-
colormap: [20, "#
|
|
380
|
+
colormap: [0, "#3e3646", 20, "#494a77", 35, "#4d9be6", 55, "#8fd3fe", 75, "#eaaded", 90, "#905ea9", 110, "#6c3e75", 130, "#45283f", 150, "#c32554", 165, "#f68180", 185, "#fdccb1", 280, "#ededed"],
|
|
410
381
|
breakpoints: [10, 20, 25, 35, 45, 55, 65, 75, 85, 95, 100, 110, 120, 130, 140, 150, 160, 165, 175, 185, 195, 205, 210, 220, 230, 240, 250, 260, 270, 280, 290, 300, 310, 315, 325, 335, 345, 355, 365, 370, 380, 390, 395, 405, 415, 425, 435, 445, 455, 465]
|
|
411
382
|
}
|
|
412
383
|
}
|
|
413
384
|
},
|
|
414
385
|
"pwat_0": {
|
|
415
|
-
type: "fill",
|
|
416
|
-
gridded: true,
|
|
417
|
-
interpolationType: "interpolate",
|
|
418
386
|
units: {
|
|
419
387
|
'mm': {
|
|
420
|
-
colormap: [0, "#
|
|
388
|
+
colormap: [0, "#966c6c", 10, "#9babb2", 25, "#c7dcd0", 35, "#239064", 55, "#323353", 65, "#4d9be6", 75, "#fdcbb0"],
|
|
421
389
|
breakpoints: [1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89]
|
|
422
390
|
},
|
|
423
391
|
'in': {
|
|
424
|
-
colormap: [0, "#
|
|
392
|
+
colormap: [0, "#966c6c", 0.4, "#9babb2", 1, "#c7dcd0", 1.4, "#239064", 2.2, "#323353", 2.6, "#4d9be6", 3, "#fdcbb0"],
|
|
425
393
|
breakpoints: [0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0, 2.25, 2.5, 2.75, 3.0, 3.25, 3.5, 3.75, 4.0]
|
|
426
394
|
}
|
|
427
395
|
}
|
|
428
396
|
},
|
|
429
397
|
"thetaE": {
|
|
430
|
-
type: "fill",
|
|
431
|
-
gridded: true,
|
|
432
|
-
interpolationType: "interpolate",
|
|
433
398
|
units: {
|
|
434
399
|
'°K': {
|
|
435
400
|
colormap: [230, "#995522", 300, "#ffbb77", 320, "#99ff66", 325, "#33cc00", 330, "#00eeff", 335, "#0099aa", 340, "#8800ff", 355, "#ff0000", 360, "#ff0088", 370, "#ffaaaa"],
|
|
@@ -437,33 +402,35 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
437
402
|
}
|
|
438
403
|
}
|
|
439
404
|
},
|
|
405
|
+
"theta": {
|
|
406
|
+
units: {
|
|
407
|
+
'°K': {
|
|
408
|
+
colormap: [100, "#995522", 190, "#ffbb77", 230, "#99ff66", 240, "#33cc00", 250, "#00eeff", 260, "#0099aa", 270, "#8800ff", 280, "#ff0000", 290, "#ff0088", 300, "#ffaaaa"],
|
|
409
|
+
breakpoints: [230, 235, 240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295, 300, 305, 310, 315, 320, 325, 330, 335, 340, 345, 350, 355, 360, 365, 370]
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
},
|
|
440
413
|
"gust_0": {
|
|
441
|
-
type: "fill",
|
|
442
|
-
gridded: true,
|
|
443
|
-
interpolationType: "interpolate",
|
|
444
414
|
units: {
|
|
445
415
|
'mph': {
|
|
446
|
-
colormap: [
|
|
416
|
+
colormap: [0, "#3e3646", 10, "#4d65b4", 20, "#4d9be6", 30, "#8fd3fe", 40, "#ea4f37", 50, "#f7961a", 60, "#f9c22b", 70, "#c7dcd0", 80, "#9babb2", 90, "#7f708a", 100, "#694f62", 120, "#966c6c", 140, "#ac947a"],
|
|
447
417
|
breakpoints: [20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195, 200]
|
|
448
418
|
},
|
|
449
419
|
'kts': {
|
|
450
|
-
colormap: [
|
|
420
|
+
colormap: [0, "#3e3646", 9, "#4d65b4", 17, "#4d9be6", 26, "#8fd3fe", 35, "#ea4f37", 43, "#f7961a", 52, "#f9c22b", 61, "#c7dcd0", 70, "#9babb2", 78, "#7f708a", 87, "#694f62", 104, "#966c6c", 122, "#ac947a"],
|
|
451
421
|
breakpoints: [15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150]
|
|
452
422
|
},
|
|
453
423
|
'm/s': {
|
|
454
|
-
colormap: [
|
|
424
|
+
colormap: [0, "#3e3646", 5, "#4d65b4", 9, "#4d9be6", 13, "#8fd3fe", 18, "#ea4f37", 22, "#f7961a", 27, "#f9c22b", 31, "#c7dcd0", 36, "#9babb2", 40, "#7f708a", 45, "#694f62", 54, "#966c6c", 63, "#ac947a"],
|
|
455
425
|
breakpoints: [10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80]
|
|
456
426
|
},
|
|
457
427
|
'km/h': {
|
|
458
|
-
colormap: [30, "#
|
|
428
|
+
colormap: [0, "#3e3646", 15, "#4d65b4", 30, "#4d9be6", 50, "#8fd3fe", 65, "#ea4f37", 80, "#f7961a", 95, "#f9c22b", 110, "#c7dcd0", 130, "#9babb2", 145, "#7f708a", 160, "#694f62", 195, "#966c6c", 225, "#ac947a"],
|
|
459
429
|
breakpoints: [30, 40, 50, 55, 65, 70, 80, 90, 95, 105, 115, 120, 130, 135, 145, 150, 160, 170, 175, 185, 195, 200, 210, 215, 225, 235, 240, 250, 255, 265, 270, 280, 290, 295, 305, 315, 320]
|
|
460
430
|
}
|
|
461
431
|
}
|
|
462
432
|
},
|
|
463
433
|
"ltng": {
|
|
464
|
-
type: "fill",
|
|
465
|
-
gridded: false,
|
|
466
|
-
interpolationType: "interpolate",
|
|
467
434
|
units: {
|
|
468
435
|
'flashes km⁻²/5 min': {
|
|
469
436
|
colormap: [0.01, "#dddddd", 0.75, "#ffff00", 1, "#ff9999", 2, "#ff66bb", 3, "#cc66cc", 5, "#ff66ff", 6, "#cc66ff", 15, "#ff3399", 21, "#ff9933"],
|
|
@@ -472,75 +439,56 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
472
439
|
}
|
|
473
440
|
},
|
|
474
441
|
"cape_0": {
|
|
475
|
-
type: "fill",
|
|
476
|
-
gridded: true,
|
|
477
|
-
interpolationType: "interpolate",
|
|
478
442
|
units: {
|
|
479
443
|
'J kg⁻¹': {
|
|
480
|
-
colormap: [100, "#
|
|
444
|
+
colormap: [100, "#694f62", 1000, "#0c8a8f", 2000, "#f9c22b", 3000, "#fb6b1d", 4000, "#ae2334", 5000, "#831c5d", 6000, "#f68181", 7000, "#fdcbb0"],
|
|
481
445
|
breakpoints: [100, 250, 500, 750, 1000, 1250, 1500, 1750, 2000, 2250, 2500, 2750, 3000, 3250, 3500, 3750, 4000, 4250, 4500, 4750, 5000, 5250, 5500, 5750, 6000, 6250, 6500, 6750, 7000, 7250, 7500, 7750, 8000, 8250, 8500, 8750, 9000, 9250, 9500, 9750, 10000]
|
|
482
446
|
}
|
|
483
447
|
}
|
|
484
448
|
},
|
|
485
|
-
"
|
|
486
|
-
type: "fill",
|
|
487
|
-
gridded: true,
|
|
488
|
-
interpolationType: "interpolate",
|
|
489
|
-
units: {
|
|
490
|
-
'J kg⁻¹': {
|
|
491
|
-
colormap: [5, "#4dbb6a", 100, "#ffca3a", 200, "#ff9a3c", 300, "#ff5e7d", 500, "#9c3fe4"],
|
|
492
|
-
breakpoints: [5, 25, 50, 75, 100, 125, 150, 175, 200, 225, 250, 275, 300, 325, 350, 375, 400, 425, 450, 475, 500]
|
|
493
|
-
}
|
|
494
|
-
}
|
|
495
|
-
},
|
|
496
|
-
"stp": {
|
|
497
|
-
type: "fill",
|
|
498
|
-
gridded: true,
|
|
499
|
-
interpolationType: "interpolate",
|
|
449
|
+
"vapor_pressure_deficit": {
|
|
500
450
|
units: {
|
|
501
|
-
'
|
|
502
|
-
colormap: [0
|
|
503
|
-
|
|
451
|
+
'hPa': {
|
|
452
|
+
colormap: [0, "#0b2c3d",
|
|
453
|
+
// deep wet blue
|
|
454
|
+
2, "#10384a", 4, "#144457", 6, "#185064", 8, "#1c5c70", 10, "#20787a", 12, "#259685", 14, "#2db08f", 15, "#3fcf6e",
|
|
455
|
+
// greens END here
|
|
456
|
+
|
|
457
|
+
16, "#7fda7a",
|
|
458
|
+
// start drying - lighter green
|
|
459
|
+
18, "#b7e17b", 20, "#d6e876", 22, "#efe47a", 24, "#f3d06c", 26, "#f0b85c", 28, "#e9a14e", 30, "#e29147", 32, "#edc48a",
|
|
460
|
+
// 2-color gradient start
|
|
461
|
+
34, "#f2d7b0", 36, "#f6e7cf", 38, "#f9f1e5", 40, "#fcfaf5" // lightest dry
|
|
462
|
+
],
|
|
463
|
+
breakpoints: [0, 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, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60]
|
|
504
464
|
}
|
|
505
465
|
}
|
|
506
466
|
},
|
|
507
|
-
"
|
|
508
|
-
type: "fill",
|
|
509
|
-
gridded: true,
|
|
510
|
-
interpolationType: "interpolate",
|
|
467
|
+
"ncape": {
|
|
511
468
|
units: {
|
|
512
|
-
'
|
|
513
|
-
colormap: [0.
|
|
514
|
-
breakpoints: [0.
|
|
469
|
+
'10⁻² J kg⁻¹': {
|
|
470
|
+
colormap: [0.75, "#694f62", 7.5, "#0c8a8f", 15, "#f9c22b", 22.5, "#fb6b1d", 30, "#ae2334", 37.5, "#831c5d", 45, "#f68181", 52.5, "#fdcbb0"],
|
|
471
|
+
breakpoints: [0.75, 1.875, 3.75, 5.625, 7.5, 9.375, 11.25, 13.125, 15, 16.875, 18.75, 20.625, 22.5, 24.375, 26.25, 28.125, 30, 31.875, 33.75, 35.625, 37.5, 39.375, 41.25, 43.125, 45, 46.875, 48.75, 50.625, 52.5, 54.375, 56.25, 58.125, 60, 61.875, 63.75, 65.625, 67.5, 69.375, 71.25, 73.125, 75]
|
|
515
472
|
}
|
|
516
473
|
}
|
|
517
474
|
},
|
|
518
|
-
"
|
|
519
|
-
type: "fill",
|
|
520
|
-
gridded: true,
|
|
521
|
-
interpolationType: "interpolate",
|
|
475
|
+
"cape_0-3000": {
|
|
522
476
|
units: {
|
|
523
|
-
'
|
|
524
|
-
colormap: [
|
|
525
|
-
breakpoints: [
|
|
477
|
+
'J kg⁻¹': {
|
|
478
|
+
colormap: [5, "#694f62", 50, "#0c8a8f", 100, "#f9c22c", 150, "#fb6b1d", 200, "#ae2334", 300, "#831c5d", 450, "#f68181"],
|
|
479
|
+
breakpoints: [5, 25, 50, 75, 100, 125, 150, 175, 200, 225, 250, 275, 300, 325, 350, 375, 400, 425, 450, 475, 500]
|
|
526
480
|
}
|
|
527
481
|
}
|
|
528
482
|
},
|
|
529
|
-
"
|
|
530
|
-
type: "fill",
|
|
531
|
-
gridded: true,
|
|
532
|
-
interpolationType: "interpolate",
|
|
483
|
+
"severeParams": {
|
|
533
484
|
units: {
|
|
534
485
|
'None': {
|
|
535
|
-
colormap: [0.1, "#
|
|
536
|
-
breakpoints: [0.1, 0.25, 0.5, 0.75, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6, 6.5, 7, 7.5, 8, 8.5, 9, 9.5, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
|
|
486
|
+
colormap: [0.1, "#bfbfbf", 3, "#b26263", 4, "#ea5035", 5, "#f67e4a", 6, "#8fd3ff", 9, "#a985f3", 20, "#45293f", 40, "#cf07a4"],
|
|
487
|
+
breakpoints: [0.1, 0.25, 0.5, 0.75, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6, 6.5, 7, 7.5, 8, 8.5, 9, 9.5, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50]
|
|
537
488
|
}
|
|
538
489
|
}
|
|
539
490
|
},
|
|
540
491
|
"lftx_0": {
|
|
541
|
-
type: "fill",
|
|
542
|
-
gridded: true,
|
|
543
|
-
interpolationType: "interpolate",
|
|
544
492
|
units: {
|
|
545
493
|
'°C': {
|
|
546
494
|
colormap: [-20, "#ffb3b3", -14, "#ff3300", -13, "#cc0000", -12, "#ff6699", -10, "#ff99ff", -9, "#cc66ff", -8, "#9933ff", -7, "#cc0055", -6, "#ff0044", -4, "#ffaa00", -3, "#ffff00", -2, "#6699ff", -1, "#0066cc"],
|
|
@@ -549,50 +497,166 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
549
497
|
}
|
|
550
498
|
},
|
|
551
499
|
"lapse_rates_500700": {
|
|
552
|
-
type: "fill",
|
|
553
|
-
gridded: true,
|
|
554
|
-
interpolationType: "interpolate",
|
|
555
500
|
units: {
|
|
556
501
|
'°C km⁻¹': {
|
|
557
|
-
colormap: [
|
|
502
|
+
colormap: [0, "#3e3646", 5, "#ac947a", 6, "#fbb955", 7, "#ea4f37", 8, "#b33831", 9, "#7a3045", 10, "#c7dcd0", 15, "#ebebeb"],
|
|
558
503
|
breakpoints: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
|
|
559
504
|
}
|
|
560
505
|
}
|
|
561
506
|
},
|
|
562
507
|
"lcl": {
|
|
563
|
-
type: "fill",
|
|
564
|
-
gridded: true,
|
|
565
|
-
interpolationType: "interpolate",
|
|
566
508
|
units: {
|
|
567
509
|
'm': {
|
|
568
|
-
colormap: [
|
|
510
|
+
colormap: [0, "#7f708a", 500, "#8fd3fe", 750, "#cddf6c", 1000, "#fbb955", 2000, "#cd683e", 3000, "#7a3045", 4000, "#323353", 10000, "#c7dcd0"],
|
|
569
511
|
breakpoints: [100, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1100, 1200, 1300, 1400, 1500, 1600, 1700, 1800, 1900, 2000, 2100, 2200, 2300, 2400, 2500, 2600, 2700, 2800, 2900, 3000, 3100, 3200, 3300, 3400, 3500, 3600, 3700, 3800, 3900, 4000, 4100, 4200, 4300, 4400, 4500, 4600, 4700, 4800, 4900, 5000, 5100, 5200, 5300, 5400, 5500, 5600, 5700, 5800, 5900, 6000, 6100, 6200, 6300, 6400, 6500, 6600, 6700, 6800, 6900, 7000, 7100, 7200, 7300, 7400, 7500, 7600, 7700, 7800, 7900, 8000, 8100, 8200, 8300, 8400, 8500, 8600, 8700, 8800, 8900, 9000, 9100, 9200, 9300, 9400, 9500, 9600, 9700, 9800, 9900, 10000]
|
|
570
512
|
},
|
|
571
513
|
'km': {
|
|
572
|
-
colormap: [0.
|
|
514
|
+
colormap: [0, "#7f708a", 0.5, "#8fd3fe", 0.75, "#cddf6c", 1, "#fbb955", 2, "#cd683e", 3, "#7a3045", 4, "#323353", 10, "#c7dcd0"],
|
|
573
515
|
breakpoints: [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 8.5, 8.6, 8.7, 8.8, 8.9, 9.0, 9.1, 9.2, 9.3, 9.4, 9.5, 9.6, 9.7, 9.8, 9.9, 10.0]
|
|
574
516
|
},
|
|
575
517
|
'ft': {
|
|
576
|
-
colormap: [
|
|
518
|
+
colormap: [0, "#7f708a", 1500, "#8fd3fe", 2500, "#cddf6c", 3000, "#fbb955", 6500, "#cd683e", 10000, "#7a3045", 13000, "#323353", 33000, "#c7dcd0"],
|
|
577
519
|
breakpoints: [500, 1000, 1500, 2000, 2500, 3000, 3500, 4000, 4500, 5000, 5500, 6000, 6500, 7000, 7500, 8000, 8500, 9000, 9500, 10000, 10500, 11000, 11500, 12000, 12500, 13000, 13500, 14000, 14500, 15000, 15500, 16000, 16500, 17000, 17500, 18000, 18500, 19000, 19500, 20000, 20500, 21000, 21500, 22000, 22500, 23000, 23500, 24000, 24500, 25000, 25500, 26000, 26500, 27000, 27500, 28000, 28500, 29000, 29500, 30000]
|
|
578
520
|
}
|
|
579
521
|
}
|
|
580
522
|
},
|
|
523
|
+
"hainesindex": {
|
|
524
|
+
units: {
|
|
525
|
+
'None': {
|
|
526
|
+
colormap: [3, "#bfbfbf", 3.5, "#b26263", 4, "#ea5035", 4.5, "#f67e4a", 5, "#8fd3ff", 5.5, "#a985f3", 6, "#cf07a4"],
|
|
527
|
+
breakpoints: [3, 3.5, 4, 4.5, 5, 5.5, 6]
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
},
|
|
531
|
+
'fosberg': {
|
|
532
|
+
"units": {
|
|
533
|
+
"None": {
|
|
534
|
+
"colormap": [6.67, "#b6b6b6", 13.33, "#727272", 20, "#d9ff00", 26.67, "#c7cc00", 33.33, "#758600", 40, "#ff0000", 46.67, "#c40000", 53.33, "#640019", 60, "#740047", 66.67, "#ff00e0", 73.33, "#ff84f5", 80, "#ffbcfd", 86.67, "#ffffff", 93.33, "#d2fffa", 100, "#00fbff"],
|
|
535
|
+
breakpoints: [0, 0.67, 1.33, 2, 2.67, 3.33, 4, 4.67, 5.33, 6, 6.67, 7.33, 8, 8.67, 9.33, 10, 10.67, 11.33, 12, 12.67, 13.33, 14, 14.67, 15.33, 16, 16.67, 17.33, 18, 18.67, 19.33, 20, 20.67, 21.33, 22, 22.67, 23.33, 24, 24.67, 25.33, 26, 26.67, 27.33, 28, 28.67, 29.33, 30, 30.67, 31.33, 32, 32.67, 33.33, 34, 34.67, 35.33, 36, 36.67, 37.33, 38, 38.67, 39.33, 40, 40.67, 41.33, 42, 42.67, 43.33, 44, 44.67, 45.33, 46, 46.67, 47.33, 48, 48.67, 49.33, 50, 50.67, 51.33, 52, 52.67, 53.33, 54, 54.67, 55.33, 56, 56.67, 57.33, 58, 58.67, 59.33, 60, 60.67, 61.33, 62, 62.67, 63.33, 64, 64.67, 65.33, 66, 66.67, 67.33, 68, 68.67, 69.33, 70, 70.67, 71.33, 72, 72.67, 73.33, 74, 74.67, 75.33, 76, 76.67, 77.33, 78, 78.67, 79.33, 80, 80.67, 81.33, 82, 82.67, 83.33, 84, 84.67, 85.33, 86, 86.67, 87.33, 88, 88.67, 89.33, 90, 90.67, 91.33, 92, 92.67, 93.33, 94, 94.67, 95.33, 96, 96.67, 97.33, 98, 98.67, 99.33, 100]
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
},
|
|
539
|
+
"smoke": {
|
|
540
|
+
units: {
|
|
541
|
+
'kg m⁻²': {
|
|
542
|
+
colormap: [0, "#aaaaaa", 5, "#222222", 20, "#bb2323", 40, "#fb2311", 60, "#fa9a11", 80, "#aa00aa", 100, "#fc08bb", 200, "#6e3e0c", 400, "#000000", 800, "#ffffff"],
|
|
543
|
+
breakpoints: [0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195, 200, 205, 210, 215, 220, 225, 230, 235, 240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295, 300, 305, 310, 315, 320, 325, 330, 335, 340, 345, 350, 355, 360, 365, 370, 375, 380, 385, 390, 395, 400, 405, 410, 415, 420, 425, 430, 435, 440, 445, 450, 455, 460, 465, 470, 475, 480, 485, 490, 495, 500, 505, 510, 515, 520, 525, 530, 535, 540, 545, 550, 555, 560, 565, 570, 575, 580, 585, 590, 595, 600, 605, 610, 615, 620, 625, 630, 635, 640, 645, 650, 655, 660, 665, 670, 675, 680, 685, 690, 695, 700, 705, 710, 715, 720, 725, 730, 735, 740, 745, 750, 755, 760, 765, 770, 775, 780, 785, 790, 795, 800]
|
|
544
|
+
}
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
"sbel": {
|
|
548
|
+
units: {
|
|
549
|
+
'm': {
|
|
550
|
+
colormap: [0, "#7f708a", 4000, "#8fd3fe", 7000, "#cddf6c", 10000, "#fbb955", 12000, "#cd683e", 15000, "#7a3045", 17500, "#323353", 20000, "#c7dcd0"],
|
|
551
|
+
breakpoints: [0, 500, 1000, 1500, 2000, 2500, 3000, 3500, 4000, 4500, 5000, 5500, 6000, 6500, 7000, 7500, 8000, 8500, 9000, 9500, 10000, 10500, 11000, 11500, 12000, 12500, 13000, 13500, 14000, 14500, 15000, 15500, 16000, 16500, 17000, 17500, 18000, 18500, 19000, 19500, 20000]
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
},
|
|
555
|
+
"sblfc": {
|
|
556
|
+
units: {
|
|
557
|
+
'm': {
|
|
558
|
+
colormap: [0, "#7f708a", 500, "#8fd3fe", 750, "#cddf6c", 1000, "#fbb955", 2000, "#cd683e", 3000, "#7a3045", 4000, "#323353", 10000, "#c7dcd0"],
|
|
559
|
+
breakpoints: [100, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1100, 1200, 1300, 1400, 1500, 1600, 1700, 1800, 1900, 2000, 2100, 2200, 2300, 2400, 2500, 2600, 2700, 2800, 2900, 3000, 3100, 3200, 3300, 3400, 3500, 3600, 3700, 3800, 3900, 4000, 4100, 4200, 4300, 4400, 4500, 4600, 4700, 4800, 4900, 5000, 5100, 5200, 5300, 5400, 5500, 5600, 5700, 5800, 5900, 6000, 6100, 6200, 6300, 6400, 6500, 6600, 6700, 6800, 6900, 7000, 7100, 7200, 7300, 7400, 7500, 7600, 7700, 7800, 7900, 8000, 8100, 8200, 8300, 8400, 8500, 8600, 8700, 8800, 8900, 9000, 9100, 9200, 9300, 9400, 9500, 9600, 9700, 9800, 9900, 10000]
|
|
560
|
+
},
|
|
561
|
+
'km': {
|
|
562
|
+
colormap: [0, "#7f708a", 0.5, "#8fd3fe", 0.75, "#cddf6c", 1, "#fbb955", 2, "#cd683e", 3, "#7a3045", 4, "#323353", 10, "#c7dcd0"],
|
|
563
|
+
breakpoints: [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 8.5, 8.6, 8.7, 8.8, 8.9, 9.0, 9.1, 9.2, 9.3, 9.4, 9.5, 9.6, 9.7, 9.8, 9.9, 10.0]
|
|
564
|
+
},
|
|
565
|
+
'ft': {
|
|
566
|
+
colormap: [0, "#7f708a", 1500, "#8fd3fe", 2500, "#cddf6c", 3000, "#fbb955", 6500, "#cd683e", 10000, "#7a3045", 13000, "#323353", 33000, "#c7dcd0"],
|
|
567
|
+
breakpoints: [500, 1000, 1500, 2000, 2500, 3000, 3500, 4000, 4500, 5000, 5500, 6000, 6500, 7000, 7500, 8000, 8500, 9000, 9500, 10000, 10500, 11000, 11500, 12000, 12500, 13000, 13500, 14000, 14500, 15000, 15500, 16000, 16500, 17000, 17500, 18000, 18500, 19000, 19500, 20000, 20500, 21000, 21500, 22000, 22500, 23000, 23500, 24000, 24500, 25000, 25500, 26000, 26500, 27000, 27500, 28000, 28500, 29000, 29500, 30000]
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
"dgzdepth": {
|
|
572
|
+
"units": {
|
|
573
|
+
"m": {
|
|
574
|
+
"colormap": [0, "#986D4D", 500, "#7D7D7D", 900, "#C8C8C8", 1000, "#30C830", 1500, "#093209", 2000, "#206E68", 3000, "#29C4CC", 4000, "#581380", 5000, "#CF1968"],
|
|
575
|
+
"breakpoints": [0, 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1100, 1200, 1300, 1400, 1500, 1600, 1700, 1800, 1900, 2000, 2100, 2200, 2300, 2400, 2500, 2600, 2700, 2800, 2900, 3000, 3100, 3200, 3300, 3400, 3500, 3600, 3700, 3800, 3900, 4000, 4100, 4200, 4300, 4400, 4500, 4600, 4700, 4800, 4900, 5000, 5100, 5200, 5300, 5400, 5500, 5600, 5700, 5800, 5900, 6000]
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
},
|
|
579
|
+
"pbl": {
|
|
580
|
+
"units": {
|
|
581
|
+
"m": {
|
|
582
|
+
"colormap": [0, "#986D4D", 500, "#7D7D7D", 900, "#C8C8C8", 1000, "#30C830", 1500, "#093209", 2000, "#206E68", 3000, "#29C4CC", 4000, "#581380", 5000, "#CF1968"],
|
|
583
|
+
"breakpoints": [0, 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1100, 1200, 1300, 1400, 1500, 1600, 1700, 1800, 1900, 2000, 2100, 2200, 2300, 2400, 2500, 2600, 2700, 2800, 2900, 3000, 3100, 3200, 3300, 3400, 3500, 3600, 3700, 3800, 3900, 4000, 4100, 4200, 4300, 4400, 4500, 4600, 4700, 4800, 4900, 5000, 5100, 5200, 5300, 5400, 5500, 5600, 5700, 5800, 5900, 6000]
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
"mstrtransport_500": {
|
|
588
|
+
"units": {
|
|
589
|
+
"kg m⁻¹ s⁻¹": {
|
|
590
|
+
"colormap": [0, "#986D4D", 2, "#7D7D7D", 4, "#C8C8C8", 5, "#30C830", 8, "#093209", 12, "#206E68", 16, "#29C4CC", 20, "#581380", 25, "#CF1968"],
|
|
591
|
+
"breakpoints": [0, 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, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40]
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
|
+
},
|
|
595
|
+
"mstrtransport_700": {
|
|
596
|
+
"units": {
|
|
597
|
+
"kg m⁻¹ s⁻¹": {
|
|
598
|
+
"colormap": [0, "#986D4D", 3, "#7D7D7D", 6, "#C8C8C8", 8, "#30C830", 10, "#093209", 14, "#206E68", 18, "#29C4CC", 22, "#581380", 30, "#CF1968"],
|
|
599
|
+
"breakpoints": [0, 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, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50]
|
|
600
|
+
}
|
|
601
|
+
}
|
|
602
|
+
},
|
|
603
|
+
"mstrtransport_850": {
|
|
604
|
+
"units": {
|
|
605
|
+
"kg m⁻¹ s⁻¹": {
|
|
606
|
+
"colormap": [0, "#986D4D", 5, "#7D7D7D", 9, "#C8C8C8", 10, "#30C830", 15, "#093209", 20, "#206E68", 25, "#29C4CC", 30, "#581380", 40, "#CF1968"],
|
|
607
|
+
"breakpoints": [0, 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, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60]
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
},
|
|
611
|
+
"mstrtransport_925": {
|
|
612
|
+
"units": {
|
|
613
|
+
"kg m⁻¹ s⁻¹": {
|
|
614
|
+
"colormap": [0, "#986D4D", 5, "#7D7D7D", 9, "#C8C8C8", 10, "#30C830", 15, "#093209", 20, "#206E68", 30, "#29C4CC", 40, "#581380", 50, "#CF1968"],
|
|
615
|
+
"breakpoints": [0, 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, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60]
|
|
616
|
+
}
|
|
617
|
+
}
|
|
618
|
+
},
|
|
619
|
+
"sfcmixratio": {
|
|
620
|
+
"units": {
|
|
621
|
+
"g/kg": {
|
|
622
|
+
"colormap": [0, "#986D4D", 4, "#7D7D7D", 8, "#C8C8C8", 9, "#30C830", 10, "#093209", 13, "#206E68", 17, "#29C4CC", 20, "#581380", 25, "#CF1968"],
|
|
623
|
+
"breakpoints": [0, 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, 29, 30, 31, 32, 33, 34, 35]
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
},
|
|
627
|
+
'isentropicpres': {
|
|
628
|
+
units: {
|
|
629
|
+
'hPa': {
|
|
630
|
+
colormap: [100, "#cc3333", 150, "#ff9933", 210, "#ffdd00", 375, "#33cc66", 390, "#3366cc", 520, "#4d88ff", 590, "#66e6ff", 675, "#ff99ff", 800, "#cc33cc"],
|
|
631
|
+
breakpoints: [90, 100, 115, 130, 145, 160, 175, 190, 205, 220, 235, 250, 265, 280, 295, 310, 325, 340, 355, 370, 385, 400, 415, 430, 445, 460, 475, 490, 505, 520, 535, 550, 565, 580, 595, 610, 625, 640, 655, 670, 685, 700, 715, 730, 745, 760, 775, 790, 800, 810]
|
|
632
|
+
}
|
|
633
|
+
}
|
|
634
|
+
},
|
|
635
|
+
'isentropicpresadv': {
|
|
636
|
+
"units": {
|
|
637
|
+
"hPa/H": {
|
|
638
|
+
"colormap": [-100, "#6699ff", -50, "#ccffff", -40, "#ff99ff", -30, "#ff66cc", -20, "#cc66ff", -10, "#66ccff", -5, "#aebdc2", 0, "#808080", 5, "#bcb6a9", 10, "#ffcc66", 20, "#ff9933", 30, "#ff3333", 40, "#cccc00", 50, "#ddcc66", 100, "#cc9933"],
|
|
639
|
+
"breakpoints": [-100, -95, -90, -85, -80, -75, -70, -65, -60, -55, -50, -45, -40, -35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100]
|
|
640
|
+
}
|
|
641
|
+
}
|
|
642
|
+
},
|
|
643
|
+
'epv': {
|
|
644
|
+
units: {
|
|
645
|
+
"PVU": {
|
|
646
|
+
colormap: [-15, "#ff00ee", -7, "#aa0000", -4, "#ff6600", -2, "#fffb00", -1.99, "#5e888a", -1, "#939393", 0, "#aaaaaa", 1, "#939393", 1.99, "#5e888a", 2, "#fffb00", 4, "#ff6600", 7, "#aa0000", 15, "#ff00ee"],
|
|
647
|
+
breakpoints: [-20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
},
|
|
581
651
|
"cin_0": {
|
|
582
|
-
type: "fill",
|
|
583
|
-
gridded: true,
|
|
584
|
-
interpolationType: "interpolate",
|
|
585
652
|
units: {
|
|
586
653
|
"J kg⁻¹": {
|
|
587
|
-
colormap: [-1000, "#
|
|
654
|
+
colormap: [-1000, "#c7dcd0", -400, "#9babb2", -200, "#7a3045", -100, "#b33831", -50, "#f57d4a", -5, "#625565"],
|
|
588
655
|
breakpoints: [-1000, -950, -900, -850, -800, -750, -700, -650, -600, -550, -500, -450, -400, -350, -300, -250, -200, -150, -100, -50]
|
|
589
656
|
}
|
|
590
657
|
}
|
|
591
658
|
},
|
|
592
659
|
"dgzrh": {
|
|
593
|
-
type: "fill",
|
|
594
|
-
gridded: false,
|
|
595
|
-
interpolationType: "interpolate",
|
|
596
660
|
units: {
|
|
597
661
|
"%": {
|
|
598
662
|
colormap: [0, "#5555dd", 25, "#ff9999", 50, "#ffcc33", 75, "#33cc66", 100, "#3399ff"],
|
|
@@ -601,64 +665,38 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
601
665
|
}
|
|
602
666
|
},
|
|
603
667
|
"2r_2": {
|
|
604
|
-
type: "fill",
|
|
605
|
-
gridded: true,
|
|
606
|
-
interpolationType: "interpolate",
|
|
607
668
|
units: {
|
|
608
669
|
"%": {
|
|
609
|
-
colormap: [0, "#
|
|
670
|
+
colormap: [0, "#fbb955", 10, "#cd683e", 20, "#9e4539", 25, "#7f708a", 50, "#c7dcd0", 55, "#cddf6c", 75, "#1fbc73", 85, "#0c8a8f", 90, "#4d9be6", 100, "#8fd3fe"],
|
|
610
671
|
breakpoints: [0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100]
|
|
611
672
|
}
|
|
612
673
|
}
|
|
613
674
|
},
|
|
614
675
|
"r": {
|
|
615
|
-
type: "fill",
|
|
616
|
-
gridded: false,
|
|
617
|
-
interpolationType: "interpolate",
|
|
618
676
|
units: {
|
|
619
677
|
"%": {
|
|
620
|
-
colormap: [0, "#
|
|
621
|
-
breakpoints: [0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100]
|
|
622
|
-
}
|
|
623
|
-
}
|
|
624
|
-
},
|
|
625
|
-
'mean700300mbRH': {
|
|
626
|
-
type: "fill",
|
|
627
|
-
gridded: false,
|
|
628
|
-
interpolationType: "interpolate",
|
|
629
|
-
units: {
|
|
630
|
-
"%": {
|
|
631
|
-
colormap: [0, "#444444", 25, "#ff6655", 50, "#ffcc00", 75, "#33cc77", 100, "#3399ff"],
|
|
678
|
+
colormap: [0, "#fbb955", 10, "#cd683e", 20, "#9e4539", 25, "#7f708a", 50, "#c7dcd0", 55, "#cddf6c", 75, "#1fbc73", 85, "#0c8a8f", 90, "#4d9be6", 100, "#8fd3fe"],
|
|
632
679
|
breakpoints: [0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100]
|
|
633
680
|
}
|
|
634
681
|
}
|
|
635
682
|
},
|
|
636
683
|
"fgen": {
|
|
637
|
-
type: "fill",
|
|
638
|
-
gridded: false,
|
|
639
|
-
interpolationType: "interpolate",
|
|
640
684
|
units: {
|
|
641
685
|
"°C/100km/3hr": {
|
|
642
|
-
colormap: [
|
|
686
|
+
colormap: [3, "#cc66ff", 10, "#ff66ff", 40, "#3333ff"],
|
|
643
687
|
breakpoints: [1, 3, 5, 7, 9, 11, 12, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61]
|
|
644
688
|
}
|
|
645
689
|
}
|
|
646
690
|
},
|
|
647
691
|
"tadv": {
|
|
648
|
-
"type": "fill",
|
|
649
|
-
"gridded": false,
|
|
650
|
-
"interpolationType": "interpolate",
|
|
651
692
|
"units": {
|
|
652
693
|
"°C h⁻¹": {
|
|
653
|
-
"colormap": [-20, "#6699ff", -10, "#ccffff", -8, "#ff99ff", -6, "#ff66cc", -4, "#cc66ff", -2, "#66ccff", -1, "#
|
|
694
|
+
"colormap": [-20, "#6699ff", -10, "#ccffff", -8, "#ff99ff", -6, "#ff66cc", -4, "#cc66ff", -2, "#66ccff", -1, "#aebdc2", 0, "#808080", 1, "#bcb6a9", 2, "#ffcc66", 4, "#ff9933", 6, "#ff3333", 8, "#cccc00", 10, "#ddcc66", 20, "#cc9933"],
|
|
654
695
|
"breakpoints": [-20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
|
|
655
696
|
}
|
|
656
697
|
}
|
|
657
698
|
},
|
|
658
699
|
"ivt": {
|
|
659
|
-
"type": "fill",
|
|
660
|
-
"gridded": false,
|
|
661
|
-
"interpolationType": "interpolate",
|
|
662
700
|
"units": {
|
|
663
701
|
"kg m⁻¹ s⁻¹": {
|
|
664
702
|
"colormap": [250, "#ffbb00", 800, "#ff6666", 1600, "#9933cc"],
|
|
@@ -667,9 +705,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
667
705
|
}
|
|
668
706
|
},
|
|
669
707
|
"dgzvvel": {
|
|
670
|
-
"type": "fill",
|
|
671
|
-
"gridded": false,
|
|
672
|
-
"interpolationType": "interpolate",
|
|
673
708
|
"units": {
|
|
674
709
|
"Pa/s": {
|
|
675
710
|
"colormap": [-80, "#00ccff", -40, "#3333aa", -25, "#ff66cc", -10, "#ff7777", -2, "#ffee00", 0, "#cccccc", 50, "#333333"],
|
|
@@ -678,9 +713,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
678
713
|
}
|
|
679
714
|
},
|
|
680
715
|
"w": {
|
|
681
|
-
"type": "fill",
|
|
682
|
-
"gridded": false,
|
|
683
|
-
"interpolationType": "interpolate",
|
|
684
716
|
"units": {
|
|
685
717
|
"Pa/s": {
|
|
686
718
|
"colormap": [-150, "#00ccff", -50, "#3333aa", -35, "#ff66cc", -20, "#ff7777", -5, "#ffee00", 0, "#cccccc", 50, "#333333", 150, 'white'],
|
|
@@ -688,10 +720,15 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
688
720
|
}
|
|
689
721
|
}
|
|
690
722
|
},
|
|
723
|
+
"omega": {
|
|
724
|
+
"units": {
|
|
725
|
+
"µb/s": {
|
|
726
|
+
"colormap": [-15.0, "#00ccff", -5.0, "#3333aa", -3.5, "#ff66cc", -2.0, "#ff7777", -.5, "#ffee00"],
|
|
727
|
+
"breakpoints": [0]
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
},
|
|
691
731
|
"crain": {
|
|
692
|
-
"type": "fill",
|
|
693
|
-
"gridded": false,
|
|
694
|
-
"interpolationType": "interpolate",
|
|
695
732
|
"units": {
|
|
696
733
|
"None": {
|
|
697
734
|
"colormap": [0, "#000000", 1, "#66cc66"],
|
|
@@ -700,9 +737,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
700
737
|
}
|
|
701
738
|
},
|
|
702
739
|
"csnow": {
|
|
703
|
-
"type": "fill",
|
|
704
|
-
"gridded": false,
|
|
705
|
-
"interpolationType": "interpolate",
|
|
706
740
|
"units": {
|
|
707
741
|
"None": {
|
|
708
742
|
"colormap": [0, "#000000", 1, "#6699cc"],
|
|
@@ -711,9 +745,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
711
745
|
}
|
|
712
746
|
},
|
|
713
747
|
"cicep": {
|
|
714
|
-
"type": "fill",
|
|
715
|
-
"gridded": false,
|
|
716
|
-
"interpolationType": "interpolate",
|
|
717
748
|
"units": {
|
|
718
749
|
"None": {
|
|
719
750
|
"colormap": [0, "#000000", 1, "#cc66ee"],
|
|
@@ -722,9 +753,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
722
753
|
}
|
|
723
754
|
},
|
|
724
755
|
"cfrzr": {
|
|
725
|
-
"type": "fill",
|
|
726
|
-
"gridded": false,
|
|
727
|
-
"interpolationType": "interpolate",
|
|
728
756
|
"units": {
|
|
729
757
|
"None": {
|
|
730
758
|
"colormap": [0, "#000000", 1, "#ff3399"],
|
|
@@ -733,9 +761,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
733
761
|
}
|
|
734
762
|
},
|
|
735
763
|
"prate": {
|
|
736
|
-
"type": "fill",
|
|
737
|
-
"gridded": false,
|
|
738
|
-
"interpolationType": "interpolate",
|
|
739
764
|
"units": {
|
|
740
765
|
"in/hr": {
|
|
741
766
|
"colormap": [0.005, "#00cc66", 0.1, "#ffff00", 0.3, "#ff8800", 1, "#ff0000", 1.5, '#ff00cc'],
|
|
@@ -748,39 +773,30 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
748
773
|
}
|
|
749
774
|
},
|
|
750
775
|
"frzrRate": {
|
|
751
|
-
"type": "fill",
|
|
752
|
-
"gridded": false,
|
|
753
|
-
"interpolationType": "interpolate",
|
|
754
776
|
"units": {
|
|
755
|
-
"in/hr
|
|
777
|
+
"in/hr": {
|
|
756
778
|
"colormap": [0.005, "#ff3300", 0.1, "#ff33ff", 0.6, "#cc99cc"],
|
|
757
779
|
"breakpoints": [.005, .01, .03, .05, .07, .1, .15, .2, .3, .4, .5, .6, .7, .8, .9, 1, 1.25, 1.5, 1.75, 2, 2.5, 3]
|
|
758
780
|
},
|
|
759
|
-
"mm/hr
|
|
781
|
+
"mm/hr": {
|
|
760
782
|
"colormap": [0.1, "#ff3300", 3, "#ff33ff", 14, "#cc99cc"],
|
|
761
783
|
"breakpoints": [0.1, 0.5, 1, 1.5, 2, 2.5, 3, 3.5, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 18, 20, 22, 24, 30, 36]
|
|
762
784
|
}
|
|
763
785
|
}
|
|
764
786
|
},
|
|
765
787
|
"icepRate": {
|
|
766
|
-
"type": "fill",
|
|
767
|
-
"gridded": false,
|
|
768
|
-
"interpolationType": "interpolate",
|
|
769
788
|
"units": {
|
|
770
|
-
"in/hr
|
|
789
|
+
"in/hr": {
|
|
771
790
|
"colormap": [0.005, "#8800cc", 0.2, "#aa44dd", 0.6, "#cc88dd"],
|
|
772
791
|
"breakpoints": [.005, .01, .03, .05, .07, .1, .15, .2, .3, .4, .5, .6, .7, .8, .9, 1, 1.25, 1.5, 1.75, 2, 2.5, 3]
|
|
773
792
|
},
|
|
774
|
-
"mm/hr
|
|
793
|
+
"mm/hr": {
|
|
775
794
|
"colormap": [0.1, "#8800cc", 6, "#aa44dd", 16, "#cc88dd"],
|
|
776
795
|
"breakpoints": [0.1, 0.5, 1, 1.5, 2, 2.5, 3, 3.5, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 18, 20, 22, 24, 30, 36]
|
|
777
796
|
}
|
|
778
797
|
}
|
|
779
798
|
},
|
|
780
799
|
"rainRate": {
|
|
781
|
-
"type": "fill",
|
|
782
|
-
"gridded": false,
|
|
783
|
-
"interpolationType": "interpolate",
|
|
784
800
|
"units": {
|
|
785
801
|
"in/hr": {
|
|
786
802
|
"colormap": [0.005, "#00cc66", 0.1, "#ffff00", 0.3, "#ff8800", 1, "#ff0000", 1.5, '#ff00cc'],
|
|
@@ -793,35 +809,29 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
793
809
|
}
|
|
794
810
|
},
|
|
795
811
|
"snowRate": {
|
|
796
|
-
"type": "fill",
|
|
797
|
-
"gridded": false,
|
|
798
|
-
"interpolationType": "interpolate",
|
|
799
812
|
"units": {
|
|
800
|
-
"in/hr
|
|
813
|
+
"in/hr": {
|
|
801
814
|
"colormap": [0.05, "#33ccff", 1, "#000099", 4, "#ff00cc"],
|
|
802
815
|
"breakpoints": [.05, .1, .3, .5, .7, 1, 1.5, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 20, 25, 30]
|
|
803
816
|
},
|
|
804
|
-
"cm/hr
|
|
817
|
+
"cm/hr": {
|
|
805
818
|
"colormap": [0.1, "#33ccff", 3, "#000099", 10, "#ff00cc"],
|
|
806
819
|
"breakpoints": [0.1, 0.5, 1, 1.5, 2, 2.5, 3, 3.5, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 18, 20, 22, 24, 30, 36]
|
|
807
820
|
}
|
|
808
821
|
}
|
|
809
822
|
},
|
|
810
823
|
"ptypeRate": {
|
|
811
|
-
"type": "fill",
|
|
812
|
-
"gridded": false,
|
|
813
|
-
"interpolationType": "interpolate",
|
|
814
824
|
"units": {
|
|
815
825
|
"in/hr": {
|
|
816
826
|
"colormap": [
|
|
817
|
-
// --- Rain Palette
|
|
818
|
-
0.
|
|
827
|
+
// --- Rain Palette ---
|
|
828
|
+
0.004, "#00cc66", 0.1, "#ffff00", 0.3, "#ff8800", 1, "#ff0000", 2, '#ff00cc',
|
|
819
829
|
// --- Snow Palette (Reflectivity Values Offset by +100) ---
|
|
820
|
-
100.
|
|
830
|
+
100.04, "#33ccff", 100.4, "#000099", 101, "#ff00cc",
|
|
821
831
|
// --- Freezing Rain Palette (Reflectivity Values Offset by +200) ---
|
|
822
|
-
200.
|
|
832
|
+
200.004, "#ff3300", 200.3, "#ff33ff", 200.6, "#cc99cc",
|
|
823
833
|
// icep
|
|
824
|
-
300.
|
|
834
|
+
300.004, "#8800cc", 300.3, "#aa44dd", 300.6, "#cc88dd"],
|
|
825
835
|
"breakpoints": []
|
|
826
836
|
},
|
|
827
837
|
"mm/hr": {
|
|
@@ -838,151 +848,137 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
838
848
|
}
|
|
839
849
|
}
|
|
840
850
|
},
|
|
851
|
+
"ptypeRefl": {
|
|
852
|
+
"units": {
|
|
853
|
+
"dBZ": {
|
|
854
|
+
"colormap": [
|
|
855
|
+
// --- Rain Palette (Standard Reflectivity Values: 5 to 80) ---
|
|
856
|
+
5, "#80ff80", 10, "#68d058", 15, "#4da33e", 20, "#398628", 25, "#296a16", 30, "#004100", 35, "#ffff00", 40, "#ff7f00", 45, "#ff0000", 50, "#800000", 55, "#6c2975", 60, "#ff00ff", 65, "#ff55ff", 70, "#ffaaff", 75, "#ffffff",
|
|
857
|
+
// --- Snow Palette (Reflectivity Values Offset by +100) ---
|
|
858
|
+
105, "#C5DDFF", 130, "#031996", 140, "#7123de", 170, "#380c91",
|
|
859
|
+
// --- Freezing Rain Palette (Reflectivity Values Offset by +200) ---
|
|
860
|
+
205, "#febdf6", 230, "#fe7eda", 240, "#ff2ab5", 270, "#ff01a2",
|
|
861
|
+
// icep
|
|
862
|
+
305, "#A372FB", 330, "#9330FD", 340, "#3B059E", 370, "#C80529"],
|
|
863
|
+
"breakpoints": []
|
|
864
|
+
}
|
|
865
|
+
}
|
|
866
|
+
},
|
|
867
|
+
"PrecipFlag_00.00": {
|
|
868
|
+
"units": {
|
|
869
|
+
"None": {
|
|
870
|
+
"colormap": [0, "#000000", 1, "#6699cc"],
|
|
871
|
+
"breakpoints": []
|
|
872
|
+
}
|
|
873
|
+
}
|
|
874
|
+
},
|
|
841
875
|
"frzrRefl": {
|
|
842
|
-
"type": "fill",
|
|
843
|
-
"gridded": false,
|
|
844
|
-
"interpolationType": "interpolate",
|
|
845
876
|
"units": {
|
|
846
877
|
"dBZ": {
|
|
847
|
-
"colormap": [5, "#
|
|
878
|
+
"colormap": [5, "#febdf6", 30, "#fe7eda", 40, "#ff2ab5", 65, "#ff01a2"],
|
|
848
879
|
"breakpoints": [5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80]
|
|
849
880
|
}
|
|
850
881
|
}
|
|
851
882
|
},
|
|
852
883
|
"icepRefl": {
|
|
853
|
-
"type": "fill",
|
|
854
|
-
"gridded": false,
|
|
855
|
-
"interpolationType": "interpolate",
|
|
856
884
|
"units": {
|
|
857
885
|
"dBZ": {
|
|
858
|
-
"colormap": [5, "#
|
|
886
|
+
"colormap": [5, "#A372FB", 30, "#9330FD", 40, "#3B059E", 65, "#C80529"],
|
|
859
887
|
"breakpoints": [5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80]
|
|
860
888
|
}
|
|
861
889
|
}
|
|
862
890
|
},
|
|
863
891
|
"snowRefl": {
|
|
864
|
-
"type": "fill",
|
|
865
|
-
"gridded": false,
|
|
866
|
-
"interpolationType": "interpolate",
|
|
867
892
|
"units": {
|
|
868
893
|
"dBZ": {
|
|
869
|
-
"colormap": [5, "#
|
|
894
|
+
"colormap": [5, "#C5DDFF", 30, "#031996", 40, "#7123de", 65, "#380c91"],
|
|
870
895
|
"breakpoints": [5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80]
|
|
871
896
|
}
|
|
872
897
|
}
|
|
873
898
|
},
|
|
874
899
|
"rainRefl": {
|
|
875
|
-
"type": "fill",
|
|
876
|
-
"gridded": false,
|
|
877
|
-
"interpolationType": "interpolate",
|
|
878
900
|
"units": {
|
|
879
901
|
"dBZ": {
|
|
880
|
-
"colormap": [5, "#
|
|
902
|
+
"colormap": [5, "#80ff80", 10, "#68d058", 15, "#4da33e", 20, "#398628", 25, "#296a16", 30, "#004100", 35, "#ffff00", 40, "#ff7f00", 45, "#ff0000", 50, "#800000", 55, "#6c2975", 60, "#ff00ff", 65, "#ff55ff", 70, "#ffaaff", 75, "#ffffff"],
|
|
881
903
|
"breakpoints": [5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80]
|
|
882
904
|
}
|
|
883
905
|
}
|
|
884
906
|
},
|
|
885
907
|
"csnow_total": {
|
|
886
|
-
"type": "fill",
|
|
887
|
-
"gridded": false,
|
|
888
|
-
"interpolationType": "interpolate",
|
|
889
908
|
"units": {
|
|
890
|
-
"in
|
|
891
|
-
"colormap": [0.1, "#
|
|
892
|
-
"breakpoints": [0.1, 0.5, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 18, 20, 24, 28, 32, 36, 40, 45, 50, 55, 60, 70, 80,
|
|
893
|
-
},
|
|
894
|
-
"cm [10:1]": {
|
|
895
|
-
"colormap": [0.25, "#ccffff", 4, "#99cccc", 12, "#3399ff", 16, "#9966ff", 28, "#cc66ff", 36, "#ff3399", 48, "#ff99cc", 60, "#ff7788", 90, "#ffbb66", 120, "#99ccff", 700, "#99ffff"],
|
|
896
|
-
"breakpoints": [0.25, .5, 1, 2, 4, 6, 8, 10, 12, 14, 16, 20, 24, 28, 32, 36, 40, 44, 48, 52, 60, 68, 76, 82, 90, 100, 120, 140, 160, 180, 200, 250, 300, 400, 500, 600, 700]
|
|
909
|
+
"in": {
|
|
910
|
+
"colormap": [0.1, "#b8f9ff", 5, "#093397", 6, "#6331a2", 11, "#d16dc7", 12, "#f5b4fd", 24, "#b3e6ff", 48, "#7ff0e8", 80, "#386d71"],
|
|
911
|
+
"breakpoints": [0.1, 0.5, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 18, 20, 24, 28, 32, 36, 40, 45, 50, 55, 60, 70, 80, 100]
|
|
897
912
|
},
|
|
898
|
-
"
|
|
899
|
-
"colormap": [
|
|
900
|
-
"breakpoints": [
|
|
913
|
+
"cm": {
|
|
914
|
+
"colormap": [0.25, "#b8f9ff", 12.5, "#093397", 15, "#6331a2", 28, "#d16dc7", 30.5, "#f5b4fd", 61, "#b3e6ff", 122, "#7ff0e8", 203, "#386d71"],
|
|
915
|
+
"breakpoints": [0.25, .5, 1, 2, 4, 6, 8, 10, 12, 14, 16, 20, 24, 28, 32, 36, 40, 44, 48, 52, 60, 68, 76, 82, 90, 100, 120, 140, 160, 180, 200, 250]
|
|
901
916
|
}
|
|
902
917
|
}
|
|
903
918
|
},
|
|
904
919
|
"csnow_1": {
|
|
905
|
-
"type": "fill",
|
|
906
|
-
"gridded": false,
|
|
907
|
-
"interpolationType": "interpolate",
|
|
908
920
|
"units": {
|
|
909
|
-
"in
|
|
921
|
+
"in": {
|
|
910
922
|
"colormap": [0.1, "#aaaaaa", 0.25, "#444444", .5, "#66aaff", .75, "#0022cc", 1, "#99ff00", 1.5, "#00aa00", 2, "#ffee00", 2.5, "#ff3333", 3, "#ff66ff", 3.5, "#880066", 4, "#666666", 10, "#666666"],
|
|
911
923
|
"breakpoints": [0.1, 0.25, 0.5, 0.75, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6, 7, 8, 9, 10]
|
|
912
924
|
},
|
|
913
|
-
"cm
|
|
925
|
+
"cm": {
|
|
914
926
|
"colormap": [0.25, "#aaaaaa", 0.5, "#444444", 1.5, "#66aaff", 2, "#0022cc", 2.5, "#99ff00", 4, "#00aa00", 5, "#ffee00", 6, "#ff3333", 8, "#ff66ff", 9, "#880066", 10, "#666666", 26, "#666666"],
|
|
915
927
|
"breakpoints": [.25, 0.5, 0.75, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 18, 20, 22, 24, 26]
|
|
916
|
-
},
|
|
917
|
-
"mm [10:1]": {
|
|
918
|
-
"colormap": [2.5, "#aaaaaa", 5, "#444444", 15, "#66aaff", 20, "#0022cc", 25, "#99ff00", 40, "#00aa00", 50, "#ffee00", 60, "#ff3333", 80, "#ff66ff", 90, "#880066", 100, "#666666", 260, "#666666"],
|
|
919
|
-
"breakpoints": [2.5, 5, 7.5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 70, 80, 90, 100, 110, 120, 140, 160, 180, 200, 220, 240, 260]
|
|
920
928
|
}
|
|
921
929
|
}
|
|
922
930
|
},
|
|
923
931
|
"cfrzr_total": {
|
|
924
|
-
"type": "fill",
|
|
925
|
-
"gridded": false,
|
|
926
|
-
"interpolationType": "interpolate",
|
|
927
932
|
"units": {
|
|
928
|
-
"in
|
|
929
|
-
"colormap": [0.01, "#eeccff", .1, "#ff9999", .25, "#cc3366", .5, "#ff9933", .75, "#ffee00", 1, "#00cccc", 3, "#99ffff"],
|
|
933
|
+
"in": {
|
|
934
|
+
"colormap": [0.01, "#eeccff", .1, "#ff9999", .25, "#cc3366", .5, "#ff9933", .75, "#ffee00", 1, "#00cccc", 2, "#0000ff", 3, "#99ffff"],
|
|
930
935
|
"breakpoints": [0.01, 0.1, 0.25, 0.5, 0.75, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6, 7, 8, 9, 10]
|
|
931
936
|
},
|
|
932
|
-
"cm
|
|
933
|
-
"colormap": [0.03, "#eeccff", .25, "#ff9999", .75, "#cc3366", 1, "#cc0066", 2, "#ffee00", 3, "#00cccc", 7, "#99ffff"],
|
|
937
|
+
"cm": {
|
|
938
|
+
"colormap": [0.03, "#eeccff", .25, "#ff9999", .75, "#cc3366", 1, "#cc0066", 2, "#ffee00", 3, "#00cccc", 5, "#0000ff", 7, "#99ffff"],
|
|
934
939
|
"breakpoints": [.03, .25, .5, .75, 1, 1.25, 1.5, 1.75, 2, 2.25, 2.5, 2.75, 3, 3.25, 3.5, 3.75, 4, 4.5, 5, 5.5, 6, 7, 8, 9, 10, 12, 14, 16, 18, 20, 22, 24, 26]
|
|
935
940
|
},
|
|
936
|
-
"mm
|
|
941
|
+
"mm": {
|
|
937
942
|
"colormap": [0.3, "#eeccff", 2.5, "#ff9999", 7.5, "#cc3366", 10, "#cc0066", 20, "#ffee00", 30, "#00cccc", 70, "#99ffff"],
|
|
938
943
|
"breakpoints": [0.3, 2.5, 5, 7.5, 10, 12.5, 15, 17.5, 20, 22.5, 25, 27.5, 30, 32.5, 35, 37.5, 40, 45, 50, 55, 60, 70, 80, 90, 100, 120, 140, 160, 180, 200, 220, 240, 260]
|
|
939
944
|
}
|
|
940
945
|
}
|
|
941
946
|
},
|
|
942
947
|
"cfrzr_1": {
|
|
943
|
-
"type": "fill",
|
|
944
|
-
"gridded": false,
|
|
945
|
-
"interpolationType": "interpolate",
|
|
946
948
|
"units": {
|
|
947
|
-
"in
|
|
949
|
+
"in": {
|
|
948
950
|
"colormap": [0.01, "#eeccff", .1, "#ff9999", .3, "#cc3366", .4, "#cc0033", .5, "#ff9933", .9, "#ffee00", 1, "#00cccc", 3, "#99ffff"],
|
|
949
951
|
"breakpoints": [0.01, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.25, 1.5, 1.75, 2, 2.5, 3]
|
|
950
952
|
},
|
|
951
|
-
"cm
|
|
953
|
+
"cm": {
|
|
952
954
|
"colormap": [0.03, "#eeccff", .25, "#ff9999", .75, "#cc3366", 1, "#cc0033", 2, "#ffee00", 3, "#00cccc", 7, "#99ffff"],
|
|
953
955
|
"breakpoints": [.03, .25, .5, .75, 1, 1.25, 1.5, 1.75, 2, 2.25, 2.5, 2.75, 3, 3.25, 3.5, 3.75, 4, 4.5, 5, 5.5, 6, 7, 8, 9, 10, 12, 14, 16]
|
|
954
956
|
},
|
|
955
|
-
"mm
|
|
957
|
+
"mm": {
|
|
956
958
|
"colormap": [0.3, "#eeccff", 2.5, "#ff9999", 7.5, "#cc3366", 10, "#cc0033", 20, "#ffee00", 30, "#00cccc", 70, "#99ffff"],
|
|
957
959
|
"breakpoints": [0.3, 2.5, 5, 7.5, 10, 12.5, 15, 17.5, 20, 22.5, 25, 27.5, 30, 32.5, 35, 37.5, 40, 45, 50, 55, 60, 70, 80, 90, 100, 120, 140, 160]
|
|
958
960
|
}
|
|
959
961
|
}
|
|
960
962
|
},
|
|
961
963
|
"cicep_total": {
|
|
962
|
-
"type": "fill",
|
|
963
|
-
"gridded": false,
|
|
964
|
-
"interpolationType": "interpolate",
|
|
965
964
|
"units": {
|
|
966
|
-
"in
|
|
965
|
+
"in": {
|
|
967
966
|
"colormap": [0.01, "#eeccff", 0.1, "#ff8888", 0.25, "#cc6699", 0.5, "#ff9933", 0.75, "#ffee99", 1, "#00cccc", 3, "#66ccff"],
|
|
968
967
|
"breakpoints": [0.01, 0.1, 0.25, 0.5, 0.75, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6, 7, 8, 9, 10]
|
|
969
968
|
},
|
|
970
|
-
"cm
|
|
969
|
+
"cm": {
|
|
971
970
|
"colormap": [0.03, "#eeccff", 0.25, "#ff8888", 0.75, "#cc6699", 1, "#cc33cc", 2, "#ffee99", 3, "#00cccc", 7, "#66ccff"],
|
|
972
971
|
"breakpoints": [0.03, 0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2, 2.25, 2.5, 2.75, 3, 3.25, 3.5, 3.75, 4, 4.5, 5, 5.5, 6, 7, 8, 9, 10, 12, 14, 16, 18, 20, 22, 24, 26]
|
|
973
972
|
},
|
|
974
|
-
"mm
|
|
973
|
+
"mm": {
|
|
975
974
|
"colormap": [0.3, "#eeccff", 2.5, "#ff8888", 7.5, "#cc6699", 10, "#cc33cc", 20, "#ffee99", 30, "#00cccc", 70, "#66ccff"],
|
|
976
975
|
"breakpoints": [0.3, 2.5, 5, 7.5, 10, 12.5, 15, 17.5, 20, 22.5, 25, 27.5, 30, 32.5, 35, 37.5, 40, 45, 50, 55, 60, 70, 80, 90, 100, 120, 140, 160, 180, 200, 220, 240, 260]
|
|
977
976
|
}
|
|
978
977
|
}
|
|
979
978
|
},
|
|
980
979
|
"cicep_1": {
|
|
981
|
-
"type": "fill",
|
|
982
|
-
"gridded": false,
|
|
983
|
-
"interpolationType": "interpolate",
|
|
984
980
|
"units": {
|
|
985
|
-
"in
|
|
981
|
+
"in": {
|
|
986
982
|
"colormap": [0.01, "#eeccff", 0.1, "#ff8888", 0.3, "#cc6699", 0.4, "#cc33cc", 0.5, "#ff9933", 0.9, "#ffee99", 1, "#00cccc", 3, "#66ccff"],
|
|
987
983
|
"breakpoints": [0.01, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.25, 1.5, 1.75, 2, 2.5, 3]
|
|
988
984
|
},
|
|
@@ -997,9 +993,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
997
993
|
}
|
|
998
994
|
},
|
|
999
995
|
"crain_total": {
|
|
1000
|
-
"type": "fill",
|
|
1001
|
-
"gridded": false,
|
|
1002
|
-
"interpolationType": "interpolate",
|
|
1003
996
|
"units": {
|
|
1004
997
|
"in": {
|
|
1005
998
|
"colormap": [0.01, "#dddddd", 0.1, "#66ff66", 0.4, "#00cc00", 0.5, "#3399ff", 0.9, "#66ccff", 1, "#ffff00", 1.75, "#ffcc00", 2, "#ff9900", 3.5, "#ff6600", 4, "#994400", 10, "#cc9966", 12, "#cc33cc", 50, "#ff33ff"],
|
|
@@ -1016,9 +1009,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
1016
1009
|
}
|
|
1017
1010
|
},
|
|
1018
1011
|
"crain_1": {
|
|
1019
|
-
"type": "fill",
|
|
1020
|
-
"gridded": false,
|
|
1021
|
-
"interpolationType": "interpolate",
|
|
1022
1012
|
"units": {
|
|
1023
1013
|
"in": {
|
|
1024
1014
|
"colormap": [0.01, "#dddddd", 0.1, "#66ff66", 0.4, "#00cc00", 0.5, "#3399ff", 0.9, "#66ccff", 1, "#ffff00", 1.75, "#ffcc00", 2, "#ff9900", 3.75, "#ff6600", 4, "#994400", 10, "#cc9966", 12, "#cc33cc"],
|
|
@@ -1035,28 +1025,22 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
1035
1025
|
}
|
|
1036
1026
|
},
|
|
1037
1027
|
"tp_0_total": {
|
|
1038
|
-
"type": "fill",
|
|
1039
|
-
"gridded": false,
|
|
1040
|
-
"interpolationType": "interpolate",
|
|
1041
1028
|
"units": {
|
|
1042
1029
|
"in": {
|
|
1043
|
-
"colormap": [0.01, "#
|
|
1030
|
+
"colormap": [0.01, "#cee06c", 0.1, "#92db69", 0.25, "#1ebc74", 0.5, "#229064", 1, "#175a4c", 1.5, "#fac22c", 2, "#f79618", 3, "#fb6b1d", 4, "#e83c3c", 6, "#ae2334", 8, "#831c5d", 10, "#323353", 14, "#494a77", 20, "#4d66b4", 28, "#4d9be6", 50, "#8fd3ff"],
|
|
1044
1031
|
"breakpoints": [0.01, 0.1, 0.25, 0.5, 0.75, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 18, 20, 24, 28, 32, 36, 40, 45, 50, 55, 60, 70, 80, 90, 100]
|
|
1045
1032
|
},
|
|
1046
1033
|
"cm": {
|
|
1047
|
-
"colormap": [0.
|
|
1034
|
+
"colormap": [0.025, "#cee06c", 0.25, "#92db69", 0.6, "#1ebc74", 1.25, "#229064", 2.5, "#175a4c", 4, "#fac22c", 5, "#f79618", 7.5, "#fb6b1d", 10, "#e83c3c", 15, "#ae2334", 20, "#831c5d", 25, "#323353", 35, "#494a77", 50, "#4d66b4", 70, "#4d9be6", 125, "#8fd3ff"],
|
|
1048
1035
|
"breakpoints": [0.03, 0.25, 0.75, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 18, 20, 22, 25, 30, 35, 40, 45, 50, 60, 70, 80, 90, 100, 110, 130, 150, 170, 200, 230, 250]
|
|
1049
1036
|
},
|
|
1050
1037
|
"mm": {
|
|
1051
|
-
"colormap": [0.
|
|
1038
|
+
"colormap": [0.25, "#cee06c", 2.5, "#92db69", 6, "#1ebc74", 12.5, "#229064", 25, "#175a4c", 40, "#fac22c", 50, "#f79618", 75, "#fb6b1d", 100, "#e83c3c", 150, "#ae2334", 200, "#831c5d", 250, "#323353", 350, "#494a77", 500, "#4d66b4", 700, "#4d9be6", 1250, "#8fd3ff"],
|
|
1052
1039
|
"breakpoints": [0.3, 2.5, 7.5, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 120, 140, 160, 180, 200, 220, 250, 300, 350, 400, 450, 500, 600, 700, 800, 900, 1000, 1100, 1300, 1500, 1700, 2000, 2300, 2500]
|
|
1053
1040
|
}
|
|
1054
1041
|
}
|
|
1055
1042
|
},
|
|
1056
1043
|
"tp_0_1": {
|
|
1057
|
-
"type": "fill",
|
|
1058
|
-
"gridded": false,
|
|
1059
|
-
"interpolationType": "interpolate",
|
|
1060
1044
|
"units": {
|
|
1061
1045
|
"in": {
|
|
1062
1046
|
"colormap": [0.01, "#dddddd", 0.1, "#66ff66", 0.4, "#00cc00", 0.5, "#3399ff", 0.9, "#66ccff", 1, "#ffff00", 1.75, "#ffcc00", 2, "#ff9900", 3.5, "#ff6600", 4, "#994400", 10, "#cc9966"],
|
|
@@ -1073,9 +1057,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
1073
1057
|
}
|
|
1074
1058
|
},
|
|
1075
1059
|
"thickness": {
|
|
1076
|
-
"type": "line",
|
|
1077
|
-
"gridded": false,
|
|
1078
|
-
"interpolationType": "interpolate",
|
|
1079
1060
|
"units": {
|
|
1080
1061
|
"dam": {
|
|
1081
1062
|
"colormap": [438, "#0000ff", 540, "#0000ff", 546, "#ff0000", 630, "#ff0000"],
|
|
@@ -1084,9 +1065,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
1084
1065
|
}
|
|
1085
1066
|
},
|
|
1086
1067
|
"gh_10": {
|
|
1087
|
-
"type": "line",
|
|
1088
|
-
"gridded": false,
|
|
1089
|
-
"interpolationType": "interpolate",
|
|
1090
1068
|
"units": {
|
|
1091
1069
|
"dam": {
|
|
1092
1070
|
"colormap": [2600, "#0033ff", 2800, "#00ddff", 3000, "#ff6666", 3200, "#ff0000"],
|
|
@@ -1095,9 +1073,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
1095
1073
|
}
|
|
1096
1074
|
},
|
|
1097
1075
|
"gh_200": {
|
|
1098
|
-
"type": "line",
|
|
1099
|
-
"gridded": false,
|
|
1100
|
-
"interpolationType": "interpolate",
|
|
1101
1076
|
"units": {
|
|
1102
1077
|
"dam": {
|
|
1103
1078
|
"colormap": [1080, "#0033ff", 1146, "#00ddff", 1182, "#ff6666", 1290, "#ff0000"],
|
|
@@ -1106,9 +1081,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
1106
1081
|
}
|
|
1107
1082
|
},
|
|
1108
1083
|
"gh_300": {
|
|
1109
|
-
"type": "line",
|
|
1110
|
-
"gridded": false,
|
|
1111
|
-
"interpolationType": "interpolate",
|
|
1112
1084
|
"units": {
|
|
1113
1085
|
"dam": {
|
|
1114
1086
|
"colormap": [768, "#0033ff", 852, "#00ddff", 948, "#ff6666", 1000, "#ff0000"],
|
|
@@ -1117,9 +1089,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
1117
1089
|
}
|
|
1118
1090
|
},
|
|
1119
1091
|
"gh_500": {
|
|
1120
|
-
"type": "line",
|
|
1121
|
-
"gridded": false,
|
|
1122
|
-
"interpolationType": "interpolate",
|
|
1123
1092
|
"units": {
|
|
1124
1093
|
"dam": {
|
|
1125
1094
|
"colormap": [438, "#0033ff", 501, "#00ddff", 600, "#ff6666", 640, "#ff0000"],
|
|
@@ -1128,9 +1097,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
1128
1097
|
}
|
|
1129
1098
|
},
|
|
1130
1099
|
"gh_700": {
|
|
1131
|
-
"type": "line",
|
|
1132
|
-
"gridded": false,
|
|
1133
|
-
"interpolationType": "interpolate",
|
|
1134
1100
|
"units": {
|
|
1135
1101
|
"dam": {
|
|
1136
1102
|
"colormap": [249, "#0033ff", 282, "#00ddff", 321, "#ff6666", 350, "#ff0000"],
|
|
@@ -1139,31 +1105,22 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
1139
1105
|
}
|
|
1140
1106
|
},
|
|
1141
1107
|
"gh_850": {
|
|
1142
|
-
"type": "line",
|
|
1143
|
-
"gridded": false,
|
|
1144
|
-
"interpolationType": "interpolate",
|
|
1145
1108
|
"units": {
|
|
1146
1109
|
"dam": {
|
|
1147
|
-
"colormap": [
|
|
1148
|
-
"breakpoints": [120, 123, 126, 129, 132, 135, 138, 141, 144, 147, 150, 153, 156, 159, 162, 165, 168, 170]
|
|
1110
|
+
"colormap": [102, "#0033ff", 141, "#00ddff", 153, "#ff6666", 170, "#ff0000"],
|
|
1111
|
+
"breakpoints": [102, 105, 108, 111, 114, 117, 120, 123, 126, 129, 132, 135, 138, 141, 144, 147, 150, 153, 156, 159, 162, 165, 168, 170]
|
|
1149
1112
|
}
|
|
1150
1113
|
}
|
|
1151
1114
|
},
|
|
1152
1115
|
"gh_925": {
|
|
1153
|
-
"type": "line",
|
|
1154
|
-
"gridded": false,
|
|
1155
|
-
"interpolationType": "interpolate",
|
|
1156
1116
|
"units": {
|
|
1157
1117
|
"dam": {
|
|
1158
|
-
"colormap": [
|
|
1159
|
-
"breakpoints": [48, 51, 54, 57, 60, 63, 66, 69, 72, 75, 78, 81, 84, 87, 90, 91, 96, 99, 102, 105, 108, 111, 114, 117, 120]
|
|
1118
|
+
"colormap": [24, "#0033ff", 66, "#00ddff", 91, "#ff6666", 120, "#ff0000"],
|
|
1119
|
+
"breakpoints": [24, 27, 30, 33, 36, 39, 42, 45, 48, 51, 54, 57, 60, 63, 66, 69, 72, 75, 78, 81, 84, 87, 90, 91, 96, 99, 102, 105, 108, 111, 114, 117, 120]
|
|
1160
1120
|
}
|
|
1161
1121
|
}
|
|
1162
1122
|
},
|
|
1163
1123
|
"moistureConvergence": {
|
|
1164
|
-
"type": "fill",
|
|
1165
|
-
"gridded": false,
|
|
1166
|
-
"interpolationType": "interpolate",
|
|
1167
1124
|
"units": {
|
|
1168
1125
|
"s⁻¹": {
|
|
1169
1126
|
"colormap": [5, "#00ffcc", 15, "#00ff33", 30, "#00cc00", 50, "#006600"],
|
|
@@ -1171,10 +1128,39 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
1171
1128
|
}
|
|
1172
1129
|
}
|
|
1173
1130
|
},
|
|
1131
|
+
"moisture_flux": {
|
|
1132
|
+
"units": {
|
|
1133
|
+
"s⁻¹": {
|
|
1134
|
+
"colormap": [-50, "#bc9fca", -20, "#000000", 0, "#986D4D", 6, "#7D7D7D", 12, "#C8C8C8", 16, "#30C830", 20, "#093209", 40, "#206E68", 60, "#29C4CC", 80, "#581380", 100, "#CF1968"],
|
|
1135
|
+
"breakpoints": [0, 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, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50]
|
|
1136
|
+
}
|
|
1137
|
+
}
|
|
1138
|
+
},
|
|
1139
|
+
"qdiv": {
|
|
1140
|
+
"units": {
|
|
1141
|
+
"s⁻¹": {
|
|
1142
|
+
"colormap": [-5.0, "#00ccff", -3.0, "#ff0000", -1.0, "#ff9900", -0.5, "#ffee33", 0.0, "#aaaaaa", 0.5, "#006600", 1.0, "#00cc00", 3.0, "#00ffcc", 5.0, "#ffffff"],
|
|
1143
|
+
"breakpoints": [-5, -4.5, -4, -3.5, -3, -2.5, -2, -1.5, -1, -0.5, 0, 0.5, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5]
|
|
1144
|
+
}
|
|
1145
|
+
}
|
|
1146
|
+
},
|
|
1147
|
+
"dpva": {
|
|
1148
|
+
"units": {
|
|
1149
|
+
"10⁻⁹ s⁻²": {
|
|
1150
|
+
"colormap": [-30, "#00ccff", -8, "#ff0000", -4, "#ff9900", -2, "#ffee33", 0, "#00ffcc", 4, "#006600", 8, "#00cc00", 30, "#222222"],
|
|
1151
|
+
"breakpoints": [-30, -29, -28, -27, -26, -25, -24, -23, -22, -21, -20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 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, 29, 30]
|
|
1152
|
+
}
|
|
1153
|
+
}
|
|
1154
|
+
},
|
|
1155
|
+
"ddiv": {
|
|
1156
|
+
"units": {
|
|
1157
|
+
"10⁻⁹ s⁻¹": {
|
|
1158
|
+
"colormap": [-30, "#00ccff", -8, "#ff0000", -4, "#ff9900", -2, "#ffee33", 0, "#00ffcc", 4, "#006600", 8, "#00cc00", 30, "#222222"],
|
|
1159
|
+
"breakpoints": [-30, -29, -28, -27, -26, -25, -24, -23, -22, -21, -20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 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, 29, 30]
|
|
1160
|
+
}
|
|
1161
|
+
}
|
|
1162
|
+
},
|
|
1174
1163
|
"divergence": {
|
|
1175
|
-
"type": "fill",
|
|
1176
|
-
"gridded": false,
|
|
1177
|
-
"interpolationType": "interpolate",
|
|
1178
1164
|
"units": {
|
|
1179
1165
|
"s⁻¹": {
|
|
1180
1166
|
"colormap": [-30, "#00ccff", -8, "#ff0000", -4, "#ff9900", -2, "#ffee33", 0, "#00ffcc", 4, "#006600", 8, "#00cc00", 30, "#222222"],
|
|
@@ -1182,10 +1168,55 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
1182
1168
|
}
|
|
1183
1169
|
}
|
|
1184
1170
|
},
|
|
1171
|
+
"crtang": {
|
|
1172
|
+
"units": {
|
|
1173
|
+
"deg": {
|
|
1174
|
+
"colormap": [0, "#0000aa", 45, "#4444ff", 70, "#aaaaff", 80, "#ddddff", 85, "#eeeeff", 90, "#ffffff", 95, "#ffeedd", 100, "#ffddaa", 110, "#ff9900", 135, "#ff4400", 180, "#990000", 270, "#550055", 360, "#000044"],
|
|
1175
|
+
"breakpoints": [0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 72, 74, 76, 78, 80, 82, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 98, 100, 102, 104, 106, 108, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 195, 210, 225, 240, 255, 270, 285, 300, 315, 330, 345, 360]
|
|
1176
|
+
}
|
|
1177
|
+
}
|
|
1178
|
+
},
|
|
1179
|
+
'okuboweiss': {
|
|
1180
|
+
"units": {
|
|
1181
|
+
"1/s²": {
|
|
1182
|
+
colormap: [-2, "#ff0000", -1.5, "#f16060", -1, "#ecc4a4", -0.5, "#6e2d0d", -0.25, "#d46738", 0, "#8a8a6d", 0.25, "#45d429", 0.5, "#063d0f", 1, "#04d4ff", 1.5, "#2a6eb4", 2, "#4f0869"],
|
|
1183
|
+
breakpoints: [-2, -1.75, -1.5, -1.25, -1, -0.75, -0.5, -0.25, 0, 0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2]
|
|
1184
|
+
}
|
|
1185
|
+
}
|
|
1186
|
+
},
|
|
1187
|
+
'hdwianom': {
|
|
1188
|
+
"units": {
|
|
1189
|
+
"hPa m²/s²": {
|
|
1190
|
+
"colormap": [-700, "#000000", -400, "#058f00", -200, "#00ffd5", -100, "#4a2eff", -50, "#8c8fba", 0, "#d1d1d1", 50, "#ba8c8c", 100, "#ff9500", 200, "#ff0800", 400, "#ff00d0", 700, "#ffffff"],
|
|
1191
|
+
breakpoints: [-700, -690, -680, -670, -660, -650, -640, -630, -620, -610, -600, -590, -580, -570, -560, -550, -540, -530, -520, -510, -500, -490, -480, -470, -460, -450, -440, -430, -420, -410, -400, -390, -380, -370, -360, -350, -340, -330, -320, -310, -300, -290, -280, -270, -260, -250, -240, -230, -220, -210, -200, -190, -180, -170, -160, -150, -140, -130, -120, -110, -100, -90, -80, -70, -60, -50, -40, -30, -20, -10, 0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, 170, 180, 190, 200, 210, 220, 230, 240, 250, 260, 270, 280, 290, 300, 310, 320, 330, 340, 350, 360, 370, 380, 390, 400, 410, 420, 430, 440, 450, 460, 470, 480, 490, 500, 510, 520, 530, 540, 550, 560, 570, 580, 590, 600, 610, 620, 630, 640, 650, 660, 670, 680, 690, 700]
|
|
1192
|
+
}
|
|
1193
|
+
}
|
|
1194
|
+
},
|
|
1195
|
+
'rfti': {
|
|
1196
|
+
"units": {
|
|
1197
|
+
"m²/s² %": {
|
|
1198
|
+
"colormap": [0, "#d1d1d1", 1, "#b6b6b6", 2, "#727272", 3, "#640019", 4, "#ff00e0", 5, "#ffffff", 6, "#00fbff", 7, "#222222"],
|
|
1199
|
+
breakpoints: [0., 0.25, 0.5, 0.75, 1., 1.25, 1.5, 1.75, 2., 2.25, 2.5, 2.75, 3., 3.25, 3.5, 3.75, 4., 4.25, 4.5, 4.75, 5., 5.25, 5.5, 5.75, 6., 6.25, 6.5, 6.75, 7.]
|
|
1200
|
+
}
|
|
1201
|
+
}
|
|
1202
|
+
},
|
|
1203
|
+
'hdwi': {
|
|
1204
|
+
"units": {
|
|
1205
|
+
"hPa m²/s²": {
|
|
1206
|
+
"colormap": [0, "#d1d1d1", 50, "#b6b6b6", 100, "#727272", 150, "#d9ff00", 200, "#c7cc00", 250, "#758600", 300, "#ff0000", 350, "#c40000", 400, "#640019", 450, "#740047", 500, "#ff00e0", 550, "#ff84f5", 600, "#ffbcfd", 650, "#ffffff", 700, "#d2fffa", 750, "#00fbff"],
|
|
1207
|
+
breakpoints: [0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195, 200, 205, 210, 215, 220, 225, 230, 235, 240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295, 300, 305, 310, 315, 320, 325, 330, 335, 340, 345, 350, 355, 360, 365, 370, 375, 380, 385, 390, 395, 400, 405, 410, 415, 420, 425, 430, 435, 440, 445, 450, 455, 460, 465, 470, 475, 480, 485, 490, 495, 500, 505, 510, 515, 520, 525, 530, 535, 540, 545, 550, 555, 560, 565, 570, 575, 580, 585, 590, 595, 600, 605, 610, 615, 620, 625, 630, 635, 640, 645, 650, 655, 660, 665, 670, 675, 680, 685, 690, 695, 700, 705, 710, 715, 720, 725, 730, 735, 740, 745, 750]
|
|
1208
|
+
}
|
|
1209
|
+
}
|
|
1210
|
+
},
|
|
1211
|
+
'qvector_speed': {
|
|
1212
|
+
"units": {
|
|
1213
|
+
"10² kg/m²/s³": {
|
|
1214
|
+
"colormap": [0, "#aaaaaa", 1, "#006600", 2, "#00ff00", 5, "#aaff00", 10, "#ffff00", 20, "#ffaa00", 40, "#ff0000", 60, "#ffffff"],
|
|
1215
|
+
"breakpoints": [0, 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, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100]
|
|
1216
|
+
}
|
|
1217
|
+
}
|
|
1218
|
+
},
|
|
1185
1219
|
"irsat": {
|
|
1186
|
-
"type": "fill",
|
|
1187
|
-
"gridded": false,
|
|
1188
|
-
"interpolationType": "interpolate",
|
|
1189
1220
|
"units": {
|
|
1190
1221
|
"°C": {
|
|
1191
1222
|
"colormap": [-100, "#cc66ff", -80, "#f0f0f0", -70, "#000000", -60, "#ff0000", -50, "#ffee00", -40, "#33ff00", -30, "#0033cc", -20, "#00ffff", -18, "#ffffff", 60, "#000000"],
|
|
@@ -1194,9 +1225,6 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
1194
1225
|
}
|
|
1195
1226
|
},
|
|
1196
1227
|
"vis_0": {
|
|
1197
|
-
"type": "fill",
|
|
1198
|
-
"gridded": false,
|
|
1199
|
-
"interpolationType": "interpolate",
|
|
1200
1228
|
"units": {
|
|
1201
1229
|
"mi": {
|
|
1202
1230
|
"colormap": [0, "#000000", 2, "#444444", 5, "#888888", 7, "#cccccc", 10, "#ffffff"],
|
|
@@ -1208,47 +1236,106 @@ const DEFAULT_COLORMAPS = exports.DEFAULT_COLORMAPS = {
|
|
|
1208
1236
|
}
|
|
1209
1237
|
}
|
|
1210
1238
|
},
|
|
1211
|
-
"
|
|
1212
|
-
"type": "fill",
|
|
1213
|
-
"gridded": false,
|
|
1214
|
-
"interpolationType": "interpolate",
|
|
1239
|
+
"cloud": {
|
|
1215
1240
|
"units": {
|
|
1216
1241
|
"%": {
|
|
1217
|
-
"colormap": [0, "#
|
|
1242
|
+
"colormap": [0, "#c3d0e9", 20, "#d7eaf4", 50, "#7792b6", 80, "#5e82c9", 100, "#313f77"],
|
|
1218
1243
|
"breakpoints": [0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
|
|
1219
1244
|
}
|
|
1220
1245
|
}
|
|
1221
1246
|
},
|
|
1222
|
-
"
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1247
|
+
"2tanom": {
|
|
1248
|
+
units: {
|
|
1249
|
+
'°F': {
|
|
1250
|
+
colormap: [-50, "#aaccff", -25, "#35034d", -10, "#1b82d1", 0, "#bababa", 10, "#bb5555", 25, "#e87d13", 50, "#ffffff"],
|
|
1251
|
+
breakpoints: [-50, -48, -46, -44, -42, -40, -38, -36, -34, -32, -30, -28, -26, -24, -22, -20, -18, -16, -14, -12, -10, -8, -6, -4, -2, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50]
|
|
1252
|
+
},
|
|
1253
|
+
'°C': {
|
|
1254
|
+
colormap: [-40, "#aaccff", -20, "#35034d", -8, "#1b82d1", 0, "#bababa", 8, "#bb5555", 20, "#e87d13", 40, "#ffffff"],
|
|
1255
|
+
breakpoints: [-40, -38, 36, -34, -32, -30, -28, -26, -24, -22, -20, -18, -16, -14, -12, -10, -8, -6, -4, -2, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40]
|
|
1256
|
+
}
|
|
1257
|
+
}
|
|
1258
|
+
},
|
|
1259
|
+
"lapserates03": {
|
|
1260
|
+
units: {
|
|
1261
|
+
'°C km⁻¹': {
|
|
1262
|
+
colormap: [0, "#3e3646", 5, "#ac947a", 6, "#fbb955", 7, "#ea4f37", 8, "#b33831", 9, "#7a3045", 10, "#c7dcd0", 15, "#ebebeb"],
|
|
1263
|
+
breakpoints: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
|
|
1264
|
+
}
|
|
1265
|
+
}
|
|
1266
|
+
},
|
|
1267
|
+
"pwatanom_0": {
|
|
1268
|
+
units: {
|
|
1269
|
+
'in': {
|
|
1270
|
+
colormap: [-2, "#ff0000", -1.5, "#f16060", -1, "#ecc4a4", -0.5, "#6e2d0d", -0.25, "#d46738", 0, "#8a8a6d", 0.25, "#45d429", 0.5, "#063d0f", 1, "#04d4ff", 1.5, "#2a6eb4", 2, "#4f0869"],
|
|
1271
|
+
breakpoints: [-2, -1.75, -1.5, -1.25, -1, -0.75, -0.5, -0.25, 0, 0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2]
|
|
1272
|
+
},
|
|
1273
|
+
'mm': {
|
|
1274
|
+
colormap: [-50, "#ff0000", -35, "#f16060", -25, "#ecc4a4", -10, "#6e2d0d", -5, "#d46738", 0, "#8a8a6d", 5, "#45d429", 10, "#063d0f", 25, "#04d4ff", 35, "#2a6eb4", 50, "#4f0869"],
|
|
1275
|
+
breakpoints: [-50, -45, -40, -35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50]
|
|
1276
|
+
}
|
|
1277
|
+
}
|
|
1278
|
+
},
|
|
1279
|
+
"mslpanom": {
|
|
1226
1280
|
"units": {
|
|
1227
|
-
"
|
|
1228
|
-
"colormap": [0,
|
|
1229
|
-
"breakpoints": [0, 10, 20, 30,
|
|
1281
|
+
"hPa": {
|
|
1282
|
+
"colormap": [-50, '#081652', -36, '#081652', -33, '#052F60', -30, '#0E437B', -27, '#185695', -24, '#2268AD', -21, '#307AB6', -18, '#3C8ABE', -15, '#4F9AC7', -12, '#6EAED1', -9, '#8AC0DB', -6, '#A2CDE2', -3, '#BAD9E9', 0, '#aaaaaa', 3, '#FDDBC6', 6, '#F9C7AE', 9, '#F6B293', 12, '#F19E7C', 15, '#E6856A', 18, '#DA6A55', 21, '#CF5146', 24, '#C2383A', 27, '#B41C2C', 30, '#9C1027', 33, '#810822', 36, '#780577', 50, '#780577'],
|
|
1283
|
+
"breakpoints": [-50, -48, -46, -44, -42, -40, -38, -36, -34, -32, -30, -28, -26, -24, -22, -20, -18, -16, -14, -12, -10, -8, -6, -4, -2, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50]
|
|
1230
1284
|
}
|
|
1231
1285
|
}
|
|
1232
1286
|
},
|
|
1233
|
-
"
|
|
1234
|
-
"type": "fill",
|
|
1235
|
-
"gridded": false,
|
|
1236
|
-
"interpolationType": "interpolate",
|
|
1287
|
+
"ghanom_500": {
|
|
1237
1288
|
"units": {
|
|
1238
|
-
"
|
|
1239
|
-
"colormap": [0,
|
|
1240
|
-
"breakpoints": [0, 10, 20, 30,
|
|
1289
|
+
"dam": {
|
|
1290
|
+
"colormap": [-50, '#081652', -36, '#081652', -33, '#052F60', -30, '#0E437B', -27, '#185695', -24, '#2268AD', -21, '#307AB6', -18, '#3C8ABE', -15, '#4F9AC7', -12, '#6EAED1', -9, '#8AC0DB', -6, '#A2CDE2', -3, '#BAD9E9', 0, '#aaaaaa', 3, '#FDDBC6', 6, '#F9C7AE', 9, '#F6B293', 12, '#F19E7C', 15, '#E6856A', 18, '#DA6A55', 21, '#CF5146', 24, '#C2383A', 27, '#B41C2C', 30, '#9C1027', 33, '#810822', 36, '#780577', 50, '#780577'],
|
|
1291
|
+
"breakpoints": [-50, -48, -46, -44, -42, -40, -38, -36, -34, -32, -30, -28, -26, -24, -22, -20, -18, -16, -14, -12, -10, -8, -6, -4, -2, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50]
|
|
1241
1292
|
}
|
|
1242
1293
|
}
|
|
1243
1294
|
},
|
|
1244
|
-
"
|
|
1245
|
-
"type": "fill",
|
|
1246
|
-
"gridded": false,
|
|
1247
|
-
"interpolationType": "interpolate",
|
|
1295
|
+
"freezinglevel": {
|
|
1248
1296
|
"units": {
|
|
1249
|
-
"
|
|
1250
|
-
"colormap": [0, "#
|
|
1251
|
-
"breakpoints": [0,
|
|
1297
|
+
"m": {
|
|
1298
|
+
"colormap": [0, "#cb04ed", 500, "#581380", 1000, "#2974cc", 1500, "#15c2ad", 2000, "#11ab09", 2500, "#093209", 3000, "#d5b813", 3500, "#a9681d", 4000, "#7b0404", 4500, "#AB7D4D", 5000, "#ad9b8e"],
|
|
1299
|
+
"breakpoints": [0, 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1100, 1200, 1300, 1400, 1500, 1600, 1700, 1800, 1900, 2000, 2100, 2200, 2300, 2400, 2500, 2600, 2700, 2800, 2900, 3000, 3100, 3200, 3300, 3400, 3500, 3600, 3700, 3800, 3900, 4000, 4100, 4200, 4300, 4400, 4500, 4600, 4700, 4800, 4900, 5000, 5100, 5200, 5300, 5400, 5500, 5600, 5700, 5800, 5900, 6000]
|
|
1300
|
+
}
|
|
1301
|
+
}
|
|
1302
|
+
},
|
|
1303
|
+
"SatelliteWV": {
|
|
1304
|
+
"units": {
|
|
1305
|
+
"C": {
|
|
1306
|
+
"colormap": [10, "#cece55", 20, "#ce5555", 30, "#262626", 45, "#ffffff", 55, "#55cece", 70, "#5555ce", 80, "#4d3366", 90, "#e673e6", 100, "#efe6eb"],
|
|
1307
|
+
"breakpoints": [10, 20, 30, 45, 55, 70, 80, 90, 100]
|
|
1308
|
+
}
|
|
1309
|
+
}
|
|
1310
|
+
},
|
|
1311
|
+
"SatelliteLongwaveIR": {
|
|
1312
|
+
"units": {
|
|
1313
|
+
"C": {
|
|
1314
|
+
"colormap": [5, "#000000",
|
|
1315
|
+
// 40°C → normVal = 10.32
|
|
1316
|
+
51, "#ffffff",
|
|
1317
|
+
// 0°C → normVal = 37.74
|
|
1318
|
+
52, "#00ffff",
|
|
1319
|
+
// -20°C → normVal = 50.65
|
|
1320
|
+
58, "#0033cc",
|
|
1321
|
+
// -30°C → normVal = 57.10
|
|
1322
|
+
64, "#33ff00",
|
|
1323
|
+
// -40°C → normVal = 63.55
|
|
1324
|
+
73, "#ffee00",
|
|
1325
|
+
// -50°C → normVal = 70.00
|
|
1326
|
+
78, "#ff0000",
|
|
1327
|
+
// -60°C → normVal = 76.45
|
|
1328
|
+
82, "#660000",
|
|
1329
|
+
// -70°C → normVal = 82.90
|
|
1330
|
+
88, "#808080",
|
|
1331
|
+
// -75°C → normVal = 86.13
|
|
1332
|
+
90, "#cc66ff",
|
|
1333
|
+
// -80°C → normVal = 89.35
|
|
1334
|
+
96, "#9933cc",
|
|
1335
|
+
// -90°C → normVal = 95.81
|
|
1336
|
+
100, "#9933cc" // -90°C → normVal = 95.81
|
|
1337
|
+
],
|
|
1338
|
+
"breakpoints": [10, 20, 30, 45, 55, 70, 80, 90, 100]
|
|
1252
1339
|
}
|
|
1253
1340
|
}
|
|
1254
1341
|
}
|