├── .dask └── config.yaml ├── .gitignore ├── INSTALL.md ├── LICENSE ├── README.rst ├── TODO.rst ├── Welcome.md ├── assets ├── GOES-16_ABI_RadF_true_color_20180910_170031_GOES-East.small.png ├── array_imshow_10.png ├── array_print_10.png ├── geostationary_orbit.mp4 ├── goes16_abi_4channel_montage.png ├── goes16_abi_cartopy_florida.png ├── goes16_sectors.png └── polar_orbit_with_path.mp4 ├── binder ├── apt.txt ├── environment.yml ├── jupyterlab-workspace.json ├── postBuild └── start ├── data └── README.md ├── download_data.py ├── init_notebook.py ├── notebooks ├── 01_introduction.ipynb ├── 02_reading.ipynb ├── 03_writing.ipynb ├── 04_resampling.ipynb ├── 05_composites.ipynb ├── 06_animations.ipynb ├── 07_cartopy_geoviews.ipynb ├── 08_contributing.ipynb ├── composites │ └── abi.yaml └── enhancements │ └── abi.yaml └── test_install.py /.dask/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/.dask/config.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/README.rst -------------------------------------------------------------------------------- /TODO.rst: -------------------------------------------------------------------------------- 1 | TODO 2 | ==== 3 | -------------------------------------------------------------------------------- /Welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/Welcome.md -------------------------------------------------------------------------------- /assets/GOES-16_ABI_RadF_true_color_20180910_170031_GOES-East.small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/assets/GOES-16_ABI_RadF_true_color_20180910_170031_GOES-East.small.png -------------------------------------------------------------------------------- /assets/array_imshow_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/assets/array_imshow_10.png -------------------------------------------------------------------------------- /assets/array_print_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/assets/array_print_10.png -------------------------------------------------------------------------------- /assets/geostationary_orbit.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/assets/geostationary_orbit.mp4 -------------------------------------------------------------------------------- /assets/goes16_abi_4channel_montage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/assets/goes16_abi_4channel_montage.png -------------------------------------------------------------------------------- /assets/goes16_abi_cartopy_florida.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/assets/goes16_abi_cartopy_florida.png -------------------------------------------------------------------------------- /assets/goes16_sectors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/assets/goes16_sectors.png -------------------------------------------------------------------------------- /assets/polar_orbit_with_path.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/assets/polar_orbit_with_path.mp4 -------------------------------------------------------------------------------- /binder/apt.txt: -------------------------------------------------------------------------------- 1 | graphviz 2 | -------------------------------------------------------------------------------- /binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/binder/environment.yml -------------------------------------------------------------------------------- /binder/jupyterlab-workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/binder/jupyterlab-workspace.json -------------------------------------------------------------------------------- /binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/binder/postBuild -------------------------------------------------------------------------------- /binder/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/binder/start -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/data/README.md -------------------------------------------------------------------------------- /download_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/download_data.py -------------------------------------------------------------------------------- /init_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/init_notebook.py -------------------------------------------------------------------------------- /notebooks/01_introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/notebooks/01_introduction.ipynb -------------------------------------------------------------------------------- /notebooks/02_reading.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/notebooks/02_reading.ipynb -------------------------------------------------------------------------------- /notebooks/03_writing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/notebooks/03_writing.ipynb -------------------------------------------------------------------------------- /notebooks/04_resampling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/notebooks/04_resampling.ipynb -------------------------------------------------------------------------------- /notebooks/05_composites.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/notebooks/05_composites.ipynb -------------------------------------------------------------------------------- /notebooks/06_animations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/notebooks/06_animations.ipynb -------------------------------------------------------------------------------- /notebooks/07_cartopy_geoviews.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/notebooks/07_cartopy_geoviews.ipynb -------------------------------------------------------------------------------- /notebooks/08_contributing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/notebooks/08_contributing.ipynb -------------------------------------------------------------------------------- /notebooks/composites/abi.yaml: -------------------------------------------------------------------------------- 1 | sensor_name: visir/abi 2 | -------------------------------------------------------------------------------- /notebooks/enhancements/abi.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/tutorial-satpy-half-day/HEAD/test_install.py --------------------------------------------------------------------------------