wxdata 2.0.4__tar.gz → 2.2__tar.gz

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.
Files changed (128) hide show
  1. wxdata-2.2/PKG-INFO +977 -0
  2. wxdata-2.2/README.md +945 -0
  3. {wxdata-2.0.4 → wxdata-2.2}/pyproject.toml +2 -2
  4. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/__init__.py +74 -1
  5. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/aigefs/aigefs.py +3 -0
  6. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/aigfs/aigfs.py +2 -0
  7. wxdata-2.2/src/wxdata/airnow_api/__init__.py +1 -0
  8. wxdata-2.2/src/wxdata/airnow_api/_errors.py +25 -0
  9. wxdata-2.2/src/wxdata/airnow_api/observations.py +450 -0
  10. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/cfs/cfs.py +3 -0
  11. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/ecmwf/ecmwf.py +24 -1
  12. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/gefs/gefs.py +9 -0
  13. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/gfs/gfs.py +8 -0
  14. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/hgefs/hgefs.py +3 -0
  15. wxdata-2.2/src/wxdata/open_meteo_api/air_quality/__init__.py +1 -0
  16. wxdata-2.2/src/wxdata/open_meteo_api/air_quality/cams.py +168 -0
  17. wxdata-2.2/src/wxdata/open_meteo_api/climate/__init__.py +1 -0
  18. wxdata-2.2/src/wxdata/open_meteo_api/climate/climate_data.py +984 -0
  19. wxdata-2.2/src/wxdata/open_meteo_api/marine_forecasts/__init__.py +4 -0
  20. wxdata-2.2/src/wxdata/open_meteo_api/marine_forecasts/dwd.py +220 -0
  21. wxdata-2.2/src/wxdata/open_meteo_api/marine_forecasts/ecmwf.py +187 -0
  22. wxdata-2.2/src/wxdata/open_meteo_api/marine_forecasts/meteo_france.py +205 -0
  23. wxdata-2.2/src/wxdata/open_meteo_api/marine_forecasts/noaa.py +235 -0
  24. wxdata-2.2/src/wxdata/open_meteo_api/seasonal_forecasts/__init__.py +3 -0
  25. wxdata-2.2/src/wxdata/open_meteo_api/seasonal_forecasts/ecmwf_daily.py +1404 -0
  26. wxdata-2.2/src/wxdata/open_meteo_api/seasonal_forecasts/ecmwf_monthly.py +263 -0
  27. wxdata-2.2/src/wxdata/open_meteo_api/seasonal_forecasts/ecmwf_weekly.py +235 -0
  28. wxdata-2.2/src/wxdata/open_meteo_api/solar_radiation/__init__.py +1 -0
  29. wxdata-2.2/src/wxdata/open_meteo_api/solar_radiation/models.py +157 -0
  30. wxdata-2.2/src/wxdata/open_meteo_api/solar_radiation/solar_radiation.py +265 -0
  31. wxdata-2.2/src/wxdata/open_meteo_api/weather_forecasts/__init__.py +9 -0
  32. wxdata-2.2/src/wxdata/open_meteo_api/weather_forecasts/cmc.py +557 -0
  33. wxdata-2.2/src/wxdata/open_meteo_api/weather_forecasts/current_weather.py +126 -0
  34. wxdata-2.2/src/wxdata/open_meteo_api/weather_forecasts/dwd.py +576 -0
  35. wxdata-2.2/src/wxdata/open_meteo_api/weather_forecasts/ecmwf.py +1869 -0
  36. wxdata-2.2/src/wxdata/open_meteo_api/weather_forecasts/google.py +718 -0
  37. wxdata-2.2/src/wxdata/open_meteo_api/weather_forecasts/jma.py +415 -0
  38. wxdata-2.2/src/wxdata/open_meteo_api/weather_forecasts/meteo_france.py +596 -0
  39. wxdata-2.2/src/wxdata/open_meteo_api/weather_forecasts/noaa.py +1931 -0
  40. wxdata-2.2/src/wxdata/open_meteo_api/weather_forecasts/ukmo.py +156 -0
  41. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/post_processors/aigefs_post_processing.py +3 -0
  42. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/post_processors/aigfs_post_processing.py +2 -0
  43. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/post_processors/cfs_post_processing.py +2 -0
  44. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/post_processors/ecmwf_post_processing.py +2 -0
  45. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/post_processors/gefs_post_processing.py +2 -0
  46. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/post_processors/gfs_post_processing.py +12 -1
  47. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/post_processors/hgefs_post_processing.py +2 -0
  48. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/post_processors/rtma_post_processing.py +2 -0
  49. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/rtma/rtma.py +3 -0
  50. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/soundings/wyoming_soundings.py +15 -5
  51. wxdata-2.2/src/wxdata/utils/api.py +149 -0
  52. wxdata-2.2/src/wxdata/utils/warnings.py +45 -0
  53. wxdata-2.2/src/wxdata.egg-info/PKG-INFO +977 -0
  54. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata.egg-info/SOURCES.txt +31 -0
  55. wxdata-2.0.4/PKG-INFO +0 -729
  56. wxdata-2.0.4/README.md +0 -697
  57. wxdata-2.0.4/src/wxdata.egg-info/PKG-INFO +0 -729
  58. {wxdata-2.0.4 → wxdata-2.2}/LICENSE +0 -0
  59. {wxdata-2.0.4 → wxdata-2.2}/setup.cfg +0 -0
  60. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/aigefs/__init__.py +0 -0
  61. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/aigefs/paths.py +0 -0
  62. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/aigefs/url_scanners.py +0 -0
  63. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/aigfs/__init__.py +0 -0
  64. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/aigfs/paths.py +0 -0
  65. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/aigfs/url_scanners.py +0 -0
  66. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/calc/__init__.py +0 -0
  67. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/calc/derived_fields.py +0 -0
  68. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/calc/kinematics.py +0 -0
  69. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/calc/thermodynamics.py +0 -0
  70. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/calc/unit_conversion.py +0 -0
  71. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/cfs/__init__.py +0 -0
  72. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/cfs/file_scanner.py +0 -0
  73. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/cfs/url_scanners.py +0 -0
  74. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/client/__init__.py +0 -0
  75. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/client/byte_range.py +0 -0
  76. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/client/client.py +0 -0
  77. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/client/level_coords.py +0 -0
  78. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/ecmwf/__init__.py +0 -0
  79. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/ecmwf/file_funcs.py +0 -0
  80. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/ecmwf/keys.py +0 -0
  81. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/ecmwf/parsers.py +0 -0
  82. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/ecmwf/paths.py +0 -0
  83. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/ecmwf/url_scanners.py +0 -0
  84. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/fems/__init__.py +0 -0
  85. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/fems/meta_data.py +0 -0
  86. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/fems/observations.py +0 -0
  87. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/gefs/__init__.py +0 -0
  88. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/gefs/exception_messages.py +0 -0
  89. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/gefs/file_funcs.py +0 -0
  90. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/gefs/paths.py +0 -0
  91. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/gefs/url_scanners.py +0 -0
  92. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/gfs/__init__.py +0 -0
  93. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/gfs/exception_messages.py +0 -0
  94. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/gfs/paths.py +0 -0
  95. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/gfs/url_scanners.py +0 -0
  96. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/hgefs/__init__.py +0 -0
  97. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/hgefs/paths.py +0 -0
  98. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/hgefs/url_scanner.py +0 -0
  99. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/metars/__init__.py +0 -0
  100. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/metars/_clean_data.py +0 -0
  101. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/metars/metar_obs.py +0 -0
  102. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/noaa/__init__.py +0 -0
  103. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/noaa/nws.py +0 -0
  104. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/post_processors/__init__.py +0 -0
  105. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/radar/__init__.py +0 -0
  106. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/radar/nexrad2.py +0 -0
  107. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/radar/url_scanner.py +0 -0
  108. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/rtma/__init__.py +0 -0
  109. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/rtma/file_funcs.py +0 -0
  110. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/rtma/file_scanner.py +0 -0
  111. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/rtma/keys.py +0 -0
  112. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/rtma/url_scanners.py +0 -0
  113. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/soundings/__init__.py +0 -0
  114. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/soundings/_exceptions.py +0 -0
  115. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/utils/__init__.py +0 -0
  116. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/utils/coords.py +0 -0
  117. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/utils/exceptions.py +0 -0
  118. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/utils/file_funcs.py +0 -0
  119. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/utils/file_scanner.py +0 -0
  120. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/utils/nomads_gribfilter.py +0 -0
  121. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/utils/progress_bar.py +0 -0
  122. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/utils/recycle_bin.py +0 -0
  123. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/utils/scripts.py +0 -0
  124. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/utils/tools.py +0 -0
  125. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata/utils/xmacis2_cleanup.py +0 -0
  126. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata.egg-info/dependency_links.txt +0 -0
  127. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata.egg-info/requires.txt +0 -0
  128. {wxdata-2.0.4 → wxdata-2.2}/src/wxdata.egg-info/top_level.txt +0 -0
