@aguacerowx/javascript-sdk 0.0.16 → 0.0.18

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,142 @@ 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
+ },
98
193
  "rotation" : {
99
- type: "fill",
100
- gridded: false,
101
- interpolationType: "interpolate",
102
194
  units : {
103
195
  's⁻¹' : {
104
196
  colormap : [
@@ -126,9 +218,6 @@ export const DEFAULT_COLORMAPS = {
126
218
  },
127
219
  },
128
220
  "hail" : {
129
- type: "fill",
130
- gridded: false,
131
- interpolationType: "interpolate",
132
221
  units : {
133
222
  'mm' : {
134
223
  colormap : [
@@ -174,9 +263,6 @@ export const DEFAULT_COLORMAPS = {
174
263
  },
175
264
  },
176
265
  "ff_ari" : {
177
- type: "fill",
178
- gridded: false,
179
- interpolationType: "interpolate",
180
266
  units : {
181
267
  'year' : {
182
268
  colormap : [
@@ -203,9 +289,6 @@ export const DEFAULT_COLORMAPS = {
203
289
  },
204
290
  },
205
291
  "lightning_prob" : {
206
- type: "fill",
207
- gridded: false,
208
- interpolationType: "interpolate",
209
292
  units : {
210
293
  '%' : {
211
294
  colormap : [
@@ -227,9 +310,6 @@ export const DEFAULT_COLORMAPS = {
227
310
  },
228
311
  },
229
312
  "vil" : {
230
- type: "fill",
231
- gridded: false,
232
- interpolationType: "interpolate",
233
313
  units : {
234
314
  'kg/m²' : {
235
315
  colormap : [
@@ -259,17 +339,51 @@ export const DEFAULT_COLORMAPS = {
259
339
  },
260
340
  },
261
341
  },
342
+ "sde_change" : {
343
+ units : {
344
+ 'in' : {
345
+ colormap : [
346
+ -100, "#e60000",
347
+ -50, "#e60000",
348
+ 0, "#ffffff",
349
+ 50, "#0000cc",
350
+ 100, "#0000cc",
351
+ ],
352
+ breakpoints : [ 0
353
+ ],
354
+ },
355
+ 'cm' : {
356
+ colormap : [
357
+ -300, "#e60000",
358
+ -150, "#e60000",
359
+ 0, "#ffffff",
360
+ 150, "#0000cc",
361
+ 300, "#0000cc",
362
+ ],
363
+ breakpoints : [ 0
364
+ ],
365
+ },
366
+ 'mm' : {
367
+ colormap : [
368
+ -3000, "#e60000",
369
+ -1500, "#e60000",
370
+ 0, "#ffffff",
371
+ 1500, "#0000cc",
372
+ 3000, "#0000cc",
373
+ ],
374
+ breakpoints : [ 0
375
+ ],
376
+ },
377
+ },
378
+ },
262
379
  "gh_tendency" : {
263
- type: "fill",
264
- gridded: false,
265
- interpolationType: "interpolate",
266
380
  units : {
267
381
  'dam' : {
268
382
  colormap : [
269
383
  -60, "#0000cc",
270
- -30, "#0000cc",
384
+ -20, "#0000cc",
271
385
  0, "#ffffff",
272
- 30, "#e60000",
386
+ 20, "#e60000",
273
387
  60, "#e60000",
274
388
  ],
275
389
  breakpoints : [
@@ -283,28 +397,9 @@ export const DEFAULT_COLORMAPS = {
283
397
  },
284
398
  },
285
399
  "refc_0" : {
286
- type: "fill",
287
- gridded: false,
288
- interpolationType: "interpolate",
289
400
  units : {
290
401
  '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
- ],
402
+ 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
403
  breakpoints : [
309
404
  5, 10, 15, 20, 25, 30, 35,40 ,45, 50, 55, 60, 65, 70, 75, 80
310
405
  ],
@@ -312,9 +407,6 @@ export const DEFAULT_COLORMAPS = {
312
407
  },
313
408
  },
314
409
  "mslma_0" : {
315
- type: "line",
316
- gridded: true,
317
- interpolationType: "interpolate",
318
410
  units : {
319
411
  'hPa' : {
320
412
  colormap : [
@@ -338,9 +430,6 @@ export const DEFAULT_COLORMAPS = {
338
430
  }
339
431
  },
340
432
  "pres2PVU" : {
341
- type: "fill",
342
- gridded: false,
343
- interpolationType: "interpolate",
344
433
  units : {
345
434
  'hPa' : {
346
435
  colormap : [
@@ -365,9 +454,6 @@ export const DEFAULT_COLORMAPS = {
365
454
  }
366
455
  },
367
456
  "theta2PVU" : {
368
- type: "fill",
369
- gridded: false,
370
- interpolationType: "interpolate",
371
457
  units : {
372
458
  '°K' : {
373
459
  colormap : [
@@ -390,9 +476,6 @@ export const DEFAULT_COLORMAPS = {
390
476
  }
391
477
  },
392
478
  "vo" : {
393
- type: "fill",
394
- gridded: false,
395
- interpolationType: "interpolate",
396
479
  units : {
397
480
  's⁻¹' : {
398
481
  colormap : [
@@ -421,22 +504,10 @@ export const DEFAULT_COLORMAPS = {
421
504
  }
422
505
  },
423
506
  "bulk_shear_speed_upper" : {
424
- type: "fill",
425
- gridded: true,
426
- interpolationType: "interpolate",
427
507
  units : {
428
508
  'kts' : {
429
509
  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",
510
+ 0, "#7f708a", 20, "#484a77", 40, "#4d9be6", 60, "#eaaded", 80, "#f04f78", 100, "#831c5d", 120, "#f7961a", 140, "#fbfe86", 200, "#ededed"
440
511
  ],
441
512
  breakpoints : [
442
513
  20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150, 160, 170, 180
@@ -444,16 +515,7 @@ export const DEFAULT_COLORMAPS = {
444
515
  },
445
516
  'm/s' : {
446
517
  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",
518
+ 0, "#7f708a", 10, "#484a77", 20, "#4d9be6", 30, "#eaaded", 40, "#f04f78", 50, "#831c5d", 60, "#f7961a", 70, "#fbfe86", 100, "#ededed"
457
519
  ],
458
520
  breakpoints : [
459
521
  10, 14, 18, 22, 26, 30, 34, 38, 42, 46, 50, 54,
@@ -463,20 +525,10 @@ export const DEFAULT_COLORMAPS = {
463
525
  }
464
526
  },
465
527
  "bulk_shear_speed_lower" : {
466
- type: "fill",
467
- gridded: true,
468
- interpolationType: "interpolate",
469
528
  units : {
470
529
  'kts' : {
471
530
  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",
531
+ 0, "#7f708a", 20, "#494a77", 40, "#4d9be6", 60, "#eaaded", 80, "#f04f77", 100, "#821c5d"
480
532
  ],
481
533
  breakpoints : [
482
534
  10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90
@@ -484,14 +536,7 @@ export const DEFAULT_COLORMAPS = {
484
536
  },
485
537
  'm/s' : {
486
538
  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",
539
+ 0, "#7f708a", 10, "#494a77", 20, "#4d9be6", 30, "#eaaded", 40, "#f04f77", 50, "#821c5d"
495
540
  ],
496
541
  breakpoints : [
497
542
  5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29,
@@ -501,25 +546,10 @@ export const DEFAULT_COLORMAPS = {
501
546
  }
502
547
  },
503
548
  "hlcy" : {
504
- type: "fill",
505
- gridded: false,
506
- interpolationType: "interpolate",
507
549
  units : {
508
550
  'm²/s²' : {
509
551
  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",
552
+ -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
553
  ],
524
554
  breakpoints : [
525
555
  -1500, -1450, -1400, -1350, -1300, -1250, -1200, -1150, -1100, -1050, -1000, -950,
@@ -532,18 +562,19 @@ export const DEFAULT_COLORMAPS = {
532
562
  },
533
563
  },
534
564
  },
535
- "mxuphl_5000" : {
536
- type: "fill",
537
- gridded: false,
538
- interpolationType: "interpolate",
565
+ "mxuphl" : {
539
566
  units : {
540
567
  'm²/s²' : {
541
568
  colormap : [
542
- 2, "#99ffff",
543
- 90, "#0077ff",
544
- 100, "#ffee00",
545
- 200, "#ff66ff",
546
- 400, "#8800ee",
569
+ 2, "#6754aa", // deep purple
570
+ 20, "#2a7fbb", // blue
571
+ 50, "#91d28c", // green
572
+ 100, "#f4fca9", // yellow
573
+ 130, "#ff9609", // orange
574
+ 160, "#d51c1c", // red
575
+ 200, "#d012a1", // magenta
576
+ 270, "#dd71c5", // pink
577
+ 400, "#671f6c" // dark purple
547
578
  ],
548
579
  breakpoints : [
549
580
  2,5,10,10,20,30,40,50,60,70,80,90,100,120,140,160,180,
@@ -553,40 +584,11 @@ export const DEFAULT_COLORMAPS = {
553
584
  },
554
585
  },
555
586
  },
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
587
  "ehi" : {
577
- type: "fill",
578
- gridded: false,
579
- interpolationType: "interpolate",
580
588
  units : {
581
589
  'None' : {
582
590
  colormap : [
583
- -20, "#33007a",
584
- 0, "#dddddd",
585
- 1, "#3377cc",
586
- 2, "#ffee00",
587
- 6, "#cc0066",
588
- 8, "#8800cc",
589
- 20, "#ffbbbb",
591
+ 1, "#1fbc73", 2, "#fbfe86", 4, "#f9c22b", 6, "#e83b3b", 8, "#6e2727", 20, "#c7dcd0"
590
592
  ],
591
593
  breakpoints : [
592
594
  -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 +605,6 @@ export const DEFAULT_COLORMAPS = {
603
605
  },
604
606
  },
605
607
  "slr" : {
606
- type: "fill",
607
- gridded: false,
608
- interpolationType: "interpolate",
609
608
  units : {
610
609
  'in. Snow/in. Liquid' : {
611
610
  colormap : [
@@ -626,24 +625,10 @@ export const DEFAULT_COLORMAPS = {
626
625
  },
627
626
  },
628
627
  "2t_2" : {
629
- type: "fill",
630
- gridded: true,
631
- interpolationType: "interpolate",
632
628
  units : {
633
629
  '°F' : {
634
630
  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",
631
+ -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
632
  ],
648
633
  breakpoints: [
649
634
  -90, -88, -86, -84, -82, -80, -78, -76, -74,
@@ -660,18 +645,7 @@ export const DEFAULT_COLORMAPS = {
660
645
  },
661
646
  '°C' : {
662
647
  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",
648
+ -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
649
  ],
676
650
  breakpoints: [
677
651
  -70, -68, -66, -64, -62, -60, -58, -56, -54, -52,
@@ -684,9 +658,6 @@ export const DEFAULT_COLORMAPS = {
684
658
  },
685
659
  },
686
660
  "t_iso" : {
687
- type: "line",
688
- gridded: false,
689
- interpolationType: "interpolate",
690
661
  units : {
691
662
  '°C' : {
692
663
  colormap : [0, "#0033ff",],
@@ -695,9 +666,6 @@ export const DEFAULT_COLORMAPS = {
695
666
  },
696
667
  },
697
668
  "2d_2" : {
698
- type: "fill",
699
- gridded: false,
700
- interpolationType: "interpolate",
701
669
  units : {
702
670
  '°F' : {
703
671
  colormap : [
@@ -744,24 +712,10 @@ export const DEFAULT_COLORMAPS = {
744
712
  },
745
713
  },
746
714
  "d" : {
747
- type: "fill",
748
- gridded: false,
749
- interpolationType: "interpolate",
750
715
  units : {
751
716
  '°C' : {
752
717
  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",
718
+ -70, "#2e2230", -30, "#966c6c", 0, "#c7dcd0", 5, "#cddf6c", 10, "#1fbc73", 16, "#4d65b4", 22, "#4d9be6", 30, "#8fd3fe"
765
719
  ],
766
720
  breakpoints: [
767
721
  -70, -68, -66, -64, -62, -60, -58, -56, -54, -52,
@@ -775,22 +729,10 @@ export const DEFAULT_COLORMAPS = {
775
729
  },
776
730
  },
777
731
  "t" : {
778
- type: "fill",
779
- gridded: true,
780
- interpolationType: "interpolate",
781
732
  units : {
782
733
  '°C' : {
783
734
  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"
735
+ -50, "#fdcbb0", -30, "#fca791", -20, "#f04f77", -10, "#494a77", 0, "#4d65b5", 1, "#239064", 10, "#fac22c", 20, "#b43831", 30, "#3e3647"
794
736
  ],
795
737
  breakpoints: [
796
738
  -50, -48, -46, -44, -42, -40, -38, -36, -34,
@@ -802,19 +744,10 @@ export const DEFAULT_COLORMAPS = {
802
744
  },
803
745
  },
804
746
  "wind_speed_10" : {
805
- type: "fill",
806
- gridded: true,
807
- interpolationType: "interpolate",
808
747
  units : {
809
748
  'kts' : {
810
749
  colormap : [
811
- 5, "#dddddd",
812
- 10, "#99ccff",
813
- 15, "#0088ff",
814
- 35, "#8822ee",
815
- 50, "#ff0088",
816
- 70, "#ff8800",
817
- 120, "#ffff00"
750
+ 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
751
  ],
819
752
  breakpoints : [
820
753
  5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65,
@@ -823,13 +756,7 @@ export const DEFAULT_COLORMAPS = {
823
756
  },
824
757
  'mph' : {
825
758
  colormap : [
826
- 5, "#dddddd",
827
- 10, "#99ccff",
828
- 20, "#0088ff",
829
- 40, "#8822ee",
830
- 55, "#ff0088",
831
- 80, "#ff8800",
832
- 150, "#ffff00"
759
+ 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
760
  ],
834
761
  breakpoints : [
835
762
  5, 10, 15, 20, 25, 30, 35, 40, 45,
@@ -840,12 +767,7 @@ export const DEFAULT_COLORMAPS = {
840
767
  },
841
768
  'm/s' : {
842
769
  colormap : [
843
- 2, "#dddddd",
844
- 10, "#0088ff",
845
- 20, "#8822ee",
846
- 24, "#ff0088",
847
- 36, "#ff8800",
848
- 60, "#ffff00"
770
+ 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
771
  ],
850
772
  breakpoints : [
851
773
  2, 4, 6, 8, 10, 12, 14, 16, 18, 20,
@@ -855,13 +777,7 @@ export const DEFAULT_COLORMAPS = {
855
777
  },
856
778
  'km/h' : {
857
779
  colormap : [
858
- 10, "#dddddd",
859
- 20, "#99ccff",
860
- 35, "#0088ff",
861
- 70, "#8822ee",
862
- 90, "#ff0088",
863
- 130, "#ff8800",
864
- 220, "#ffff00"
780
+ 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
781
  ],
866
782
  breakpoints : [
867
783
  10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95,
@@ -873,22 +789,10 @@ export const DEFAULT_COLORMAPS = {
873
789
  },
874
790
  },
875
791
  "wind_speed_upper" : {
876
- type: "fill",
877
- gridded: true,
878
- interpolationType: "interpolate",
879
792
  units : {
880
793
  'kts' : {
881
794
  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"
795
+ 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
796
  ],
893
797
  breakpoints : [
894
798
  10, 20, 30, 40, 50, 60, 70, 80, 90,
@@ -898,16 +802,7 @@ export const DEFAULT_COLORMAPS = {
898
802
  },
899
803
  'mph' : {
900
804
  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"
805
+ 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
806
  ],
912
807
  breakpoints : [
913
808
  10, 25, 35, 45, 55, 70, 80, 90, 105,
@@ -917,16 +812,7 @@ export const DEFAULT_COLORMAPS = {
917
812
  },
918
813
  'm/s' : {
919
814
  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"
815
+ 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
816
  ],
931
817
  breakpoints : [
932
818
  5, 10, 15, 20, 25, 30, 36, 41, 46,
@@ -936,16 +822,7 @@ export const DEFAULT_COLORMAPS = {
936
822
  },
937
823
  'km/h' : {
938
824
  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"
825
+ 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
826
  ],
950
827
  breakpoints : [
951
828
  20, 35, 55, 75, 95, 110, 130, 150, 165,
@@ -956,22 +833,10 @@ export const DEFAULT_COLORMAPS = {
956
833
  },
957
834
  },
958
835
  "wind_speed_mid" : {
959
- type: "fill",
960
- gridded: true,
961
- interpolationType: "interpolate",
962
836
  units : {
963
837
  'kts' : {
964
838
  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"
839
+ 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
840
  ],
976
841
  breakpoints : [
977
842
  5, 10, 15, 20, 25, 30, 35, 40, 45, 50,
@@ -983,16 +848,7 @@ export const DEFAULT_COLORMAPS = {
983
848
  },
984
849
  'mph' : {
985
850
  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"
851
+ 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
852
  ],
997
853
  breakpoints : [
998
854
  5, 10, 15, 25, 30, 35, 40, 45, 50, 55,
@@ -1004,16 +860,7 @@ export const DEFAULT_COLORMAPS = {
1004
860
  },
1005
861
  'm/s' : {
1006
862
  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"
863
+ 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
864
  ],
1018
865
  breakpoints : [
1019
866
  2, 5, 8, 10, 13, 15, 18, 20, 23, 26,
@@ -1025,16 +872,7 @@ export const DEFAULT_COLORMAPS = {
1025
872
  },
1026
873
  'km/h' : {
1027
874
  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"
875
+ 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
876
  ],
1039
877
  breakpoints : [
1040
878
  10, 20, 25, 35, 45, 55, 65, 75, 85, 95,
@@ -1047,19 +885,10 @@ export const DEFAULT_COLORMAPS = {
1047
885
  },
1048
886
  },
1049
887
  "pwat_0" : {
1050
- type: "fill",
1051
- gridded: true,
1052
- interpolationType: "interpolate",
1053
888
  units : {
1054
889
  'mm' : {
1055
890
  colormap : [
1056
- 0, "#ff5500",
1057
- 10, "#ff9933",
1058
- 25, "#ffcc99",
1059
- 35, "#cc99ff",
1060
- 55, "#8866ff",
1061
- 65, "#5555ff",
1062
- 75, "#3333aa"
891
+ 0, "#966c6c", 10, "#9babb2", 25, "#c7dcd0", 35, "#239064", 55, "#323353", 65, "#4d9be6", 75, "#fdcbb0"
1063
892
  ],
1064
893
  breakpoints : [
1065
894
  1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25,
@@ -1069,13 +898,7 @@ export const DEFAULT_COLORMAPS = {
1069
898
  },
1070
899
  'in' : {
1071
900
  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"
901
+ 0, "#966c6c", 0.4, "#9babb2", 1, "#c7dcd0", 1.4, "#239064", 2.2, "#323353", 2.6, "#4d9be6", 3, "#fdcbb0"
1079
902
  ],
1080
903
  breakpoints : [
1081
904
  0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0, 2.25,
@@ -1085,9 +908,6 @@ export const DEFAULT_COLORMAPS = {
1085
908
  },
1086
909
  },
1087
910
  "thetaE" : {
1088
- type: "fill",
1089
- gridded: true,
1090
- interpolationType: "interpolate",
1091
911
  units : {
1092
912
  '°K' : {
1093
913
  colormap : [
@@ -1110,24 +930,34 @@ export const DEFAULT_COLORMAPS = {
1110
930
  },
1111
931
  },
1112
932
  },
933
+ "theta" : {
934
+ units : {
935
+ '°K' : {
936
+ colormap : [
937
+ 100, "#995522",
938
+ 190, "#ffbb77",
939
+ 230, "#99ff66",
940
+ 240, "#33cc00",
941
+ 250, "#00eeff",
942
+ 260, "#0099aa",
943
+ 270, "#8800ff",
944
+ 280, "#ff0000",
945
+ 290, "#ff0088",
946
+ 300, "#ffaaaa"
947
+ ],
948
+ breakpoints : [
949
+ 230, 235, 240, 245, 250, 255, 260, 265, 270,
950
+ 275, 280, 285, 290, 295, 300, 305, 310, 315, 320, 325, 330,
951
+ 335, 340, 345, 350, 355, 360, 365, 370
952
+ ],
953
+ },
954
+ },
955
+ },
1113
956
  "gust_0" : {
1114
- type: "fill",
1115
- gridded: true,
1116
- interpolationType: "interpolate",
1117
957
  units : {
1118
958
  'mph' : {
1119
959
  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",
960
+ 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
961
  ],
1132
962
  breakpoints : [
1133
963
  20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75,
@@ -1137,17 +967,7 @@ export const DEFAULT_COLORMAPS = {
1137
967
  },
1138
968
  'kts' : {
1139
969
  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",
970
+ 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
971
  ],
1152
972
  breakpoints : [
1153
973
  15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70,
@@ -1156,17 +976,7 @@ export const DEFAULT_COLORMAPS = {
1156
976
  },
1157
977
  'm/s' : {
1158
978
  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"
979
+ 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
980
  ],
1171
981
  breakpoints : [
1172
982
  10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32,
@@ -1176,17 +986,7 @@ export const DEFAULT_COLORMAPS = {
1176
986
  },
1177
987
  'km/h' : {
1178
988
  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"
989
+ 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
990
  ],
1191
991
  breakpoints : [
1192
992
  30, 40, 50, 55, 65, 70, 80, 90, 95, 105, 115, 120,
@@ -1197,9 +997,6 @@ export const DEFAULT_COLORMAPS = {
1197
997
  },
1198
998
  },
1199
999
  "ltng" : {
1200
- type: "fill",
1201
- gridded: false,
1202
- interpolationType: "interpolate",
1203
1000
  units : {
1204
1001
  'flashes km⁻²/5 min' : {
1205
1002
  colormap : [
@@ -1220,18 +1017,10 @@ export const DEFAULT_COLORMAPS = {
1220
1017
  },
1221
1018
  },
1222
1019
  "cape_0" : {
1223
- type: "fill",
1224
- gridded: true,
1225
- interpolationType: "interpolate",
1226
1020
  units : {
1227
1021
  'J kg⁻¹' : {
1228
1022
  colormap : [
1229
- 100, "#4dbb6a",
1230
- 250, "#4dbb6a",
1231
- 1000, "#ffca3a",
1232
- 2000, "#ff9a3c",
1233
- 3000, "#ff5e7d",
1234
- 6000, "#9c3fe4"
1023
+ 100, "#694f62", 1000, "#0c8a8f", 2000, "#f9c22b", 3000, "#fb6b1d", 4000, "#ae2334", 5000, "#831c5d", 6000, "#f68181", 7000, "#fdcbb0"
1235
1024
  ],
1236
1025
  breakpoints : [
1237
1026
  100, 250, 500, 750, 1000, 1250, 1500, 1750, 2000, 2250,
@@ -1242,127 +1031,105 @@ export const DEFAULT_COLORMAPS = {
1242
1031
  },
1243
1032
  },
1244
1033
  },
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",
1034
+ "vapor_pressure_deficit":{
1269
1035
  units : {
1270
- 'None' : {
1036
+ 'hPa' : {
1271
1037
  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"
1038
+ 0, "#0b2c3d", // deep wet blue
1039
+ 2, "#10384a",
1040
+ 4, "#144457",
1041
+ 6, "#185064",
1042
+ 8, "#1c5c70",
1043
+ 10, "#20787a",
1044
+ 12, "#259685",
1045
+ 14, "#2db08f",
1046
+ 15, "#3fcf6e", // greens END here
1047
+
1048
+ 16, "#7fda7a", // start drying - lighter green
1049
+ 18, "#b7e17b",
1050
+ 20, "#d6e876",
1051
+ 22, "#efe47a",
1052
+ 24, "#f3d06c",
1053
+ 26, "#f0b85c",
1054
+ 28, "#e9a14e",
1055
+ 30, "#e29147",
1056
+
1057
+ 32, "#edc48a", // 2-color gradient start
1058
+ 34, "#f2d7b0",
1059
+ 36, "#f6e7cf",
1060
+ 38, "#f9f1e5",
1061
+ 40, "#fcfaf5" // lightest dry
1062
+
1281
1063
  ],
1064
+
1282
1065
  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
1066
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
1067
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
1068
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
1069
+ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
1070
+ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
1071
+ 51, 52, 53, 54, 55, 56, 57, 58, 59, 60
1285
1072
  ],
1073
+
1286
1074
  },
1287
1075
  },
1288
1076
  },
1289
- "supercellComposite" : {
1290
- type: "fill",
1291
- gridded: true,
1292
- interpolationType: "interpolate",
1077
+ "ncape" : {
1293
1078
  units : {
1294
- 'None' : {
1079
+ '10⁻² J kg⁻¹' : {
1295
1080
  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"
1081
+ 0.75, "#694f62",
1082
+ 7.5, "#0c8a8f",
1083
+ 15, "#f9c22b",
1084
+ 22.5, "#fb6b1d",
1085
+ 30, "#ae2334",
1086
+ 37.5, "#831c5d",
1087
+ 45, "#f68181",
1088
+ 52.5, "#fdcbb0"
1306
1089
  ],
1090
+
1307
1091
  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
1092
+ 0.75, 1.875, 3.75, 5.625, 7.5,
1093
+ 9.375, 11.25, 13.125, 15, 16.875,
1094
+ 18.75, 20.625, 22.5, 24.375, 26.25,
1095
+ 28.125, 30, 31.875, 33.75, 35.625,
1096
+ 37.5, 39.375, 41.25, 43.125, 45,
1097
+ 46.875, 48.75, 50.625, 52.5, 54.375,
1098
+ 56.25, 58.125, 60, 61.875, 63.75,
1099
+ 65.625, 67.5, 69.375, 71.25, 73.125,
1100
+ 75
1310
1101
  ],
1102
+
1311
1103
  },
1312
1104
  },
1313
1105
  },
1314
- "tts" : {
1315
- type: "fill",
1316
- gridded: true,
1317
- interpolationType: "interpolate",
1106
+ "cape_0-3000" : {
1318
1107
  units : {
1319
- 'None' : {
1108
+ 'J kg⁻¹' : {
1320
1109
  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"
1110
+ 5, "#694f62", 50, "#0c8a8f", 100, "#f9c22c", 150, "#fb6b1d", 200, "#ae2334", 300, "#831c5d", 450, "#f68181"
1330
1111
  ],
1331
1112
  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
1113
+ 5, 25, 50,75,100,125,150,175,200,225,250,275,300,325,350,375,
1114
+ 400,425,450,475,500
1334
1115
  ],
1335
1116
  },
1336
1117
  },
1337
1118
  },
1338
- "tehi" : {
1339
- type: "fill",
1340
- gridded: true,
1341
- interpolationType: "interpolate",
1119
+ "severeParams" : {
1342
1120
  units : {
1343
1121
  'None' : {
1344
1122
  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"
1123
+ 0.1, "#bfbfbf", 3, "#b26263", 4, "#ea5035", 5, "#f67e4a", 6, "#8fd3ff", 9, "#a985f3", 20, "#45293f", 40, "#cf07a4"
1354
1124
  ],
1355
1125
  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
1126
+ 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,
1127
+ 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
1128
  ],
1359
1129
  },
1360
1130
  },
1361
1131
  },
1362
1132
  "lftx_0" : {
1363
- type: "fill",
1364
- gridded: true,
1365
- interpolationType: "interpolate",
1366
1133
  units : {
1367
1134
  '°C' : {
1368
1135
  colormap : [
@@ -1388,20 +1155,10 @@ export const DEFAULT_COLORMAPS = {
1388
1155
  },
1389
1156
  },
1390
1157
  "lapse_rates_500700" : {
1391
- type: "fill",
1392
- gridded: true,
1393
- interpolationType: "interpolate",
1394
1158
  units : {
1395
1159
  '°C km⁻¹' : {
1396
1160
  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"
1161
+ 0, "#3e3646", 5, "#ac947a", 6, "#fbb955", 7, "#ea4f37", 8, "#b33831", 9, "#7a3045", 10, "#c7dcd0", 15, "#ebebeb"
1405
1162
  ],
1406
1163
  breakpoints : [
1407
1164
  1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15
@@ -1410,18 +1167,10 @@ export const DEFAULT_COLORMAPS = {
1410
1167
  },
1411
1168
  },
1412
1169
  "lcl" : {
1413
- type: "fill",
1414
- gridded: true,
1415
- interpolationType: "interpolate",
1416
1170
  units : {
1417
1171
  'm' : {
1418
1172
  colormap : [
1419
- 100, "#cccccc",
1420
- 1000, "#ffcc66",
1421
- 2000, "#ff6633",
1422
- 3000, "#cc0033",
1423
- 4000, "#660033",
1424
- 9000, "#ccccff"
1173
+ 0, "#7f708a", 500, "#8fd3fe", 750, "#cddf6c", 1000, "#fbb955", 2000, "#cd683e", 3000, "#7a3045", 4000, "#323353", 10000, "#c7dcd0",
1425
1174
  ],
1426
1175
  breakpoints : [
1427
1176
  100, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1100, 1200,
@@ -1436,12 +1185,7 @@ export const DEFAULT_COLORMAPS = {
1436
1185
  },
1437
1186
  'km' : {
1438
1187
  colormap : [
1439
- 0.1, "#cccccc",
1440
- 1, "#ffcc66",
1441
- 2, "#ff6633",
1442
- 3, "#cc0033",
1443
- 4, "#660033",
1444
- 9, "#ccccff"
1188
+ 0, "#7f708a", 0.5, "#8fd3fe", 0.75, "#cddf6c", 1, "#fbb955", 2, "#cd683e", 3, "#7a3045", 4, "#323353", 10, "#c7dcd0"
1445
1189
  ],
1446
1190
  breakpoints : [
1447
1191
  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 +1199,7 @@ export const DEFAULT_COLORMAPS = {
1455
1199
  },
1456
1200
  'ft' : {
1457
1201
  colormap : [
1458
- 500, "#cccccc",
1459
- 3000, "#ffcc66",
1460
- 6500, "#ff6633",
1461
- 10000, "#cc0033",
1462
- 13000, "#660033",
1463
- 30000, "#ccccff"
1202
+ 0, "#7f708a", 1500, "#8fd3fe", 2500, "#cddf6c", 3000, "#fbb955", 6500, "#cd683e", 10000, "#7a3045", 13000, "#323353", 33000, "#c7dcd0"
1464
1203
  ],
1465
1204
  breakpoints : [
1466
1205
  500, 1000, 1500, 2000, 2500, 3000, 3500, 4000, 4500, 5000, 5500, 6000,
@@ -1473,165 +1212,498 @@ export const DEFAULT_COLORMAPS = {
1473
1212
  },
1474
1213
  },
1475
1214
  },
1476
- "cin_0" : {
1477
- type: "fill",
1478
- gridded: true,
1479
- interpolationType: "interpolate",
1480
- units: {
1481
- "J kg⁻¹": {
1215
+ "hainesindex" : {
1216
+ units : {
1217
+ 'None' : {
1482
1218
  colormap : [
1483
- -1000, "#cccccc",
1484
- -600, "#ff9900",
1485
- -400, "#ff99ff",
1486
- -300, "#cc66ff",
1487
- -200, "#cc6699",
1488
- -50, "#ffdd00",
1219
+ 3, "#bfbfbf",
1220
+ 3.5, "#b26263",
1221
+ 4, "#ea5035",
1222
+ 4.5, "#f67e4a",
1223
+ 5, "#8fd3ff",
1224
+ 5.5, "#a985f3",
1225
+ 6, "#cf07a4"
1489
1226
  ],
1490
1227
  breakpoints : [
1491
- -1000, -950, -900, -850, -800, -750, -700, -650, -600, -550, -500,
1492
- -450, -400, -350, -300, -250, -200, -150, -100, -50
1228
+ 3, 3.5, 4, 4.5, 5, 5.5, 6,
1493
1229
  ],
1494
1230
  },
1495
1231
  },
1496
1232
  },
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",
1233
+ 'fosberg':{
1234
+ "units":{
1235
+ "None":{
1236
+ "colormap": [
1237
+ 6.67, "#b6b6b6",
1238
+ 13.33, "#727272",
1239
+ 20, "#d9ff00",
1240
+ 26.67, "#c7cc00",
1241
+ 33.33, "#758600",
1242
+ 40, "#ff0000",
1243
+ 46.67, "#c40000",
1244
+ 53.33, "#640019",
1245
+ 60, "#740047",
1246
+ 66.67, "#ff00e0",
1247
+ 73.33, "#ff84f5",
1248
+ 80, "#ffbcfd",
1249
+ 86.67, "#ffffff",
1250
+ 93.33, "#d2fffa",
1251
+ 100, "#00fbff"
1252
+ ],
1253
+ breakpoints: [
1254
+ 0, 0.67, 1.33, 2, 2.67, 3.33, 4, 4.67, 5.33, 6,
1255
+ 6.67, 7.33, 8, 8.67, 9.33, 10, 10.67, 11.33, 12, 12.67,
1256
+ 13.33, 14, 14.67, 15.33, 16, 16.67, 17.33, 18, 18.67, 19.33,
1257
+ 20, 20.67, 21.33, 22, 22.67, 23.33, 24, 24.67, 25.33, 26,
1258
+ 26.67, 27.33, 28, 28.67, 29.33, 30, 30.67, 31.33, 32, 32.67,
1259
+ 33.33, 34, 34.67, 35.33, 36, 36.67, 37.33, 38, 38.67, 39.33,
1260
+ 40, 40.67, 41.33, 42, 42.67, 43.33, 44, 44.67, 45.33, 46,
1261
+ 46.67, 47.33, 48, 48.67, 49.33, 50, 50.67, 51.33, 52, 52.67,
1262
+ 53.33, 54, 54.67, 55.33, 56, 56.67, 57.33, 58, 58.67, 59.33,
1263
+ 60, 60.67, 61.33, 62, 62.67, 63.33, 64, 64.67, 65.33, 66,
1264
+ 66.67, 67.33, 68, 68.67, 69.33, 70, 70.67, 71.33, 72, 72.67,
1265
+ 73.33, 74, 74.67, 75.33, 76, 76.67, 77.33, 78, 78.67, 79.33,
1266
+ 80, 80.67, 81.33, 82, 82.67, 83.33, 84, 84.67, 85.33, 86,
1267
+ 86.67, 87.33, 88, 88.67, 89.33, 90, 90.67, 91.33, 92, 92.67,
1268
+ 93.33, 94, 94.67, 95.33, 96, 96.67, 97.33, 98, 98.67, 99.33,
1269
+ 100
1270
+ ],
1271
+ }
1272
+ }
1273
+ },
1274
+ "smoke" : {
1275
+ units : {
1276
+ 'kg m⁻²' : {
1277
+ colormap : [
1278
+ 0, "#aaaaaa",
1279
+ 5, "#222222",
1280
+ 20, "#bb2323",
1281
+ 40, "#fb2311",
1282
+ 60, "#fa9a11",
1283
+ 80, "#aa00aa",
1284
+ 100, "#fc08bb",
1285
+ 200, "#6e3e0c",
1286
+ 400, "#000000",
1287
+ 800, "#ffffff",
1509
1288
  ],
1510
1289
  breakpoints : [
1511
- 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55,
1512
- 60, 65, 70, 75, 80, 85, 90, 95, 100
1290
+ 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95,
1291
+ 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195,
1292
+ 200, 205, 210, 215, 220, 225, 230, 235, 240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295,
1293
+ 300, 305, 310, 315, 320, 325, 330, 335, 340, 345, 350, 355, 360, 365, 370, 375, 380, 385, 390, 395,
1294
+ 400, 405, 410, 415, 420, 425, 430, 435, 440, 445, 450, 455, 460, 465, 470, 475, 480, 485, 490, 495,
1295
+ 500, 505, 510, 515, 520, 525, 530, 535, 540, 545, 550, 555, 560, 565, 570, 575, 580, 585, 590, 595,
1296
+ 600, 605, 610, 615, 620, 625, 630, 635, 640, 645, 650, 655, 660, 665, 670, 675, 680, 685, 690, 695,
1297
+ 700, 705, 710, 715, 720, 725, 730, 735, 740, 745, 750, 755, 760, 765, 770, 775, 780, 785, 790, 795,
1298
+ 800
1513
1299
  ],
1514
1300
  },
1515
1301
  },
1516
1302
  },
1517
- "2r_2" : {
1518
- type: "fill",
1519
- gridded: true,
1520
- interpolationType: "interpolate",
1521
- units: {
1522
- "%": {
1303
+ "sbel" : {
1304
+ units : {
1305
+ 'm' : {
1523
1306
  colormap : [
1524
- 0, "#444444",
1525
- 25, "#ff6655",
1526
- 50, "#ffcc00",
1527
- 75, "#33cc77",
1528
- 100, "#3399ff",
1307
+ 0, "#7f708a", 4000, "#8fd3fe", 7000, "#cddf6c", 10000, "#fbb955", 12000, "#cd683e", 15000, "#7a3045", 17500, "#323353", 20000, "#c7dcd0",
1529
1308
  ],
1530
1309
  breakpoints : [
1531
- 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50,
1532
- 55, 60, 65, 70, 75, 80, 85, 90, 95, 100
1310
+ 0, 500, 1000, 1500, 2000, 2500, 3000, 3500, 4000, 4500,
1311
+ 5000, 5500, 6000, 6500, 7000, 7500, 8000, 8500, 9000, 9500,
1312
+ 10000, 10500, 11000, 11500, 12000, 12500, 13000, 13500, 14000, 14500,
1313
+ 15000, 15500, 16000, 16500, 17000, 17500, 18000, 18500, 19000, 19500,
1314
+ 20000
1533
1315
  ],
1534
1316
  },
1535
1317
  },
1536
1318
  },
1537
- "r" : {
1538
- type: "fill",
1539
- gridded: false,
1540
- interpolationType: "interpolate",
1541
- units: {
1542
- "%": {
1319
+ "sblfc" : {
1320
+ units : {
1321
+ 'm' : {
1543
1322
  colormap : [
1544
- 0, "#444444",
1545
- 25, "#ff6655",
1546
- 50, "#ffcc00",
1547
- 75, "#33cc77",
1548
- 100, "#3399ff",
1323
+ 0, "#7f708a", 500, "#8fd3fe", 750, "#cddf6c", 1000, "#fbb955", 2000, "#cd683e", 3000, "#7a3045", 4000, "#323353", 10000, "#c7dcd0",
1549
1324
  ],
1550
1325
  breakpoints : [
1551
- 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50,
1552
- 55, 60, 65, 70, 75, 80, 85, 90, 95, 100
1326
+ 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1100, 1200,
1327
+ 1300, 1400, 1500, 1600, 1700, 1800, 1900, 2000, 2100, 2200, 2300, 2400, 2500,
1328
+ 2600, 2700, 2800, 2900, 3000, 3100, 3200, 3300, 3400, 3500, 3600, 3700, 3800,
1329
+ 3900, 4000, 4100, 4200, 4300, 4400, 4500, 4600, 4700, 4800, 4900, 5000, 5100,
1330
+ 5200, 5300, 5400, 5500, 5600, 5700, 5800, 5900, 6000, 6100, 6200, 6300, 6400,
1331
+ 6500, 6600, 6700, 6800, 6900, 7000, 7100, 7200, 7300, 7400, 7500, 7600, 7700,
1332
+ 7800, 7900, 8000, 8100, 8200, 8300, 8400, 8500, 8600, 8700, 8800, 8900, 9000,
1333
+ 9100, 9200, 9300, 9400, 9500, 9600, 9700, 9800, 9900, 10000
1553
1334
  ],
1554
1335
  },
1555
- },
1556
- },
1557
- 'mean700300mbRH': {
1558
- type: "fill",
1559
- gridded: false,
1560
- interpolationType: "interpolate",
1561
- units: {
1562
- "%": {
1336
+ 'km' : {
1563
1337
  colormap : [
1564
- 0, "#444444",
1565
- 25, "#ff6655",
1566
- 50, "#ffcc00",
1567
- 75, "#33cc77",
1568
- 100, "#3399ff",
1338
+ 0, "#7f708a", 0.5, "#8fd3fe", 0.75, "#cddf6c", 1, "#fbb955", 2, "#cd683e", 3, "#7a3045", 4, "#323353", 10, "#c7dcd0"
1569
1339
  ],
1570
1340
  breakpoints : [
1571
- 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55,
1572
- 60, 65, 70, 75, 80, 85, 90, 95, 100
1341
+ 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,
1342
+ 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,
1343
+ 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,
1344
+ 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,
1345
+ 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,
1346
+ 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,
1347
+ 9.4, 9.5, 9.6, 9.7, 9.8, 9.9, 10.0
1573
1348
  ],
1574
1349
  },
1575
- },
1576
- },
1577
- "fgen" : {
1578
- type: "fill",
1579
- gridded: false,
1580
- interpolationType: "interpolate",
1581
- units: {
1582
- "°C/100km/3hr": {
1350
+ 'ft' : {
1583
1351
  colormap : [
1584
- 1, "#cc66ff",
1585
- 10, "#ff66ff",
1586
- 20, "#3333ff",
1352
+ 0, "#7f708a", 1500, "#8fd3fe", 2500, "#cddf6c", 3000, "#fbb955", 6500, "#cd683e", 10000, "#7a3045", 13000, "#323353", 33000, "#c7dcd0"
1587
1353
  ],
1588
1354
  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
1355
+ 500, 1000, 1500, 2000, 2500, 3000, 3500, 4000, 4500, 5000, 5500, 6000,
1356
+ 6500, 7000, 7500, 8000, 8500, 9000, 9500, 10000, 10500, 11000, 11500, 12000,
1357
+ 12500, 13000, 13500, 14000, 14500, 15000, 15500, 16000, 16500, 17000, 17500,
1358
+ 18000, 18500, 19000, 19500, 20000, 20500, 21000, 21500, 22000, 22500, 23000,
1359
+ 23500, 24000, 24500, 25000, 25500, 26000, 26500, 27000, 27500, 28000, 28500,
1360
+ 29000, 29500, 30000
1591
1361
  ],
1592
1362
  },
1593
1363
  },
1594
1364
  },
1595
- "tadv": {
1596
- "type": "fill",
1597
- "gridded": false,
1598
- "interpolationType": "interpolate",
1365
+ "dgzdepth" : {
1599
1366
  "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": [
1618
- -20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6,
1619
- -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
1620
- 16, 17, 18, 19, 20
1621
- ]
1367
+ "m": {
1368
+ "colormap": [
1369
+ 0, "#986D4D",
1370
+ 500, "#7D7D7D",
1371
+ 900, "#C8C8C8",
1372
+ 1000, "#30C830",
1373
+ 1500, "#093209",
1374
+ 2000, "#206E68",
1375
+ 3000, "#29C4CC",
1376
+ 4000, "#581380",
1377
+ 5000, "#CF1968",
1378
+ ],
1379
+ "breakpoints": [
1380
+ 0, 100, 200, 300, 400, 500, 600, 700, 800, 900,
1381
+ 1000, 1100, 1200, 1300, 1400, 1500, 1600, 1700, 1800, 1900,
1382
+ 2000, 2100, 2200, 2300, 2400, 2500, 2600, 2700, 2800, 2900,
1383
+ 3000, 3100, 3200, 3300, 3400, 3500, 3600, 3700, 3800, 3900,
1384
+ 4000, 4100, 4200, 4300, 4400, 4500, 4600, 4700, 4800, 4900,
1385
+ 5000, 5100, 5200, 5300, 5400, 5500, 5600, 5700, 5800, 5900,
1386
+ 6000
1387
+ ]
1622
1388
  }
1623
1389
  }
1624
- },
1625
- "ivt": {
1626
- "type": "fill",
1627
- "gridded": false,
1628
- "interpolationType": "interpolate",
1390
+ },
1391
+ "pbl" : {
1629
1392
  "units": {
1630
- "kg m⁻¹ s⁻¹": {
1631
- "colormap": [
1632
- 250, "#ffbb00",
1633
- 800, "#ff6666",
1634
- 1600, "#9933cc"
1393
+ "m": {
1394
+ "colormap": [
1395
+ 0, "#986D4D",
1396
+ 500, "#7D7D7D",
1397
+ 900, "#C8C8C8",
1398
+ 1000, "#30C830",
1399
+ 1500, "#093209",
1400
+ 2000, "#206E68",
1401
+ 3000, "#29C4CC",
1402
+ 4000, "#581380",
1403
+ 5000, "#CF1968",
1404
+ ],
1405
+ "breakpoints": [
1406
+ 0, 100, 200, 300, 400, 500, 600, 700, 800, 900,
1407
+ 1000, 1100, 1200, 1300, 1400, 1500, 1600, 1700, 1800, 1900,
1408
+ 2000, 2100, 2200, 2300, 2400, 2500, 2600, 2700, 2800, 2900,
1409
+ 3000, 3100, 3200, 3300, 3400, 3500, 3600, 3700, 3800, 3900,
1410
+ 4000, 4100, 4200, 4300, 4400, 4500, 4600, 4700, 4800, 4900,
1411
+ 5000, 5100, 5200, 5300, 5400, 5500, 5600, 5700, 5800, 5900,
1412
+ 6000
1413
+ ]
1414
+ }
1415
+ }
1416
+ },
1417
+ "mstrtransport_500" : {
1418
+ "units": {
1419
+ "kg m⁻¹ s⁻¹": {
1420
+ "colormap": [
1421
+ 0, "#986D4D",
1422
+ 2, "#7D7D7D",
1423
+ 4, "#C8C8C8",
1424
+ 5, "#30C830",
1425
+ 8, "#093209",
1426
+ 12, "#206E68",
1427
+ 16, "#29C4CC",
1428
+ 20, "#581380",
1429
+ 25, "#CF1968",
1430
+ ],
1431
+ "breakpoints": [
1432
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
1433
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
1434
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
1435
+ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40
1436
+ ]
1437
+ }
1438
+ }
1439
+ },
1440
+ "mstrtransport_700" : {
1441
+ "units": {
1442
+ "kg m⁻¹ s⁻¹": {
1443
+ "colormap": [
1444
+ 0, "#986D4D",
1445
+ 3, "#7D7D7D",
1446
+ 6, "#C8C8C8",
1447
+ 8, "#30C830",
1448
+ 10, "#093209",
1449
+ 14, "#206E68",
1450
+ 18, "#29C4CC",
1451
+ 22, "#581380",
1452
+ 30, "#CF1968",
1453
+ ],
1454
+ "breakpoints": [
1455
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
1456
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
1457
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
1458
+ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
1459
+ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50
1460
+ ]
1461
+ }
1462
+ }
1463
+ },
1464
+ "mstrtransport_850" : {
1465
+ "units": {
1466
+ "kg m⁻¹ s⁻¹": {
1467
+ "colormap": [
1468
+ 0, "#986D4D",
1469
+ 5, "#7D7D7D",
1470
+ 9, "#C8C8C8",
1471
+ 10, "#30C830",
1472
+ 15, "#093209",
1473
+ 20, "#206E68",
1474
+ 25, "#29C4CC",
1475
+ 30, "#581380",
1476
+ 40, "#CF1968",
1477
+ ],
1478
+ "breakpoints": [
1479
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
1480
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
1481
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
1482
+ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
1483
+ 41, 42, 43, 44, 45, 46, 47, 48, 49,
1484
+ 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60
1485
+ ]
1486
+ }
1487
+ }
1488
+ },
1489
+ "mstrtransport_925" : {
1490
+ "units": {
1491
+ "kg m⁻¹ s⁻¹": {
1492
+ "colormap": [
1493
+ 0, "#986D4D",
1494
+ 5, "#7D7D7D",
1495
+ 9, "#C8C8C8",
1496
+ 10, "#30C830",
1497
+ 15, "#093209",
1498
+ 20, "#206E68",
1499
+ 30, "#29C4CC",
1500
+ 40, "#581380",
1501
+ 50, "#CF1968",
1502
+ ],
1503
+ "breakpoints": [
1504
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
1505
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
1506
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
1507
+ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
1508
+ 41, 42, 43, 44, 45, 46, 47, 48, 49,
1509
+ 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60
1510
+ ]
1511
+ }
1512
+ }
1513
+ },
1514
+ "sfcmixratio" : {
1515
+ "units": {
1516
+ "g/kg": {
1517
+ "colormap": [
1518
+ 0, "#986D4D",
1519
+ 4, "#7D7D7D",
1520
+ 8, "#C8C8C8",
1521
+ 9, "#30C830",
1522
+ 10, "#093209",
1523
+ 13, "#206E68",
1524
+ 17, "#29C4CC",
1525
+ 20, "#581380",
1526
+ 25, "#CF1968",
1527
+ ],
1528
+ "breakpoints": [
1529
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
1530
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
1531
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
1532
+ 31, 32, 33, 34, 35,
1533
+ ]
1534
+ }
1535
+ }
1536
+ },
1537
+ 'isentropicpres':{
1538
+ units : {
1539
+ 'hPa' : {
1540
+ colormap : [
1541
+ 100, "#cc3333",
1542
+ 150, "#ff9933",
1543
+ 210, "#ffdd00",
1544
+ 375, "#33cc66",
1545
+ 390, "#3366cc",
1546
+ 520, "#4d88ff",
1547
+ 590, "#66e6ff",
1548
+ 675, "#ff99ff",
1549
+ 800, "#cc33cc",
1550
+ ],
1551
+ breakpoints : [
1552
+ 90, 100, 115, 130, 145, 160, 175, 190, 205, 220, 235, 250, 265, 280, 295,
1553
+ 310, 325, 340, 355, 370, 385, 400,
1554
+ 415, 430, 445, 460, 475, 490, 505, 520, 535, 550, 565,
1555
+ 580, 595, 610, 625, 640, 655, 670, 685, 700,
1556
+ 715, 730, 745, 760, 775, 790, 800, 810,
1557
+ ],
1558
+ }
1559
+ }
1560
+ },
1561
+ 'isentropicpresadv':{
1562
+ "units": {
1563
+ "hPa/H": {
1564
+ "colormap": [
1565
+ -100, "#6699ff",
1566
+ -50, "#ccffff",
1567
+ -40, "#ff99ff",
1568
+ -30, "#ff66cc",
1569
+ -20, "#cc66ff",
1570
+ -10, "#66ccff",
1571
+ -5, "#aebdc2",
1572
+ 0, "#808080",
1573
+ 5, "#bcb6a9",
1574
+ 10, "#ffcc66",
1575
+ 20, "#ff9933",
1576
+ 30, "#ff3333",
1577
+ 40, "#cccc00",
1578
+ 50, "#ddcc66",
1579
+ 100, "#cc9933"
1580
+ ],
1581
+ "breakpoints": [-100, -95, -90, -85, -80, -75, -70, -65, -60, -55, -50,
1582
+ -45, -40, -35, -30, -25, -20, -15, -10, -5,0,
1583
+ 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55,
1584
+ 60, 65, 70, 75, 80, 85, 90, 95, 100]
1585
+ }
1586
+ }
1587
+ },
1588
+ 'epv': {
1589
+ units: {
1590
+ "PVU": {
1591
+ colormap : [
1592
+ -15, "#ff00ee" ,
1593
+ -7, "#aa0000",
1594
+ -4, "#ff6600",
1595
+ -2, "#fffb00",
1596
+ -1.99, "#5e888a",
1597
+ -1, "#939393",
1598
+ 0, "#aaaaaa",
1599
+ 1, "#939393",
1600
+ 1.99, "#5e888a",
1601
+ 2, "#fffb00",
1602
+ 4, "#ff6600",
1603
+ 7, "#aa0000",
1604
+ 15, "#ff00ee"
1605
+ ],
1606
+ breakpoints : [
1607
+ -20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10,
1608
+ -9, -8, -7, -6, -5, -4, -3, -2, -1, 0,
1609
+ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
1610
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20
1611
+ ],
1612
+ },
1613
+ },
1614
+ },
1615
+ "cin_0" : {
1616
+ units: {
1617
+ "J kg⁻¹": {
1618
+ colormap : [
1619
+ -1000, "#c7dcd0", -400, "#9babb2", -200, "#7a3045", -100, "#b33831", -50, "#f57d4a", -5, "#625565"
1620
+ ],
1621
+ breakpoints : [
1622
+ -1000, -950, -900, -850, -800, -750, -700, -650, -600, -550, -500,
1623
+ -450, -400, -350, -300, -250, -200, -150, -100, -50
1624
+ ],
1625
+ },
1626
+ },
1627
+ },
1628
+ "dgzrh" : {
1629
+ units: {
1630
+ "%": {
1631
+ colormap : [
1632
+ 0, "#5555dd",
1633
+ 25, "#ff9999",
1634
+ 50, "#ffcc33",
1635
+ 75, "#33cc66",
1636
+ 100, "#3399ff",
1637
+ ],
1638
+ breakpoints : [
1639
+ 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55,
1640
+ 60, 65, 70, 75, 80, 85, 90, 95, 100
1641
+ ],
1642
+ },
1643
+ },
1644
+ },
1645
+ "2r_2" : {
1646
+ units: {
1647
+ "%": {
1648
+ colormap : [
1649
+ 0, "#fbb955", 10, "#cd683e", 20, "#9e4539", 25, "#7f708a", 50, "#c7dcd0", 55, "#cddf6c", 75, "#1fbc73", 85, "#0c8a8f", 90, "#4d9be6", 100, "#8fd3fe"
1650
+ ],
1651
+ breakpoints : [
1652
+ 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50,
1653
+ 55, 60, 65, 70, 75, 80, 85, 90, 95, 100
1654
+ ],
1655
+ },
1656
+ },
1657
+ },
1658
+ "r" : {
1659
+ units: {
1660
+ "%": {
1661
+ colormap : [
1662
+ 0, "#fbb955", 10, "#cd683e", 20, "#9e4539", 25, "#7f708a", 50, "#c7dcd0", 55, "#cddf6c", 75, "#1fbc73", 85, "#0c8a8f", 90, "#4d9be6", 100, "#8fd3fe"
1663
+ ],
1664
+ breakpoints : [
1665
+ 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50,
1666
+ 55, 60, 65, 70, 75, 80, 85, 90, 95, 100
1667
+ ],
1668
+ },
1669
+ },
1670
+ },
1671
+ "fgen" : {
1672
+ units: {
1673
+ "°C/100km/3hr": {
1674
+ colormap : [
1675
+ 3, "#cc66ff",
1676
+ 10, "#ff66ff",
1677
+ 40, "#3333ff",
1678
+ ],
1679
+ breakpoints : [
1680
+ 1,3,5,7,9,11,12,13,15,17,19,21,23,25,27,29,
1681
+ 31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61
1682
+ ],
1683
+ },
1684
+ },
1685
+ },
1686
+ "tadv": {
1687
+ "units": {
1688
+ "°C h⁻¹": {
1689
+ "colormap": [
1690
+ -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"
1691
+ ],
1692
+ "breakpoints": [
1693
+ -20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6,
1694
+ -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
1695
+ 16, 17, 18, 19, 20
1696
+ ]
1697
+ }
1698
+ }
1699
+ },
1700
+ "ivt": {
1701
+ "units": {
1702
+ "kg m⁻¹ s⁻¹": {
1703
+ "colormap": [
1704
+ 250, "#ffbb00",
1705
+ 800, "#ff6666",
1706
+ 1600, "#9933cc"
1635
1707
  ],
1636
1708
  "breakpoints": [
1637
1709
  250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 800, 850, 900,
@@ -1642,9 +1714,6 @@ export const DEFAULT_COLORMAPS = {
1642
1714
  }
1643
1715
  },
1644
1716
  "dgzvvel": {
1645
- "type": "fill",
1646
- "gridded": false,
1647
- "interpolationType": "interpolate",
1648
1717
  "units": {
1649
1718
  "Pa/s": {
1650
1719
  "colormap": [
@@ -1665,9 +1734,6 @@ export const DEFAULT_COLORMAPS = {
1665
1734
  }
1666
1735
  },
1667
1736
  "w": {
1668
- "type": "fill",
1669
- "gridded": false,
1670
- "interpolationType": "interpolate",
1671
1737
  "units": {
1672
1738
  "Pa/s": {
1673
1739
  "colormap": [
@@ -1689,24 +1755,34 @@ export const DEFAULT_COLORMAPS = {
1689
1755
  }
1690
1756
  }
1691
1757
  },
1692
- "crain": {
1693
- "type": "fill",
1694
- "gridded": false,
1695
- "interpolationType": "interpolate",
1758
+ "omega": {
1696
1759
  "units": {
1697
- "None": {
1760
+ "µb/s": {
1698
1761
  "colormap": [
1699
- 0, "#000000",
1700
- 1, "#66cc66"
1762
+ -15.0, "#00ccff",
1763
+ -5.0, "#3333aa",
1764
+ -3.5, "#ff66cc",
1765
+ -2.0, "#ff7777",
1766
+ -.5, "#ffee00",
1701
1767
  ],
1702
- "breakpoints": []
1768
+ "breakpoints": [
1769
+ 0
1770
+ ]
1771
+ }
1703
1772
  }
1773
+ },
1774
+ "crain": {
1775
+ "units": {
1776
+ "None": {
1777
+ "colormap": [
1778
+ 0, "#000000",
1779
+ 1, "#66cc66"
1780
+ ],
1781
+ "breakpoints": []
1782
+ }
1704
1783
  }
1705
1784
  },
1706
1785
  "csnow": {
1707
- "type": "fill",
1708
- "gridded": false,
1709
- "interpolationType": "interpolate",
1710
1786
  "units": {
1711
1787
  "None": {
1712
1788
  "colormap": [
@@ -1718,9 +1794,6 @@ export const DEFAULT_COLORMAPS = {
1718
1794
  }
1719
1795
  },
1720
1796
  "cicep": {
1721
- "type": "fill",
1722
- "gridded": false,
1723
- "interpolationType": "interpolate",
1724
1797
  "units": {
1725
1798
  "None": {
1726
1799
  "colormap": [
@@ -1732,9 +1805,6 @@ export const DEFAULT_COLORMAPS = {
1732
1805
  }
1733
1806
  },
1734
1807
  "cfrzr": {
1735
- "type": "fill",
1736
- "gridded": false,
1737
- "interpolationType": "interpolate",
1738
1808
  "units": {
1739
1809
  "None": {
1740
1810
  "colormap": [
@@ -1746,9 +1816,6 @@ export const DEFAULT_COLORMAPS = {
1746
1816
  }
1747
1817
  },
1748
1818
  "prate": {
1749
- "type": "fill",
1750
- "gridded": false,
1751
- "interpolationType": "interpolate",
1752
1819
  "units": {
1753
1820
  "in/hr": {
1754
1821
  "colormap": [
@@ -1778,11 +1845,8 @@ export const DEFAULT_COLORMAPS = {
1778
1845
  }
1779
1846
  },
1780
1847
  "frzrRate": {
1781
- "type": "fill",
1782
- "gridded": false,
1783
- "interpolationType": "interpolate",
1784
1848
  "units": {
1785
- "in/hr [QPF]": {
1849
+ "in/hr": {
1786
1850
  "colormap": [
1787
1851
  0.005, "#ff3300",
1788
1852
  0.1, "#ff33ff",
@@ -1792,7 +1856,7 @@ export const DEFAULT_COLORMAPS = {
1792
1856
  .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
1857
  ],
1794
1858
  },
1795
- "mm/hr [QPF]": {
1859
+ "mm/hr": {
1796
1860
  "colormap": [
1797
1861
  0.1, "#ff3300",
1798
1862
  3, "#ff33ff",
@@ -1806,11 +1870,8 @@ export const DEFAULT_COLORMAPS = {
1806
1870
  }
1807
1871
  },
1808
1872
  "icepRate": {
1809
- "type": "fill",
1810
- "gridded": false,
1811
- "interpolationType": "interpolate",
1812
1873
  "units": {
1813
- "in/hr [3:1]": {
1874
+ "in/hr": {
1814
1875
  "colormap": [
1815
1876
  0.005, "#8800cc",
1816
1877
  0.2, "#aa44dd",
@@ -1820,7 +1881,7 @@ export const DEFAULT_COLORMAPS = {
1820
1881
  .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
1882
  ]
1822
1883
  },
1823
- "mm/hr [3:1]": {
1884
+ "mm/hr": {
1824
1885
  "colormap": [
1825
1886
  0.1, "#8800cc",
1826
1887
  6, "#aa44dd",
@@ -1834,9 +1895,6 @@ export const DEFAULT_COLORMAPS = {
1834
1895
  }
1835
1896
  },
1836
1897
  "rainRate": {
1837
- "type": "fill",
1838
- "gridded": false,
1839
- "interpolationType": "interpolate",
1840
1898
  "units": {
1841
1899
  "in/hr": {
1842
1900
  "colormap": [
@@ -1866,11 +1924,8 @@ export const DEFAULT_COLORMAPS = {
1866
1924
  }
1867
1925
  },
1868
1926
  "snowRate": {
1869
- "type": "fill",
1870
- "gridded": false,
1871
- "interpolationType": "interpolate",
1872
1927
  "units": {
1873
- "in/hr [10:1]": {
1928
+ "in/hr": {
1874
1929
  "colormap": [
1875
1930
  0.05, "#33ccff",
1876
1931
  1, "#000099",
@@ -1880,7 +1935,7 @@ export const DEFAULT_COLORMAPS = {
1880
1935
  .05,.1,.3,.5,.7,1,1.5,2,3,4,5,6,7,8,9,10,12,14,16,20,25,30
1881
1936
  ]
1882
1937
  },
1883
- "cm/hr [10:1]": {
1938
+ "cm/hr": {
1884
1939
  "colormap": [
1885
1940
  0.1, "#33ccff",
1886
1941
  3, "#000099",
@@ -1894,32 +1949,29 @@ export const DEFAULT_COLORMAPS = {
1894
1949
  }
1895
1950
  },
1896
1951
  "ptypeRate": {
1897
- "type": "fill",
1898
- "gridded": false,
1899
- "interpolationType": "interpolate",
1900
1952
  "units": {
1901
1953
  "in/hr": {
1902
1954
  "colormap": [
1903
- // --- Rain Palette (Standard Reflectivity Values: 5 to 80) ---
1904
- 0.005, "#00cc66",
1955
+ // --- Rain Palette ---
1956
+ 0.004, "#00cc66",
1905
1957
  0.1, "#ffff00",
1906
1958
  0.3, "#ff8800",
1907
1959
  1, "#ff0000",
1908
- 1.5, '#ff00cc',
1960
+ 2, '#ff00cc',
1909
1961
 
1910
1962
  // --- Snow Palette (Reflectivity Values Offset by +100) ---
1911
- 100.05, "#33ccff",
1912
- 101, "#000099",
1913
- 104, "#ff00cc",
1963
+ 100.04, "#33ccff",
1964
+ 100.4, "#000099",
1965
+ 101, "#ff00cc",
1914
1966
 
1915
1967
  // --- Freezing Rain Palette (Reflectivity Values Offset by +200) ---
1916
- 200.005, "#ff3300",
1917
- 200.1, "#ff33ff",
1968
+ 200.004, "#ff3300",
1969
+ 200.3, "#ff33ff",
1918
1970
  200.6, "#cc99cc",
1919
1971
 
1920
1972
  // icep
1921
- 300.005, "#8800cc",
1922
- 300.2, "#aa44dd",
1973
+ 300.004, "#8800cc",
1974
+ 300.3, "#aa44dd",
1923
1975
  300.6, "#cc88dd"
1924
1976
  ],
1925
1977
  "breakpoints": [
@@ -1954,16 +2006,43 @@ export const DEFAULT_COLORMAPS = {
1954
2006
  }
1955
2007
  }
1956
2008
  },
2009
+ "ptypeRefl": {
2010
+ "units": {
2011
+ "dBZ": {
2012
+ "colormap": [
2013
+ // --- Rain Palette (Standard Reflectivity Values: 5 to 80) ---
2014
+ 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",
2015
+ // --- Snow Palette (Reflectivity Values Offset by +100) ---
2016
+ 105, "#C5DDFF", 130, "#031996", 140, "#7123de", 170, "#380c91",
2017
+ // --- Freezing Rain Palette (Reflectivity Values Offset by +200) ---
2018
+ 205, "#febdf6", 230, "#fe7eda", 240, "#ff2ab5", 270, "#ff01a2",
2019
+ // icep
2020
+ 305, "#A372FB",
2021
+ 330, "#9330FD",
2022
+ 340, "#3B059E",
2023
+ 370, "#C80529"
2024
+ ],
2025
+ "breakpoints": [
2026
+ ]
2027
+ }
2028
+ }
2029
+ },
2030
+ "PrecipFlag_00.00": {
2031
+ "units": {
2032
+ "None": {
2033
+ "colormap": [
2034
+ 0, "#000000",
2035
+ 1, "#6699cc"
2036
+ ],
2037
+ "breakpoints": []
2038
+ }
2039
+ }
2040
+ },
1957
2041
  "frzrRefl": {
1958
- "type": "fill",
1959
- "gridded": false,
1960
- "interpolationType": "interpolate",
1961
2042
  "units": {
1962
2043
  "dBZ": {
1963
2044
  "colormap": [
1964
- 5, "#ff3300",
1965
- 30, '#ffaa33',
1966
- 80, "#cc0066"
2045
+ 5, "#febdf6", 30, "#fe7eda", 40, "#ff2ab5", 65, "#ff01a2",
1967
2046
  ],
1968
2047
  "breakpoints": [
1969
2048
  5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80
@@ -1972,15 +2051,13 @@ export const DEFAULT_COLORMAPS = {
1972
2051
  }
1973
2052
  },
1974
2053
  "icepRefl": {
1975
- "type": "fill",
1976
- "gridded": false,
1977
- "interpolationType": "interpolate",
1978
2054
  "units": {
1979
2055
  "dBZ": {
1980
2056
  "colormap": [
1981
- 5, "#8800cc",
1982
- 70, "#ffbb00",
1983
- 80, "#dddddd"
2057
+ 5, "#A372FB",
2058
+ 30, "#9330FD",
2059
+ 40, "#3B059E",
2060
+ 65, "#C80529"
1984
2061
  ],
1985
2062
  "breakpoints": [
1986
2063
  5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80
@@ -1989,17 +2066,9 @@ export const DEFAULT_COLORMAPS = {
1989
2066
  }
1990
2067
  },
1991
2068
  "snowRefl": {
1992
- "type": "fill",
1993
- "gridded": false,
1994
- "interpolationType": "interpolate",
1995
2069
  "units": {
1996
2070
  "dBZ": {
1997
- "colormap": [
1998
- 5, "#33ccff",
1999
- 35, "#8800cc",
2000
- 70, "#ffccff",
2001
- 80, "#dddddd"
2002
- ],
2071
+ "colormap": [5, "#C5DDFF", 30, "#031996", 40, "#7123de", 65, "#380c91",],
2003
2072
  "breakpoints": [
2004
2073
  5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80
2005
2074
  ]
@@ -2007,16 +2076,10 @@ export const DEFAULT_COLORMAPS = {
2007
2076
  }
2008
2077
  },
2009
2078
  "rainRefl": {
2010
- "type": "fill",
2011
- "gridded": false,
2012
- "interpolationType": "interpolate",
2013
2079
  "units": {
2014
2080
  "dBZ": {
2015
2081
  "colormap": [
2016
- 5, "#00cc66",
2017
- 35, "#ffff00",
2018
- 70, "#ff8800",
2019
- 80, "#ff0000"
2082
+ 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
2083
  ],
2021
2084
  "breakpoints": [
2022
2085
  5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80
@@ -2025,77 +2088,32 @@ export const DEFAULT_COLORMAPS = {
2025
2088
  }
2026
2089
  },
2027
2090
  "csnow_total" : {
2028
- "type": "fill",
2029
- "gridded": false,
2030
- "interpolationType": "interpolate",
2031
2091
  "units": {
2032
- "in [10:1]": {
2092
+ "in": {
2033
2093
  "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"
2094
+ 0.1, "#b8f9ff", 5, "#093397", 6, "#6331a2", 11, "#d16dc7", 12, "#f5b4fd", 24, "#b3e6ff", 48, "#7ff0e8", 80, "#386d71"
2045
2095
  ],
2046
2096
  "breakpoints": [
2047
2097
  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
2098
  50,55,60,70,
2049
- 80,90,100,150,200,300,400
2099
+ 80, 100
2050
2100
  ]
2051
2101
  },
2052
- "cm [10:1]": {
2102
+ "cm": {
2053
2103
  "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"
2104
+ 0.25, "#b8f9ff", 12.5, "#093397", 15, "#6331a2", 28, "#d16dc7", 30.5, "#f5b4fd", 61, "#b3e6ff", 122, "#7ff0e8", 203, "#386d71"
2065
2105
  ],
2066
2106
  "breakpoints": [
2067
2107
  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
2108
  82, 90, 100,
2069
- 120, 140, 160, 180, 200, 250, 300, 400, 500, 600, 700
2109
+ 120, 140, 160, 180, 200, 250
2070
2110
  ]
2071
2111
  },
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
2112
  }
2092
2113
  },
2093
2114
  "csnow_1" : {
2094
- "type": "fill",
2095
- "gridded": false,
2096
- "interpolationType": "interpolate",
2097
2115
  "units": {
2098
- "in [10:1]": {
2116
+ "in": {
2099
2117
  "colormap": [
2100
2118
  0.1, "#aaaaaa",
2101
2119
  0.25, "#444444",
@@ -2114,7 +2132,7 @@ export const DEFAULT_COLORMAPS = {
2114
2132
  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
2133
  ]
2116
2134
  },
2117
- "cm [10:1]": {
2135
+ "cm": {
2118
2136
  "colormap": [
2119
2137
  0.25, "#aaaaaa",
2120
2138
  0.5, "#444444",
@@ -2133,34 +2151,11 @@ export const DEFAULT_COLORMAPS = {
2133
2151
  .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
2152
  ]
2135
2153
  },
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
2154
  }
2157
2155
  },
2158
2156
  "cfrzr_total" : {
2159
- "type": "fill",
2160
- "gridded": false,
2161
- "interpolationType": "interpolate",
2162
2157
  "units": {
2163
- "in [QPF]": {
2158
+ "in": {
2164
2159
  "colormap": [
2165
2160
  0.01, "#eeccff",
2166
2161
  .1, "#ff9999",
@@ -2168,13 +2163,14 @@ export const DEFAULT_COLORMAPS = {
2168
2163
  .5, "#ff9933",
2169
2164
  .75, "#ffee00",
2170
2165
  1, "#00cccc",
2166
+ 2, "#0000ff",
2171
2167
  3, "#99ffff"
2172
2168
  ],
2173
2169
  "breakpoints": [
2174
2170
  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
2171
  ]
2176
2172
  },
2177
- "cm [QPF]": {
2173
+ "cm": {
2178
2174
  "colormap": [
2179
2175
  0.03, "#eeccff",
2180
2176
  .25, "#ff9999",
@@ -2182,6 +2178,7 @@ export const DEFAULT_COLORMAPS = {
2182
2178
  1, "#cc0066",
2183
2179
  2, "#ffee00",
2184
2180
  3, "#00cccc",
2181
+ 5, "#0000ff",
2185
2182
  7, "#99ffff"
2186
2183
  ],
2187
2184
  "breakpoints": [
@@ -2189,7 +2186,7 @@ export const DEFAULT_COLORMAPS = {
2189
2186
  3.75,4,4.5,5,5.5,6,7,8,9,10,12,14,16,18,20,22,24,26
2190
2187
  ]
2191
2188
  },
2192
- "mm [QPF]": {
2189
+ "mm": {
2193
2190
  "colormap": [
2194
2191
  0.3, "#eeccff",
2195
2192
  2.5, "#ff9999",
@@ -2207,11 +2204,8 @@ export const DEFAULT_COLORMAPS = {
2207
2204
  }
2208
2205
  },
2209
2206
  "cfrzr_1" : {
2210
- "type": "fill",
2211
- "gridded": false,
2212
- "interpolationType": "interpolate",
2213
2207
  "units": {
2214
- "in [QPF]": {
2208
+ "in": {
2215
2209
  "colormap": [
2216
2210
  0.01, "#eeccff",
2217
2211
  .1, "#ff9999",
@@ -2226,7 +2220,7 @@ export const DEFAULT_COLORMAPS = {
2226
2220
  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
2221
  ]
2228
2222
  },
2229
- "cm [QPF]": {
2223
+ "cm": {
2230
2224
  "colormap": [
2231
2225
  0.03, "#eeccff",
2232
2226
  .25, "#ff9999",
@@ -2241,7 +2235,7 @@ export const DEFAULT_COLORMAPS = {
2241
2235
  5.5,6,7,8,9,10,12,14,16
2242
2236
  ]
2243
2237
  },
2244
- "mm [QPF]": {
2238
+ "mm": {
2245
2239
  "colormap": [
2246
2240
  0.3, "#eeccff",
2247
2241
  2.5, "#ff9999",
@@ -2259,11 +2253,8 @@ export const DEFAULT_COLORMAPS = {
2259
2253
  }
2260
2254
  },
2261
2255
  "cicep_total": {
2262
- "type": "fill",
2263
- "gridded": false,
2264
- "interpolationType": "interpolate",
2265
2256
  "units": {
2266
- "in [3:1]": {
2257
+ "in": {
2267
2258
  "colormap": [
2268
2259
  0.01, "#eeccff",
2269
2260
  0.1, "#ff8888",
@@ -2277,7 +2268,7 @@ export const DEFAULT_COLORMAPS = {
2277
2268
  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
2269
  ]
2279
2270
  },
2280
- "cm [3:1]": {
2271
+ "cm": {
2281
2272
  "colormap": [
2282
2273
  0.03, "#eeccff",
2283
2274
  0.25, "#ff8888",
@@ -2293,7 +2284,7 @@ export const DEFAULT_COLORMAPS = {
2293
2284
  20, 22, 24, 26
2294
2285
  ]
2295
2286
  },
2296
- "mm [3:1]": {
2287
+ "mm": {
2297
2288
  "colormap": [
2298
2289
  0.3, "#eeccff",
2299
2290
  2.5, "#ff8888",
@@ -2312,11 +2303,8 @@ export const DEFAULT_COLORMAPS = {
2312
2303
  }
2313
2304
  },
2314
2305
  "cicep_1": {
2315
- "type": "fill",
2316
- "gridded": false,
2317
- "interpolationType": "interpolate",
2318
2306
  "units": {
2319
- "in [3:1]": {
2307
+ "in": {
2320
2308
  "colormap": [
2321
2309
  0.01, "#eeccff",
2322
2310
  0.1, "#ff8888",
@@ -2364,9 +2352,6 @@ export const DEFAULT_COLORMAPS = {
2364
2352
  }
2365
2353
  },
2366
2354
  "crain_total": {
2367
- "type": "fill",
2368
- "gridded": false,
2369
- "interpolationType": "interpolate",
2370
2355
  "units": {
2371
2356
  "in": {
2372
2357
  "colormap": [
@@ -2432,9 +2417,6 @@ export const DEFAULT_COLORMAPS = {
2432
2417
  }
2433
2418
  },
2434
2419
  "crain_1": {
2435
- "type": "fill",
2436
- "gridded": false,
2437
- "interpolationType": "interpolate",
2438
2420
  "units": {
2439
2421
  "in": {
2440
2422
  "colormap": [
@@ -2497,25 +2479,10 @@ export const DEFAULT_COLORMAPS = {
2497
2479
  }
2498
2480
  },
2499
2481
  "tp_0_total": {
2500
- "type": "fill",
2501
- "gridded": false,
2502
- "interpolationType": "interpolate",
2503
2482
  "units": {
2504
2483
  "in": {
2505
2484
  "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"
2485
+ 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
2486
  ],
2520
2487
  "breakpoints": [
2521
2488
  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 +2492,7 @@ export const DEFAULT_COLORMAPS = {
2525
2492
  },
2526
2493
  "cm": {
2527
2494
  "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"
2495
+ 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
2496
  ],
2540
2497
  "breakpoints": [
2541
2498
  0.03, 0.25, 0.75, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 18, 20,
@@ -2544,17 +2501,7 @@ export const DEFAULT_COLORMAPS = {
2544
2501
  },
2545
2502
  "mm": {
2546
2503
  "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"
2504
+ 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
2505
  ],
2559
2506
  "breakpoints": [
2560
2507
  0.3, 2.5, 7.5, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 120, 140, 160,
@@ -2565,9 +2512,6 @@ export const DEFAULT_COLORMAPS = {
2565
2512
  }
2566
2513
  },
2567
2514
  "tp_0_1": {
2568
- "type": "fill",
2569
- "gridded": false,
2570
- "interpolationType": "interpolate",
2571
2515
  "units": {
2572
2516
  "in": {
2573
2517
  "colormap": [
@@ -2623,9 +2567,6 @@ export const DEFAULT_COLORMAPS = {
2623
2567
  }
2624
2568
  },
2625
2569
  "thickness": {
2626
- "type": "line",
2627
- "gridded": false,
2628
- "interpolationType": "interpolate",
2629
2570
  "units": {
2630
2571
  "dam": {
2631
2572
  "colormap": [
@@ -2643,9 +2584,6 @@ export const DEFAULT_COLORMAPS = {
2643
2584
  }
2644
2585
  },
2645
2586
  "gh_10": {
2646
- "type": "line",
2647
- "gridded": false,
2648
- "interpolationType": "interpolate",
2649
2587
  "units": {
2650
2588
  "dam": {
2651
2589
  "colormap": [
@@ -2666,9 +2604,6 @@ export const DEFAULT_COLORMAPS = {
2666
2604
  }
2667
2605
  },
2668
2606
  "gh_200": {
2669
- "type": "line",
2670
- "gridded": false,
2671
- "interpolationType": "interpolate",
2672
2607
  "units": {
2673
2608
  "dam": {
2674
2609
  "colormap": [
@@ -2688,9 +2623,6 @@ export const DEFAULT_COLORMAPS = {
2688
2623
  }
2689
2624
  },
2690
2625
  "gh_300": {
2691
- "type": "line",
2692
- "gridded": false,
2693
- "interpolationType": "interpolate",
2694
2626
  "units": {
2695
2627
  "dam": {
2696
2628
  "colormap": [
@@ -2709,9 +2641,6 @@ export const DEFAULT_COLORMAPS = {
2709
2641
  }
2710
2642
  },
2711
2643
  "gh_500": {
2712
- "type": "line",
2713
- "gridded": false,
2714
- "interpolationType": "interpolate",
2715
2644
  "units": {
2716
2645
  "dam": {
2717
2646
  "colormap": [
@@ -2733,9 +2662,6 @@ export const DEFAULT_COLORMAPS = {
2733
2662
  }
2734
2663
  },
2735
2664
  "gh_700": {
2736
- "type": "line",
2737
- "gridded": false,
2738
- "interpolationType": "interpolate",
2739
2665
  "units": {
2740
2666
  "dam": {
2741
2667
  "colormap": [
@@ -2753,46 +2679,37 @@ export const DEFAULT_COLORMAPS = {
2753
2679
  }
2754
2680
  },
2755
2681
  "gh_850": {
2756
- "type": "line",
2757
- "gridded": false,
2758
- "interpolationType": "interpolate",
2759
2682
  "units": {
2760
2683
  "dam": {
2761
2684
  "colormap": [
2762
- 120, "#0033ff",
2685
+ 102, "#0033ff",
2763
2686
  141, "#00ddff",
2764
2687
  153, "#ff6666",
2765
2688
  170, "#ff0000"
2766
2689
  ],
2767
2690
  "breakpoints": [
2768
- 120, 123, 126, 129, 132, 135, 138, 141, 144, 147, 150, 153, 156, 159, 162, 165, 168, 170
2691
+ 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
2692
  ]
2770
2693
  }
2771
2694
  }
2772
2695
  },
2773
2696
  "gh_925": {
2774
- "type": "line",
2775
- "gridded": false,
2776
- "interpolationType": "interpolate",
2777
2697
  "units": {
2778
2698
  "dam": {
2779
2699
  "colormap": [
2780
- 48, "#0033ff",
2781
- 75, "#00ddff",
2782
- 105, "#ff6666",
2700
+ 24, "#0033ff",
2701
+ 66, "#00ddff",
2702
+ 91, "#ff6666",
2783
2703
  120, "#ff0000"
2784
2704
  ],
2785
2705
  "breakpoints": [
2786
- 48, 51, 54, 57, 60, 63, 66, 69, 72, 75, 78, 81, 84, 87, 90, 91, 96, 99, 102,
2706
+ 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
2707
  105, 108, 111, 114, 117, 120
2788
2708
  ]
2789
2709
  }
2790
2710
  }
2791
2711
  },
2792
2712
  "moistureConvergence": {
2793
- "type": "fill",
2794
- "gridded": false,
2795
- "interpolationType": "interpolate",
2796
2713
  "units": {
2797
2714
  "s⁻¹": {
2798
2715
  "colormap": [
@@ -2807,10 +2724,107 @@ export const DEFAULT_COLORMAPS = {
2807
2724
  }
2808
2725
  }
2809
2726
  },
2727
+ "moisture_flux": {
2728
+ "units": {
2729
+ "s⁻¹": {
2730
+ "colormap": [
2731
+ -50, "#bc9fca",
2732
+ -20, "#000000",
2733
+ 0, "#986D4D",
2734
+ 6, "#7D7D7D",
2735
+ 12, "#C8C8C8",
2736
+ 16, "#30C830",
2737
+ 20, "#093209",
2738
+ 40, "#206E68",
2739
+ 60, "#29C4CC",
2740
+ 80, "#581380",
2741
+ 100, "#CF1968",
2742
+ ],
2743
+ "breakpoints": [
2744
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
2745
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
2746
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
2747
+ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
2748
+ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50
2749
+ ],
2750
+ }
2751
+ }
2752
+ },
2753
+ "qdiv": {
2754
+ "units": {
2755
+ "s⁻¹": {
2756
+ "colormap": [
2757
+ -5.0, "#00ccff",
2758
+ -3.0, "#ff0000",
2759
+ -1.0, "#ff9900",
2760
+ -0.5, "#ffee33",
2761
+ 0.0, "#aaaaaa",
2762
+ 0.5, "#006600",
2763
+ 1.0, "#00cc00",
2764
+ 3.0, "#00ffcc",
2765
+ 5.0, "#ffffff"
2766
+ ],
2767
+ "breakpoints": [
2768
+ -5, -4.5,-4,
2769
+ -3.5, -3,
2770
+ -2.5, -2,
2771
+ -1.5, -1,
2772
+ -0.5, 0,
2773
+ 0.5, 1,
2774
+ 1.5, 2,
2775
+ 2.5, 3,
2776
+ 3.5,
2777
+ 4, 4.5, 5]
2778
+ }
2779
+ }
2780
+ },
2781
+ "dpva": {
2782
+ "units": {
2783
+ "10⁻⁹ s⁻²": {
2784
+ "colormap": [
2785
+ -30, "#00ccff",
2786
+ -8, "#ff0000",
2787
+ -4, "#ff9900",
2788
+ -2, "#ffee33",
2789
+ 0, "#00ffcc",
2790
+ 4, "#006600",
2791
+ 8, "#00cc00",
2792
+ 30, "#222222"
2793
+ ],
2794
+ "breakpoints": [
2795
+ -30, -29, -28, -27, -26, -25, -24, -23, -22, -21, -20, -19, -18, -17, -16, -15, -14,
2796
+ -13, -12, -11,
2797
+ -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
2798
+ 14, 15, 16,
2799
+ 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30
2800
+ ]
2801
+ }
2802
+ }
2803
+ },
2804
+ "ddiv": {
2805
+ "units": {
2806
+ "10⁻⁹ s⁻¹": {
2807
+ "colormap": [
2808
+ -30, "#00ccff",
2809
+ -8, "#ff0000",
2810
+ -4, "#ff9900",
2811
+ -2, "#ffee33",
2812
+ 0, "#00ffcc",
2813
+ 4, "#006600",
2814
+ 8, "#00cc00",
2815
+ 30, "#222222"
2816
+ ],
2817
+ "breakpoints": [
2818
+ -30, -29, -28, -27, -26, -25, -24, -23, -22, -21, -20, -19, -18, -17, -16, -15, -14,
2819
+ -13, -12, -11,
2820
+ -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
2821
+ 14, 15, 16,
2822
+ 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30
2823
+ ]
2824
+ }
2825
+ }
2826
+ },
2810
2827
  "divergence": {
2811
- "type": "fill",
2812
- "gridded": false,
2813
- "interpolationType": "interpolate",
2814
2828
  "units": {
2815
2829
  "s⁻¹": {
2816
2830
  "colormap": [
@@ -2833,10 +2847,184 @@ export const DEFAULT_COLORMAPS = {
2833
2847
  }
2834
2848
  }
2835
2849
  },
2850
+ "crtang": {
2851
+ "units": {
2852
+ "deg": {
2853
+ "colormap": [
2854
+ 0, "#0000aa",
2855
+ 45, "#4444ff",
2856
+ 70, "#aaaaff",
2857
+ 80, "#ddddff",
2858
+ 85, "#eeeeff",
2859
+ 90, "#ffffff",
2860
+ 95, "#ffeedd",
2861
+ 100, "#ffddaa",
2862
+ 110, "#ff9900",
2863
+ 135, "#ff4400",
2864
+ 180, "#990000",
2865
+ 270, "#550055",
2866
+ 360, "#000044"
2867
+ ],
2868
+ "breakpoints": [
2869
+ 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70,
2870
+ 72, 74, 76, 78, 80, 82, 84, 85, 86, 87, 88, 89,
2871
+ 90,
2872
+ 91, 92, 93, 94, 95, 96, 98, 100, 102, 104,
2873
+ 106, 108, 110, 115, 120, 125, 130, 135, 140, 145,
2874
+ 150, 155, 160, 165, 170, 175, 180,
2875
+ 195, 210, 225, 240, 255, 270,
2876
+ 285, 300, 315, 330, 345, 360
2877
+ ]
2878
+ }
2879
+ }
2880
+ },
2881
+ 'okuboweiss':{
2882
+ "units": {
2883
+ "1/s²": {
2884
+ colormap : [
2885
+ -2, "#ff0000",
2886
+ -1.5, "#f16060",
2887
+ -1, "#ecc4a4",
2888
+ -0.5, "#6e2d0d",
2889
+ -0.25, "#d46738",
2890
+ 0, "#8a8a6d",
2891
+ 0.25, "#45d429",
2892
+ 0.5, "#063d0f",
2893
+ 1, "#04d4ff",
2894
+ 1.5, "#2a6eb4",
2895
+ 2, "#4f0869"
2896
+ ],
2897
+ breakpoints: [
2898
+ -2, -1.75, -1.5, -1.25, -1, -0.75, -0.5, -0.25, 0,
2899
+ 0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2
2900
+ ],
2901
+ },
2902
+ }
2903
+ },
2904
+ 'hdwianom':{
2905
+ "units":{
2906
+ "hPa m²/s²":{
2907
+ "colormap": [
2908
+ -700, "#000000",
2909
+ -400, "#058f00",
2910
+ -200, "#00ffd5",
2911
+ -100, "#4a2eff",
2912
+ -50, "#8c8fba",
2913
+ 0, "#d1d1d1",
2914
+ 50, "#ba8c8c",
2915
+ 100, "#ff9500",
2916
+ 200, "#ff0800",
2917
+ 400, "#ff00d0",
2918
+ 700, "#ffffff",
2919
+ ],
2920
+ breakpoints: [-700, -690, -680, -670, -660, -650, -640, -630, -620, -610,
2921
+ -600, -590, -580, -570, -560, -550, -540, -530, -520, -510,
2922
+ -500, -490, -480, -470, -460, -450, -440, -430, -420, -410,
2923
+ -400, -390, -380, -370, -360, -350, -340, -330, -320, -310,
2924
+ -300, -290, -280, -270, -260, -250, -240, -230, -220, -210,
2925
+ -200, -190, -180, -170, -160, -150, -140, -130, -120, -110,
2926
+ -100, -90, -80, -70, -60, -50, -40, -30, -20, -10,
2927
+ 0, 10, 20, 30, 40, 50, 60, 70, 80, 90,
2928
+ 100, 110, 120, 130, 140, 150, 160, 170, 180, 190,
2929
+ 200, 210, 220, 230, 240, 250, 260, 270, 280, 290,
2930
+ 300, 310, 320, 330, 340, 350, 360, 370, 380, 390,
2931
+ 400, 410, 420, 430, 440, 450, 460, 470, 480, 490,
2932
+ 500, 510, 520, 530, 540, 550, 560, 570, 580, 590,
2933
+ 600, 610, 620, 630, 640, 650, 660, 670, 680, 690,
2934
+ 700
2935
+ ],
2936
+ }
2937
+ }
2938
+ },
2939
+ 'rfti':{
2940
+ "units":{
2941
+ "m²/s² %":{
2942
+ "colormap": [
2943
+ 0, "#d1d1d1",
2944
+ 1, "#b6b6b6",
2945
+ 2, "#727272",
2946
+ 3, "#640019",
2947
+ 4, "#ff00e0",
2948
+ 5, "#ffffff",
2949
+ 6, "#00fbff",
2950
+ 7, "#222222",
2951
+ ],
2952
+ breakpoints: [0., 0.25, 0.5, 0.75, 1., 1.25, 1.5, 1.75, 2.,
2953
+ 2.25, 2.5, 2.75, 3., 3.25, 3.5, 3.75, 4., 4.25, 4.5,
2954
+ 4.75, 5., 5.25, 5.5, 5.75, 6., 6.25, 6.5, 6.75, 7.
2955
+ ],
2956
+ }
2957
+ }
2958
+ },
2959
+ 'hdwi':{
2960
+ "units":{
2961
+ "hPa m²/s²":{
2962
+ "colormap": [
2963
+ 0, "#d1d1d1",
2964
+ 50, "#b6b6b6",
2965
+ 100, "#727272",
2966
+ 150, "#d9ff00",
2967
+ 200, "#c7cc00",
2968
+ 250, "#758600",
2969
+ 300, "#ff0000",
2970
+ 350, "#c40000",
2971
+ 400, "#640019",
2972
+ 450, "#740047",
2973
+ 500, "#ff00e0",
2974
+ 550, "#ff84f5",
2975
+ 600, "#ffbcfd",
2976
+ 650, "#ffffff",
2977
+ 700, "#d2fffa",
2978
+ 750, "#00fbff"
2979
+ ],
2980
+ breakpoints: [0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50,
2981
+ 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110,
2982
+ 115, 120, 125, 130, 135, 140, 145, 150, 155, 160,
2983
+ 165, 170, 175, 180, 185, 190, 195, 200, 205, 210,
2984
+ 215, 220, 225, 230, 235, 240, 245, 250, 255, 260,
2985
+ 265, 270, 275, 280, 285, 290, 295, 300, 305, 310,
2986
+ 315, 320, 325, 330, 335, 340, 345, 350, 355, 360,
2987
+ 365, 370, 375, 380, 385, 390, 395, 400, 405, 410,
2988
+ 415, 420, 425, 430, 435, 440, 445, 450, 455, 460,
2989
+ 465, 470, 475, 480, 485, 490, 495, 500, 505, 510,
2990
+ 515, 520, 525, 530, 535, 540, 545, 550, 555, 560,
2991
+ 565, 570, 575, 580, 585, 590, 595, 600, 605, 610,
2992
+ 615, 620, 625, 630, 635, 640, 645, 650, 655, 660,
2993
+ 665, 670, 675, 680, 685, 690, 695,
2994
+ 700, 705, 710, 715, 720, 725, 730, 735, 740, 745, 750
2995
+ ],
2996
+ }
2997
+ }
2998
+ },
2999
+ 'qvector_speed': {
3000
+ "units": {
3001
+ "10² kg/m²/s³": {
3002
+ "colormap": [
3003
+ 0, "#aaaaaa",
3004
+ 1, "#006600",
3005
+ 2, "#00ff00",
3006
+ 5, "#aaff00",
3007
+ 10, "#ffff00",
3008
+ 20, "#ffaa00",
3009
+ 40, "#ff0000",
3010
+ 60, "#ffffff"
3011
+ ],
3012
+ "breakpoints": [
3013
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
3014
+ 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
3015
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
3016
+ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
3017
+ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
3018
+ 51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
3019
+ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
3020
+ 71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
3021
+ 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
3022
+ 91, 92, 93, 94, 95, 96, 97, 98, 99, 100
3023
+ ]
3024
+ }
3025
+ }
3026
+ },
2836
3027
  "irsat": {
2837
- "type": "fill",
2838
- "gridded": false,
2839
- "interpolationType": "interpolate",
2840
3028
  "units": {
2841
3029
  "°C": {
2842
3030
  "colormap": [
@@ -2864,9 +3052,6 @@ export const DEFAULT_COLORMAPS = {
2864
3052
  }
2865
3053
  },
2866
3054
  "vis_0": {
2867
- "type": "fill",
2868
- "gridded": false,
2869
- "interpolationType": "interpolate",
2870
3055
  "units": {
2871
3056
  "mi": {
2872
3057
  "colormap": [
@@ -2894,18 +3079,11 @@ export const DEFAULT_COLORMAPS = {
2894
3079
  },
2895
3080
  }
2896
3081
  },
2897
- "tcc_0": {
2898
- "type": "fill",
2899
- "gridded": false,
2900
- "interpolationType": "interpolate",
3082
+ "cloud": {
2901
3083
  "units": {
2902
3084
  "%": {
2903
3085
  "colormap": [
2904
- 0, "#ffffff",
2905
- 20, "#cccccc",
2906
- 50, "#888888",
2907
- 80, "#444444",
2908
- 100, "#000000"
3086
+ 0, "#c3d0e9", 20, "#d7eaf4", 50, "#7792b6", 80, "#5e82c9", 100, "#313f77"
2909
3087
  ],
2910
3088
  "breakpoints": [
2911
3089
  0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100
@@ -2913,61 +3091,194 @@ export const DEFAULT_COLORMAPS = {
2913
3091
  }
2914
3092
  }
2915
3093
  },
2916
- "hcc_0": {
2917
- "type": "fill",
2918
- "gridded": false,
2919
- "interpolationType": "interpolate",
3094
+ "2tanom":{
3095
+ units : {
3096
+ '°F' : {
3097
+ colormap : [
3098
+ -50, "#aaccff",
3099
+ -25, "#35034d",
3100
+ -10, "#1b82d1",
3101
+ 0, "#bababa",
3102
+ 10, "#bb5555",
3103
+ 25, "#e87d13",
3104
+ 50, "#ffffff",
3105
+ ],
3106
+ breakpoints: [
3107
+ -50, -48, -46, -44, -42, -40, -38, -36, -34, -32, -30, -28, -26, -24, -22,
3108
+ -20, -18, -16, -14, -12, -10, -8, -6, -4, -2,
3109
+ 0, 2, 4, 6, 8, 10, 12, 14, 16, 18,
3110
+ 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50
3111
+ ],
3112
+ },
3113
+ '°C' : {
3114
+ colormap : [
3115
+ -40, "#aaccff",
3116
+ -20, "#35034d",
3117
+ -8, "#1b82d1",
3118
+ 0, "#bababa",
3119
+ 8, "#bb5555",
3120
+ 20, "#e87d13",
3121
+ 40, "#ffffff",
3122
+ ],
3123
+ breakpoints: [
3124
+ -40, -38, 36, -34, -32, -30, -28, -26, -24, -22,
3125
+ -20, -18, -16, -14, -12, -10, -8, -6, -4, -2,
3126
+ 0, 2, 4, 6, 8, 10, 12, 14, 16, 18,
3127
+ 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40
3128
+ ],
3129
+ },
3130
+ },
3131
+ },
3132
+ "lapserates03" : {
3133
+ units : {
3134
+ '°C km⁻¹' : {
3135
+ colormap : [
3136
+ 0, "#3e3646", 5, "#ac947a", 6, "#fbb955", 7, "#ea4f37", 8, "#b33831", 9, "#7a3045", 10, "#c7dcd0", 15, "#ebebeb"
3137
+ ],
3138
+ breakpoints : [
3139
+ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15
3140
+ ],
3141
+ },
3142
+ },
3143
+ },
3144
+ "pwatanom_0":{
3145
+ units : {
3146
+ 'in' : {
3147
+ colormap : [
3148
+ -2, "#ff0000",
3149
+ -1.5, "#f16060",
3150
+ -1, "#ecc4a4",
3151
+ -0.5, "#6e2d0d",
3152
+ -0.25, "#d46738",
3153
+ 0, "#8a8a6d",
3154
+ 0.25, "#45d429",
3155
+ 0.5, "#063d0f",
3156
+ 1, "#04d4ff",
3157
+ 1.5, "#2a6eb4",
3158
+ 2, "#4f0869"
3159
+ ],
3160
+ breakpoints: [
3161
+ -2, -1.75, -1.5, -1.25, -1, -0.75, -0.5, -0.25, 0,
3162
+ 0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2
3163
+ ],
3164
+ },
3165
+ 'mm' : {
3166
+ colormap : [
3167
+ -50, "#ff0000",
3168
+ -35, "#f16060",
3169
+ -25, "#ecc4a4",
3170
+ -10, "#6e2d0d",
3171
+ -5, "#d46738",
3172
+ 0, "#8a8a6d",
3173
+ 5, "#45d429",
3174
+ 10, "#063d0f",
3175
+ 25, "#04d4ff",
3176
+ 35, "#2a6eb4",
3177
+ 50, "#4f0869"
3178
+ ],
3179
+ breakpoints: [
3180
+ -50, -45, -40, -35, -30, -25, -20, -15, -10, -5, 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50
3181
+ ],
3182
+ },
3183
+ },
3184
+ },
3185
+ "mslpanom": {
2920
3186
  "units": {
2921
- "%": {
3187
+ "hPa": {
3188
+ "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'],
3189
+ "breakpoints": [
3190
+ -50, -48, -46, -44, -42, -40, -38, -36, -34, -32,
3191
+ -30, -28, -26, -24, -22, -20, -18, -16, -14, -12,
3192
+ -10, -8, -6, -4, -2, 0, 2, 4, 6, 8,
3193
+ 10, 12, 14, 16, 18, 20, 22, 24, 26, 28,
3194
+ 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50
3195
+ ]
3196
+ }
3197
+ }
3198
+ },
3199
+ "ghanom_500": {
3200
+ "units": {
3201
+ "dam": {
3202
+ "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'],
3203
+ "breakpoints": [
3204
+ -50, -48, -46, -44, -42, -40, -38, -36, -34, -32,
3205
+ -30, -28, -26, -24, -22, -20, -18, -16, -14, -12,
3206
+ -10, -8, -6, -4, -2, 0, 2, 4, 6, 8,
3207
+ 10, 12, 14, 16, 18, 20, 22, 24, 26, 28,
3208
+ 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50
3209
+ ]
3210
+ }
3211
+ }
3212
+ },
3213
+ "freezinglevel": {
3214
+ "units": {
3215
+ "m": {
2922
3216
  "colormap": [
2923
- 0, "#ffffff",
2924
- 20, "#cccccc",
2925
- 50, "#888888",
2926
- 80, "#444444",
2927
- 100, "#000000"
3217
+ 0, "#cb04ed",
3218
+ 500, "#581380",
3219
+ 1000, "#2974cc",
3220
+ 1500, "#15c2ad",
3221
+ 2000, "#11ab09",
3222
+ 2500, "#093209",
3223
+ 3000, "#d5b813",
3224
+ 3500, "#a9681d",
3225
+ 4000, "#7b0404",
3226
+ 4500, "#AB7D4D",
3227
+ 5000, "#ad9b8e"
2928
3228
  ],
2929
3229
  "breakpoints": [
2930
- 0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100
3230
+ 0, 100, 200, 300, 400, 500, 600, 700, 800, 900,
3231
+ 1000, 1100, 1200, 1300, 1400, 1500, 1600, 1700, 1800, 1900,
3232
+ 2000, 2100, 2200, 2300, 2400, 2500, 2600, 2700, 2800, 2900,
3233
+ 3000, 3100, 3200, 3300, 3400, 3500, 3600, 3700, 3800, 3900,
3234
+ 4000, 4100, 4200, 4300, 4400, 4500, 4600, 4700, 4800, 4900,
3235
+ 5000, 5100, 5200, 5300, 5400, 5500, 5600, 5700, 5800, 5900,
3236
+ 6000
2931
3237
  ]
2932
3238
  }
2933
3239
  }
2934
3240
  },
2935
- "mcc_0": {
2936
- "type": "fill",
2937
- "gridded": false,
2938
- "interpolationType": "interpolate",
3241
+ "SatelliteWV": {
2939
3242
  "units": {
2940
- "%": {
3243
+ "C": {
2941
3244
  "colormap": [
2942
- 0, "#ffffff",
2943
- 20, "#cccccc",
2944
- 50, "#888888",
2945
- 80, "#444444",
2946
- 100, "#000000"
3245
+ 10, "#cece55",
3246
+ 20, "#ce5555",
3247
+ 30, "#262626",
3248
+ 45, "#ffffff",
3249
+ 55, "#55cece",
3250
+ 70, "#5555ce",
3251
+ 80, "#4d3366",
3252
+ 90, "#e673e6",
3253
+ 100, "#efe6eb"
2947
3254
  ],
2948
3255
  "breakpoints": [
2949
- 0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100
3256
+ 10, 20, 30, 45, 55, 70, 80, 90, 100
2950
3257
  ]
2951
3258
  }
2952
3259
  }
2953
3260
  },
2954
- "lcc_0": {
2955
- "type": "fill",
2956
- "gridded": false,
2957
- "interpolationType": "interpolate",
3261
+ "SatelliteLongwaveIR": {
2958
3262
  "units": {
2959
- "%": {
3263
+ "C": {
2960
3264
  "colormap": [
2961
- 0, "#ffffff",
2962
- 20, "#cccccc",
2963
- 50, "#888888",
2964
- 80, "#444444",
2965
- 100, "#000000"
3265
+ 5, "#000000", // 40°C → normVal = 10.32
3266
+ 51, "#ffffff", // 0°C → normVal = 37.74
3267
+ 52, "#00ffff", // -20°C → normVal = 50.65
3268
+ 58, "#0033cc", // -30°C → normVal = 57.10
3269
+ 64, "#33ff00", // -40°C → normVal = 63.55
3270
+ 73, "#ffee00", // -50°C → normVal = 70.00
3271
+ 78, "#ff0000", // -60°C → normVal = 76.45
3272
+ 82, "#660000", // -70°C → normVal = 82.90
3273
+ 88, "#808080", // -75°C → normVal = 86.13
3274
+ 90, "#cc66ff", // -80°C → normVal = 89.35
3275
+ 96, "#9933cc", // -90°C → normVal = 95.81
3276
+ 100, "#9933cc", // -90°C → normVal = 95.81
2966
3277
  ],
2967
3278
  "breakpoints": [
2968
- 0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100
3279
+ 10, 20, 30, 45, 55, 70, 80, 90, 100
2969
3280
  ]
2970
3281
  }
2971
3282
  }
2972
3283
  }
2973
- };
3284
+ }