Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

constants.py 4.2 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
  1. GFS_GRIB2_DATA_VARS = {
  2. "surface": {
  3. "vis": "Visibility",
  4. "gust": "Wind speed (gust)",
  5. "hindex": "Haines Index",
  6. "sp": "Surface pressure",
  7. "orog": "Orography",
  8. "t": "Temperature",
  9. "sdwe": "Water equivalent of accumulated snow depth (deprecated)",
  10. "sde": "Snow depth",
  11. "pevpr": "Potential evaporation rate",
  12. "cpofp": "Percent frozen precipitation",
  13. "cprat": "Convective precipitation rate",
  14. "prate": "Precipitation rate",
  15. "tp": "Total Precipitation",
  16. "acpcp": "Convective precipitation (water)",
  17. "watr": "Water runoff",
  18. "csnow": "Categorical snow",
  19. "cicep": "Categorical ice pellets",
  20. "cfrzr": "Categorical freezing rain",
  21. "crain": "Categorical rain",
  22. "lhtfl": "Latent heat net flux",
  23. "shtfl": "Sensible heat net flux",
  24. "gflux": "Ground heat flux",
  25. "uflx": "Momentum flux, u component",
  26. "vflx": "Momentum flux, v component",
  27. "u-gwd": "Zonal flux of gravity wave stress",
  28. "v-gwd": "Meridional flux of gravity wave stress",
  29. "wilt": "Wilting Point",
  30. "fldcp": "Field Capacity",
  31. "SUNSD": "Sunshine Duration",
  32. "lftx": "Surface lifted index",
  33. "cape": "Convective available potential energy",
  34. "cin": "Convective inhibition",
  35. "dswrf": "Downward short-wave radiation flux",
  36. "dlwrf": "Downward long-wave radiation flux",
  37. "uswrf": "Upward short-wave radiation flux",
  38. "ulwrf": "Upward long-wave radiation flux",
  39. "4lftx": "Best (4-layer) lifted index",
  40. "hpbl": "Planetary boundary layer height",
  41. "lsm": "Land-sea mask",
  42. "siconc": "Sea ice area fraction",
  43. "al": "Albedo",
  44. "landn": "Land-sea coverage (nearest neighbor) [land=1,sea=0]",
  45. },
  46. "isobaricInhPa": {
  47. "gh": "Geopotential Height",
  48. "t": "Temperature",
  49. "r": "Relative humidity",
  50. "u": "U component of wind",
  51. "v": "V component of wind",
  52. },
  53. "meanSea": {
  54. "mslet": "MSLP (Eta model reduction)",
  55. "prmsl": "Pressure reduced to MSL",
  56. },
  57. "depthBelowLandLayer": {
  58. "st": "Soil Temperature",
  59. "soilw": "Volumetric soil moisture content",
  60. },
  61. "heightAboveGround": {
  62. "t2m": "2 metre temperature",
  63. "d2m": "2 metre dewpoint temperature",
  64. "r2": "2 metre relative humidity",
  65. "aptmp": "Apparent temperature",
  66. "tmax": "Maximum temperature",
  67. "tmin": "Minimum temperature",
  68. },
  69. "atmosphere": {"tcc": "Total Cloud Cover"},
  70. "nominalTop": {
  71. "uswrf": "Upward short-wave radiation flux",
  72. "ulwrf": "Upward long-wave radiation flux",
  73. },
  74. "heightAboveGroundLayer": {"hlcy": "Storm relative helicity"},
  75. "tropopause": {
  76. "pres": "Pressure",
  77. "icaht": "ICAO Standard Atmosphere reference height",
  78. "gh": "Geopotential Height",
  79. "t": "Temperature",
  80. "u": "U component of wind",
  81. "v": "V component of wind",
  82. "vwsh": "Vertical speed shear",
  83. },
  84. "maxWind": {
  85. "pres": "Pressure",
  86. "icaht": "ICAO Standard Atmosphere reference height",
  87. "gh": "Geopotential Height",
  88. "u": "U component of wind",
  89. "v": "V component of wind",
  90. "t": "Temperature",
  91. },
  92. "heightAboveSea": {
  93. "t": "Temperature",
  94. "u": "U component of wind",
  95. "v": "V component of wind",
  96. },
  97. "isothermZero": {"gh": "Geopotential Height", "r": "Relative humidity"},
  98. "pressureFromGroundLayer": {
  99. "t": "Temperature",
  100. "r": "Relative humidity",
  101. "q": "Specific humidity",
  102. "u": "U component of wind",
  103. "v": "V component of wind",
  104. },
  105. "sigmaLayer": {"r": "Relative humidity"},
  106. "sigma": {
  107. "t": "Temperature",
  108. "pt": "Potential temperature",
  109. "r": "Relative humidity",
  110. "u": "U component of wind",
  111. "v": "V component of wind",
  112. "w": "Vertical velocity",
  113. },
  114. "potentialVorticity": {
  115. "u": "U component of wind",
  116. "v": "V component of wind",
  117. "t": "Temperature",
  118. "gh": "Geopotential Height",
  119. "pres": "Pressure",
  120. "vwsh": "Vertical speed shear",
  121. },
  122. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...