wxdata-2.2/PKG-INFO ADDED
@@ -0,0 +1,977 @@
1
+ Metadata-Version: 2.4
2
+ Name: wxdata
3
+ Version: 2.2
4
+ Summary: A Python package of end-to-end weather data clients & raw data clients with VPN/PROXY support, data processors that decode variable keys from GRIB format into a plain-language format & various tools for assisting Python automated workflows, querying meteorological datasets and filling gaps in meteorological data.
5
+ Author: Eric J. Drewitz
6
+ Project-URL: Documentation, https://github.com/edrewitz/WxData/wiki
7
+ Project-URL: Repository, https://github.com/edrewitz/wxdata/tree/main
8
+ Keywords: meteorology,atmospheric sciences
9
+ Classifier: Programming Language :: Python
10
+ Classifier: Topic :: Scientific/Engineering
11
+ Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
12
+ Classifier: Operating System :: OS Independent
13
+ Requires-Python: >=3.10
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
16
+ Requires-Dist: metpy>=1.7.1
17
+ Requires-Dist: numpy>=2.2.6
18
+ Requires-Dist: pandas>=2.3.3
19
+ Requires-Dist: cartopy>=0.25.0
20
+ Requires-Dist: xarray>=2025.6.1
21
+ Requires-Dist: netcdf4>=1.7.3
22
+ Requires-Dist: shapeography>=1.2
23
+ Requires-Dist: beautifulsoup4>=4.14.3
24
+ Requires-Dist: requests>=2.32.5
25
+ Requires-Dist: cfgrib>=0.9.15.1
26
+ Requires-Dist: dask>=2025.11.0
27
+ Requires-Dist: tqdm>=4.67.3
28
+ Requires-Dist: ecmwf-opendata>=0.3.26
29
+ Requires-Dist: openpyxl>=3.1.5
30
+ Requires-Dist: arm-pyart>=2.2.0
31
+ Dynamic: license-file
32
+
33
+ <img src="https://github.com/edrewitz/WxData/blob/main/icons/weather%20icon.jpg?raw=true" width="200" alt="Alt text" /> <img src="https://github.com/edrewitz/WxData/blob/1be590e9a16033974a592d8cf99f3cd521f95e0b/icons/python%20logo.png?raw=true" width="200" alt="Alt text" />
34
+
35
+ [![Conda Recipe](https://img.shields.io/badge/recipe-wxdata-green.svg)](https://anaconda.org/conda-forge/wxdata) [![Conda Version](https://img.shields.io/conda/vn/conda-forge/wxdata.svg)](https://anaconda.org/conda-forge/wxdata) [![Conda Platforms](https://img.shields.io/conda/pn/conda-forge/wxdata.svg)](https://anaconda.org/conda-forge/wxdata) ![PyPI](https://img.shields.io/pypi/v/wxdata?label=pypi%20wxdata) [![Anaconda-Server Badge](https://anaconda.org/conda-forge/wxdata/badges/license.svg)](https://anaconda.org/conda-forge/wxdata) [![Anaconda-Server Badge](https://anaconda.org/conda-forge/wxdata/badges/latest_release_date.svg)](https://anaconda.org/conda-forge/wxdata)
36
+
37
+ [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.17727621.svg)](https://doi.org/10.5281/zenodo.17727621)
38
+
39
+
40
+
41
+ Anaconda Downloads
42
+
43
+ [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/wxdata.svg)](https://anaconda.org/conda-forge/wxdata)
44
+
45
+
46
+ PIP Downloads:
47
+
48
+ [![PyPI Downloads](https://static.pepy.tech/personalized-badge/wxdata?period=total&units=INTERNATIONAL_SYSTEM&left_color=BLACK&right_color=GREEN&left_text=downloads)](https://pepy.tech/projects/wxdata)
49
+
50
+
51
+
52
+ **(C) Eric J. Drewitz 2025-2026**
53
+
54
+ A Python package consisting of the following:
55
+
56
+ 1) End-to-end weather data clients with VPN/PROXY support
57
+ 2) Raw data clients with VPN/PROXY support
58
+ 3) Data processors that decode variable keys from GRIB format into a plain-language format
59
+ 4) Various tools for assisting Python automated workflows, querying meteorological datasets and filling gaps in meteorological data.
60
+ 5) Has interfaces with various weather APIs.
61
+
62
+ # Table of Contents
63
+
64
+ 1) [Installation Instructions](https://edrewitz.github.io/WxData/#installation-instructions)
65
+
66
+ 2) [Server List (For End-To-End Clients That Can Rotate Between Servers)](https://edrewitz.github.io/WxData/#server-list)
67
+
68
+ 3) [Proxy Server Configuration](https://edrewitz.github.io/WxData/#proxy-server-configuration)
69
+
70
+ 4) [What makes WxData unique among various meteorological Python packages?](https://edrewitz.github.io/WxData/#what-makes-wxdata-unique-among-various-meteorological-python-packages)
71
+
72
+ 5) [WxData Tutorials](https://edrewitz.github.io/WxData/#wxdata-tutorials)
73
+
74
+ 6) [WxData Documentation](https://edrewitz.github.io/WxData/#wxdata-documentation)
75
+
76
+ 7) [Importing Functions from WxData](https://edrewitz.github.io/WxData/#importing-functions-from-wxdata)
77
+
78
+ 8) [Citations](https://edrewitz.github.io/WxData/#citations)
79
+
80
+ 9) [Data Sources]()
81
+
82
+
83
+ ## Installation Instructions
84
+
85
+ **How To Install**
86
+
87
+ Copy and paste either command into your terminal or anaconda prompt:
88
+
89
+ *Install via Anaconda*
90
+
91
+ `conda install wxdata`
92
+
93
+ OR
94
+
95
+ `mamba install wxdata`
96
+
97
+ *Install via pip*
98
+
99
+ `pip install wxdata`
100
+
101
+ **How To Update To The Latest Version**
102
+
103
+ Copy and paste either command into your terminal or anaconda prompt:
104
+
105
+ *Update via Anaconda*
106
+
107
+ ***This is for users who initially installed WxData through Anaconda***
108
+
109
+ `conda update wxdata`
110
+
111
+ OR
112
+
113
+ `mamba update wxdata`
114
+
115
+ *Update via pip*
116
+
117
+ ***This is for users who initially installed WxData through pip***
118
+
119
+ `pip install --upgrade wxdata`
120
+
121
+ ***Important Compatibility Information***
122
+
123
+ When a new version of Python comes out, it might not be compatible with the C++ eccodes library immediately (especially on pip/pypi versions).
124
+
125
+ This issue arises when the user is post-processing GRIB data.
126
+
127
+ There are two options to resolve this issue:
128
+
129
+ i) Install wxdata via Anaconda/Miniconda3 --> `conda install wxdata`
130
+
131
+ ii) Set up a new environment with an earlier version of Python (must be Python >= 3.10) and then `pip install wxdata`
132
+
133
+ ---------------------------------------------------------
134
+ ## Server List
135
+
136
+
137
+
138
+ <img src="https://github.com/edrewitz/WxData/blob/main/icons/noaa_rotation.png?raw=true" width="200" alt="Alt text" /> <img src="https://github.com/edrewitz/WxData/blob/main/icons/ecmwf_rotation.png?raw=true" width="200" alt="Alt text" />
139
+
140
+ End-To-End clients with multiple servers to pull data from can find the different options for `source` by the table below
141
+
142
+ `source='noaa' - NOAA/NCEP/NOMADS OR NOAA/NWS/FTP`
143
+
144
+ `source='ecmwf' - ECMWF Open-Data Server`
145
+
146
+ `source='aws' - Amazon Web Services (AWS)`
147
+
148
+ `source='google' - Google Cloud`
149
+
150
+
151
+ | Client | NOAA/NCEP/NOMADS | ECMWF Open-Data | Amazon AWS | Google Cloud | NOAA/NWS/FTP |
152
+ | -------- | -------- | -------- | -------- | -------- | -------- |
153
+ | GFS0P25 |Y|N|Y|Y|N|
154
+ | GFS0P25 SECONDARY PARAMETERS |Y|N|Y|Y|N|
155
+ | GFS0P50 |Y|N|Y|Y|N|
156
+ | GEFS0P50 |Y|N|Y|Y|N|
157
+ | GEFS0P50 SECONDARY PARAMETERS |Y|N|Y|Y|N|
158
+ | GEFS0P25 |Y|N|Y|Y|N|
159
+ | ECMWF IFS |N|Y|Y|Y|N|
160
+ | ECMWF IFS Ensemble |N|Y|Y|Y|N|
161
+ | ECMWF AIFS|N|Y|Y|Y|N|
162
+ | ECMWF AIFS Ensemble|N|Y|Y|Y|N|
163
+ | ECMWF IFS Wave |N|Y|Y|Y|N|
164
+ | ECMWF IFS Wave Ensemble |N|Y|Y|Y|N|
165
+ | Get NDFD Grids |N|N|Y|N|Y|
166
+ | RTMA |Y|N|Y|N|N|
167
+
168
+ ---------------------------------------------------------
169
+
170
+ ## Proxy Server Configuration
171
+
172
+ ***Friendly for users working on VPN/PROXY connections***
173
+
174
+ Depending on which client, the proxy-address:port must be entered as either a dictionary or a string.
175
+
176
+ The clients that use a string for proxies are:
177
+
178
+ 1) All ECMWF clients.
179
+
180
+ 2) METAR Observations Client.
181
+
182
+ 3) `pixel_query()` tool if the user needs to download the airport station codes list.
183
+
184
+ All other clients use proxies as a dictionary
185
+
186
+ Example: We want to download the latest Observed Sounding Data for San Diego, CA (NKX)
187
+
188
+ ```python
189
+ proxies=None ---> proxies={
190
+ 'http':'http://your-proxy-address:port',
191
+ 'https':'http://your-proxy-address:port'
192
+ }
193
+ ```
194
+ ```python
195
+ # Here is our program
196
+ from wxdata import get_observed_sounding_data
197
+
198
+ proxies={
199
+ 'http':'http://your-proxy-address:port',
200
+ 'https':'http://your-proxy-address:port'
201
+ }
202
+
203
+ data = sounding_data = get_observed_sounding_data('nkx', proxies=proxies)
204
+ ```
205
+
206
+ Example: We want to download the ECMWF IFS Data:
207
+
208
+ ```python
209
+ proxies=None ---> proxies="http://your-proxy-address:port" ---> ds = ecmwf_ifs(proxies=proxies)
210
+ ```
211
+ ```python
212
+ # Here is our program
213
+ from wxdata import get_observed_sounding_data
214
+
215
+ proxies="https://your-proxy-address:port"
216
+
217
+ data = ecmwf_ifs(proxies=proxies)
218
+ ```
219
+
220
+ <img src="https://github.com/edrewitz/WxData/blob/main/diagrams/proxy.png?raw=true" width="500" alt="Alt text" />
221
+
222
+
223
+ For more information on configuring proxies: https://requests.readthedocs.io/en/latest/user/advanced/#proxies
224
+
225
+ ---------------------------------------------------------------------
226
+
227
+ ## What makes WxData unique among various meteorological Python packages?
228
+
229
+ 1) Converts GRIB variable keys into variable keys that are in plain language.
230
+ - (e.g. 'r2' ---> '2m_relative_humidity')
231
+
232
+ 2) Has a scanner that checks if the data files on your PC are up to date with those on the data server.
233
+ - This is a safeguard to protect newer developers from getting temporary IP address bans from the various data servers.
234
+ - Improves performance by preventing the potential of repetative downloading the same dataset.
235
+
236
+ 3) Preserves system memory via the following methods:
237
+ - Clears out old data files before each new data download.
238
+ - Optional setting `clear_recycle_bin` in all functions.
239
+ - When `clear_recycle_bin=True` the computer's recycle/trash bin is cleared with each run of the script using any WxData function.
240
+ - If a user wishes to not clear out their recycle bin `set clear_recycle_bin=False`.
241
+ - Default: `clear_recycle_bin=False`.
242
+
243
+ 4) Has built-in support for users on VPN/PROXY connections.
244
+
245
+ 5) Consists of both observational and model data.
246
+
247
+ 6) Has additional tools to assist querying data, resolving gaps in data and automating your Python workflow.
248
+
249
+ 7) Utilizes byte-range requests to subset and speed up download times.
250
+
251
+ 8) Several end-to-end clients have the ability to pull from multiple servers (NOAA/NCEP/NOMADS, ECMWF Open-Data, Amazon Web Services (AWS), Google Cloud and NOAA/NWS/FTP).
252
+
253
+ 9) Clients can automatically rotate to a new server when experiencing connectivity issues to the initial server.
254
+
255
+ -----------------------------------------------
256
+
257
+ ## WxData Tutorials
258
+
259
+ ### Regular Users
260
+ 1) [Downloading METAR Data](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/metars.ipynb)
261
+ 2) [Downloading Observed Sounding Data](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/soundings.ipynb)
262
+ 3) [Downloading the first 72 hours of the ECMWF IFS and ECMWF AIFS](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/ecmwf.ipynb)
263
+ 4) [Downloading the GEFS members p01 and p02 for only Temperature](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/gefs.ipynb)
264
+ 5) [Downloading the Real-Time Mesoscale Analysis (RTMA)](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/rtma.ipynb)
265
+ 6) [Downloading the SPC Convective Outlook for CONUS](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/spc.ipynb)
266
+ 7) [Downloading NWS Maximum Temperature Forecast for Hawaii](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/nws_hi.ipynb)
267
+ 8) [Downloading the GFS0P25 then performing pixel and line queries on the data](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/GFS.ipynb)
268
+
269
+ 9) [Downloading various datasets from the Applied Climate Information System (ACIS)](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/xmacis2.ipynb)
270
+
271
+ 10) [Downloading AIGFS Data](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/aigfs.ipynb)
272
+
273
+ 11) [Downloading AIGEFS Data](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/aigefs.ipynb)
274
+
275
+ 12) [Downloading and plotting the Climate Prediction Center 6-10 Day Precipitation Outlook](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/cpc_precip_outlook.ipynb)
276
+
277
+ 13) [Downloading OUN Sounding Data and Using The WxData Linear Anti Aliasing Tool To Interpolate 100 Points Between Each Observed Data Point And Visualize Both Data Sets](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/linear_anti_aliasing.ipynb)
278
+
279
+ 14) [Downloading Subsets Of ECMWF IFS Ensemble and AIFS Ensemble Data](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/ecmwf_ens.ipynb)
280
+
281
+ 15) [Downloading the ECMWF IFS 500 mb Geopotential Height Initial Analysis And Plot A North Pole Stereographic Resolving The Meridian With The WxData Cyclic Point Tool](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/cyclic.ipynb)
282
+
283
+ 16) [Downloading Observed Fuels Data For The Past Year For Acton RAWS and Plotting 1000-HR Dead Fuel Moisture](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/acton_raws.ipynb)
284
+
285
+ 17) [Downloading the 7-Day NFDRS Forecast for Acton RAWS and Plotting Forecast 100-HR Dead Fuel Moisture](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/acton_raws_forecast.ipynb)
286
+
287
+ 18) [Downloading Current RAWS and METAR Data and Plotting Current Relative Humidity Observations Across California and Nevada](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/metar_raws_observed_rh.ipynb)
288
+
289
+ 19) [Downloading Current RAWS Data and Plotting Current Energy Release Components (ERCs) Observations Across California and Nevada](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/observed_erc_map.ipynb)
290
+
291
+ 20) [Downloading NEXRAD II Radar Data and then plotting it in Py-ART](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/NEXRADII.ipynb)
292
+
293
+ 21) [Downloading 30 Days of 6hrly CFS Data and plotting the 30-Day time-mean for mean sea level pressure across the Northern Hemisphere](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/cfs.ipynb)
294
+
295
+ 22) [Download all 50 Ensemble Members of the ECMWF IFS Ensemble for 2-Meter Temperature Using the Open-Meteo API and Make an Ensemble Spaghetti Plot](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/ecmwf_ifs_ens_spaghetti.ipynb)
296
+
297
+ 23) [Download Solar Radiation Forecasts Using Open-Meteo API](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/open_meteo_api_solar_radiation.ipynb)
298
+
299
+ 24) [Download Latest Fine Particulates (PM2.5) and Ozone (O3) Observations Using Air Now API](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/air_now_api.ipynb)
300
+
301
+ ### Advanced Users
302
+
303
+ 1) [Using the `client` module to download the latest HadCRUT5 Analysis netCDF file and open this dataset in xarray](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/hadcrut5.ipynb)
304
+
305
+ 2) [Downloading the GFS0P25 for temperature fields and using run_external_scripts() to post-process this GFS0P25 dataset in an external Python script](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/external_scripts.ipynb)
306
+
307
+ 3) [Downloading GFS Data Using Byte-Range Requests](https://github.com/edrewitz/WxData-JupyterLab-Examples/blob/main/bytes_range_request.ipynb)
308
+
309
+ ---------------------------------------------------
310
+
311
+ ## WxData Documentation
312
+
313
+ ### Documentation Sections
314
+
315
+ 1. [End-To-End Data Clients](https://github.com/edrewitz/WxData?tab=readme-ov-file#end-to-end-data-clients)
316
+ 2. [Raw Data Clients](https://github.com/edrewitz/WxData?tab=readme-ov-file#raw-data-clients)
317
+ 3. [Post-Processors](https://github.com/edrewitz/WxData?tab=readme-ov-file#post-processors)
318
+ 4. [Data Querying Tools](https://github.com/edrewitz/WxData?tab=readme-ov-file#data-querying-tools)
319
+ 5. [Data Transformation & Gap Filling Tools](https://github.com/edrewitz/WxData?tab=readme-ov-file#data-transformation--gap-filling-tools)
320
+ 6. [Automated Python Workflow Tools](https://github.com/edrewitz/WxData?tab=readme-ov-file#automated-python-workflow-tools)
321
+ 7. [Open-Meteo API](https://github.com/edrewitz/WxData/blob/main/README.md#open-meteo-api)
322
+
323
+ #### End-To-End Data Clients
324
+
325
+ ##### ***Global Forecast System (GFS)***
326
+ 1. [GFS0P25](https://edrewitz.github.io/WxData/GFS0P25)
327
+ 2. [GFS0P25 SECONDARY PARAMETERS](https://edrewitz.github.io/WxData/GFS0P25%20Secondary%20Parameters)
328
+ 3. [GFS0P50](https://edrewitz.github.io/WxData/GFS0P50)
329
+
330
+ ##### ***AI Global Forecast System (AIGFS)***
331
+ 1. [AIGFS](https://edrewitz.github.io/WxData/aigfs)
332
+
333
+ ##### ***Climate Forecast System (CFS)***
334
+ 1. [CFS Pressure](https://edrewitz.github.io/WxData/cfs_pressure)
335
+ 2. [CFS Flux](https://edrewitz.github.io/WxData/cfs_flux)
336
+
337
+ ##### ***Hybrid Global Ensemble Forecast System (HGEFS)***
338
+ 1. [HGEFS](https://edrewitz.github.io/WxData/hgefs)
339
+
340
+ ##### ***Global Ensemble Forecast System (GEFS)***
341
+ 1. [GEFS0P50](https://edrewitz.github.io/WxData/GEFS0P50)
342
+ 2. [GEFS0P50 SECONDARY PARAMETERS](https://edrewitz.github.io/WxData/GEFS0P50%20Secondary%20Parameters)
343
+ 3. [GEFS0P25](https://edrewitz.github.io/WxData/GEFS0P25)
344
+
345
+ ##### ***AI Global Ensemble Forecast System (AIGEFS)***
346
+ 1. [AIGEFS Members (Pressure Parameters)](https://edrewitz.github.io/WxData/aigefs_pressure_members)
347
+ 2. [AIGEFS Members (Surface Parameters)](https://edrewitz.github.io/WxData/aigefs_surface_members)
348
+ 3. [AIGEFS Ensemble Mean & Ensemble Spread](https://edrewitz.github.io/WxData/aigefs_single)
349
+
350
+ ##### ***ECMWF Open Data***
351
+ 1. [ECMWF IFS](https://edrewitz.github.io/WxData/ECMWF_IFS)
352
+ 2. [ECMWF IFS Ensemble](https://edrewitz.github.io/WxData/ECMWF%20IFS%20Ensemble)
353
+ 3. [ECMWF AIFS](https://edrewitz.github.io/WxData/ECMWF_AIFS)
354
+ 4. [ECMWF AIFS Ensemble](https://edrewitz.github.io/WxData/ECMWF%20AIFS%20Ensemble)
355
+ 5. [ECMWF IFS Wave](https://edrewitz.github.io/WxData/ECMWF_IFS_Wave)
356
+ 6. [ECMWF IFS Wave Ensemble](https://edrewitz.github.io/WxData/ECMWF%20IFS%20Wave%20Ensemble)
357
+
358
+ ##### ***Real-Time Mesoscale Analysis (RTMA)***
359
+ 1. [RTMA](https://edrewitz.github.io/WxData/rtma)
360
+ 2. [RTMA Comparison](https://edrewitz.github.io/WxData/rtma%20comparison)
361
+
362
+ ##### ***NOAA Storm Prediction Center Outlooks/Climate Prediction Center Outlooks/National Weather Service Forecasts***
363
+ 1. [Get NDFD Grids](https://edrewitz.github.io/WxData/noaa)
364
+ 2. [Climate Prediction Center Outlooks](https://edrewitz.github.io/WxData/cpc_outlooks)
365
+
366
+ ##### ***METAR Observations***
367
+ 1. [METAR Observations](https://edrewitz.github.io/WxData/metars)
368
+
369
+ ##### ***FEMS RAWS Network***
370
+ 1. [Get Single Station Weather Observations](https://edrewitz.github.io/WxData/single%20raws%20weather%20obs)
371
+ 2. [Get Single Station Fuels Observations](https://edrewitz.github.io/WxData/single%20raws%20fuels%20obs)
372
+ 3. [Get Multi Station Weather Observations](https://edrewitz.github.io/WxData/multi%20raws%20weather%20obs)
373
+ 4. [Get Multi Station Fuels Observations](https://edrewitz.github.io/WxData/multi%20raws%20fuels%20obs)
374
+ 5. [Get Current Multi Station Weather Observations](https://edrewitz.github.io/WxData/current%20multi%20raws%20weather%20obs)
375
+ 6. [Get Current Multi Station Fuels Observations](https://edrewitz.github.io/WxData/current%20multi%20raws%20fuels%20obs)
376
+ 7. [Get Current Multi Station Weather Observations By State](https://edrewitz.github.io/WxData/raws%20weather%20obs%20by%20state)
377
+ 8. [Get Current Multi Station Fuels Observations By State](https://edrewitz.github.io/WxData/raws%20fuels%20obs%20by%20state)
378
+ 9. [Get Single Station Weather Forecast](https://edrewitz.github.io/WxData/single%20raws%20weather%20forecast)
379
+ 10. [Get Single Station NFDRS (Fuels) Forecast](https://edrewitz.github.io/WxData/single%20raws%20nfdrs%20forecast)
380
+ 11. [Get Multi Station Weather Forecast](https://edrewitz.github.io/WxData/multi%20raws%20weather%20forecast)
381
+ 12. [Get Multi Station NFDRS (Fuels) Forecast](https://edrewitz.github.io/WxData/multi%20raws%20nfdrs%20forecast)
382
+ 13. [Get Single Station Meta-Data](https://edrewitz.github.io/WxData/raws%20single%20station%20meta%20data)
383
+ 14. [Get Multi Station Meta-Data](https://edrewitz.github.io/WxData/raws%20multi%20station%20meta%20data)
384
+
385
+ ##### ***Observed Atmospheric Soundings***
386
+ 1. [University Of Wyoming Soundings](https://edrewitz.github.io/WxData/wyoming_soundings)
387
+
388
+ ##### ***NEXRAD II Radar Data***
389
+ 1. [Single Site](https://edrewitz.github.io/WxData/nexrad2_single)
390
+ 2. [Multi-Site](https://edrewitz.github.io/WxData/nexrad2_multi)
391
+
392
+ -----------------------------
393
+
394
+ #### Post-Processors
395
+
396
+ ##### ***GFS Post-Processing***
397
+ 1. [Primary GFS Post-Processing](https://edrewitz.github.io/WxData/Primary%20GFS%20Post%20Processing)
398
+ 2. [Secondary GFS Post-Processing](https://edrewitz.github.io/WxData/Secondary%20GFS%20Post%20Processing)
399
+
400
+ ##### ***AIGFS Post-Processing***
401
+ 1. [AIGFS Post-Processing](https://edrewitz.github.io/WxData/aigfs_post_processing)
402
+
403
+ ##### ***CFS Post-Processing***
404
+ 1. [CFS Pressure Post-Processing](https://edrewitz.github.io/WxData/cfs_pressure_post_processing)
405
+ 2. [CFS Flux Post-Processing](https://edrewitz.github.io/WxData/cfs_flux_post_processing)
406
+
407
+ ##### ***GEFS Post-Processing***
408
+ 1. [Primary GEFS Post-Processing](https://edrewitz.github.io/WxData/Primary%20GEFS%20Post-Processing)
409
+ 2. [Secondary GEFS Post-Processing](https://edrewitz.github.io/WxData/Secondary%20GEFS%20Post%20Processing)
410
+
411
+ ##### ***AIGEFS Post-Processing***
412
+ 1. [AIGEFS Members Post-Processing](https://edrewitz.github.io/WxData/aigefs_members_post_processing)
413
+ 2. [AIGEFS Single Post-Processing](https://edrewitz.github.io/WxData/aigefs_single_post_processing)
414
+
415
+ ##### ***HGEFS Post-Processing***
416
+ 1. [HGEFS Post-Processing](https://edrewitz.github.io/WxData/hgefs_post_processing)
417
+
418
+ ##### ***ECMWF Post-Processing***
419
+ 1. [ECMWF IFS and IFS Ensemble](https://edrewitz.github.io/WxData/ECMWF%20IFS%20Post%20Processing)
420
+ 2. [ECMWF AIFS and AIFS Ensemble](https://edrewitz.github.io/WxData/ECMWF%20AIFS%20Post%20Processing)
421
+ 3. [ECMWF IFS Wave and IFS Wave Ensemble](https://edrewitz.github.io/WxData/ECMWF%20IFS%20Wave%20Post%20Processing)
422
+
423
+ ##### ***Real-Time Mesoscale Analysis Post-Processing***
424
+ 1. [RTMA](https://edrewitz.github.io/WxData/RTMA%20Post%20Processing)
425
+
426
+ -----------------------------------------------
427
+
428
+ #### Raw Data Clients
429
+
430
+ ##### ***xmACIS2 Climate Data***
431
+ 1. [xmACIS2 Client](https://edrewitz.github.io/WxData/xmacis2_client)
432
+
433
+ ##### ***Custom Gridded Data***
434
+ 1. [Gridded Data Client](https://edrewitz.github.io/WxData/get_gridded_data)
435
+
436
+ ##### ***Custom CSV Data***
437
+ 1. [CSV Data Client](https://edrewitz.github.io/WxData/get_csv_data)
438
+
439
+ ##### ***Custom Excel Data***
440
+ 1. [Excel Data Client](https://edrewitz.github.io/WxData/get_excel_data)
441
+
442
+ ##### ***AWS Open Data***
443
+ 1. [AWS Open Data](https://edrewitz.github.io/WxData/get_open_aws_data)
444
+
445
+ ##### ***Byte-Range Requests***
446
+ 1. [Byte-Range Requests](https://edrewitz.github.io/WxData/bytes_range_request)
447
+
448
+ ---------------------------------------------------------------
449
+
450
+ #### Data Querying Tools
451
+
452
+ ##### ***Pixel Query***
453
+ 1. [pixel_query](https://edrewitz.github.io/WxData/pixel_query)
454
+
455
+ ##### ***Line Query***
456
+ 1. [line_query](https://edrewitz.github.io/WxData/line_query)
457
+
458
+ --------------------------------------------------
459
+
460
+ #### Data Transformation & Gap Filling Tools
461
+
462
+ ##### ***Cyclic Points For Hemispheric Plots***
463
+ 1. [Cyclic Points](https://edrewitz.github.io/WxData/cyclic_point)
464
+
465
+ ##### ***Shifting Longitude From 0 to 360 --> -180 to 180***
466
+ 1. [shift_longitude](https://edrewitz.github.io/WxData/shift_longitude)
467
+
468
+ ##### ***Linear Anti-Aliasing Between Two Points***
469
+ 1. [linear_anti_aliasing](https://edrewitz.github.io/WxData/linear_anti_aliasing)
470
+
471
+ ------------------------------------------
472
+
473
+ #### Automated Python Workflow Tools
474
+
475
+ ##### ***Running External Python Scripts In Your Workflow***
476
+
477
+ 1 [run_external_scripts](https://edrewitz.github.io/WxData/run_external_scripts)
478
+
479
+ ---------------------------------------
480
+
481
+ #### Open-Meteo API
482
+
483
+ ##### Weather Forecasts
484
+ ###### ***Current Weather***
485
+ 1. [Current Weather](https://edrewitz.github.io/WxData/open%20meteo%20api%20current%20weather)
486
+
487
+ ###### ***National Oceanic and Atmospheric Administrationn (NOAA)***
488
+ 1. [GFS](https://edrewitz.github.io/WxData/open%20meteo%20api%20noaa%20gfs)
489
+ 2. [GEFS](https://edrewitz.github.io/WxData/open%20meteo%20api%20noaa%20gefs)
490
+ 3. [AIGFS](https://edrewitz.github.io/WxData/open%20meteo%20api%20noaa%20aigfs)
491
+ 4. [AIGEFS](https://edrewitz.github.io/WxData/open%20meteo%20api%20noaa%20aigefs)
492
+ 5. [HGEFS](https://edrewitz.github.io/WxData/open%20meteo%20api%20noaa%20hgefs)
493
+ 6. [NBM](https://edrewitz.github.io/WxData/open%20meteo%20api%20noaa%20nbm)
494
+
495
+ ###### ***European Centre for Medium-Range Weather Forecasts (ECMWF)***
496
+ 1. [IFS](https://edrewitz.github.io/WxData/open%20meteo%20api%20ecmwf%20ifs)
497
+ 2. [AIFS](https://edrewitz.github.io/WxData/open%20meteo%20api%20ecmwf%20aifs)
498
+ 3. [IFS HRES](https://edrewitz.github.io/WxData/open%20meteo%20api%20ecmwf%20ifs%20hres)
499
+ 4. [IFS Ensemble](https://edrewitz.github.io/WxData/open%20meteo%20api%20ecmwf%20ifs%20ens)
500
+ 5. [AIFS Ensemble](https://edrewitz.github.io/WxData/open%20meteo%20api%20ecmwf%20aifs%20ens)
501
+
502
+ ###### ***Canadian Meteorological Centre (CMC)***
503
+ 1. [GEM](https://edrewitz.github.io/WxData/open%20meteo%20api%20cmc%20gem)
504
+ 2. [GEM Ensemble](https://edrewitz.github.io/WxData/open%20meteo%20api%20cmc%20gem%20ens)
505
+
506
+ ###### ***Deutscher Wetterdienst (DWD)***
507
+ 1. [ICON](https://edrewitz.github.io/WxData/open%20meteo%20api%20dwd%20icon)
508
+ 2. [ICON EPS](https://edrewitz.github.io/WxData/open%20meteo%20api%20dwd%20icon%20eps)
509
+
510
+ ###### ***Meteo-France***
511
+ 1. [ARPEGE](https://edrewitz.github.io/WxData/open%20meteo%20api%20meteo%20france%20arpege)
512
+
513
+ ###### ***Japan Meteorological Agency (JMA)***
514
+ 1. [JMA](https://edrewitz.github.io/WxData/open%20meteo%20api%20jma%20jma)
515
+
516
+ ###### ***UK Met Office (UKMO)***
517
+ 1. [UKMO Global Ensemble](https://edrewitz.github.io/WxData/open%20meteo%20api%20ukmo%20global%20ens)
518
+
519
+ ###### ***Google***
520
+ 1. [Weather Next 2 All Ensemble Members](https://edrewitz.github.io/WxData/open%20meteo%20api%20google%20weather%20next%202%20members)
521
+ 2. [Weather Next 2 Ensemble Mean](https://edrewitz.github.io/WxData/open%20meteo%20api%20google%20weather%20next%202%20ensemble%20mean)
522
+
523
+ ##### Marine Forecasts
524
+
525
+ ###### ***National Oceanic and Atmospheric Administrationn (NOAA)***
526
+ 1. [GFS0P25 Wave Forecasts](https://edrewitz.github.io/WxData/open%20meteo%20api%20gfs0p25%20wave)
527
+ 2. [GFS0P16 Wave Forecasts](https://edrewitz.github.io/WxData/open%20meteo%20api%20gfs0p16%20wave)
528
+
529
+ ###### ***European Centre for Medium-Range Weather Forecasts (ECMWF)***
530
+ 1. [ECMWF Wave Model](https://edrewitz.github.io/WxData/open%20meteo%20api%20ecmwf%20wam)
531
+ 2. [ECMWF Wave Model 0.25 Degree](https://edrewitz.github.io/WxData/open%20meteo%20api%20ecmwf%20wam%200p25)
532
+
533
+ ###### ***Meteo-France***
534
+ 1. [Meteo-France Wave Model](https://edrewitz.github.io/WxData/open%20meteo%20api%20meteo%20france%20wave)
535
+ 2. [Meteo-France Ocean Currents Model](https://edrewitz.github.io/WxData/open%20meteo%20api%20meteo%20france%20ocean%20currents)
536
+
537
+ ###### ***Deutscher Wetterdienst (DWD)***
538
+ 1. [European Domain Wave Model](https://edrewitz.github.io/WxData/open%20meteo%20api%20ewam)
539
+ 2. [Global Domian Wave Model](https://edrewitz.github.io/WxData/open%20meteo%20api%20gwam)
540
+
541
+ ##### Seasonal Forecasts
542
+
543
+ ###### ***Daily Forecasts***
544
+ 1. [ECMWF EC46 + SEAS5 Ensemble Members](https://edrewitz.github.io/WxData/open%20meteo%20api%20ec46%20seas5%20daily)
545
+ 2. [ECMWF EC46 Ensemble Members](https://edrewitz.github.io/WxData/open%20meteo%20api%20ec46%20daily)
546
+ 3. [ECMWF SEAS5 Ensemble Members](https://edrewitz.github.io/WxData/open%20meteo%20api%20seas5%20daily)
547
+ 4. [ECMWF EC46 + SEAS5 Ensemble Mean](https://edrewitz.github.io/WxData/open%20meteo%20api%20ec46%20seas5%20daily%20ensemble%20mean)
548
+ 5. [ECMWF EC46 Ensemble Mean](https://edrewitz.github.io/WxData/open%20meteo%20api%20ec46%20daily%20ensemble%20mean)
549
+ 6. [ECMWF SEAS5 Ensemble Mean](https://edrewitz.github.io/WxData/open%20meteo%20api%20seas5%20daily%20ensemble%20mean)
550
+
551
+ ###### ***Weekly Forecasts***
552
+ 1. [ECMWF EC46 Mean & Anomaly](https://edrewitz.github.io/WxData/open%20meteo%20api%20ec46%20weekly%20mean%20anomaly)
553
+
554
+ ###### ***Monthly Forecasts***
555
+ 1. [ECMWF SEAS5 Mean & Anomaly](https://edrewitz.github.io/WxData/open%20meteo%20api%20seas5%20monthly%20mean%20anomaly)
556
+
557
+ ##### Climate Reanalysis & Forecasts
558
+ 1. [CMCC-CM2-VHR4](https://edrewitz.github.io/WxData/open%20meteo%20api%20cmcc_cm2_vhr4%20forecasts)
559
+ 2. [FGOALS_f3_H](https://edrewitz.github.io/WxData/open%20meteo%20api%20fgoals_f3_h%20forecasts)
560
+ 3. [HiRAM_SIT_HR](https://edrewitz.github.io/WxData/open%20meteo%20api%20hiram_sit_hr%20forecasts)
561
+ 4. [MRI_AGCM3_2_S](https://edrewitz.github.io/WxData/open%20meteo%20api%20mri_agcm3_2_s%20forecasts)
562
+ 5. [EC_Earth3P_HR](https://edrewitz.github.io/WxData/open%20meteo%20api%20ec_earth3p_hr%20forecasts)
563
+ 6. [MPI_ESM1_2_XR](https://edrewitz.github.io/WxData/open%20meteo%20api%20mpi_esm1_2_xr%20forecasts)
564
+ 7. [NICAM16_8S](https://edrewitz.github.io/WxData/open%20meteo%20api%20nicam16_8s%20forecasts)
565
+
566
+ ##### Air Quality Forecasts
567
+ 1. [CAMS](https://edrewitz.github.io/WxData/open%20meteo%20api%20air%20quality)
568
+
569
+ ##### Solar Radiation Forecasts
570
+ 1. [Solar Radiation Forecast](https://edrewitz.github.io/WxData/open%20meteo%20api%20solar%20radiation)
571
+
572
+ ---------------------------------------
573
+
574
+ #### Air Now API
575
+
576
+ ##### ***Observations***
577
+ 1. [Get Current Data Bounding Box](https://edrewitz.github.io/WxData/air%20now%20api%20observations)
578
+ 2. [Get Historical Data Bounding Box](https://edrewitz.github.io/WxData/air%20now%20api%20historical%20observations)
579
+
580
+ ---------------------------------------
581
+
582
+ ## Importing Functions from WxData
583
+
584
+ ```Python
585
+ """
586
+ This file hosts all of the functions in the WxData Python library that directly interact with the user.
587
+
588
+ (C) Eric J. Drewitz 2025-2026
589
+ """
590
+
591
+
592
+ """
593
+ This section of functions are for users who want full wxdata functionality.
594
+
595
+ These functions do the following:
596
+
597
+ 1) Scan for the latest available data.
598
+ - If the data on your local machine is not up to date, new data will download automatically.
599
+ - If the data on your local machine is up to date, new data download is bypassed.
600
+ - This is a safeguard that prevents excessive requests on the data servers.
601
+
602
+ 2) Builds the wxdata directory to store the weather data files.
603
+ - Scans for the directory branch and builds the branch if it does not exist.
604
+
605
+ 3) Downloads the data.
606
+ - Users can define their VPN/PROXY IP Address as a (dict) in their script and pass their
607
+ VPN/PROXY IP address into the function to avoid SSL Certificate errors when requesting data.
608
+ - Algorithm allows for up to 5 retries with a 30 second break between each retry to resolve connection
609
+ interruptions while not overburdening the data servers.
610
+
611
+ 4) Pre-processes the data via filename formatting and correctly filing in the wxdata directory.
612
+
613
+ 5) Post-processing by doing the following tasks:
614
+ - Remapping GRIB2 variable keys into plain language variable keys.
615
+ - Fixing dataset build errors and grouping all variables together.
616
+ - Transforms longitude from 0 to 360 degrees into -180 to 180 degrees.
617
+ - Subsetting the data to the latitude/longitude boundaries specified by the user.
618
+ - Converting temperature from kelvin to units the user wants (default is Celsius).
619
+ - Returning a post-processed xarray.array to the user.
620
+
621
+ 6) Preserves system memory by doing the following:
622
+ - Deleting old data files before each new download.
623
+ - When clear_recycle_bin=True, the user's recycle bin is also cleared.
624
+ """
625
+
626
+ # Global Forecast System (GFS)
627
+ # - GFS 0.25x0.25 Degree Primary Parameters
628
+ # - GFS 0.25x0.25 Degree Secondary Parameters
629
+ # - GFS 0.5x0.5 Degree
630
+ from wxdata.gfs.gfs import(
631
+ gfs_0p25,
632
+ gfs_0p25_secondary_parameters,
633
+ gfs_0p50
634
+ )
635
+
636
+ # AI Global Forecast System (AIGFS)
637
+ from wxdata.aigfs.aigfs import aigfs
638
+
639
+ # Hybrid Global Ensemble Forecast System (HGEFS)
640
+ from wxdata.hgefs.hgefs import hgefs_mean_spread
641
+
642
+ # Global Ensemble Forecast System (GEFS)
643
+ # - GEFS 0.5x0.5 Degree Primary Parameters
644
+ # - GEFS 0.5x0.5 Degree Secondary Parameters
645
+ # - GEFS 0.25x0.25 Degree
646
+ from wxdata.gefs.gefs import(
647
+ gefs_0p50,
648
+ gefs_0p50_secondary_parameters,
649
+ gefs_0p25
650
+ )
651
+
652
+ # Climate Forecast System (CFS)
653
+ # - CFS Flux Products
654
+ # - CFS Pressure Products
655
+ from wxdata.cfs.cfs import(
656
+ cfs_flux,
657
+ cfs_pressure
658
+ )
659
+
660
+ # AI Global Ensemble Forecast System (AIGEFS)
661
+ # - AIGEFS Pressure Members (Pressure Level Variables)
662
+ # - AIGEFS Surface Members (Surface Level Variables)
663
+ # - AIGEFS Single (AIGEFS Ensemble Mean & AIGEFS Ensemble Spread)
664
+ from wxdata.aigefs.aigefs import(
665
+ aigefs_pressure_members,
666
+ aigefs_surface_members,
667
+ aigefs_single
668
+ )
669
+
670
+ # European Centre for Medium-Range Weather Forecasts (ECMWF)
671
+ # - ECMWF IFS
672
+ # - ECMWF IFS Ensemble
673
+ # - ECMWF AIFS
674
+ # - ECMWF AIFS Ensemble
675
+ # - ECMWF IFS Wave
676
+ # - ECMWF IFS Wave Ensemble
677
+ from wxdata.ecmwf.ecmwf import(
678
+ ecmwf_ifs,
679
+ ecmwf_ifs_ens,
680
+ ecmwf_aifs,
681
+ ecmwf_aifs_ens,
682
+ ecmwf_ifs_wave,
683
+ ecmwf_ifs_wave_ens
684
+ )
685
+
686
+ # FEMS RAWS Network
687
+ # - Single Station Weather Observations
688
+ # - Single Station Fuels Observations
689
+ # - Multi Station Weather Observations
690
+ # - Multi Station Fuels Observations
691
+ # - Current Weather Observations - Multi Station
692
+ # - Current Fuels Observations - Multi Station
693
+ # - Current Weather Observations - All Stations By State
694
+ # - Current Fuels Observations - All Stations By State
695
+ # - Single Station NFDRS Forecast
696
+ # - Multi Station NFDRS Forecast
697
+ # - Single Station Weather Forecast
698
+ # - Multi Station Weather Forecast
699
+ from wxdata.fems.observations import(
700
+ get_single_raws_station_weather_observations,
701
+ get_single_raws_station_fuels_observations,
702
+ get_multi_raws_station_weather_observations,
703
+ get_multi_raws_station_fuels_observations,
704
+ get_current_multi_raws_station_weather_observations,
705
+ get_current_multi_raws_station_fuels_observations,
706
+ get_current_all_raws_station_weather_observations,
707
+ get_current_all_raws_station_fuels_observations,
708
+ get_single_raws_station_nfdrs_forecast,
709
+ get_multi_raws_station_nfdrs_forecast,
710
+ get_single_raws_station_weather_forecast,
711
+ get_multi_raws_station_weather_forecast
712
+ )
713
+
714
+ # FEMS RAWS Network
715
+ # - Single Station Meta Data
716
+ # - Multi Station Meta Data
717
+ from wxdata.fems.meta_data import(
718
+ get_single_raws_station_meta_data,
719
+ get_multi_raws_station_meta_data
720
+ )
721
+
722
+ # Real-Time Mesoscale Analysis (RTMA)
723
+ # - RTMA Latest
724
+ # - RTMA Comparison Between Two Times
725
+ from wxdata.rtma.rtma import(
726
+ rtma,
727
+ rtma_comparison
728
+ )
729
+
730
+ # NOAA
731
+ # - Storm Prediction Center Outlooks
732
+ # - Climate Prediction Center Outlooks
733
+ # - National Weather Service Forecasts
734
+ from wxdata.noaa.nws import(
735
+ get_ndfd_grids,
736
+ get_cpc_outlook
737
+ )
738
+
739
+ # Observed Upper-Air Soundings
740
+ # (University of Wyoming Database)
741
+ from wxdata.soundings.wyoming_soundings import get_observed_sounding_data
742
+
743
+ # METAR Observational Data (From NOAA)
744
+ from wxdata.metars.metar_obs import download_metar_data
745
+
746
+ # NEXRAD2 Radar Data
747
+ # - NEXRAD2 Radar Single Station
748
+ # - NEXRAD2 Radar Multi Station
749
+ from wxdata.radar.nexrad2 import(
750
+ download_current_single_station_nexrad2_radar_data,
751
+ download_current_multi_station_nexrad2_radar_data
752
+ )
753
+
754
+ """
755
+ This section hosts all the functions and modules that involve post-processing the data.
756
+ These are the functions and modules that:
757
+
758
+ 1) Re-map the GRIB2 Variable Keys into Plain Language Keys
759
+ 2) Build the xarray.array of the various datasets.
760
+
761
+ """
762
+
763
+
764
+ # Global Forecast System (GFS)
765
+ import wxdata.post_processors.gfs_post_processing as gfs_post_processing
766
+
767
+ # AI Global Forecast System (AIGFS)
768
+ import wxdata.post_processors.aigfs_post_processing as aigfs_post_processing
769
+
770
+ # Hybrid Global Ensemble Forecast System (HGEFS)
771
+ import wxdata.post_processors.hgefs_post_processing as hgefs_post_processing
772
+
773
+ # Global Ensemble Forecast System (GEFS)
774
+ import wxdata.post_processors.gefs_post_processing as gefs_post_processing
775
+
776
+ # AI Global Ensemble Forecast System (AIGEFS)
777
+ import wxdata.post_processors.aigefs_post_processing as aigefs_post_processing
778
+
779
+ # European Centre for Medium-Range Weather Forecasts (ECMWF)
780
+ import wxdata.post_processors.ecmwf_post_processing as ecmwf_post_processing
781
+
782
+ # Climate Forecast System (CFS)
783
+ import wxdata.post_processors.cfs_post_processing as cfs_post_processing
784
+
785
+ # Real-Time Mesoscale Analysis (RTMA)
786
+ from wxdata.post_processors.rtma_post_processing import process_rtma_data
787
+
788
+
789
+ """
790
+ This section hosts the utility functions accessable to the user.
791
+
792
+ These functions provide helpful utilities when analyzing weather data.
793
+
794
+ Utility functions are geared towards the following types of users:
795
+
796
+ 1) Users who want to use their own scripts to download the data however, they
797
+ would like to use the wxdata post-processing capabilities.
798
+
799
+ 2) Users who want to make hemispheric graphics or any graphics where cyclic points
800
+ resolve missing data along the prime meridian or international dateline.
801
+ """
802
+ # WxData function using cartopy to make cyclic points
803
+ # This is for users who wish to make graphics that cross the -180/180 degree longitude line
804
+ # This is commonly used for Hemispheric graphics
805
+ # Function that converts the longitude dimension in an xarray.array
806
+ # From 0 to 360 to -180 to 180
807
+ from wxdata.utils.coords import(
808
+ cyclic_point,
809
+ shift_longitude
810
+ )
811
+
812
+ # Functions to pixel query and query pixels along a line between points A and B
813
+ # Function to interpolate to n amount of points in between x and y values respectively
814
+ from wxdata.utils.tools import(
815
+ pixel_query,
816
+ line_query,
817
+ linear_anti_aliasing
818
+ )
819
+
820
+ # This function executes a list of Python scripts in the order the user lists them
821
+ from wxdata.utils.scripts import run_external_scripts
822
+
823
+ """
824
+ This section hosts the various data clients that retrieve various types of data.
825
+
826
+ These clients can be easily configured to work on VPN/PROXY connections.
827
+ """
828
+
829
+ # These are the wxdata HTTPS Clients with full VPN/PROXY Support
830
+ # Client List:
831
+ # - get_gridded_data()
832
+ # - get_csv_data()
833
+ # - get_excel_data()
834
+ # - get_xmacis_data()
835
+ # - get_aws_open_data()
836
+ # - byte_range_request()
837
+ import wxdata.client.client as client
838
+
839
+ """
840
+ ***************************************************************************
841
+
842
+
843
+ ************ This section hosts the different API Interfaces. ***********
844
+
845
+
846
+ ***************************************************************************
847
+ """
848
+ #######################
849
+ ### Open-Meteo API ###
850
+ #######################
851
+
852
+ # Open-Meteo API: https://open-meteo.com/
853
+
854
+ ### Weather Forecasts ###
855
+
856
+ # - NOAA/NCEP Models
857
+ # - ECMWF Models
858
+ # - Deutscher Wetterdienst (DWD) Models
859
+ # - Meteo-France Models
860
+ # - CMC Models
861
+ # - Japan Meteorological Agency (JMA) Models
862
+ # - UK Met Office (UKMO)
863
+ # - Current Weather (Model Mosaic)
864
+ # - Google (Weather Next 2 Ensemble)
865
+ import wxdata.open_meteo_api.weather_forecasts.noaa as open_meteo_api_noaa
866
+ import wxdata.open_meteo_api.weather_forecasts.ecmwf as open_meteo_api_ecmwf
867
+ import wxdata.open_meteo_api.weather_forecasts.dwd as open_meteo_api_dwd
868
+ import wxdata.open_meteo_api.weather_forecasts.meteo_france as open_meteo_api_meteo_france
869
+ import wxdata.open_meteo_api.weather_forecasts.cmc as open_meteo_api_cmc
870
+ import wxdata.open_meteo_api.weather_forecasts.jma as open_meteo_api_jma
871
+ import wxdata.open_meteo_api.weather_forecasts.ukmo as open_meteo_api_ukmo
872
+ import wxdata.open_meteo_api.weather_forecasts.current_weather as open_meteo_api_current_weather
873
+ import wxdata.open_meteo_api.weather_forecasts.google as open_meteo_api_google
874
+
875
+ ### Seasonal Forecasts (ECMWF EC46 & SEAS5) ###
876
+
877
+ # - Daily Data (EC46 & SEAS5)
878
+ # - Weekly Data (EC46)
879
+ # - Monthly Data (SEAS5)
880
+ import wxdata.open_meteo_api.seasonal_forecasts.ecmwf_daily as open_meteo_api_ecmwf_seasonal_forecasts_daily
881
+ import wxdata.open_meteo_api.seasonal_forecasts.ecmwf_weekly as open_meteo_api_ecmwf_seasonal_forecasts_weekly
882
+ import wxdata.open_meteo_api.seasonal_forecasts.ecmwf_monthly as open_meteo_api_ecmwf_seasonal_forecasts_monthly
883
+
884
+ ### Climate Data ###
885
+ import wxdata.open_meteo_api.climate.climate_data as open_meteo_api_climate_data
886
+
887
+ ### Air Quality Information ###
888
+ import wxdata.open_meteo_api.air_quality.cams as open_meteo_api_air_quality
889
+
890
+ ### Marine Forecasts ###
891
+ # - Meteo-France
892
+ # - Deutscher Wetterdienst (DWD)
893
+ # - ECMWF
894
+ # - NOAA
895
+ import wxdata.open_meteo_api.marine_forecasts.meteo_france as open_meteo_api_meteo_france_marine
896
+ import wxdata.open_meteo_api.marine_forecasts.dwd as open_meteo_api_dwd_marine
897
+ import wxdata.open_meteo_api.marine_forecasts.ecmwf as open_meteo_api_ecmwf_marine
898
+ import wxdata.open_meteo_api.marine_forecasts.noaa as open_meteo_api_noaa_marine
899
+
900
+ ### Solar Radiation Forecasts ###
901
+ import wxdata.open_meteo_api.solar_radiation.solar_radiation as open_meteo_api_solar_radiation
902
+
903
+ ###################
904
+ ### Air-Now API ###
905
+ ###################
906
+
907
+ # Air-Now API: https://docs.airnowapi.org/
908
+
909
+ # - Observations
910
+ import wxdata.airnow_api.observations as air_now_observations
911
+
912
+ ```
913
+ -------------------------------------------
914
+
915
+ ## Citations
916
+
917
+ **MetPy**: May, R. M., Goebbert, K. H., Thielen, J. E., Leeman, J. R., Camron, M. D., Bruick, Z.,
918
+ Bruning, E. C., Manser, R. P., Arms, S. C., and Marsh, P. T., 2022: MetPy: A
919
+ Meteorological Python Library for Data Analysis and Visualization. Bull. Amer. Meteor.
920
+ Soc., 103, E2273-E2284, https://doi.org/10.1175/BAMS-D-21-0125.1.
921
+
922
+ **xarray**: Hoyer, S., Hamman, J. (In revision). Xarray: N-D labeled arrays and datasets in Python. Journal of Open Research Software.
923
+
924
+ **cartopy**: Phil Elson, Elliott Sales de Andrade, Greg Lucas, Ryan May, Richard Hattersley, Ed Campbell, Andrew Dawson, Bill Little, Stephane Raynaud, scmc72, Alan D. Snow, Ruth Comer, Kevin Donkers, Byron Blay, Peter Killick, Nat Wilson, Patrick Peglar, lgolston, lbdreyer, … Chris Havlin. (2023). SciTools/cartopy: v0.22.0 (v0.22.0). Zenodo. https://doi.org/10.5281/zenodo.8216315
925
+
926
+ **NumPy**: Harris, C.R., Millman, K.J., van der Walt, S.J. et al. Array programming with NumPy. Nature 585, 357–362 (2020). DOI: 10.1038/s41586-020-2649-2. (Publisher link).
927
+
928
+ **Pandas**: Pandas: McKinney, W., & others. (2010). Data structures for statistical computing in python. In Proceedings of the 9th Python in Science Conference (Vol. 445, pp. 51–56).
929
+
930
+ **dask**: Dask Development Team (2016). Dask: Library for dynamic task scheduling. URL http://dask.pydata.org
931
+
932
+ **cfgrib**: Author: ECMWF, Year: (2025), Title: cfgrib: A Python interface to map GRIB files to xarray, Source: https://github.com/ecmwf/cfgrib
933
+
934
+ **requests**: K. Reitz, "Requests: HTTP for Humans". Available: https://requests.readthedocs.io/.
935
+
936
+ **Beautiful Soup**: Richardson, L. (2025). Beautiful Soup (Version 4.14.3) [Computer software]. https://www.crummy.com/software/BeautifulSoup/
937
+
938
+ **shapeography**: Eric J. Drewitz. (2026). edrewitz/shapeography: shapeography 1.0 Released (shapeography1.0). Zenodo. https://doi.org/10.5281/zenodo.18676845
939
+
940
+ **geopandas**: Kelsey Jordahl, Joris Van den Bossche, Martin Fleischmann, Jacob Wasserman, James McBride, Jeffrey Gerard, … François Leblanc. (2020, July 15). geopandas/geopandas: v0.8.1 (Version v0.8.1). Zenodo. http://doi.org/10.5281/zenodo.3946761
941
+
942
+ **tqdm**: da Costa-Luis, (2019). tqdm: A Fast, Extensible Progress Meter for Python and CLI. Journal of Open Source Software, 4(37), 1277, https://doi.org/10.21105/joss.01277
943
+
944
+ **ecmwf-opendata**: European Centre for Medium-Range Weather Forecasts (2026). ecmwf-opendata[Computer software]. GitHub. https://github.com/ecmwf/ecmwf-opendata
945
+
946
+ **openpyxl**: Gazoni, E., & Clark, C. (2024). openpyxl: A Python library to read/write Excel 2010 xlsx/xlsm/xltx/xltm files (Version 3.1.5) [Computer software]. https://openpyxl.readthedocs.io/
947
+
948
+ **pyart**: Helmus, J.J. & Collis, S.M., (2016). The Python ARM Radar Toolkit (Py-ART), a Library for Working with Weather Radar Data in the Python Programming Language. Journal of Open Research Software. 4(1), p.e25. DOI: 10.5334/jors.119.
949
+
950
+ ----------------------------------------------------------
951
+
952
+ ## Data Sources
953
+
954
+ 1) [National Oceanic and Atmospheric Administration/National Center for Environmental Prediction](https://nomads.ncep.noaa.gov/)
955
+
956
+ 2) [European Centre for Medium-Range Weather Forecasts](https://data.ecmwf.int/forecasts/)
957
+
958
+ 3) [University of Wyoming](http://www.weather.uwyo.edu/upperair/sounding.shtml)
959
+
960
+ 4) [National Oceanic and Atmospheric Administration/National Weather Service](https://tgftp.nws.noaa.gov/)
961
+
962
+ 5) [National Oceanic and Atmospheric Administration/Aviation Weather Center](https://aviationweather.gov/)
963
+
964
+ 6) [National Oceanic and Atmospheric Administration/Climate Prediction Center](https://www.cpc.ncep.noaa.gov/products/GIS/GIS_DATA/us_tempprcpfcst/index.php)
965
+
966
+ 7) [Applied Climate Information System (ACIS)](https://www.rcc-acis.org/docs_webservices.html)
967
+
968
+ 8) [USDA Fire Environment Mapping System](https://fems.fs2c.usda.gov/download)
969
+
970
+ 9) [Amazon AWS Unidata NEXRAD2 Bucket](https://unidata-nexrad-level2.s3.amazonaws.com/index.html)
971
+
972
+ 10) [Open-Meteo API](https://open-meteo.com/)
973
+
974
+ 11) [Air Now API](https://docs.airnowapi.org/webservices)
975
+
976
+
977
+