├── .gitignore ├── Blitzortung ├── README.md └── blitzortung.py ├── CLASS ├── README.md └── noaa_class.py ├── ERA5 ├── GetERA5-ml.py ├── GetERA5-pl.py ├── GetERA5-sfc.py ├── GetERA5-sl.py ├── README.md ├── download_ml.sh └── download_pl.sh ├── FY ├── README.md ├── examples │ └── download_fy.gif └── fy.py ├── H8 ├── README.md ├── h8_CEReS.py └── h8_JAXA.py ├── LICENSE ├── README.md └── S5P-PAL ├── .gitignore ├── README.md ├── fetch_s5p_portal_geometry.py ├── fetch_s5p_portal_links.py └── subset_s5p_portal_links.py /.gitignore: -------------------------------------------------------------------------------- 1 | */data/ 2 | -------------------------------------------------------------------------------- /Blitzortung/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/Blitzortung/README.md -------------------------------------------------------------------------------- /Blitzortung/blitzortung.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/Blitzortung/blitzortung.py -------------------------------------------------------------------------------- /CLASS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/CLASS/README.md -------------------------------------------------------------------------------- /CLASS/noaa_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/CLASS/noaa_class.py -------------------------------------------------------------------------------- /ERA5/GetERA5-ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/ERA5/GetERA5-ml.py -------------------------------------------------------------------------------- /ERA5/GetERA5-pl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/ERA5/GetERA5-pl.py -------------------------------------------------------------------------------- /ERA5/GetERA5-sfc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/ERA5/GetERA5-sfc.py -------------------------------------------------------------------------------- /ERA5/GetERA5-sl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/ERA5/GetERA5-sl.py -------------------------------------------------------------------------------- /ERA5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/ERA5/README.md -------------------------------------------------------------------------------- /ERA5/download_ml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/ERA5/download_ml.sh -------------------------------------------------------------------------------- /ERA5/download_pl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/ERA5/download_pl.sh -------------------------------------------------------------------------------- /FY/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/FY/README.md -------------------------------------------------------------------------------- /FY/examples/download_fy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/FY/examples/download_fy.gif -------------------------------------------------------------------------------- /FY/fy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/FY/fy.py -------------------------------------------------------------------------------- /H8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/H8/README.md -------------------------------------------------------------------------------- /H8/h8_CEReS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/H8/h8_CEReS.py -------------------------------------------------------------------------------- /H8/h8_JAXA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/H8/h8_JAXA.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/README.md -------------------------------------------------------------------------------- /S5P-PAL/.gitignore: -------------------------------------------------------------------------------- 1 | *.csv -------------------------------------------------------------------------------- /S5P-PAL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/S5P-PAL/README.md -------------------------------------------------------------------------------- /S5P-PAL/fetch_s5p_portal_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/S5P-PAL/fetch_s5p_portal_geometry.py -------------------------------------------------------------------------------- /S5P-PAL/fetch_s5p_portal_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/S5P-PAL/fetch_s5p_portal_links.py -------------------------------------------------------------------------------- /S5P-PAL/subset_s5p_portal_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/weather_data/HEAD/S5P-PAL/subset_s5p_portal_links.py --------------------------------------------------------------------------------