@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.
@@ -1,43 +1,6 @@
1
1
 
2
2
  export const DEFAULT_COLORMAPS = {
3
- "ptypeRefl": {
4
- "type": "fill",
5
- "gridded": false,
6
- "interpolationType": "interpolate",
7
- "units": {
8
- "dBZ": {
9
- "colormap": [
10
- // --- Rain Palette (Standard Reflectivity Values: 5 to 80) ---
11
- 5, "#00cc66",
12
- 35, "#ffff00",
13
- 70, "#ff8800",
14
- 80, "#ff0000",
15
-
16
- // --- Snow Palette (Reflectivity Values Offset by +100) ---
17
- 105, "#33ccff",
18
- 135, "#8800cc",
19
- 170, "#ffccff",
20
- 180, "#dddddd",
21
-
22
- // --- Freezing Rain Palette (Reflectivity Values Offset by +200) ---
23
- 205, "#ff3300",
24
- 230, "#ffaa33",
25
- 280, "#cc0066",
26
-
27
- // icep
28
- 305, "#8800cc",
29
- 370, "#ffbb00",
30
- 380, "#dddddd"
31
- ],
32
- "breakpoints": [
33
- ]
34
- }
35
- }
36
- },
37
3
  "MergedZdr_04.00" : {
38
- type: "fill",
39
- gridded: false,
40
- interpolationType: "interpolate",
41
4
  units : {
42
5
  'dB' : {
43
6
  colormap : [
@@ -65,9 +28,6 @@ export const DEFAULT_COLORMAPS = {
65
28
  },
66
29
  },
67
30
  "MergedRhoHV_04.00" : {
68
- type: "fill",
69
- gridded: false,
70
- interpolationType: "interpolate",
71
31
  units : {
72
32
  'None' : {
73
33
  colormap : [
@@ -95,10 +55,228 @@ export const DEFAULT_COLORMAPS = {
95
55
  },
96
56
  },
97
57
  },
58
+ // NEXRAD Level-2 variables (REF, PHI, ZDR, RHO, VEL, SW)
59
+ "nexrad_phi" : {
60
+ units : {
61
+ 'deg' : {
62
+ colormap : [
63
+ -180, "#0000ff",
64
+ -90, "#00ff00",
65
+ 0, "#ffff00",
66
+ 90, "#ff9900",
67
+ 180, "#ff0000",
68
+ ],
69
+ breakpoints : [-180, -90, 0, 90, 180],
70
+ },
71
+ },
72
+ },
73
+ "nexrad_vel" : {
74
+ units : {
75
+ 'm/s' : {
76
+ colormap : [
77
+ -30, "#0000ff",
78
+ -20, "#0066ff",
79
+ -10, "#00ccff",
80
+ -5, "#00ff00",
81
+ 0, "#808080",
82
+ 5, "#ffff00",
83
+ 10, "#ff9900",
84
+ 20, "#ff0000",
85
+ 30, "#cc0000",
86
+ ],
87
+ breakpoints : [-30, -20, -10, -5, 0, 5, 10, 20, 30],
88
+ },
89
+ 'mph' : {
90
+ colormap : [
91
+ -67, "#0000ff",
92
+ -45, "#0066ff",
93
+ -22, "#00ccff",
94
+ -11, "#00ff00",
95
+ 0, "#808080",
96
+ 11, "#ffff00",
97
+ 22, "#ff9900",
98
+ 45, "#ff0000",
99
+ 67, "#cc0000",
100
+ ],
101
+ breakpoints : [-67, -45, -22, -11, 0, 11, 22, 45, 67],
102
+ },
103
+ 'kts' : {
104
+ colormap : [
105
+ -58, "#0000ff",
106
+ -39, "#0066ff",
107
+ -19, "#00ccff",
108
+ -10, "#00ff00",
109
+ 0, "#808080",
110
+ 10, "#ffff00",
111
+ 19, "#ff9900",
112
+ 39, "#ff0000",
113
+ 58, "#cc0000",
114
+ ],
115
+ breakpoints : [-58, -39, -19, -10, 0, 10, 19, 39, 58],
116
+ },
117
+ 'km/h' : {
118
+ colormap : [
119
+ -108, "#0000ff",
120
+ -72, "#0066ff",
121
+ -36, "#00ccff",
122
+ -18, "#00ff00",
123
+ 0, "#808080",
124
+ 18, "#ffff00",
125
+ 36, "#ff9900",
126
+ 72, "#ff0000",
127
+ 108, "#cc0000",
128
+ ],
129
+ breakpoints : [-108, -72, -36, -18, 0, 18, 36, 72, 108],
130
+ },
131
+ },
132
+ },
133
+ "nexrad_sw" : {
134
+ units : {
135
+ 'm/s' : {
136
+ colormap : [
137
+ 0, "#00ff00",
138
+ 2, "#80ff00",
139
+ 4, "#ffff00",
140
+ 6, "#ffcc00",
141
+ 8, "#ff9900",
142
+ 10, "#ff6600",
143
+ 12, "#ff0000",
144
+ 16, "#cc0000",
145
+ 20, "#800080",
146
+ ],
147
+ breakpoints : [0, 2, 4, 6, 8, 10, 12, 16, 20],
148
+ },
149
+ 'mph' : {
150
+ colormap : [
151
+ 0, "#00ff00",
152
+ 4.5, "#80ff00",
153
+ 9, "#ffff00",
154
+ 13, "#ffcc00",
155
+ 18, "#ff9900",
156
+ 22, "#ff6600",
157
+ 27, "#ff0000",
158
+ 36, "#cc0000",
159
+ 45, "#800080",
160
+ ],
161
+ breakpoints : [0, 4.5, 9, 13, 18, 22, 27, 36, 45],
162
+ },
163
+ 'kts' : {
164
+ colormap : [
165
+ 0, "#00ff00",
166
+ 3.9, "#80ff00",
167
+ 7.8, "#ffff00",
168
+ 11.7, "#ffcc00",
169
+ 15.6, "#ff9900",
170
+ 19.4, "#ff6600",
171
+ 23.3, "#ff0000",
172
+ 31.1, "#cc0000",
173
+ 39, "#800080",
174
+ ],
175
+ breakpoints : [0, 3.9, 7.8, 11.7, 15.6, 19.4, 23.3, 31.1, 39],
176
+ },
177
+ 'km/h' : {
178
+ colormap : [
179
+ 0, "#00ff00",
180
+ 7.2, "#80ff00",
181
+ 14.4, "#ffff00",
182
+ 21.6, "#ffcc00",
183
+ 28.8, "#ff9900",
184
+ 36, "#ff6600",
185
+ 43.2, "#ff0000",
186
+ 57.6, "#cc0000",
187
+ 72, "#800080",
188
+ ],
189
+ breakpoints : [0, 7.2, 14.4, 21.6, 28.8, 36, 43.2, 57.6, 72],
190
+ },
191
+ },
192
+ },
193
+ "nexrad_kdp" : {
194
+ units : {
195
+ 'deg/km' : {
196
+ colormap : [
197
+ -2, "#8e8e8e",
198
+ -0.5, "#4c0001",
199
+ 0.25, "#a3072f",
200
+ 1, "#ea73b4",
201
+ 1.5, "#997eb9",
202
+ 2, "#68f4f4",
203
+ 2.5, "#1aba34",
204
+ 3, "#11f910",
205
+ 4, "#f7fc00",
206
+ 5, "#ff7c10",
207
+ 7, "#ffc47c",
208
+ 10, "#790279",
209
+ ],
210
+ breakpoints : [-2, -0.5, 0.25, 1, 1.5, 2, 2.5, 3, 4, 5, 7, 10],
211
+ },
212
+ },
213
+ },
214
+ "nexrad_l3_n0h": {
215
+ units: {
216
+ None: {
217
+ colormap: [
218
+ 0, "#d0d0d0",
219
+ 1, "#696969",
220
+ 2, "#ffccd5",
221
+ 3, "#a8d8f0",
222
+ 4, "#2566d8",
223
+ 5, "#b8f5b8",
224
+ 6, "#1a8f1a",
225
+ 7, "#f5e6b8",
226
+ 8, "#ff8787",
227
+ 9, "#e02020",
228
+ 10, "#5c0000",
229
+ 11, "#ffd700",
230
+ ],
231
+ breakpoints: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11],
232
+ },
233
+ },
234
+ },
235
+ "nexrad_l3_hhc": {
236
+ units: {
237
+ None: {
238
+ colormap: [
239
+ 0, "#d0d0d0",
240
+ 1, "#696969",
241
+ 2, "#ffccd5",
242
+ 3, "#a8d8f0",
243
+ 4, "#2566d8",
244
+ 5, "#b8f5b8",
245
+ 6, "#1a8f1a",
246
+ 7, "#f5e6b8",
247
+ 8, "#ff8787",
248
+ 9, "#e02020",
249
+ 10, "#5c0000",
250
+ 11, "#ffd700",
251
+ ],
252
+ breakpoints: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11],
253
+ },
254
+ },
255
+ },
256
+ "nexrad_l3_eet": {
257
+ units: {
258
+ kft: {
259
+ colormap: [
260
+ 5, "#737373",
261
+ 10, "#818181",
262
+ 15, "#919191",
263
+ 20, "#a5a5a5",
264
+ 25, "#49af45",
265
+ 30, "#19770b",
266
+ 35, "#fedd00",
267
+ 40, "#fc6901",
268
+ 45, "#bf0005",
269
+ 50, "#800001",
270
+ 55, "#cf2ad3",
271
+ 60, "#b117b5",
272
+ 65, "#00b6c5",
273
+ 70, "#009ca9",
274
+ ],
275
+ breakpoints: [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22],
276
+ },
277
+ },
278
+ },
98
279
  "rotation" : {
99
- type: "fill",
100
- gridded: false,
101
- interpolationType: "interpolate",
102
280
  units : {
103
281
  's⁻¹' : {
104
282
  colormap : [
@@ -126,9 +304,6 @@ export const DEFAULT_COLORMAPS = {
126
304
  },
127
305
  },
128
306
  "hail" : {
129
- type: "fill",
130
- gridded: false,
131
- interpolationType: "interpolate",
132
307
  units : {
133
308
  'mm' : {
134
309
  colormap : [
@@ -174,9 +349,6 @@ export const DEFAULT_COLORMAPS = {
174
349
  },
175
350
  },
176
351
  "ff_ari" : {
177
- type: "fill",
178
- gridded: false,
179
- interpolationType: "interpolate",
180
352
  units : {
181
353
  'year' : {
182
354
  colormap : [
@@ -203,9 +375,6 @@ export const DEFAULT_COLORMAPS = {
203
375
  },
204
376
  },
205
377
  "lightning_prob" : {
206
- type: "fill",
207
- gridded: false,
208
- interpolationType: "interpolate",
209
378
  units : {
210
379
  '%' : {
211
380
  colormap : [
@@ -227,9 +396,6 @@ export const DEFAULT_COLORMAPS = {
227
396
  },
228
397
  },
229
398
  "vil" : {
230
- type: "fill",
231
- gridded: false,
232
- interpolationType: "interpolate",
233
399
  units : {
234
400
  'kg/m²' : {
235
401
  colormap : [
@@ -259,17 +425,51 @@ export const DEFAULT_COLORMAPS = {
259
425
  },
260
426
  },
261
427
  },
428
+ "sde_change" : {
429
+ units : {
430
+ 'in' : {
431
+ colormap : [
432
+ -100, "#e60000",
433
+ -50, "#e60000",
434
+ 0, "#ffffff",
435
+ 50, "#0000cc",
436
+ 100, "#0000cc",
437
+ ],
438
+ breakpoints : [ 0
439
+ ],
440
+ },
441
+ 'cm' : {
442
+ colormap : [
443
+ -300, "#e60000",
444
+ -150, "#e60000",
445
+ 0, "#ffffff",
446
+ 150, "#0000cc",
447
+ 300, "#0000cc",
448
+ ],
449
+ breakpoints : [ 0
450
+ ],
451
+ },
452
+ 'mm' : {
453
+ colormap : [
454
+ -3000, "#e60000",
455
+ -1500, "#e60000",
456
+ 0, "#ffffff",
457
+ 1500, "#0000cc",
458
+ 3000, "#0000cc",
459
+ ],
460
+ breakpoints : [ 0
461
+ ],
462
+ },
463
+ },
464
+ },
262
465
  "gh_tendency" : {
263
- type: "fill",
264
- gridded: false,
265
- interpolationType: "interpolate",
266
466
  units : {
267
467
  'dam' : {
268
468
  colormap : [
269
469
  -60, "#0000cc",
270
- -30, "#0000cc",
470
+ -20, "#0000cc",
271
471
  0, "#ffffff",
272
- 30, "#e60000",
472
+ 20, "#e60000",
273
473
  60, "#e60000",
274
474
  ],
275
475
  breakpoints : [
@@ -283,28 +483,9 @@ export const DEFAULT_COLORMAPS = {
283
483
  },
284
484
  },
285
485
  "refc_0" : {
286
- type: "fill",
287
- gridded: false,
288
- interpolationType: "interpolate",
289
486
  units : {
290
487
  'dBZ' : {
291
- colormap : [
292
- 5, "#2980dc",
293
- 15, "#00b2d4",
294
- 20, "#00cc99",
295
- 25, "#00e07f",
296
- 30, "#8fd42a",
297
- 35, "#ffcc00",
298
- 40, "#ff8c00",
299
- 45, "#ff6633",
300
- 50, "#ff3333",
301
- 55, "#cc3399",
302
- 60, "#a020f0",
303
- 65, "#8822ee",
304
- 70, "#7425e6",
305
- 75, "#cc33cc",
306
- 80, "#ff66dd",
307
- ],
488
+ 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"],
308
489
  breakpoints : [
309
490
  5, 10, 15, 20, 25, 30, 35,40 ,45, 50, 55, 60, 65, 70, 75, 80
310
491
  ],
@@ -312,9 +493,6 @@ export const DEFAULT_COLORMAPS = {
312
493
  },
313
494
  },
314
495
  "mslma_0" : {
315
- type: "line",
316
- gridded: true,
317
- interpolationType: "interpolate",
318
496
  units : {
319
497
  'hPa' : {
320
498
  colormap : [
@@ -338,9 +516,6 @@ export const DEFAULT_COLORMAPS = {
338
516
  }
339
517
  },
340
518
  "pres2PVU" : {
341
- type: "fill",
342
- gridded: false,
343
- interpolationType: "interpolate",
344
519
  units : {
345
520
  'hPa' : {
346
521
  colormap : [
@@ -365,9 +540,6 @@ export const DEFAULT_COLORMAPS = {
365
540
  }
366
541
  },
367
542
  "theta2PVU" : {
368
- type: "fill",
369
- gridded: false,
370
- interpolationType: "interpolate",
371
543
  units : {
372
544
  '°K' : {
373
545
  colormap : [
@@ -390,9 +562,6 @@ export const DEFAULT_COLORMAPS = {
390
562
  }
391
563
  },
392
564
  "vo" : {
393
- type: "fill",
394
- gridded: false,
395
- interpolationType: "interpolate",
396
565
  units : {
397
566
  's⁻¹' : {
398
567
  colormap : [
@@ -421,22 +590,10 @@ export const DEFAULT_COLORMAPS = {
421
590
  }
422
591
  },
423
592
  "bulk_shear_speed_upper" : {
424
- type: "fill",
425
- gridded: true,
426
- interpolationType: "interpolate",
427
593
  units : {
428
594
  'kts' : {
429
595
  colormap : [
430
- 20, "#99ffff",
431
- 40, "#7733cc",
432
- 50, "#ff66cc",
433
- 60, "#ff3377",
434
- 70, "#993399",
435
- 80, "#ff3333",
436
- 90, "#cc0000",
437
- 100, "#ff9900",
438
- 120, "#ffdd00",
439
- 140, "#ff8800",
596
+ 0, "#7f708a", 20, "#484a77", 40, "#4d9be6", 60, "#eaaded", 80, "#f04f78", 100, "#831c5d", 120, "#f7961a", 140, "#fbfe86", 200, "#ededed"
440
597
  ],
441
598
  breakpoints : [
442
599
  20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, 170, 180
@@ -444,16 +601,7 @@ export const DEFAULT_COLORMAPS = {
444
601
  },
445
602
  'm/s' : {
446
603
  colormap : [
447
- 10, "#99ffff",
448
- 22, "#7733cc",
449
- 26, "#ff66cc",
450
- 30, "#ff3377",
451
- 38, "#993399",
452
- 42, "#ff3333",
453
- 46, "#cc0000",
454
- 50, "#ff9900",
455
- 62, "#ffdd00",
456
- 70, "#ff8800",
604
+ 0, "#7f708a", 10, "#484a77", 20, "#4d9be6", 30, "#eaaded", 40, "#f04f78", 50, "#831c5d", 60, "#f7961a", 70, "#fbfe86", 100, "#ededed"
457
605
  ],
458
606
  breakpoints : [
459
607
  10, 14, 18, 22, 26, 30, 34, 38, 42, 46, 50, 54,
@@ -463,20 +611,10 @@ export const DEFAULT_COLORMAPS = {
463
611
  }
464
612
  },
465
613
  "bulk_shear_speed_lower" : {
466
- type: "fill",
467
- gridded: true,
468
- interpolationType: "interpolate",
469
614
  units : {
470
615
  'kts' : {
471
616
  colormap : [
472
- 10, "#99ffff",
473
- 20, "#ff66cc",
474
- 30, "#ff3377",
475
- 40, "#993399",
476
- 50, "#ff3333",
477
- 60, "#ff9900",
478
- 70, "#ffdd00",
479
- 80, "#ff8800",
617
+ 0, "#7f708a", 20, "#494a77", 40, "#4d9be6", 60, "#eaaded", 80, "#f04f77", 100, "#821c5d"
480
618
  ],
481
619
  breakpoints : [
482
620
  10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90
@@ -484,14 +622,7 @@ export const DEFAULT_COLORMAPS = {
484
622
  },
485
623
  'm/s' : {
486
624
  colormap : [
487
- 5, "#99ffff",
488
- 11, "#ff66cc",
489
- 15, "#ff3377",
490
- 21, "#993399",
491
- 25, "#ff3333",
492
- 31, "#ff9900",
493
- 35, "#ffdd00",
494
- 41, "#ff8800",
625
+ 0, "#7f708a", 10, "#494a77", 20, "#4d9be6", 30, "#eaaded", 40, "#f04f77", 50, "#821c5d"
495
626
  ],
496
627
  breakpoints : [
497
628
  5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29,
@@ -501,25 +632,10 @@ export const DEFAULT_COLORMAPS = {
501
632
  }
502
633
  },
503
634
  "hlcy" : {
504
- type: "fill",
505
- gridded: false,
506
- interpolationType: "interpolate",
507
635
  units : {
508
636
  'm²/s²' : {
509
637
  colormap : [
510
- -1000, "#33007a",
511
- 0, "#dddddd",
512
- 50, "#888888",
513
- 100, "#3377cc",
514
- 150, "#66bbff",
515
- 200, "#ffdd00",
516
- 300, "#ffcc00",
517
- 350, "#ff0000",
518
- 400, "#cc0066",
519
- 450, "#8800cc",
520
- 500, "#cc66ff",
521
- 600, "#ffbbbb",
522
- 1500, "#ff8800",
638
+ -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"
523
639
  ],
524
640
  breakpoints : [
525
641
  -1500, -1450, -1400, -1350, -1300, -1250, -1200, -1150, -1100, -1050, -1000, -950,
@@ -532,18 +648,19 @@ export const DEFAULT_COLORMAPS = {
532
648
  },
533
649
  },
534
650
  },
535
- "mxuphl_5000" : {
536
- type: "fill",
537
- gridded: false,
538
- interpolationType: "interpolate",
651
+ "mxuphl" : {
539
652
  units : {
540
653
  'm²/s²' : {
541
654
  colormap : [
542
- 2, "#99ffff",
543
- 90, "#0077ff",
544
- 100, "#ffee00",
545
- 200, "#ff66ff",
546
- 400, "#8800ee",
655
+ 2, "#6754aa", // deep purple
656
+ 20, "#2a7fbb", // blue
657
+ 50, "#91d28c", // green
658
+ 100, "#f4fca9", // yellow
659
+ 130, "#ff9609", // orange
660
+ 160, "#d51c1c", // red
661
+ 200, "#d012a1", // magenta
662
+ 270, "#dd71c5", // pink
663
+ 400, "#671f6c" // dark purple
547
664
  ],
548
665
  breakpoints : [
549
666
  2,5,10,10,20,30,40,50,60,70,80,90,100,120,140,160,180,
@@ -553,40 +670,11 @@ export const DEFAULT_COLORMAPS = {
553
670
  },
554
671
  },
555
672
  },
556
- "mxuphl_3000" : {
557
- type: "fill",
558
- gridded: false,
559
- interpolationType: "interpolate",
560
- units : {
561
- 'm²/s²' : {
562
- colormap : [
563
- 2, "#99ffff",
564
- 90, "#0077ff",
565
- 100, "#ffee00",
566
- 200, "#ff66ff",
567
- 300, "#8800ee",
568
- ],
569
- breakpoints : [
570
- 2,5,10,10,20,30,40,50,60,70,80,90,
571
- 100,110,120,130,140,150,160,170,180,190,200,220,240,260,280,300
572
- ],
573
- },
574
- },
575
- },
576
673
  "ehi" : {
577
- type: "fill",
578
- gridded: false,
579
- interpolationType: "interpolate",
580
674
  units : {
581
675
  'None' : {
582
676
  colormap : [
583
- -20, "#33007a",
584
- 0, "#dddddd",
585
- 1, "#3377cc",
586
- 2, "#ffee00",
587
- 6, "#cc0066",
588
- 8, "#8800cc",
589
- 20, "#ffbbbb",
677
+ 1, "#1fbc73", 2, "#fbfe86", 4, "#f9c22b", 6, "#e83b3b", 8, "#6e2727", 20, "#c7dcd0"
590
678
  ],
591
679
  breakpoints : [
592
680
  -20.0, -19.5, -19.0, -18.5, -18.0, -17.5, -17.0, -16.5, -16.0, -15.5, -15.0, -14.5,
@@ -603,9 +691,6 @@ export const DEFAULT_COLORMAPS = {
603
691
  },
604
692
  },
605
693
  "slr" : {
606
- type: "fill",
607
- gridded: false,
608
- interpolationType: "interpolate",
609
694
  units : {
610
695
  'in. Snow/in. Liquid' : {
611
696
  colormap : [
@@ -626,24 +711,10 @@ export const DEFAULT_COLORMAPS = {
626
711
  },
627
712
  },
628
713
  "2t_2" : {
629
- type: "fill",
630
- gridded: true,
631
- interpolationType: "interpolate",
632
714
  units : {
633
715
  '°F' : {
634
716
  colormap : [
635
- -90, "#FFFFFF",
636
- -60, "#d9c2ff",
637
- -30, "#cc0088",
638
- 0, "#8822ee",
639
- 32, "#0077ff",
640
- 33, "#00cccc",
641
- 50, "#00dd66",
642
- 60, "#ffbb00",
643
- 80, "#ff5500",
644
- 100, "#ff0066",
645
- 120, "#cc0088",
646
- 150, "#FFFFFF",
717
+ -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"
647
718
  ],
648
719
  breakpoints: [
649
720
  -90, -88, -86, -84, -82, -80, -78, -76, -74,
@@ -660,18 +731,7 @@ export const DEFAULT_COLORMAPS = {
660
731
  },
661
732
  '°C' : {
662
733
  colormap : [
663
- -70, "#FFFFFF",
664
- -40, "#d9c2ff",
665
- -31, "#cc0088",
666
- -13, "#8822ee",
667
- 0, "#0077ff",
668
- 1, "#00cccc",
669
- 10, "#00dd66",
670
- 15, "#ffbb00",
671
- 25, "#ff5500",
672
- 40, "#ff0066",
673
- 50, "#cc0088",
674
- 70, "#FFFFFF",
734
+ -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",
675
735
  ],
676
736
  breakpoints: [
677
737
  -70, -68, -66, -64, -62, -60, -58, -56, -54, -52,
@@ -684,9 +744,6 @@ export const DEFAULT_COLORMAPS = {
684
744
  },
685
745
  },
686
746
  "t_iso" : {
687
- type: "line",
688
- gridded: false,
689
- interpolationType: "interpolate",
690
747
  units : {
691
748
  '°C' : {
692
749
  colormap : [0, "#0033ff",],
@@ -695,9 +752,6 @@ export const DEFAULT_COLORMAPS = {
695
752
  },
696
753
  },
697
754
  "2d_2" : {
698
- type: "fill",
699
- gridded: false,
700
- interpolationType: "interpolate",
701
755
  units : {
702
756
  '°F' : {
703
757
  colormap : [
@@ -744,24 +798,10 @@ export const DEFAULT_COLORMAPS = {
744
798
  },
745
799
  },
746
800
  "d" : {
747
- type: "fill",
748
- gridded: false,
749
- interpolationType: "interpolate",
750
801
  units : {
751
802
  '°C' : {
752
803
  colormap : [
753
- -70, "#FFFFFF",
754
- -40, "#d9c2ff",
755
- -31, "#cc0088",
756
- -13, "#8822ee",
757
- 0, "#0077ff",
758
- 1, "#00cccc",
759
- 10, "#00dd66",
760
- 15, "#ffbb00",
761
- 25, "#ff5500",
762
- 40, "#ff0066",
763
- 50, "#cc0088",
764
- 70, "#FFFFFF",
804
+ -70, "#2e2230", -30, "#966c6c", 0, "#c7dcd0", 5, "#cddf6c", 10, "#1fbc73", 16, "#4d65b4", 22, "#4d9be6", 30, "#8fd3fe"
765
805
  ],
766
806
  breakpoints: [
767
807
  -70, -68, -66, -64, -62, -60, -58, -56, -54, -52,
@@ -775,22 +815,10 @@ export const DEFAULT_COLORMAPS = {
775
815
  },
776
816
  },
777
817
  "t" : {
778
- type: "fill",
779
- gridded: true,
780
- interpolationType: "interpolate",
781
818
  units : {
782
819
  '°C' : {
783
820
  colormap : [
784
- -50, "#ffffff",
785
- -35, "#cc0088",
786
- -20, "#8822ee",
787
- 0, "#0077ff",
788
- 1, "#00cccc",
789
- 10, "#00dd66",
790
- 15, "#ffbb00",
791
- 25, "#ff5500",
792
- 40, "#ff0066",
793
- 50, "#cc0088"
821
+ -50, "#fdcbb0", -30, "#fca791", -20, "#f04f77", -10, "#494a77", 0, "#4d65b5", 1, "#239064", 10, "#fac22c", 20, "#b43831", 30, "#3e3647"
794
822
  ],
795
823
  breakpoints: [
796
824
  -50, -48, -46, -44, -42, -40, -38, -36, -34,
@@ -802,19 +830,10 @@ export const DEFAULT_COLORMAPS = {
802
830
  },
803
831
  },
804
832
  "wind_speed_10" : {
805
- type: "fill",
806
- gridded: true,
807
- interpolationType: "interpolate",
808
833
  units : {
809
834
  'kts' : {
810
835
  colormap : [
811
- 5, "#dddddd",
812
- 10, "#99ccff",
813
- 15, "#0088ff",
814
- 35, "#8822ee",
815
- 50, "#ff0088",
816
- 70, "#ff8800",
817
- 120, "#ffff00"
836
+ 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"
818
837
  ],
819
838
  breakpoints : [
820
839
  5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65,
@@ -823,13 +842,7 @@ export const DEFAULT_COLORMAPS = {
823
842
  },
824
843
  'mph' : {
825
844
  colormap : [
826
- 5, "#dddddd",
827
- 10, "#99ccff",
828
- 20, "#0088ff",
829
- 40, "#8822ee",
830
- 55, "#ff0088",
831
- 80, "#ff8800",
832
- 150, "#ffff00"
845
+ 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"
833
846
  ],
834
847
  breakpoints : [
835
848
  5, 10, 15, 20, 25, 30, 35, 40, 45,
@@ -840,12 +853,7 @@ export const DEFAULT_COLORMAPS = {
840
853
  },
841
854
  'm/s' : {
842
855
  colormap : [
843
- 2, "#dddddd",
844
- 10, "#0088ff",
845
- 20, "#8822ee",
846
- 24, "#ff0088",
847
- 36, "#ff8800",
848
- 60, "#ffff00"
856
+ 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"
849
857
  ],
850
858
  breakpoints : [
851
859
  2, 4, 6, 8, 10, 12, 14, 16, 18, 20,
@@ -855,13 +863,7 @@ export const DEFAULT_COLORMAPS = {
855
863
  },
856
864
  'km/h' : {
857
865
  colormap : [
858
- 10, "#dddddd",
859
- 20, "#99ccff",
860
- 35, "#0088ff",
861
- 70, "#8822ee",
862
- 90, "#ff0088",
863
- 130, "#ff8800",
864
- 220, "#ffff00"
866
+ 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"
865
867
  ],
866
868
  breakpoints : [
867
869
  10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95,
@@ -873,22 +875,10 @@ export const DEFAULT_COLORMAPS = {
873
875
  },
874
876
  },
875
877
  "wind_speed_upper" : {
876
- type: "fill",
877
- gridded: true,
878
- interpolationType: "interpolate",
879
878
  units : {
880
879
  'kts' : {
881
880
  colormap : [
882
- 50, "#99ffff",
883
- 60, "#00cccc",
884
- 70, "#00dd66",
885
- 90, "#ffee00",
886
- 120, "#ff9900",
887
- 130, "#ff3333",
888
- 140, "#9933cc",
889
- 180, "#ff99ff",
890
- 200, "#ff6666",
891
- 250, "#ff0000"
881
+ 0, "#3e3646", 10, "#484a77", 30, "#4d9be6", 50, "#8fd3fe", 70, "#eaaded", 90, "#905ea9", 110, "#6b3e75", 130, "#45293f", 150, "#c32454", 170, "#f68181", 190, "#fdcbb0", 210, "#ededed"
892
882
  ],
893
883
  breakpoints : [
894
884
  10, 20, 30, 40, 50, 60, 70, 80, 90,
@@ -898,16 +888,7 @@ export const DEFAULT_COLORMAPS = {
898
888
  },
899
889
  'mph' : {
900
890
  colormap : [
901
- 55, "#99ffff",
902
- 70, "#00cccc",
903
- 80, "#00dd66",
904
- 105, "#ffee00",
905
- 140, "#ff9900",
906
- 150, "#ff3333",
907
- 160, "#9933cc",
908
- 205, "#ff99ff",
909
- 230, "#ff6666",
910
- 290, "#ff0000"
891
+ 0, "#3e3646", 10, "#484a77", 35, "#4d9be6", 60, "#8fd3fe", 80, "#eaaded", 105, "#905ea9", 125, "#6b3e75", 150, "#45293f", 175, "#c32454", 195, "#f68181", 220, "#fdcbb0", 240, "#ededed"
911
892
  ],
912
893
  breakpoints : [
913
894
  10, 25, 35, 45, 55, 70, 80, 90, 105,
@@ -917,16 +898,7 @@ export const DEFAULT_COLORMAPS = {
917
898
  },
918
899
  'm/s' : {
919
900
  colormap : [
920
- 25, "#99ffff",
921
- 30, "#00cccc",
922
- 36, "#00dd66",
923
- 46, "#ffee00",
924
- 62, "#ff9900",
925
- 67, "#ff3333",
926
- 72, "#9933cc",
927
- 93, "#ff99ff",
928
- 103, "#ff6666",
929
- 129, "#ff0000"
901
+ 0, "#3e3646", 5, "#484a77", 15, "#4d9be6", 25, "#8fd3fe", 35, "#eaaded", 45, "#905ea9", 55, "#6b3e75", 65, "#45293f", 75, "#c32454", 85, "#f68181", 95, "#fdcbb0", 105, "#ededed"
930
902
  ],
931
903
  breakpoints : [
932
904
  5, 10, 15, 20, 25, 30, 36, 41, 46,
@@ -936,16 +908,7 @@ export const DEFAULT_COLORMAPS = {
936
908
  },
937
909
  'km/h' : {
938
910
  colormap : [
939
- 95, "#99ffff",
940
- 110, "#00cccc",
941
- 130, "#00dd66",
942
- 165, "#ffee00",
943
- 220, "#ff9900",
944
- 240, "#ff3333",
945
- 260, "#9933cc",
946
- 335, "#ff99ff",
947
- 370, "#ff6666",
948
- 460, "#ff0000"
911
+ 0, "#3e3646", 20, "#484a77", 55, "#4d9be6", 90, "#8fd3fe", 130, "#eaaded", 165, "#905ea9", 205, "#6b3e75", 240, "#45293f", 280, "#c32454", 315, "#f68181", 350, "#fdcbb0", 390, "#ededed"
949
912
  ],
950
913
  breakpoints : [
951
914
  20, 35, 55, 75, 95, 110, 130, 150, 165,
@@ -956,22 +919,10 @@ export const DEFAULT_COLORMAPS = {
956
919
  },
957
920
  },
958
921
  "wind_speed_mid" : {
959
- type: "fill",
960
- gridded: true,
961
- interpolationType: "interpolate",
962
922
  units : {
963
923
  'kts' : {
964
924
  colormap : [
965
- 10, "#ccddee",
966
- 20, "#99ffff",
967
- 30, "#00cccc",
968
- 35, "#00dd66",
969
- 45, "#ffee00",
970
- 55, "#ff9900",
971
- 65, "#9933cc",
972
- 100, "#ff99ff",
973
- 120, "#ff6666",
974
- 155, "#ff0000"
925
+ 0, "#3e3646", 10, "#494a77", 20, "#4d9be6", 30, "#8fd3fe", 40, "#eaaded", 50, "#905ea9", 60, "#6c3e75", 70, "#45283f", 80, "#c32554", 90, "#f68180", 100, "#fdccb1", 150, "#ededed"
975
926
  ],
976
927
  breakpoints : [
977
928
  5, 10, 15, 20, 25, 30, 35, 40, 45, 50,
@@ -983,16 +934,7 @@ export const DEFAULT_COLORMAPS = {
983
934
  },
984
935
  'mph' : {
985
936
  colormap : [
986
- 10, "#ccddee",
987
- 25, "#99ffff",
988
- 35, "#00cccc",
989
- 40, "#00dd66",
990
- 50, "#ffee00",
991
- 65, "#ff9900",
992
- 75, "#9933cc",
993
- 115, "#ff99ff",
994
- 140, "#ff6666",
995
- 180, "#ff0000"
937
+ 0, "#3e3646", 10, "#494a77", 25, "#4d9be6", 35, "#8fd3fe", 45, "#eaaded", 60, "#905ea9", 70, "#6c3e75", 80, "#45283f", 90, "#c32554", 105, "#f68180", 115, "#fdccb1", 175, "#ededed"
996
938
  ],
997
939
  breakpoints : [
998
940
  5, 10, 15, 25, 30, 35, 40, 45, 50, 55,
@@ -1004,16 +946,7 @@ export const DEFAULT_COLORMAPS = {
1004
946
  },
1005
947
  'm/s' : {
1006
948
  colormap : [
1007
- 5, "#ccddee",
1008
- 10, "#99ffff",
1009
- 15, "#00cccc",
1010
- 18, "#00dd66",
1011
- 23, "#ffee00",
1012
- 28, "#ff9900",
1013
- 33, "#9933cc",
1014
- 51, "#ff99ff",
1015
- 62, "#ff6666",
1016
- 80, "#ff0000"
949
+ 0, "#3e3646", 5, "#494a77", 10, "#4d9be6", 15, "#8fd3fe", 20, "#eaaded", 25, "#905ea9", 30, "#6c3e75", 35, "#45283f", 40, "#c32554", 45, "#f68180", 50, "#fdccb1", 75, "#ededed"
1017
950
  ],
1018
951
  breakpoints : [
1019
952
  2, 5, 8, 10, 13, 15, 18, 20, 23, 26,
@@ -1025,16 +958,7 @@ export const DEFAULT_COLORMAPS = {
1025
958
  },
1026
959
  'km/h' : {
1027
960
  colormap : [
1028
- 20, "#ccddee",
1029
- 35, "#99ffff",
1030
- 55, "#00cccc",
1031
- 65, "#00dd66",
1032
- 85, "#ffee00",
1033
- 100, "#ff9900",
1034
- 120, "#9933cc",
1035
- 185, "#ff99ff",
1036
- 220, "#ff6666",
1037
- 290, "#ff0000"
961
+ 0, "#3e3646", 20, "#494a77", 35, "#4d9be6", 55, "#8fd3fe", 75, "#eaaded", 90, "#905ea9", 110, "#6c3e75", 130, "#45283f", 150, "#c32554", 165, "#f68180", 185, "#fdccb1", 280, "#ededed"
1038
962
  ],
1039
963
  breakpoints : [
1040
964
  10, 20, 25, 35, 45, 55, 65, 75, 85, 95,
@@ -1047,19 +971,10 @@ export const DEFAULT_COLORMAPS = {
1047
971
  },
1048
972
  },
1049
973
  "pwat_0" : {
1050
- type: "fill",
1051
- gridded: true,
1052
- interpolationType: "interpolate",
1053
974
  units : {
1054
975
  'mm' : {
1055
976
  colormap : [
1056
- 0, "#ff5500",
1057
- 10, "#ff9933",
1058
- 25, "#ffcc99",
1059
- 35, "#cc99ff",
1060
- 55, "#8866ff",
1061
- 65, "#5555ff",
1062
- 75, "#3333aa"
977
+ 0, "#966c6c", 10, "#9babb2", 25, "#c7dcd0", 35, "#239064", 55, "#323353", 65, "#4d9be6", 75, "#fdcbb0"
1063
978
  ],
1064
979
  breakpoints : [
1065
980
  1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25,
@@ -1069,13 +984,7 @@ export const DEFAULT_COLORMAPS = {
1069
984
  },
1070
985
  'in' : {
1071
986
  colormap : [
1072
- 0, "#ff5500",
1073
- 0.5, "#ff9933",
1074
- 1, "#ffcc99",
1075
- 1.5, "#cc99ff",
1076
- 2, "#8866ff",
1077
- 2.5, "#5555ff",
1078
- 3, "#3333aa"
987
+ 0, "#966c6c", 0.4, "#9babb2", 1, "#c7dcd0", 1.4, "#239064", 2.2, "#323353", 2.6, "#4d9be6", 3, "#fdcbb0"
1079
988
  ],
1080
989
  breakpoints : [
1081
990
  0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0, 2.25,
@@ -1085,9 +994,6 @@ export const DEFAULT_COLORMAPS = {
1085
994
  },
1086
995
  },
1087
996
  "thetaE" : {
1088
- type: "fill",
1089
- gridded: true,
1090
- interpolationType: "interpolate",
1091
997
  units : {
1092
998
  '°K' : {
1093
999
  colormap : [
@@ -1110,24 +1016,34 @@ export const DEFAULT_COLORMAPS = {
1110
1016
  },
1111
1017
  },
1112
1018
  },
1019
+ "theta" : {
1020
+ units : {
1021
+ '°K' : {
1022
+ colormap : [
1023
+ 100, "#995522",
1024
+ 190, "#ffbb77",
1025
+ 230, "#99ff66",
1026
+ 240, "#33cc00",
1027
+ 250, "#00eeff",
1028
+ 260, "#0099aa",
1029
+ 270, "#8800ff",
1030
+ 280, "#ff0000",
1031
+ 290, "#ff0088",
1032
+ 300, "#ffaaaa"
1033
+ ],
1034
+ breakpoints : [
1035
+ 230, 235, 240, 245, 250, 255, 260, 265, 270,
1036
+ 275, 280, 285, 290, 295, 300, 305, 310, 315, 320, 325, 330,
1037
+ 335, 340, 345, 350, 355, 360, 365, 370
1038
+ ],
1039
+ },
1040
+ },
1041
+ },
1113
1042
  "gust_0" : {
1114
- type: "fill",
1115
- gridded: true,
1116
- interpolationType: "interpolate",
1117
1043
  units : {
1118
1044
  'mph' : {
1119
1045
  colormap : [
1120
- 20, "#6699ff",
1121
- 30, "#00ffff",
1122
- 35, "#00cc33",
1123
- 45, "#99ff66",
1124
- 50, "#ffdd00",
1125
- 65, "#ff0000",
1126
- 70, "#cc6600",
1127
- 85, "#ffbbbb",
1128
- 100, "#ff3333",
1129
- 120, "#ff8800",
1130
- 200, "#999999",
1046
+ 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"
1131
1047
  ],
1132
1048
  breakpoints : [
1133
1049
  20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75,
@@ -1137,17 +1053,7 @@ export const DEFAULT_COLORMAPS = {
1137
1053
  },
1138
1054
  'kts' : {
1139
1055
  colormap : [
1140
- 15, "#6699ff",
1141
- 25, "#00ffff",
1142
- 30, "#00cc33",
1143
- 40, "#99ff66",
1144
- 50, "#ffdd00",
1145
- 55, "#ff0000",
1146
- 60, "#cc6600",
1147
- 70, "#ffbbbb",
1148
- 90, "#ff3333",
1149
- 100, "#ff8800",
1150
- 150, "#999999",
1056
+ 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"
1151
1057
  ],
1152
1058
  breakpoints : [
1153
1059
  15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70,
@@ -1156,17 +1062,7 @@ export const DEFAULT_COLORMAPS = {
1156
1062
  },
1157
1063
  'm/s' : {
1158
1064
  colormap : [
1159
- 10, "#6699ff",
1160
- 14, "#00ffff",
1161
- 16, "#00cc33",
1162
- 20, "#99ff66",
1163
- 24, "#ffdd00",
1164
- 30, "#ff0000",
1165
- 32, "#cc6600",
1166
- 38, "#ffbbbb",
1167
- 44, "#ff3333",
1168
- 52, "#ff8800",
1169
- 80, "#999999"
1065
+ 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"
1170
1066
  ],
1171
1067
  breakpoints : [
1172
1068
  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32,
@@ -1176,17 +1072,7 @@ export const DEFAULT_COLORMAPS = {
1176
1072
  },
1177
1073
  'km/h' : {
1178
1074
  colormap : [
1179
- 30, "#6699ff",
1180
- 50, "#00ffff",
1181
- 55, "#00cc33",
1182
- 70, "#99ff66",
1183
- 80, "#ffdd00",
1184
- 105, "#ff0000",
1185
- 115, "#cc6600",
1186
- 135, "#ffbbbb",
1187
- 160, "#ff3333",
1188
- 195, "#ff8800",
1189
- 320, "#999999"
1075
+ 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"
1190
1076
  ],
1191
1077
  breakpoints : [
1192
1078
  30, 40, 50, 55, 65, 70, 80, 90, 95, 105, 115, 120,
@@ -1197,9 +1083,6 @@ export const DEFAULT_COLORMAPS = {
1197
1083
  },
1198
1084
  },
1199
1085
  "ltng" : {
1200
- type: "fill",
1201
- gridded: false,
1202
- interpolationType: "interpolate",
1203
1086
  units : {
1204
1087
  'flashes km⁻²/5 min' : {
1205
1088
  colormap : [
@@ -1220,18 +1103,10 @@ export const DEFAULT_COLORMAPS = {
1220
1103
  },
1221
1104
  },
1222
1105
  "cape_0" : {
1223
- type: "fill",
1224
- gridded: true,
1225
- interpolationType: "interpolate",
1226
1106
  units : {
1227
1107
  'J kg⁻¹' : {
1228
1108
  colormap : [
1229
- 100, "#4dbb6a",
1230
- 250, "#4dbb6a",
1231
- 1000, "#ffca3a",
1232
- 2000, "#ff9a3c",
1233
- 3000, "#ff5e7d",
1234
- 6000, "#9c3fe4"
1109
+ 100, "#694f62", 1000, "#0c8a8f", 2000, "#f9c22b", 3000, "#fb6b1d", 4000, "#ae2334", 5000, "#831c5d", 6000, "#f68181", 7000, "#fdcbb0"
1235
1110
  ],
1236
1111
  breakpoints : [
1237
1112
  100, 250, 500, 750, 1000, 1250, 1500, 1750, 2000, 2250,
@@ -1242,127 +1117,105 @@ export const DEFAULT_COLORMAPS = {
1242
1117
  },
1243
1118
  },
1244
1119
  },
1245
- "cape_0-3000" : {
1246
- type: "fill",
1247
- gridded: true,
1248
- interpolationType: "interpolate",
1249
- units : {
1250
- 'J kg⁻¹' : {
1251
- colormap : [
1252
- 5, "#4dbb6a",
1253
- 100, "#ffca3a",
1254
- 200, "#ff9a3c",
1255
- 300, "#ff5e7d",
1256
- 500, "#9c3fe4"
1257
- ],
1258
- breakpoints : [
1259
- 5, 25, 50,75,100,125,150,175,200,225,250,275,300,325,350,375,
1260
- 400,425,450,475,500
1261
- ],
1262
- },
1263
- },
1264
- },
1265
- "stp" : {
1266
- type: "fill",
1267
- gridded: true,
1268
- interpolationType: "interpolate",
1120
+ "vapor_pressure_deficit":{
1269
1121
  units : {
1270
- 'None' : {
1122
+ 'hPa' : {
1271
1123
  colormap : [
1272
- 0.1, "#b3b3b3",
1273
- 1, "#4d80b3",
1274
- 2, "#ffaa00",
1275
- 3, "#ff3366",
1276
- 4, "#cc33ff",
1277
- 5, "#ff66cc",
1278
- 6, "#ff6633",
1279
- 9, "#ffaa66",
1280
- 30, "#00cccc"
1124
+ 0, "#0b2c3d", // deep wet blue
1125
+ 2, "#10384a",
1126
+ 4, "#144457",
1127
+ 6, "#185064",
1128
+ 8, "#1c5c70",
1129
+ 10, "#20787a",
1130
+ 12, "#259685",
1131
+ 14, "#2db08f",
1132
+ 15, "#3fcf6e", // greens END here
1133
+
1134
+ 16, "#7fda7a", // start drying - lighter green
1135
+ 18, "#b7e17b",
1136
+ 20, "#d6e876",
1137
+ 22, "#efe47a",
1138
+ 24, "#f3d06c",
1139
+ 26, "#f0b85c",
1140
+ 28, "#e9a14e",
1141
+ 30, "#e29147",
1142
+
1143
+ 32, "#edc48a", // 2-color gradient start
1144
+ 34, "#f2d7b0",
1145
+ 36, "#f6e7cf",
1146
+ 38, "#f9f1e5",
1147
+ 40, "#fcfaf5" // lightest dry
1148
+
1281
1149
  ],
1150
+
1282
1151
  breakpoints : [
1283
- 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,
1284
- 7.5,8,8.5,9,9.5,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,35,40
1152
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
1153
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
1154
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
1155
+ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
1156
+ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
1157
+ 51, 52, 53, 54, 55, 56, 57, 58, 59, 60
1285
1158
  ],
1159
+
1286
1160
  },
1287
1161
  },
1288
1162
  },
1289
- "supercellComposite" : {
1290
- type: "fill",
1291
- gridded: true,
1292
- interpolationType: "interpolate",
1163
+ "ncape" : {
1293
1164
  units : {
1294
- 'None' : {
1165
+ '10⁻² J kg⁻¹' : {
1295
1166
  colormap : [
1296
- 0.1, "#b3b3b3",
1297
- 1, "#4d80b3",
1298
- 2, "#ffaa00",
1299
- 3, "#ff3366",
1300
- 4, "#cc33ff",
1301
- 5, "#ff66cc",
1302
- 6, "#ff6633",
1303
- 9, "#ffaa66",
1304
- 20, "#00cccc",
1305
- 50, "white"
1167
+ 0.75, "#694f62",
1168
+ 7.5, "#0c8a8f",
1169
+ 15, "#f9c22b",
1170
+ 22.5, "#fb6b1d",
1171
+ 30, "#ae2334",
1172
+ 37.5, "#831c5d",
1173
+ 45, "#f68181",
1174
+ 52.5, "#fdcbb0"
1306
1175
  ],
1176
+
1307
1177
  breakpoints : [
1308
- 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,
1309
- 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
1178
+ 0.75, 1.875, 3.75, 5.625, 7.5,
1179
+ 9.375, 11.25, 13.125, 15, 16.875,
1180
+ 18.75, 20.625, 22.5, 24.375, 26.25,
1181
+ 28.125, 30, 31.875, 33.75, 35.625,
1182
+ 37.5, 39.375, 41.25, 43.125, 45,
1183
+ 46.875, 48.75, 50.625, 52.5, 54.375,
1184
+ 56.25, 58.125, 60, 61.875, 63.75,
1185
+ 65.625, 67.5, 69.375, 71.25, 73.125,
1186
+ 75
1310
1187
  ],
1188
+
1311
1189
  },
1312
1190
  },
1313
1191
  },
1314
- "tts" : {
1315
- type: "fill",
1316
- gridded: true,
1317
- interpolationType: "interpolate",
1192
+ "cape_0-3000" : {
1318
1193
  units : {
1319
- 'None' : {
1194
+ 'J kg⁻¹' : {
1320
1195
  colormap : [
1321
- 0.1, "#b3b3b3",
1322
- 1, "#4d80b3",
1323
- 2, "#ffaa00",
1324
- 3, "#ff3366",
1325
- 4, "#cc33ff",
1326
- 5, "#ff66cc",
1327
- 6, "#ff6633",
1328
- 9, "#ffaa66",
1329
- 30, "#00cccc"
1196
+ 5, "#694f62", 50, "#0c8a8f", 100, "#f9c22c", 150, "#fb6b1d", 200, "#ae2334", 300, "#831c5d", 450, "#f68181"
1330
1197
  ],
1331
1198
  breakpoints : [
1332
- 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,
1333
- 7.5,8,8.5,9,9.5,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,35,40
1199
+ 5, 25, 50,75,100,125,150,175,200,225,250,275,300,325,350,375,
1200
+ 400,425,450,475,500
1334
1201
  ],
1335
1202
  },
1336
1203
  },
1337
1204
  },
1338
- "tehi" : {
1339
- type: "fill",
1340
- gridded: true,
1341
- interpolationType: "interpolate",
1205
+ "severeParams" : {
1342
1206
  units : {
1343
1207
  'None' : {
1344
1208
  colormap : [
1345
- 0.1, "#b3b3b3",
1346
- 1, "#4d80b3",
1347
- 2, "#ffaa00",
1348
- 3, "#ff3366",
1349
- 4, "#cc33ff",
1350
- 5, "#ff66cc",
1351
- 6, "#ff6633",
1352
- 9, "#ffaa66",
1353
- 30, "#00cccc"
1209
+ 0.1, "#bfbfbf", 3, "#b26263", 4, "#ea5035", 5, "#f67e4a", 6, "#8fd3ff", 9, "#a985f3", 20, "#45293f", 40, "#cf07a4"
1354
1210
  ],
1355
1211
  breakpoints : [
1356
- 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,
1357
- 7.5,8,8.5,9,9.5,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,35,40
1212
+ 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,
1213
+ 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
1358
1214
  ],
1359
1215
  },
1360
1216
  },
1361
1217
  },
1362
1218
  "lftx_0" : {
1363
- type: "fill",
1364
- gridded: true,
1365
- interpolationType: "interpolate",
1366
1219
  units : {
1367
1220
  '°C' : {
1368
1221
  colormap : [
@@ -1388,20 +1241,10 @@ export const DEFAULT_COLORMAPS = {
1388
1241
  },
1389
1242
  },
1390
1243
  "lapse_rates_500700" : {
1391
- type: "fill",
1392
- gridded: true,
1393
- interpolationType: "interpolate",
1394
1244
  units : {
1395
1245
  '°C km⁻¹' : {
1396
1246
  colormap : [
1397
- 1, "#cccccc",
1398
- 5, "#666666",
1399
- 6, "#3366cc",
1400
- 7, "#ffff00",
1401
- 8, "#ff9900",
1402
- 9, "#cc33ff",
1403
- 10, "#ff99ff",
1404
- 15, "#cc0000"
1247
+ 0, "#3e3646", 5, "#ac947a", 6, "#fbb955", 7, "#ea4f37", 8, "#b33831", 9, "#7a3045", 10, "#c7dcd0", 15, "#ebebeb"
1405
1248
  ],
1406
1249
  breakpoints : [
1407
1250
  1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15
@@ -1410,18 +1253,10 @@ export const DEFAULT_COLORMAPS = {
1410
1253
  },
1411
1254
  },
1412
1255
  "lcl" : {
1413
- type: "fill",
1414
- gridded: true,
1415
- interpolationType: "interpolate",
1416
1256
  units : {
1417
1257
  'm' : {
1418
1258
  colormap : [
1419
- 100, "#cccccc",
1420
- 1000, "#ffcc66",
1421
- 2000, "#ff6633",
1422
- 3000, "#cc0033",
1423
- 4000, "#660033",
1424
- 9000, "#ccccff"
1259
+ 0, "#7f708a", 500, "#8fd3fe", 750, "#cddf6c", 1000, "#fbb955", 2000, "#cd683e", 3000, "#7a3045", 4000, "#323353", 10000, "#c7dcd0",
1425
1260
  ],
1426
1261
  breakpoints : [
1427
1262
  100, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1100, 1200,
@@ -1436,12 +1271,7 @@ export const DEFAULT_COLORMAPS = {
1436
1271
  },
1437
1272
  'km' : {
1438
1273
  colormap : [
1439
- 0.1, "#cccccc",
1440
- 1, "#ffcc66",
1441
- 2, "#ff6633",
1442
- 3, "#cc0033",
1443
- 4, "#660033",
1444
- 9, "#ccccff"
1274
+ 0, "#7f708a", 0.5, "#8fd3fe", 0.75, "#cddf6c", 1, "#fbb955", 2, "#cd683e", 3, "#7a3045", 4, "#323353", 10, "#c7dcd0"
1445
1275
  ],
1446
1276
  breakpoints : [
1447
1277
  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,
@@ -1455,12 +1285,7 @@ export const DEFAULT_COLORMAPS = {
1455
1285
  },
1456
1286
  'ft' : {
1457
1287
  colormap : [
1458
- 500, "#cccccc",
1459
- 3000, "#ffcc66",
1460
- 6500, "#ff6633",
1461
- 10000, "#cc0033",
1462
- 13000, "#660033",
1463
- 30000, "#ccccff"
1288
+ 0, "#7f708a", 1500, "#8fd3fe", 2500, "#cddf6c", 3000, "#fbb955", 6500, "#cd683e", 10000, "#7a3045", 13000, "#323353", 33000, "#c7dcd0"
1464
1289
  ],
1465
1290
  breakpoints : [
1466
1291
  500, 1000, 1500, 2000, 2500, 3000, 3500, 4000, 4500, 5000, 5500, 6000,
@@ -1473,148 +1298,484 @@ export const DEFAULT_COLORMAPS = {
1473
1298
  },
1474
1299
  },
1475
1300
  },
1476
- "cin_0" : {
1477
- type: "fill",
1478
- gridded: true,
1479
- interpolationType: "interpolate",
1480
- units: {
1481
- "J kg⁻¹": {
1301
+ "hainesindex" : {
1302
+ units : {
1303
+ 'None' : {
1482
1304
  colormap : [
1483
- -1000, "#cccccc",
1484
- -600, "#ff9900",
1485
- -400, "#ff99ff",
1486
- -300, "#cc66ff",
1487
- -200, "#cc6699",
1488
- -50, "#ffdd00",
1305
+ 3, "#bfbfbf",
1306
+ 3.5, "#b26263",
1307
+ 4, "#ea5035",
1308
+ 4.5, "#f67e4a",
1309
+ 5, "#8fd3ff",
1310
+ 5.5, "#a985f3",
1311
+ 6, "#cf07a4"
1489
1312
  ],
1490
1313
  breakpoints : [
1491
- -1000, -950, -900, -850, -800, -750, -700, -650, -600, -550, -500,
1492
- -450, -400, -350, -300, -250, -200, -150, -100, -50
1314
+ 3, 3.5, 4, 4.5, 5, 5.5, 6,
1493
1315
  ],
1494
1316
  },
1495
1317
  },
1496
1318
  },
1497
- "dgzrh" : {
1498
- type: "fill",
1499
- gridded: false,
1500
- interpolationType: "interpolate",
1501
- units: {
1502
- "%": {
1503
- colormap : [
1504
- 0, "#5555dd",
1505
- 25, "#ff9999",
1506
- 50, "#ffcc33",
1507
- 75, "#33cc66",
1508
- 100, "#3399ff",
1319
+ 'fosberg':{
1320
+ "units":{
1321
+ "None":{
1322
+ "colormap": [
1323
+ 6.67, "#b6b6b6",
1324
+ 13.33, "#727272",
1325
+ 20, "#d9ff00",
1326
+ 26.67, "#c7cc00",
1327
+ 33.33, "#758600",
1328
+ 40, "#ff0000",
1329
+ 46.67, "#c40000",
1330
+ 53.33, "#640019",
1331
+ 60, "#740047",
1332
+ 66.67, "#ff00e0",
1333
+ 73.33, "#ff84f5",
1334
+ 80, "#ffbcfd",
1335
+ 86.67, "#ffffff",
1336
+ 93.33, "#d2fffa",
1337
+ 100, "#00fbff"
1338
+ ],
1339
+ breakpoints: [
1340
+ 0, 0.67, 1.33, 2, 2.67, 3.33, 4, 4.67, 5.33, 6,
1341
+ 6.67, 7.33, 8, 8.67, 9.33, 10, 10.67, 11.33, 12, 12.67,
1342
+ 13.33, 14, 14.67, 15.33, 16, 16.67, 17.33, 18, 18.67, 19.33,
1343
+ 20, 20.67, 21.33, 22, 22.67, 23.33, 24, 24.67, 25.33, 26,
1344
+ 26.67, 27.33, 28, 28.67, 29.33, 30, 30.67, 31.33, 32, 32.67,
1345
+ 33.33, 34, 34.67, 35.33, 36, 36.67, 37.33, 38, 38.67, 39.33,
1346
+ 40, 40.67, 41.33, 42, 42.67, 43.33, 44, 44.67, 45.33, 46,
1347
+ 46.67, 47.33, 48, 48.67, 49.33, 50, 50.67, 51.33, 52, 52.67,
1348
+ 53.33, 54, 54.67, 55.33, 56, 56.67, 57.33, 58, 58.67, 59.33,
1349
+ 60, 60.67, 61.33, 62, 62.67, 63.33, 64, 64.67, 65.33, 66,
1350
+ 66.67, 67.33, 68, 68.67, 69.33, 70, 70.67, 71.33, 72, 72.67,
1351
+ 73.33, 74, 74.67, 75.33, 76, 76.67, 77.33, 78, 78.67, 79.33,
1352
+ 80, 80.67, 81.33, 82, 82.67, 83.33, 84, 84.67, 85.33, 86,
1353
+ 86.67, 87.33, 88, 88.67, 89.33, 90, 90.67, 91.33, 92, 92.67,
1354
+ 93.33, 94, 94.67, 95.33, 96, 96.67, 97.33, 98, 98.67, 99.33,
1355
+ 100
1356
+ ],
1357
+ }
1358
+ }
1359
+ },
1360
+ "smoke" : {
1361
+ units : {
1362
+ 'kg m⁻²' : {
1363
+ colormap : [
1364
+ 0, "#aaaaaa",
1365
+ 5, "#222222",
1366
+ 20, "#bb2323",
1367
+ 40, "#fb2311",
1368
+ 60, "#fa9a11",
1369
+ 80, "#aa00aa",
1370
+ 100, "#fc08bb",
1371
+ 200, "#6e3e0c",
1372
+ 400, "#000000",
1373
+ 800, "#ffffff",
1509
1374
  ],
1510
1375
  breakpoints : [
1511
- 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55,
1512
- 60, 65, 70, 75, 80, 85, 90, 95, 100
1376
+ 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95,
1377
+ 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195,
1378
+ 200, 205, 210, 215, 220, 225, 230, 235, 240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295,
1379
+ 300, 305, 310, 315, 320, 325, 330, 335, 340, 345, 350, 355, 360, 365, 370, 375, 380, 385, 390, 395,
1380
+ 400, 405, 410, 415, 420, 425, 430, 435, 440, 445, 450, 455, 460, 465, 470, 475, 480, 485, 490, 495,
1381
+ 500, 505, 510, 515, 520, 525, 530, 535, 540, 545, 550, 555, 560, 565, 570, 575, 580, 585, 590, 595,
1382
+ 600, 605, 610, 615, 620, 625, 630, 635, 640, 645, 650, 655, 660, 665, 670, 675, 680, 685, 690, 695,
1383
+ 700, 705, 710, 715, 720, 725, 730, 735, 740, 745, 750, 755, 760, 765, 770, 775, 780, 785, 790, 795,
1384
+ 800
1513
1385
  ],
1514
1386
  },
1515
1387
  },
1516
1388
  },
1517
- "2r_2" : {
1518
- type: "fill",
1519
- gridded: true,
1520
- interpolationType: "interpolate",
1521
- units: {
1522
- "%": {
1389
+ "sbel" : {
1390
+ units : {
1391
+ 'm' : {
1523
1392
  colormap : [
1524
- 0, "#444444",
1525
- 25, "#ff6655",
1526
- 50, "#ffcc00",
1527
- 75, "#33cc77",
1528
- 100, "#3399ff",
1393
+ 0, "#7f708a", 4000, "#8fd3fe", 7000, "#cddf6c", 10000, "#fbb955", 12000, "#cd683e", 15000, "#7a3045", 17500, "#323353", 20000, "#c7dcd0",
1529
1394
  ],
1530
1395
  breakpoints : [
1531
- 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50,
1532
- 55, 60, 65, 70, 75, 80, 85, 90, 95, 100
1396
+ 0, 500, 1000, 1500, 2000, 2500, 3000, 3500, 4000, 4500,
1397
+ 5000, 5500, 6000, 6500, 7000, 7500, 8000, 8500, 9000, 9500,
1398
+ 10000, 10500, 11000, 11500, 12000, 12500, 13000, 13500, 14000, 14500,
1399
+ 15000, 15500, 16000, 16500, 17000, 17500, 18000, 18500, 19000, 19500,
1400
+ 20000
1533
1401
  ],
1534
1402
  },
1535
1403
  },
1536
1404
  },
1537
- "r" : {
1538
- type: "fill",
1539
- gridded: false,
1540
- interpolationType: "interpolate",
1541
- units: {
1542
- "%": {
1405
+ "sblfc" : {
1406
+ units : {
1407
+ 'm' : {
1543
1408
  colormap : [
1544
- 0, "#444444",
1545
- 25, "#ff6655",
1546
- 50, "#ffcc00",
1547
- 75, "#33cc77",
1548
- 100, "#3399ff",
1409
+ 0, "#7f708a", 500, "#8fd3fe", 750, "#cddf6c", 1000, "#fbb955", 2000, "#cd683e", 3000, "#7a3045", 4000, "#323353", 10000, "#c7dcd0",
1549
1410
  ],
1550
1411
  breakpoints : [
1551
- 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50,
1552
- 55, 60, 65, 70, 75, 80, 85, 90, 95, 100
1412
+ 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1100, 1200,
1413
+ 1300, 1400, 1500, 1600, 1700, 1800, 1900, 2000, 2100, 2200, 2300, 2400, 2500,
1414
+ 2600, 2700, 2800, 2900, 3000, 3100, 3200, 3300, 3400, 3500, 3600, 3700, 3800,
1415
+ 3900, 4000, 4100, 4200, 4300, 4400, 4500, 4600, 4700, 4800, 4900, 5000, 5100,
1416
+ 5200, 5300, 5400, 5500, 5600, 5700, 5800, 5900, 6000, 6100, 6200, 6300, 6400,
1417
+ 6500, 6600, 6700, 6800, 6900, 7000, 7100, 7200, 7300, 7400, 7500, 7600, 7700,
1418
+ 7800, 7900, 8000, 8100, 8200, 8300, 8400, 8500, 8600, 8700, 8800, 8900, 9000,
1419
+ 9100, 9200, 9300, 9400, 9500, 9600, 9700, 9800, 9900, 10000
1553
1420
  ],
1554
1421
  },
1555
- },
1556
- },
1557
- 'mean700300mbRH': {
1558
- type: "fill",
1559
- gridded: false,
1560
- interpolationType: "interpolate",
1561
- units: {
1562
- "%": {
1422
+ 'km' : {
1563
1423
  colormap : [
1564
- 0, "#444444",
1565
- 25, "#ff6655",
1566
- 50, "#ffcc00",
1567
- 75, "#33cc77",
1568
- 100, "#3399ff",
1424
+ 0, "#7f708a", 0.5, "#8fd3fe", 0.75, "#cddf6c", 1, "#fbb955", 2, "#cd683e", 3, "#7a3045", 4, "#323353", 10, "#c7dcd0"
1569
1425
  ],
1570
1426
  breakpoints : [
1571
- 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55,
1572
- 60, 65, 70, 75, 80, 85, 90, 95, 100
1427
+ 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,
1428
+ 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,
1429
+ 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,
1430
+ 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,
1431
+ 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,
1432
+ 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,
1433
+ 9.4, 9.5, 9.6, 9.7, 9.8, 9.9, 10.0
1573
1434
  ],
1574
1435
  },
1575
- },
1576
- },
1577
- "fgen" : {
1578
- type: "fill",
1579
- gridded: false,
1580
- interpolationType: "interpolate",
1581
- units: {
1582
- "°C/100km/3hr": {
1436
+ 'ft' : {
1583
1437
  colormap : [
1584
- 1, "#cc66ff",
1585
- 10, "#ff66ff",
1586
- 20, "#3333ff",
1438
+ 0, "#7f708a", 1500, "#8fd3fe", 2500, "#cddf6c", 3000, "#fbb955", 6500, "#cd683e", 10000, "#7a3045", 13000, "#323353", 33000, "#c7dcd0"
1587
1439
  ],
1588
1440
  breakpoints : [
1589
- 1,3,5,7,9,11,12,13,15,17,19,21,23,25,27,29,
1590
- 31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61
1441
+ 500, 1000, 1500, 2000, 2500, 3000, 3500, 4000, 4500, 5000, 5500, 6000,
1442
+ 6500, 7000, 7500, 8000, 8500, 9000, 9500, 10000, 10500, 11000, 11500, 12000,
1443
+ 12500, 13000, 13500, 14000, 14500, 15000, 15500, 16000, 16500, 17000, 17500,
1444
+ 18000, 18500, 19000, 19500, 20000, 20500, 21000, 21500, 22000, 22500, 23000,
1445
+ 23500, 24000, 24500, 25000, 25500, 26000, 26500, 27000, 27500, 28000, 28500,
1446
+ 29000, 29500, 30000
1591
1447
  ],
1592
1448
  },
1593
1449
  },
1594
1450
  },
1595
- "tadv": {
1596
- "type": "fill",
1597
- "gridded": false,
1598
- "interpolationType": "interpolate",
1451
+ "dgzdepth" : {
1599
1452
  "units": {
1600
- "°C h⁻¹": {
1601
- "colormap": [
1602
- -20, "#6699ff",
1603
- -10, "#ccffff",
1604
- -8, "#ff99ff",
1605
- -6, "#ff66cc",
1606
- -4, "#cc66ff",
1607
- -2, "#66ccff",
1608
- -1, "#ffffff",
1609
- 1, "#ffffff",
1610
- 2, "#ffcc66",
1611
- 4, "#ff9933",
1612
- 6, "#ff3333",
1613
- 8, "#cccc00",
1614
- 10, "#ddcc66",
1615
- 20, "#cc9933"
1616
- ],
1617
- "breakpoints": [
1453
+ "m": {
1454
+ "colormap": [
1455
+ 0, "#986D4D",
1456
+ 500, "#7D7D7D",
1457
+ 900, "#C8C8C8",
1458
+ 1000, "#30C830",
1459
+ 1500, "#093209",
1460
+ 2000, "#206E68",
1461
+ 3000, "#29C4CC",
1462
+ 4000, "#581380",
1463
+ 5000, "#CF1968",
1464
+ ],
1465
+ "breakpoints": [
1466
+ 0, 100, 200, 300, 400, 500, 600, 700, 800, 900,
1467
+ 1000, 1100, 1200, 1300, 1400, 1500, 1600, 1700, 1800, 1900,
1468
+ 2000, 2100, 2200, 2300, 2400, 2500, 2600, 2700, 2800, 2900,
1469
+ 3000, 3100, 3200, 3300, 3400, 3500, 3600, 3700, 3800, 3900,
1470
+ 4000, 4100, 4200, 4300, 4400, 4500, 4600, 4700, 4800, 4900,
1471
+ 5000, 5100, 5200, 5300, 5400, 5500, 5600, 5700, 5800, 5900,
1472
+ 6000
1473
+ ]
1474
+ }
1475
+ }
1476
+ },
1477
+ "pbl" : {
1478
+ "units": {
1479
+ "m": {
1480
+ "colormap": [
1481
+ 0, "#986D4D",
1482
+ 500, "#7D7D7D",
1483
+ 900, "#C8C8C8",
1484
+ 1000, "#30C830",
1485
+ 1500, "#093209",
1486
+ 2000, "#206E68",
1487
+ 3000, "#29C4CC",
1488
+ 4000, "#581380",
1489
+ 5000, "#CF1968",
1490
+ ],
1491
+ "breakpoints": [
1492
+ 0, 100, 200, 300, 400, 500, 600, 700, 800, 900,
1493
+ 1000, 1100, 1200, 1300, 1400, 1500, 1600, 1700, 1800, 1900,
1494
+ 2000, 2100, 2200, 2300, 2400, 2500, 2600, 2700, 2800, 2900,
1495
+ 3000, 3100, 3200, 3300, 3400, 3500, 3600, 3700, 3800, 3900,
1496
+ 4000, 4100, 4200, 4300, 4400, 4500, 4600, 4700, 4800, 4900,
1497
+ 5000, 5100, 5200, 5300, 5400, 5500, 5600, 5700, 5800, 5900,
1498
+ 6000
1499
+ ]
1500
+ }
1501
+ }
1502
+ },
1503
+ "mstrtransport_500" : {
1504
+ "units": {
1505
+ "kg m⁻¹ s⁻¹": {
1506
+ "colormap": [
1507
+ 0, "#986D4D",
1508
+ 2, "#7D7D7D",
1509
+ 4, "#C8C8C8",
1510
+ 5, "#30C830",
1511
+ 8, "#093209",
1512
+ 12, "#206E68",
1513
+ 16, "#29C4CC",
1514
+ 20, "#581380",
1515
+ 25, "#CF1968",
1516
+ ],
1517
+ "breakpoints": [
1518
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
1519
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
1520
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
1521
+ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40
1522
+ ]
1523
+ }
1524
+ }
1525
+ },
1526
+ "mstrtransport_700" : {
1527
+ "units": {
1528
+ "kg m⁻¹ s⁻¹": {
1529
+ "colormap": [
1530
+ 0, "#986D4D",
1531
+ 3, "#7D7D7D",
1532
+ 6, "#C8C8C8",
1533
+ 8, "#30C830",
1534
+ 10, "#093209",
1535
+ 14, "#206E68",
1536
+ 18, "#29C4CC",
1537
+ 22, "#581380",
1538
+ 30, "#CF1968",
1539
+ ],
1540
+ "breakpoints": [
1541
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
1542
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
1543
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
1544
+ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
1545
+ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50
1546
+ ]
1547
+ }
1548
+ }
1549
+ },
1550
+ "mstrtransport_850" : {
1551
+ "units": {
1552
+ "kg m⁻¹ s⁻¹": {
1553
+ "colormap": [
1554
+ 0, "#986D4D",
1555
+ 5, "#7D7D7D",
1556
+ 9, "#C8C8C8",
1557
+ 10, "#30C830",
1558
+ 15, "#093209",
1559
+ 20, "#206E68",
1560
+ 25, "#29C4CC",
1561
+ 30, "#581380",
1562
+ 40, "#CF1968",
1563
+ ],
1564
+ "breakpoints": [
1565
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
1566
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
1567
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
1568
+ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
1569
+ 41, 42, 43, 44, 45, 46, 47, 48, 49,
1570
+ 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60
1571
+ ]
1572
+ }
1573
+ }
1574
+ },
1575
+ "mstrtransport_925" : {
1576
+ "units": {
1577
+ "kg m⁻¹ s⁻¹": {
1578
+ "colormap": [
1579
+ 0, "#986D4D",
1580
+ 5, "#7D7D7D",
1581
+ 9, "#C8C8C8",
1582
+ 10, "#30C830",
1583
+ 15, "#093209",
1584
+ 20, "#206E68",
1585
+ 30, "#29C4CC",
1586
+ 40, "#581380",
1587
+ 50, "#CF1968",
1588
+ ],
1589
+ "breakpoints": [
1590
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
1591
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
1592
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
1593
+ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
1594
+ 41, 42, 43, 44, 45, 46, 47, 48, 49,
1595
+ 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60
1596
+ ]
1597
+ }
1598
+ }
1599
+ },
1600
+ "sfcmixratio" : {
1601
+ "units": {
1602
+ "g/kg": {
1603
+ "colormap": [
1604
+ 0, "#986D4D",
1605
+ 4, "#7D7D7D",
1606
+ 8, "#C8C8C8",
1607
+ 9, "#30C830",
1608
+ 10, "#093209",
1609
+ 13, "#206E68",
1610
+ 17, "#29C4CC",
1611
+ 20, "#581380",
1612
+ 25, "#CF1968",
1613
+ ],
1614
+ "breakpoints": [
1615
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
1616
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
1617
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
1618
+ 31, 32, 33, 34, 35,
1619
+ ]
1620
+ }
1621
+ }
1622
+ },
1623
+ 'isentropicpres':{
1624
+ units : {
1625
+ 'hPa' : {
1626
+ colormap : [
1627
+ 100, "#cc3333",
1628
+ 150, "#ff9933",
1629
+ 210, "#ffdd00",
1630
+ 375, "#33cc66",
1631
+ 390, "#3366cc",
1632
+ 520, "#4d88ff",
1633
+ 590, "#66e6ff",
1634
+ 675, "#ff99ff",
1635
+ 800, "#cc33cc",
1636
+ ],
1637
+ breakpoints : [
1638
+ 90, 100, 115, 130, 145, 160, 175, 190, 205, 220, 235, 250, 265, 280, 295,
1639
+ 310, 325, 340, 355, 370, 385, 400,
1640
+ 415, 430, 445, 460, 475, 490, 505, 520, 535, 550, 565,
1641
+ 580, 595, 610, 625, 640, 655, 670, 685, 700,
1642
+ 715, 730, 745, 760, 775, 790, 800, 810,
1643
+ ],
1644
+ }
1645
+ }
1646
+ },
1647
+ 'isentropicpresadv':{
1648
+ "units": {
1649
+ "hPa/H": {
1650
+ "colormap": [
1651
+ -100, "#6699ff",
1652
+ -50, "#ccffff",
1653
+ -40, "#ff99ff",
1654
+ -30, "#ff66cc",
1655
+ -20, "#cc66ff",
1656
+ -10, "#66ccff",
1657
+ -5, "#aebdc2",
1658
+ 0, "#808080",
1659
+ 5, "#bcb6a9",
1660
+ 10, "#ffcc66",
1661
+ 20, "#ff9933",
1662
+ 30, "#ff3333",
1663
+ 40, "#cccc00",
1664
+ 50, "#ddcc66",
1665
+ 100, "#cc9933"
1666
+ ],
1667
+ "breakpoints": [-100, -95, -90, -85, -80, -75, -70, -65, -60, -55, -50,
1668
+ -45, -40, -35, -30, -25, -20, -15, -10, -5,0,
1669
+ 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55,
1670
+ 60, 65, 70, 75, 80, 85, 90, 95, 100]
1671
+ }
1672
+ }
1673
+ },
1674
+ 'epv': {
1675
+ units: {
1676
+ "PVU": {
1677
+ colormap : [
1678
+ -15, "#ff00ee" ,
1679
+ -7, "#aa0000",
1680
+ -4, "#ff6600",
1681
+ -2, "#fffb00",
1682
+ -1.99, "#5e888a",
1683
+ -1, "#939393",
1684
+ 0, "#aaaaaa",
1685
+ 1, "#939393",
1686
+ 1.99, "#5e888a",
1687
+ 2, "#fffb00",
1688
+ 4, "#ff6600",
1689
+ 7, "#aa0000",
1690
+ 15, "#ff00ee"
1691
+ ],
1692
+ breakpoints : [
1693
+ -20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10,
1694
+ -9, -8, -7, -6, -5, -4, -3, -2, -1, 0,
1695
+ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
1696
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20
1697
+ ],
1698
+ },
1699
+ },
1700
+ },
1701
+ "cin_0" : {
1702
+ units: {
1703
+ "J kg⁻¹": {
1704
+ colormap : [
1705
+ -1000, "#c7dcd0", -400, "#9babb2", -200, "#7a3045", -100, "#b33831", -50, "#f57d4a", -5, "#625565"
1706
+ ],
1707
+ breakpoints : [
1708
+ -1000, -950, -900, -850, -800, -750, -700, -650, -600, -550, -500,
1709
+ -450, -400, -350, -300, -250, -200, -150, -100, -50
1710
+ ],
1711
+ },
1712
+ },
1713
+ },
1714
+ "dgzrh" : {
1715
+ units: {
1716
+ "%": {
1717
+ colormap : [
1718
+ 0, "#5555dd",
1719
+ 25, "#ff9999",
1720
+ 50, "#ffcc33",
1721
+ 75, "#33cc66",
1722
+ 100, "#3399ff",
1723
+ ],
1724
+ breakpoints : [
1725
+ 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55,
1726
+ 60, 65, 70, 75, 80, 85, 90, 95, 100
1727
+ ],
1728
+ },
1729
+ },
1730
+ },
1731
+ "2r_2" : {
1732
+ units: {
1733
+ "%": {
1734
+ colormap : [
1735
+ 0, "#fbb955", 10, "#cd683e", 20, "#9e4539", 25, "#7f708a", 50, "#c7dcd0", 55, "#cddf6c", 75, "#1fbc73", 85, "#0c8a8f", 90, "#4d9be6", 100, "#8fd3fe"
1736
+ ],
1737
+ breakpoints : [
1738
+ 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50,
1739
+ 55, 60, 65, 70, 75, 80, 85, 90, 95, 100
1740
+ ],
1741
+ },
1742
+ },
1743
+ },
1744
+ "r" : {
1745
+ units: {
1746
+ "%": {
1747
+ colormap : [
1748
+ 0, "#fbb955", 10, "#cd683e", 20, "#9e4539", 25, "#7f708a", 50, "#c7dcd0", 55, "#cddf6c", 75, "#1fbc73", 85, "#0c8a8f", 90, "#4d9be6", 100, "#8fd3fe"
1749
+ ],
1750
+ breakpoints : [
1751
+ 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50,
1752
+ 55, 60, 65, 70, 75, 80, 85, 90, 95, 100
1753
+ ],
1754
+ },
1755
+ },
1756
+ },
1757
+ "fgen" : {
1758
+ units: {
1759
+ "°C/100km/3hr": {
1760
+ colormap : [
1761
+ 3, "#cc66ff",
1762
+ 10, "#ff66ff",
1763
+ 40, "#3333ff",
1764
+ ],
1765
+ breakpoints : [
1766
+ 1,3,5,7,9,11,12,13,15,17,19,21,23,25,27,29,
1767
+ 31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61
1768
+ ],
1769
+ },
1770
+ },
1771
+ },
1772
+ "tadv": {
1773
+ "units": {
1774
+ "°C h⁻¹": {
1775
+ "colormap": [
1776
+ -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"
1777
+ ],
1778
+ "breakpoints": [
1618
1779
  -20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6,
1619
1780
  -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
1620
1781
  16, 17, 18, 19, 20
@@ -1623,9 +1784,6 @@ export const DEFAULT_COLORMAPS = {
1623
1784
  }
1624
1785
  },
1625
1786
  "ivt": {
1626
- "type": "fill",
1627
- "gridded": false,
1628
- "interpolationType": "interpolate",
1629
1787
  "units": {
1630
1788
  "kg m⁻¹ s⁻¹": {
1631
1789
  "colormap": [
@@ -1642,9 +1800,6 @@ export const DEFAULT_COLORMAPS = {
1642
1800
  }
1643
1801
  },
1644
1802
  "dgzvvel": {
1645
- "type": "fill",
1646
- "gridded": false,
1647
- "interpolationType": "interpolate",
1648
1803
  "units": {
1649
1804
  "Pa/s": {
1650
1805
  "colormap": [
@@ -1665,9 +1820,6 @@ export const DEFAULT_COLORMAPS = {
1665
1820
  }
1666
1821
  },
1667
1822
  "w": {
1668
- "type": "fill",
1669
- "gridded": false,
1670
- "interpolationType": "interpolate",
1671
1823
  "units": {
1672
1824
  "Pa/s": {
1673
1825
  "colormap": [
@@ -1689,24 +1841,34 @@ export const DEFAULT_COLORMAPS = {
1689
1841
  }
1690
1842
  }
1691
1843
  },
1692
- "crain": {
1693
- "type": "fill",
1694
- "gridded": false,
1695
- "interpolationType": "interpolate",
1844
+ "omega": {
1696
1845
  "units": {
1697
- "None": {
1846
+ "µb/s": {
1698
1847
  "colormap": [
1699
- 0, "#000000",
1700
- 1, "#66cc66"
1848
+ -15.0, "#00ccff",
1849
+ -5.0, "#3333aa",
1850
+ -3.5, "#ff66cc",
1851
+ -2.0, "#ff7777",
1852
+ -.5, "#ffee00",
1701
1853
  ],
1702
- "breakpoints": []
1854
+ "breakpoints": [
1855
+ 0
1856
+ ]
1857
+ }
1703
1858
  }
1859
+ },
1860
+ "crain": {
1861
+ "units": {
1862
+ "None": {
1863
+ "colormap": [
1864
+ 0, "#000000",
1865
+ 1, "#66cc66"
1866
+ ],
1867
+ "breakpoints": []
1868
+ }
1704
1869
  }
1705
1870
  },
1706
1871
  "csnow": {
1707
- "type": "fill",
1708
- "gridded": false,
1709
- "interpolationType": "interpolate",
1710
1872
  "units": {
1711
1873
  "None": {
1712
1874
  "colormap": [
@@ -1718,9 +1880,6 @@ export const DEFAULT_COLORMAPS = {
1718
1880
  }
1719
1881
  },
1720
1882
  "cicep": {
1721
- "type": "fill",
1722
- "gridded": false,
1723
- "interpolationType": "interpolate",
1724
1883
  "units": {
1725
1884
  "None": {
1726
1885
  "colormap": [
@@ -1732,9 +1891,6 @@ export const DEFAULT_COLORMAPS = {
1732
1891
  }
1733
1892
  },
1734
1893
  "cfrzr": {
1735
- "type": "fill",
1736
- "gridded": false,
1737
- "interpolationType": "interpolate",
1738
1894
  "units": {
1739
1895
  "None": {
1740
1896
  "colormap": [
@@ -1746,9 +1902,6 @@ export const DEFAULT_COLORMAPS = {
1746
1902
  }
1747
1903
  },
1748
1904
  "prate": {
1749
- "type": "fill",
1750
- "gridded": false,
1751
- "interpolationType": "interpolate",
1752
1905
  "units": {
1753
1906
  "in/hr": {
1754
1907
  "colormap": [
@@ -1778,11 +1931,8 @@ export const DEFAULT_COLORMAPS = {
1778
1931
  }
1779
1932
  },
1780
1933
  "frzrRate": {
1781
- "type": "fill",
1782
- "gridded": false,
1783
- "interpolationType": "interpolate",
1784
1934
  "units": {
1785
- "in/hr [QPF]": {
1935
+ "in/hr": {
1786
1936
  "colormap": [
1787
1937
  0.005, "#ff3300",
1788
1938
  0.1, "#ff33ff",
@@ -1792,7 +1942,7 @@ export const DEFAULT_COLORMAPS = {
1792
1942
  .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
1793
1943
  ],
1794
1944
  },
1795
- "mm/hr [QPF]": {
1945
+ "mm/hr": {
1796
1946
  "colormap": [
1797
1947
  0.1, "#ff3300",
1798
1948
  3, "#ff33ff",
@@ -1806,11 +1956,8 @@ export const DEFAULT_COLORMAPS = {
1806
1956
  }
1807
1957
  },
1808
1958
  "icepRate": {
1809
- "type": "fill",
1810
- "gridded": false,
1811
- "interpolationType": "interpolate",
1812
1959
  "units": {
1813
- "in/hr [3:1]": {
1960
+ "in/hr": {
1814
1961
  "colormap": [
1815
1962
  0.005, "#8800cc",
1816
1963
  0.2, "#aa44dd",
@@ -1820,7 +1967,7 @@ export const DEFAULT_COLORMAPS = {
1820
1967
  .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
1821
1968
  ]
1822
1969
  },
1823
- "mm/hr [3:1]": {
1970
+ "mm/hr": {
1824
1971
  "colormap": [
1825
1972
  0.1, "#8800cc",
1826
1973
  6, "#aa44dd",
@@ -1834,9 +1981,6 @@ export const DEFAULT_COLORMAPS = {
1834
1981
  }
1835
1982
  },
1836
1983
  "rainRate": {
1837
- "type": "fill",
1838
- "gridded": false,
1839
- "interpolationType": "interpolate",
1840
1984
  "units": {
1841
1985
  "in/hr": {
1842
1986
  "colormap": [
@@ -1866,11 +2010,8 @@ export const DEFAULT_COLORMAPS = {
1866
2010
  }
1867
2011
  },
1868
2012
  "snowRate": {
1869
- "type": "fill",
1870
- "gridded": false,
1871
- "interpolationType": "interpolate",
1872
2013
  "units": {
1873
- "in/hr [10:1]": {
2014
+ "in/hr": {
1874
2015
  "colormap": [
1875
2016
  0.05, "#33ccff",
1876
2017
  1, "#000099",
@@ -1880,7 +2021,7 @@ export const DEFAULT_COLORMAPS = {
1880
2021
  .05,.1,.3,.5,.7,1,1.5,2,3,4,5,6,7,8,9,10,12,14,16,20,25,30
1881
2022
  ]
1882
2023
  },
1883
- "cm/hr [10:1]": {
2024
+ "cm/hr": {
1884
2025
  "colormap": [
1885
2026
  0.1, "#33ccff",
1886
2027
  3, "#000099",
@@ -1894,32 +2035,29 @@ export const DEFAULT_COLORMAPS = {
1894
2035
  }
1895
2036
  },
1896
2037
  "ptypeRate": {
1897
- "type": "fill",
1898
- "gridded": false,
1899
- "interpolationType": "interpolate",
1900
2038
  "units": {
1901
2039
  "in/hr": {
1902
2040
  "colormap": [
1903
- // --- Rain Palette (Standard Reflectivity Values: 5 to 80) ---
1904
- 0.005, "#00cc66",
2041
+ // --- Rain Palette ---
2042
+ 0.004, "#00cc66",
1905
2043
  0.1, "#ffff00",
1906
2044
  0.3, "#ff8800",
1907
2045
  1, "#ff0000",
1908
- 1.5, '#ff00cc',
2046
+ 2, '#ff00cc',
1909
2047
 
1910
2048
  // --- Snow Palette (Reflectivity Values Offset by +100) ---
1911
- 100.05, "#33ccff",
1912
- 101, "#000099",
1913
- 104, "#ff00cc",
2049
+ 100.04, "#33ccff",
2050
+ 100.4, "#000099",
2051
+ 101, "#ff00cc",
1914
2052
 
1915
2053
  // --- Freezing Rain Palette (Reflectivity Values Offset by +200) ---
1916
- 200.005, "#ff3300",
1917
- 200.1, "#ff33ff",
2054
+ 200.004, "#ff3300",
2055
+ 200.3, "#ff33ff",
1918
2056
  200.6, "#cc99cc",
1919
2057
 
1920
2058
  // icep
1921
- 300.005, "#8800cc",
1922
- 300.2, "#aa44dd",
2059
+ 300.004, "#8800cc",
2060
+ 300.3, "#aa44dd",
1923
2061
  300.6, "#cc88dd"
1924
2062
  ],
1925
2063
  "breakpoints": [
@@ -1954,16 +2092,43 @@ export const DEFAULT_COLORMAPS = {
1954
2092
  }
1955
2093
  }
1956
2094
  },
2095
+ "ptypeRefl": {
2096
+ "units": {
2097
+ "dBZ": {
2098
+ "colormap": [
2099
+ // --- Rain Palette (Standard Reflectivity Values: 5 to 80) ---
2100
+ 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",
2101
+ // --- Snow Palette (Reflectivity Values Offset by +100) ---
2102
+ 105, "#C5DDFF", 130, "#031996", 140, "#7123de", 170, "#380c91",
2103
+ // --- Freezing Rain Palette (Reflectivity Values Offset by +200) ---
2104
+ 205, "#febdf6", 230, "#fe7eda", 240, "#ff2ab5", 270, "#ff01a2",
2105
+ // icep
2106
+ 305, "#A372FB",
2107
+ 330, "#9330FD",
2108
+ 340, "#3B059E",
2109
+ 370, "#C80529"
2110
+ ],
2111
+ "breakpoints": [
2112
+ ]
2113
+ }
2114
+ }
2115
+ },
2116
+ "PrecipFlag_00.00": {
2117
+ "units": {
2118
+ "None": {
2119
+ "colormap": [
2120
+ 0, "#000000",
2121
+ 1, "#6699cc"
2122
+ ],
2123
+ "breakpoints": []
2124
+ }
2125
+ }
2126
+ },
1957
2127
  "frzrRefl": {
1958
- "type": "fill",
1959
- "gridded": false,
1960
- "interpolationType": "interpolate",
1961
2128
  "units": {
1962
2129
  "dBZ": {
1963
2130
  "colormap": [
1964
- 5, "#ff3300",
1965
- 30, '#ffaa33',
1966
- 80, "#cc0066"
2131
+ 5, "#febdf6", 30, "#fe7eda", 40, "#ff2ab5", 65, "#ff01a2",
1967
2132
  ],
1968
2133
  "breakpoints": [
1969
2134
  5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80
@@ -1972,15 +2137,13 @@ export const DEFAULT_COLORMAPS = {
1972
2137
  }
1973
2138
  },
1974
2139
  "icepRefl": {
1975
- "type": "fill",
1976
- "gridded": false,
1977
- "interpolationType": "interpolate",
1978
2140
  "units": {
1979
2141
  "dBZ": {
1980
2142
  "colormap": [
1981
- 5, "#8800cc",
1982
- 70, "#ffbb00",
1983
- 80, "#dddddd"
2143
+ 5, "#A372FB",
2144
+ 30, "#9330FD",
2145
+ 40, "#3B059E",
2146
+ 65, "#C80529"
1984
2147
  ],
1985
2148
  "breakpoints": [
1986
2149
  5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80
@@ -1989,17 +2152,9 @@ export const DEFAULT_COLORMAPS = {
1989
2152
  }
1990
2153
  },
1991
2154
  "snowRefl": {
1992
- "type": "fill",
1993
- "gridded": false,
1994
- "interpolationType": "interpolate",
1995
2155
  "units": {
1996
2156
  "dBZ": {
1997
- "colormap": [
1998
- 5, "#33ccff",
1999
- 35, "#8800cc",
2000
- 70, "#ffccff",
2001
- 80, "#dddddd"
2002
- ],
2157
+ "colormap": [5, "#C5DDFF", 30, "#031996", 40, "#7123de", 65, "#380c91",],
2003
2158
  "breakpoints": [
2004
2159
  5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80
2005
2160
  ]
@@ -2007,16 +2162,10 @@ export const DEFAULT_COLORMAPS = {
2007
2162
  }
2008
2163
  },
2009
2164
  "rainRefl": {
2010
- "type": "fill",
2011
- "gridded": false,
2012
- "interpolationType": "interpolate",
2013
2165
  "units": {
2014
2166
  "dBZ": {
2015
2167
  "colormap": [
2016
- 5, "#00cc66",
2017
- 35, "#ffff00",
2018
- 70, "#ff8800",
2019
- 80, "#ff0000"
2168
+ 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",
2020
2169
  ],
2021
2170
  "breakpoints": [
2022
2171
  5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80
@@ -2025,77 +2174,32 @@ export const DEFAULT_COLORMAPS = {
2025
2174
  }
2026
2175
  },
2027
2176
  "csnow_total" : {
2028
- "type": "fill",
2029
- "gridded": false,
2030
- "interpolationType": "interpolate",
2031
2177
  "units": {
2032
- "in [10:1]": {
2178
+ "in": {
2033
2179
  "colormap": [
2034
- 0.1, "#ccffff",
2035
- 2, "#99cccc",
2036
- 5, "#3399ff",
2037
- 6, "#9966ff",
2038
- 11, "#cc66ff",
2039
- 12, "#ff3399",
2040
- 20, "#ff99cc",
2041
- 24, "#ff7788",
2042
- 36, "#ffbb66",
2043
- 48, "#99ccff",
2044
- 300, "#99ffff"
2180
+ 0.1, "#b8f9ff", 5, "#093397", 6, "#6331a2", 11, "#d16dc7", 12, "#f5b4fd", 24, "#b3e6ff", 48, "#7ff0e8", 80, "#386d71"
2045
2181
  ],
2046
2182
  "breakpoints": [
2047
2183
  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,
2048
2184
  50,55,60,70,
2049
- 80,90,100,150,200,300,400
2185
+ 80, 100
2050
2186
  ]
2051
2187
  },
2052
- "cm [10:1]": {
2188
+ "cm": {
2053
2189
  "colormap": [
2054
- 0.25, "#ccffff",
2055
- 4, "#99cccc",
2056
- 12, "#3399ff",
2057
- 16, "#9966ff",
2058
- 28, "#cc66ff",
2059
- 36, "#ff3399",
2060
- 48, "#ff99cc",
2061
- 60, "#ff7788",
2062
- 90, "#ffbb66",
2063
- 120, "#99ccff",
2064
- 700, "#99ffff"
2190
+ 0.25, "#b8f9ff", 12.5, "#093397", 15, "#6331a2", 28, "#d16dc7", 30.5, "#f5b4fd", 61, "#b3e6ff", 122, "#7ff0e8", 203, "#386d71"
2065
2191
  ],
2066
2192
  "breakpoints": [
2067
2193
  0.25, .5, 1, 2, 4, 6, 8, 10, 12, 14, 16, 20, 24, 28, 32, 36, 40, 44, 48, 52, 60, 68, 76,
2068
2194
  82, 90, 100,
2069
- 120, 140, 160, 180, 200, 250, 300, 400, 500, 600, 700
2195
+ 120, 140, 160, 180, 200, 250
2070
2196
  ]
2071
2197
  },
2072
- "mm [10:1]": {
2073
- "colormap": [
2074
- 2.5, "#ccffff",
2075
- 40, "#99cccc",
2076
- 120, "#3399ff",
2077
- 160, "#9966ff",
2078
- 280, "#cc66ff",
2079
- 360, "#ff3399",
2080
- 480, "#ff99cc",
2081
- 600, "#ff7788",
2082
- 900, "#ffbb66",
2083
- 1200, "#99ccff",
2084
- 7000, "#99ffff"
2085
- ],
2086
- "breakpoints": [
2087
- 2.5, 5, 10, 20, 40, 60, 80, 100, 120, 140, 160, 200, 240, 280, 320, 360, 400, 440, 480, 520, 600, 680, 760, 820, 900, 1000,
2088
- 1200, 1400, 1600, 1800, 2000, 2500, 3000, 4000, 5000, 6000, 7000
2089
- ]
2090
- }
2091
2198
  }
2092
2199
  },
2093
2200
  "csnow_1" : {
2094
- "type": "fill",
2095
- "gridded": false,
2096
- "interpolationType": "interpolate",
2097
2201
  "units": {
2098
- "in [10:1]": {
2202
+ "in": {
2099
2203
  "colormap": [
2100
2204
  0.1, "#aaaaaa",
2101
2205
  0.25, "#444444",
@@ -2114,7 +2218,7 @@ export const DEFAULT_COLORMAPS = {
2114
2218
  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
2115
2219
  ]
2116
2220
  },
2117
- "cm [10:1]": {
2221
+ "cm": {
2118
2222
  "colormap": [
2119
2223
  0.25, "#aaaaaa",
2120
2224
  0.5, "#444444",
@@ -2133,34 +2237,11 @@ export const DEFAULT_COLORMAPS = {
2133
2237
  .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
2134
2238
  ]
2135
2239
  },
2136
- "mm [10:1]": {
2137
- "colormap": [
2138
- 2.5, "#aaaaaa",
2139
- 5, "#444444",
2140
- 15, "#66aaff",
2141
- 20, "#0022cc",
2142
- 25, "#99ff00",
2143
- 40, "#00aa00",
2144
- 50, "#ffee00",
2145
- 60, "#ff3333",
2146
- 80, "#ff66ff",
2147
- 90, "#880066",
2148
- 100, "#666666",
2149
- 260, "#666666"
2150
- ],
2151
- "breakpoints": [
2152
- 2.5, 5, 7.5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 70, 80, 90,
2153
- 100, 110, 120, 140, 160, 180, 200, 220, 240, 260
2154
- ]
2155
- }
2156
2240
  }
2157
2241
  },
2158
2242
  "cfrzr_total" : {
2159
- "type": "fill",
2160
- "gridded": false,
2161
- "interpolationType": "interpolate",
2162
2243
  "units": {
2163
- "in [QPF]": {
2244
+ "in": {
2164
2245
  "colormap": [
2165
2246
  0.01, "#eeccff",
2166
2247
  .1, "#ff9999",
@@ -2168,13 +2249,14 @@ export const DEFAULT_COLORMAPS = {
2168
2249
  .5, "#ff9933",
2169
2250
  .75, "#ffee00",
2170
2251
  1, "#00cccc",
2252
+ 2, "#0000ff",
2171
2253
  3, "#99ffff"
2172
2254
  ],
2173
2255
  "breakpoints": [
2174
2256
  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
2175
2257
  ]
2176
2258
  },
2177
- "cm [QPF]": {
2259
+ "cm": {
2178
2260
  "colormap": [
2179
2261
  0.03, "#eeccff",
2180
2262
  .25, "#ff9999",
@@ -2182,6 +2264,7 @@ export const DEFAULT_COLORMAPS = {
2182
2264
  1, "#cc0066",
2183
2265
  2, "#ffee00",
2184
2266
  3, "#00cccc",
2267
+ 5, "#0000ff",
2185
2268
  7, "#99ffff"
2186
2269
  ],
2187
2270
  "breakpoints": [
@@ -2189,7 +2272,7 @@ export const DEFAULT_COLORMAPS = {
2189
2272
  3.75,4,4.5,5,5.5,6,7,8,9,10,12,14,16,18,20,22,24,26
2190
2273
  ]
2191
2274
  },
2192
- "mm [QPF]": {
2275
+ "mm": {
2193
2276
  "colormap": [
2194
2277
  0.3, "#eeccff",
2195
2278
  2.5, "#ff9999",
@@ -2207,11 +2290,8 @@ export const DEFAULT_COLORMAPS = {
2207
2290
  }
2208
2291
  },
2209
2292
  "cfrzr_1" : {
2210
- "type": "fill",
2211
- "gridded": false,
2212
- "interpolationType": "interpolate",
2213
2293
  "units": {
2214
- "in [QPF]": {
2294
+ "in": {
2215
2295
  "colormap": [
2216
2296
  0.01, "#eeccff",
2217
2297
  .1, "#ff9999",
@@ -2226,7 +2306,7 @@ export const DEFAULT_COLORMAPS = {
2226
2306
  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
2227
2307
  ]
2228
2308
  },
2229
- "cm [QPF]": {
2309
+ "cm": {
2230
2310
  "colormap": [
2231
2311
  0.03, "#eeccff",
2232
2312
  .25, "#ff9999",
@@ -2241,7 +2321,7 @@ export const DEFAULT_COLORMAPS = {
2241
2321
  5.5,6,7,8,9,10,12,14,16
2242
2322
  ]
2243
2323
  },
2244
- "mm [QPF]": {
2324
+ "mm": {
2245
2325
  "colormap": [
2246
2326
  0.3, "#eeccff",
2247
2327
  2.5, "#ff9999",
@@ -2259,11 +2339,8 @@ export const DEFAULT_COLORMAPS = {
2259
2339
  }
2260
2340
  },
2261
2341
  "cicep_total": {
2262
- "type": "fill",
2263
- "gridded": false,
2264
- "interpolationType": "interpolate",
2265
2342
  "units": {
2266
- "in [3:1]": {
2343
+ "in": {
2267
2344
  "colormap": [
2268
2345
  0.01, "#eeccff",
2269
2346
  0.1, "#ff8888",
@@ -2277,7 +2354,7 @@ export const DEFAULT_COLORMAPS = {
2277
2354
  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
2278
2355
  ]
2279
2356
  },
2280
- "cm [3:1]": {
2357
+ "cm": {
2281
2358
  "colormap": [
2282
2359
  0.03, "#eeccff",
2283
2360
  0.25, "#ff8888",
@@ -2293,7 +2370,7 @@ export const DEFAULT_COLORMAPS = {
2293
2370
  20, 22, 24, 26
2294
2371
  ]
2295
2372
  },
2296
- "mm [3:1]": {
2373
+ "mm": {
2297
2374
  "colormap": [
2298
2375
  0.3, "#eeccff",
2299
2376
  2.5, "#ff8888",
@@ -2312,11 +2389,8 @@ export const DEFAULT_COLORMAPS = {
2312
2389
  }
2313
2390
  },
2314
2391
  "cicep_1": {
2315
- "type": "fill",
2316
- "gridded": false,
2317
- "interpolationType": "interpolate",
2318
2392
  "units": {
2319
- "in [3:1]": {
2393
+ "in": {
2320
2394
  "colormap": [
2321
2395
  0.01, "#eeccff",
2322
2396
  0.1, "#ff8888",
@@ -2364,9 +2438,6 @@ export const DEFAULT_COLORMAPS = {
2364
2438
  }
2365
2439
  },
2366
2440
  "crain_total": {
2367
- "type": "fill",
2368
- "gridded": false,
2369
- "interpolationType": "interpolate",
2370
2441
  "units": {
2371
2442
  "in": {
2372
2443
  "colormap": [
@@ -2432,9 +2503,6 @@ export const DEFAULT_COLORMAPS = {
2432
2503
  }
2433
2504
  },
2434
2505
  "crain_1": {
2435
- "type": "fill",
2436
- "gridded": false,
2437
- "interpolationType": "interpolate",
2438
2506
  "units": {
2439
2507
  "in": {
2440
2508
  "colormap": [
@@ -2497,25 +2565,10 @@ export const DEFAULT_COLORMAPS = {
2497
2565
  }
2498
2566
  },
2499
2567
  "tp_0_total": {
2500
- "type": "fill",
2501
- "gridded": false,
2502
- "interpolationType": "interpolate",
2503
2568
  "units": {
2504
2569
  "in": {
2505
2570
  "colormap": [
2506
- 0.01, "#dddddd",
2507
- 0.1, "#66ff66",
2508
- 0.4, "#00cc00",
2509
- 0.5, "#3399ff",
2510
- 0.9, "#66ccff",
2511
- 1, "#ffff00",
2512
- 1.75, "#ffcc00",
2513
- 2, "#ff9900",
2514
- 3.5, "#ff6600",
2515
- 4, "#994400",
2516
- 10, "#cc9966",
2517
- 12, "#cc33cc",
2518
- 50, "#ff33ff"
2571
+ 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"
2519
2572
  ],
2520
2573
  "breakpoints": [
2521
2574
  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,
@@ -2525,17 +2578,7 @@ export const DEFAULT_COLORMAPS = {
2525
2578
  },
2526
2579
  "cm": {
2527
2580
  "colormap": [
2528
- 0.03, "#dddddd",
2529
- 0.25, "#66ff66",
2530
- 1, "#00cc00",
2531
- 2, "#66ccff",
2532
- 3, "#ffff00",
2533
- 5, "#ff9900",
2534
- 9, "#ff6600",
2535
- 10, "#994400",
2536
- 25, "#cc9966",
2537
- 30, "#cc33cc",
2538
- 100, "#ff33ff"
2581
+ 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"
2539
2582
  ],
2540
2583
  "breakpoints": [
2541
2584
  0.03, 0.25, 0.75, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 18, 20,
@@ -2544,17 +2587,7 @@ export const DEFAULT_COLORMAPS = {
2544
2587
  },
2545
2588
  "mm": {
2546
2589
  "colormap": [
2547
- 0.3, "#dddddd",
2548
- 2.5, "#66ff66",
2549
- 10, "#00cc00",
2550
- 20, "#66ccff",
2551
- 30, "#ffff00",
2552
- 50, "#ff9900",
2553
- 90, "#ff6600",
2554
- 100, "#994400",
2555
- 250, "#cc9966",
2556
- 300, "#cc33cc",
2557
- 1000, "#ff33ff"
2590
+ 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"
2558
2591
  ],
2559
2592
  "breakpoints": [
2560
2593
  0.3, 2.5, 7.5, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 120, 140, 160,
@@ -2565,9 +2598,6 @@ export const DEFAULT_COLORMAPS = {
2565
2598
  }
2566
2599
  },
2567
2600
  "tp_0_1": {
2568
- "type": "fill",
2569
- "gridded": false,
2570
- "interpolationType": "interpolate",
2571
2601
  "units": {
2572
2602
  "in": {
2573
2603
  "colormap": [
@@ -2623,9 +2653,6 @@ export const DEFAULT_COLORMAPS = {
2623
2653
  }
2624
2654
  },
2625
2655
  "thickness": {
2626
- "type": "line",
2627
- "gridded": false,
2628
- "interpolationType": "interpolate",
2629
2656
  "units": {
2630
2657
  "dam": {
2631
2658
  "colormap": [
@@ -2643,9 +2670,6 @@ export const DEFAULT_COLORMAPS = {
2643
2670
  }
2644
2671
  },
2645
2672
  "gh_10": {
2646
- "type": "line",
2647
- "gridded": false,
2648
- "interpolationType": "interpolate",
2649
2673
  "units": {
2650
2674
  "dam": {
2651
2675
  "colormap": [
@@ -2666,9 +2690,6 @@ export const DEFAULT_COLORMAPS = {
2666
2690
  }
2667
2691
  },
2668
2692
  "gh_200": {
2669
- "type": "line",
2670
- "gridded": false,
2671
- "interpolationType": "interpolate",
2672
2693
  "units": {
2673
2694
  "dam": {
2674
2695
  "colormap": [
@@ -2688,9 +2709,6 @@ export const DEFAULT_COLORMAPS = {
2688
2709
  }
2689
2710
  },
2690
2711
  "gh_300": {
2691
- "type": "line",
2692
- "gridded": false,
2693
- "interpolationType": "interpolate",
2694
2712
  "units": {
2695
2713
  "dam": {
2696
2714
  "colormap": [
@@ -2709,9 +2727,6 @@ export const DEFAULT_COLORMAPS = {
2709
2727
  }
2710
2728
  },
2711
2729
  "gh_500": {
2712
- "type": "line",
2713
- "gridded": false,
2714
- "interpolationType": "interpolate",
2715
2730
  "units": {
2716
2731
  "dam": {
2717
2732
  "colormap": [
@@ -2733,9 +2748,6 @@ export const DEFAULT_COLORMAPS = {
2733
2748
  }
2734
2749
  },
2735
2750
  "gh_700": {
2736
- "type": "line",
2737
- "gridded": false,
2738
- "interpolationType": "interpolate",
2739
2751
  "units": {
2740
2752
  "dam": {
2741
2753
  "colormap": [
@@ -2753,46 +2765,37 @@ export const DEFAULT_COLORMAPS = {
2753
2765
  }
2754
2766
  },
2755
2767
  "gh_850": {
2756
- "type": "line",
2757
- "gridded": false,
2758
- "interpolationType": "interpolate",
2759
2768
  "units": {
2760
2769
  "dam": {
2761
2770
  "colormap": [
2762
- 120, "#0033ff",
2771
+ 102, "#0033ff",
2763
2772
  141, "#00ddff",
2764
2773
  153, "#ff6666",
2765
2774
  170, "#ff0000"
2766
2775
  ],
2767
2776
  "breakpoints": [
2768
- 120, 123, 126, 129, 132, 135, 138, 141, 144, 147, 150, 153, 156, 159, 162, 165, 168, 170
2777
+ 102, 105, 108, 111, 114, 117,120, 123, 126, 129, 132, 135, 138, 141, 144, 147, 150, 153, 156, 159, 162, 165, 168, 170
2769
2778
  ]
2770
2779
  }
2771
2780
  }
2772
2781
  },
2773
2782
  "gh_925": {
2774
- "type": "line",
2775
- "gridded": false,
2776
- "interpolationType": "interpolate",
2777
2783
  "units": {
2778
2784
  "dam": {
2779
2785
  "colormap": [
2780
- 48, "#0033ff",
2781
- 75, "#00ddff",
2782
- 105, "#ff6666",
2786
+ 24, "#0033ff",
2787
+ 66, "#00ddff",
2788
+ 91, "#ff6666",
2783
2789
  120, "#ff0000"
2784
2790
  ],
2785
2791
  "breakpoints": [
2786
- 48, 51, 54, 57, 60, 63, 66, 69, 72, 75, 78, 81, 84, 87, 90, 91, 96, 99, 102,
2792
+ 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,
2787
2793
  105, 108, 111, 114, 117, 120
2788
2794
  ]
2789
2795
  }
2790
2796
  }
2791
2797
  },
2792
2798
  "moistureConvergence": {
2793
- "type": "fill",
2794
- "gridded": false,
2795
- "interpolationType": "interpolate",
2796
2799
  "units": {
2797
2800
  "s⁻¹": {
2798
2801
  "colormap": [
@@ -2807,10 +2810,107 @@ export const DEFAULT_COLORMAPS = {
2807
2810
  }
2808
2811
  }
2809
2812
  },
2813
+ "moisture_flux": {
2814
+ "units": {
2815
+ "s⁻¹": {
2816
+ "colormap": [
2817
+ -50, "#bc9fca",
2818
+ -20, "#000000",
2819
+ 0, "#986D4D",
2820
+ 6, "#7D7D7D",
2821
+ 12, "#C8C8C8",
2822
+ 16, "#30C830",
2823
+ 20, "#093209",
2824
+ 40, "#206E68",
2825
+ 60, "#29C4CC",
2826
+ 80, "#581380",
2827
+ 100, "#CF1968",
2828
+ ],
2829
+ "breakpoints": [
2830
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
2831
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
2832
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
2833
+ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
2834
+ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50
2835
+ ],
2836
+ }
2837
+ }
2838
+ },
2839
+ "qdiv": {
2840
+ "units": {
2841
+ "s⁻¹": {
2842
+ "colormap": [
2843
+ -5.0, "#00ccff",
2844
+ -3.0, "#ff0000",
2845
+ -1.0, "#ff9900",
2846
+ -0.5, "#ffee33",
2847
+ 0.0, "#aaaaaa",
2848
+ 0.5, "#006600",
2849
+ 1.0, "#00cc00",
2850
+ 3.0, "#00ffcc",
2851
+ 5.0, "#ffffff"
2852
+ ],
2853
+ "breakpoints": [
2854
+ -5, -4.5,-4,
2855
+ -3.5, -3,
2856
+ -2.5, -2,
2857
+ -1.5, -1,
2858
+ -0.5, 0,
2859
+ 0.5, 1,
2860
+ 1.5, 2,
2861
+ 2.5, 3,
2862
+ 3.5,
2863
+ 4, 4.5, 5]
2864
+ }
2865
+ }
2866
+ },
2867
+ "dpva": {
2868
+ "units": {
2869
+ "10⁻⁹ s⁻²": {
2870
+ "colormap": [
2871
+ -30, "#00ccff",
2872
+ -8, "#ff0000",
2873
+ -4, "#ff9900",
2874
+ -2, "#ffee33",
2875
+ 0, "#00ffcc",
2876
+ 4, "#006600",
2877
+ 8, "#00cc00",
2878
+ 30, "#222222"
2879
+ ],
2880
+ "breakpoints": [
2881
+ -30, -29, -28, -27, -26, -25, -24, -23, -22, -21, -20, -19, -18, -17, -16, -15, -14,
2882
+ -13, -12, -11,
2883
+ -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
2884
+ 14, 15, 16,
2885
+ 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30
2886
+ ]
2887
+ }
2888
+ }
2889
+ },
2890
+ "ddiv": {
2891
+ "units": {
2892
+ "10⁻⁹ s⁻¹": {
2893
+ "colormap": [
2894
+ -30, "#00ccff",
2895
+ -8, "#ff0000",
2896
+ -4, "#ff9900",
2897
+ -2, "#ffee33",
2898
+ 0, "#00ffcc",
2899
+ 4, "#006600",
2900
+ 8, "#00cc00",
2901
+ 30, "#222222"
2902
+ ],
2903
+ "breakpoints": [
2904
+ -30, -29, -28, -27, -26, -25, -24, -23, -22, -21, -20, -19, -18, -17, -16, -15, -14,
2905
+ -13, -12, -11,
2906
+ -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
2907
+ 14, 15, 16,
2908
+ 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30
2909
+ ]
2910
+ }
2911
+ }
2912
+ },
2810
2913
  "divergence": {
2811
- "type": "fill",
2812
- "gridded": false,
2813
- "interpolationType": "interpolate",
2814
2914
  "units": {
2815
2915
  "s⁻¹": {
2816
2916
  "colormap": [
@@ -2833,10 +2933,184 @@ export const DEFAULT_COLORMAPS = {
2833
2933
  }
2834
2934
  }
2835
2935
  },
2936
+ "crtang": {
2937
+ "units": {
2938
+ "deg": {
2939
+ "colormap": [
2940
+ 0, "#0000aa",
2941
+ 45, "#4444ff",
2942
+ 70, "#aaaaff",
2943
+ 80, "#ddddff",
2944
+ 85, "#eeeeff",
2945
+ 90, "#ffffff",
2946
+ 95, "#ffeedd",
2947
+ 100, "#ffddaa",
2948
+ 110, "#ff9900",
2949
+ 135, "#ff4400",
2950
+ 180, "#990000",
2951
+ 270, "#550055",
2952
+ 360, "#000044"
2953
+ ],
2954
+ "breakpoints": [
2955
+ 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70,
2956
+ 72, 74, 76, 78, 80, 82, 84, 85, 86, 87, 88, 89,
2957
+ 90,
2958
+ 91, 92, 93, 94, 95, 96, 98, 100, 102, 104,
2959
+ 106, 108, 110, 115, 120, 125, 130, 135, 140, 145,
2960
+ 150, 155, 160, 165, 170, 175, 180,
2961
+ 195, 210, 225, 240, 255, 270,
2962
+ 285, 300, 315, 330, 345, 360
2963
+ ]
2964
+ }
2965
+ }
2966
+ },
2967
+ 'okuboweiss':{
2968
+ "units": {
2969
+ "1/s²": {
2970
+ colormap : [
2971
+ -2, "#ff0000",
2972
+ -1.5, "#f16060",
2973
+ -1, "#ecc4a4",
2974
+ -0.5, "#6e2d0d",
2975
+ -0.25, "#d46738",
2976
+ 0, "#8a8a6d",
2977
+ 0.25, "#45d429",
2978
+ 0.5, "#063d0f",
2979
+ 1, "#04d4ff",
2980
+ 1.5, "#2a6eb4",
2981
+ 2, "#4f0869"
2982
+ ],
2983
+ breakpoints: [
2984
+ -2, -1.75, -1.5, -1.25, -1, -0.75, -0.5, -0.25, 0,
2985
+ 0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2
2986
+ ],
2987
+ },
2988
+ }
2989
+ },
2990
+ 'hdwianom':{
2991
+ "units":{
2992
+ "hPa m²/s²":{
2993
+ "colormap": [
2994
+ -700, "#000000",
2995
+ -400, "#058f00",
2996
+ -200, "#00ffd5",
2997
+ -100, "#4a2eff",
2998
+ -50, "#8c8fba",
2999
+ 0, "#d1d1d1",
3000
+ 50, "#ba8c8c",
3001
+ 100, "#ff9500",
3002
+ 200, "#ff0800",
3003
+ 400, "#ff00d0",
3004
+ 700, "#ffffff",
3005
+ ],
3006
+ breakpoints: [-700, -690, -680, -670, -660, -650, -640, -630, -620, -610,
3007
+ -600, -590, -580, -570, -560, -550, -540, -530, -520, -510,
3008
+ -500, -490, -480, -470, -460, -450, -440, -430, -420, -410,
3009
+ -400, -390, -380, -370, -360, -350, -340, -330, -320, -310,
3010
+ -300, -290, -280, -270, -260, -250, -240, -230, -220, -210,
3011
+ -200, -190, -180, -170, -160, -150, -140, -130, -120, -110,
3012
+ -100, -90, -80, -70, -60, -50, -40, -30, -20, -10,
3013
+ 0, 10, 20, 30, 40, 50, 60, 70, 80, 90,
3014
+ 100, 110, 120, 130, 140, 150, 160, 170, 180, 190,
3015
+ 200, 210, 220, 230, 240, 250, 260, 270, 280, 290,
3016
+ 300, 310, 320, 330, 340, 350, 360, 370, 380, 390,
3017
+ 400, 410, 420, 430, 440, 450, 460, 470, 480, 490,
3018
+ 500, 510, 520, 530, 540, 550, 560, 570, 580, 590,
3019
+ 600, 610, 620, 630, 640, 650, 660, 670, 680, 690,
3020
+ 700
3021
+ ],
3022
+ }
3023
+ }
3024
+ },
3025
+ 'rfti':{
3026
+ "units":{
3027
+ "m²/s² %":{
3028
+ "colormap": [
3029
+ 0, "#d1d1d1",
3030
+ 1, "#b6b6b6",
3031
+ 2, "#727272",
3032
+ 3, "#640019",
3033
+ 4, "#ff00e0",
3034
+ 5, "#ffffff",
3035
+ 6, "#00fbff",
3036
+ 7, "#222222",
3037
+ ],
3038
+ breakpoints: [0., 0.25, 0.5, 0.75, 1., 1.25, 1.5, 1.75, 2.,
3039
+ 2.25, 2.5, 2.75, 3., 3.25, 3.5, 3.75, 4., 4.25, 4.5,
3040
+ 4.75, 5., 5.25, 5.5, 5.75, 6., 6.25, 6.5, 6.75, 7.
3041
+ ],
3042
+ }
3043
+ }
3044
+ },
3045
+ 'hdwi':{
3046
+ "units":{
3047
+ "hPa m²/s²":{
3048
+ "colormap": [
3049
+ 0, "#d1d1d1",
3050
+ 50, "#b6b6b6",
3051
+ 100, "#727272",
3052
+ 150, "#d9ff00",
3053
+ 200, "#c7cc00",
3054
+ 250, "#758600",
3055
+ 300, "#ff0000",
3056
+ 350, "#c40000",
3057
+ 400, "#640019",
3058
+ 450, "#740047",
3059
+ 500, "#ff00e0",
3060
+ 550, "#ff84f5",
3061
+ 600, "#ffbcfd",
3062
+ 650, "#ffffff",
3063
+ 700, "#d2fffa",
3064
+ 750, "#00fbff"
3065
+ ],
3066
+ breakpoints: [0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50,
3067
+ 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110,
3068
+ 115, 120, 125, 130, 135, 140, 145, 150, 155, 160,
3069
+ 165, 170, 175, 180, 185, 190, 195, 200, 205, 210,
3070
+ 215, 220, 225, 230, 235, 240, 245, 250, 255, 260,
3071
+ 265, 270, 275, 280, 285, 290, 295, 300, 305, 310,
3072
+ 315, 320, 325, 330, 335, 340, 345, 350, 355, 360,
3073
+ 365, 370, 375, 380, 385, 390, 395, 400, 405, 410,
3074
+ 415, 420, 425, 430, 435, 440, 445, 450, 455, 460,
3075
+ 465, 470, 475, 480, 485, 490, 495, 500, 505, 510,
3076
+ 515, 520, 525, 530, 535, 540, 545, 550, 555, 560,
3077
+ 565, 570, 575, 580, 585, 590, 595, 600, 605, 610,
3078
+ 615, 620, 625, 630, 635, 640, 645, 650, 655, 660,
3079
+ 665, 670, 675, 680, 685, 690, 695,
3080
+ 700, 705, 710, 715, 720, 725, 730, 735, 740, 745, 750
3081
+ ],
3082
+ }
3083
+ }
3084
+ },
3085
+ 'qvector_speed': {
3086
+ "units": {
3087
+ "10² kg/m²/s³": {
3088
+ "colormap": [
3089
+ 0, "#aaaaaa",
3090
+ 1, "#006600",
3091
+ 2, "#00ff00",
3092
+ 5, "#aaff00",
3093
+ 10, "#ffff00",
3094
+ 20, "#ffaa00",
3095
+ 40, "#ff0000",
3096
+ 60, "#ffffff"
3097
+ ],
3098
+ "breakpoints": [
3099
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
3100
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
3101
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
3102
+ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
3103
+ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
3104
+ 51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
3105
+ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
3106
+ 71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
3107
+ 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
3108
+ 91, 92, 93, 94, 95, 96, 97, 98, 99, 100
3109
+ ]
3110
+ }
3111
+ }
3112
+ },
2836
3113
  "irsat": {
2837
- "type": "fill",
2838
- "gridded": false,
2839
- "interpolationType": "interpolate",
2840
3114
  "units": {
2841
3115
  "°C": {
2842
3116
  "colormap": [
@@ -2864,9 +3138,6 @@ export const DEFAULT_COLORMAPS = {
2864
3138
  }
2865
3139
  },
2866
3140
  "vis_0": {
2867
- "type": "fill",
2868
- "gridded": false,
2869
- "interpolationType": "interpolate",
2870
3141
  "units": {
2871
3142
  "mi": {
2872
3143
  "colormap": [
@@ -2894,18 +3165,11 @@ export const DEFAULT_COLORMAPS = {
2894
3165
  },
2895
3166
  }
2896
3167
  },
2897
- "tcc_0": {
2898
- "type": "fill",
2899
- "gridded": false,
2900
- "interpolationType": "interpolate",
3168
+ "cloud": {
2901
3169
  "units": {
2902
3170
  "%": {
2903
3171
  "colormap": [
2904
- 0, "#ffffff",
2905
- 20, "#cccccc",
2906
- 50, "#888888",
2907
- 80, "#444444",
2908
- 100, "#000000"
3172
+ 0, "#c3d0e9", 20, "#d7eaf4", 50, "#7792b6", 80, "#5e82c9", 100, "#313f77"
2909
3173
  ],
2910
3174
  "breakpoints": [
2911
3175
  0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100
@@ -2913,61 +3177,194 @@ export const DEFAULT_COLORMAPS = {
2913
3177
  }
2914
3178
  }
2915
3179
  },
2916
- "hcc_0": {
2917
- "type": "fill",
2918
- "gridded": false,
2919
- "interpolationType": "interpolate",
3180
+ "2tanom":{
3181
+ units : {
3182
+ '°F' : {
3183
+ colormap : [
3184
+ -50, "#aaccff",
3185
+ -25, "#35034d",
3186
+ -10, "#1b82d1",
3187
+ 0, "#bababa",
3188
+ 10, "#bb5555",
3189
+ 25, "#e87d13",
3190
+ 50, "#ffffff",
3191
+ ],
3192
+ breakpoints: [
3193
+ -50, -48, -46, -44, -42, -40, -38, -36, -34, -32, -30, -28, -26, -24, -22,
3194
+ -20, -18, -16, -14, -12, -10, -8, -6, -4, -2,
3195
+ 0, 2, 4, 6, 8, 10, 12, 14, 16, 18,
3196
+ 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50
3197
+ ],
3198
+ },
3199
+ '°C' : {
3200
+ colormap : [
3201
+ -40, "#aaccff",
3202
+ -20, "#35034d",
3203
+ -8, "#1b82d1",
3204
+ 0, "#bababa",
3205
+ 8, "#bb5555",
3206
+ 20, "#e87d13",
3207
+ 40, "#ffffff",
3208
+ ],
3209
+ breakpoints: [
3210
+ -40, -38, 36, -34, -32, -30, -28, -26, -24, -22,
3211
+ -20, -18, -16, -14, -12, -10, -8, -6, -4, -2,
3212
+ 0, 2, 4, 6, 8, 10, 12, 14, 16, 18,
3213
+ 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40
3214
+ ],
3215
+ },
3216
+ },
3217
+ },
3218
+ "lapserates03" : {
3219
+ units : {
3220
+ '°C km⁻¹' : {
3221
+ colormap : [
3222
+ 0, "#3e3646", 5, "#ac947a", 6, "#fbb955", 7, "#ea4f37", 8, "#b33831", 9, "#7a3045", 10, "#c7dcd0", 15, "#ebebeb"
3223
+ ],
3224
+ breakpoints : [
3225
+ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15
3226
+ ],
3227
+ },
3228
+ },
3229
+ },
3230
+ "pwatanom_0":{
3231
+ units : {
3232
+ 'in' : {
3233
+ colormap : [
3234
+ -2, "#ff0000",
3235
+ -1.5, "#f16060",
3236
+ -1, "#ecc4a4",
3237
+ -0.5, "#6e2d0d",
3238
+ -0.25, "#d46738",
3239
+ 0, "#8a8a6d",
3240
+ 0.25, "#45d429",
3241
+ 0.5, "#063d0f",
3242
+ 1, "#04d4ff",
3243
+ 1.5, "#2a6eb4",
3244
+ 2, "#4f0869"
3245
+ ],
3246
+ breakpoints: [
3247
+ -2, -1.75, -1.5, -1.25, -1, -0.75, -0.5, -0.25, 0,
3248
+ 0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2
3249
+ ],
3250
+ },
3251
+ 'mm' : {
3252
+ colormap : [
3253
+ -50, "#ff0000",
3254
+ -35, "#f16060",
3255
+ -25, "#ecc4a4",
3256
+ -10, "#6e2d0d",
3257
+ -5, "#d46738",
3258
+ 0, "#8a8a6d",
3259
+ 5, "#45d429",
3260
+ 10, "#063d0f",
3261
+ 25, "#04d4ff",
3262
+ 35, "#2a6eb4",
3263
+ 50, "#4f0869"
3264
+ ],
3265
+ breakpoints: [
3266
+ -50, -45, -40, -35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50
3267
+ ],
3268
+ },
3269
+ },
3270
+ },
3271
+ "mslpanom": {
3272
+ "units": {
3273
+ "hPa": {
3274
+ "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'],
3275
+ "breakpoints": [
3276
+ -50, -48, -46, -44, -42, -40, -38, -36, -34, -32,
3277
+ -30, -28, -26, -24, -22, -20, -18, -16, -14, -12,
3278
+ -10, -8, -6, -4, -2, 0, 2, 4, 6, 8,
3279
+ 10, 12, 14, 16, 18, 20, 22, 24, 26, 28,
3280
+ 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50
3281
+ ]
3282
+ }
3283
+ }
3284
+ },
3285
+ "ghanom_500": {
2920
3286
  "units": {
2921
- "%": {
3287
+ "dam": {
3288
+ "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'],
3289
+ "breakpoints": [
3290
+ -50, -48, -46, -44, -42, -40, -38, -36, -34, -32,
3291
+ -30, -28, -26, -24, -22, -20, -18, -16, -14, -12,
3292
+ -10, -8, -6, -4, -2, 0, 2, 4, 6, 8,
3293
+ 10, 12, 14, 16, 18, 20, 22, 24, 26, 28,
3294
+ 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50
3295
+ ]
3296
+ }
3297
+ }
3298
+ },
3299
+ "freezinglevel": {
3300
+ "units": {
3301
+ "m": {
2922
3302
  "colormap": [
2923
- 0, "#ffffff",
2924
- 20, "#cccccc",
2925
- 50, "#888888",
2926
- 80, "#444444",
2927
- 100, "#000000"
3303
+ 0, "#cb04ed",
3304
+ 500, "#581380",
3305
+ 1000, "#2974cc",
3306
+ 1500, "#15c2ad",
3307
+ 2000, "#11ab09",
3308
+ 2500, "#093209",
3309
+ 3000, "#d5b813",
3310
+ 3500, "#a9681d",
3311
+ 4000, "#7b0404",
3312
+ 4500, "#AB7D4D",
3313
+ 5000, "#ad9b8e"
2928
3314
  ],
2929
3315
  "breakpoints": [
2930
- 0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100
3316
+ 0, 100, 200, 300, 400, 500, 600, 700, 800, 900,
3317
+ 1000, 1100, 1200, 1300, 1400, 1500, 1600, 1700, 1800, 1900,
3318
+ 2000, 2100, 2200, 2300, 2400, 2500, 2600, 2700, 2800, 2900,
3319
+ 3000, 3100, 3200, 3300, 3400, 3500, 3600, 3700, 3800, 3900,
3320
+ 4000, 4100, 4200, 4300, 4400, 4500, 4600, 4700, 4800, 4900,
3321
+ 5000, 5100, 5200, 5300, 5400, 5500, 5600, 5700, 5800, 5900,
3322
+ 6000
2931
3323
  ]
2932
3324
  }
2933
3325
  }
2934
3326
  },
2935
- "mcc_0": {
2936
- "type": "fill",
2937
- "gridded": false,
2938
- "interpolationType": "interpolate",
3327
+ "SatelliteWV": {
2939
3328
  "units": {
2940
- "%": {
3329
+ "C": {
2941
3330
  "colormap": [
2942
- 0, "#ffffff",
2943
- 20, "#cccccc",
2944
- 50, "#888888",
2945
- 80, "#444444",
2946
- 100, "#000000"
3331
+ 10, "#cece55",
3332
+ 20, "#ce5555",
3333
+ 30, "#262626",
3334
+ 45, "#ffffff",
3335
+ 55, "#55cece",
3336
+ 70, "#5555ce",
3337
+ 80, "#4d3366",
3338
+ 90, "#e673e6",
3339
+ 100, "#efe6eb"
2947
3340
  ],
2948
3341
  "breakpoints": [
2949
- 0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100
3342
+ 10, 20, 30, 45, 55, 70, 80, 90, 100
2950
3343
  ]
2951
3344
  }
2952
3345
  }
2953
3346
  },
2954
- "lcc_0": {
2955
- "type": "fill",
2956
- "gridded": false,
2957
- "interpolationType": "interpolate",
3347
+ "SatelliteLongwaveIR": {
2958
3348
  "units": {
2959
- "%": {
3349
+ "C": {
2960
3350
  "colormap": [
2961
- 0, "#ffffff",
2962
- 20, "#cccccc",
2963
- 50, "#888888",
2964
- 80, "#444444",
2965
- 100, "#000000"
3351
+ 5, "#000000", // 40°C → normVal = 10.32
3352
+ 51, "#ffffff", // 0°C → normVal = 37.74
3353
+ 52, "#00ffff", // -20°C → normVal = 50.65
3354
+ 58, "#0033cc", // -30°C → normVal = 57.10
3355
+ 64, "#33ff00", // -40°C → normVal = 63.55
3356
+ 73, "#ffee00", // -50°C → normVal = 70.00
3357
+ 78, "#ff0000", // -60°C → normVal = 76.45
3358
+ 82, "#660000", // -70°C → normVal = 82.90
3359
+ 88, "#808080", // -75°C → normVal = 86.13
3360
+ 90, "#cc66ff", // -80°C → normVal = 89.35
3361
+ 96, "#9933cc", // -90°C → normVal = 95.81
3362
+ 100, "#9933cc", // -90°C → normVal = 95.81
2966
3363
  ],
2967
3364
  "breakpoints": [
2968
- 0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100
3365
+ 10, 20, 30, 45, 55, 70, 80, 90, 100
2969
3366
  ]
2970
3367
  }
2971
3368
  }
2972
3369
  }
2973
- };
3370
+ }