├── .github └── workflows │ ├── build-docs.yml │ ├── installation.yml │ ├── macos.yml │ ├── pylint.yml │ ├── pypi.yml │ ├── tests.yml │ ├── ubuntu.yml │ └── windows.yml ├── .pre-commit-config.yaml ├── LICENSE ├── README.rst ├── data ├── GOES16_ABI_ALLBANDS_MAR2016.eqw ├── GOES17_ABI_ALLBANDS_MAR2016.eqw ├── GOES18_ABI_ALLBANDS_MAR2016.eqw └── ahi_Sep2013.eqw ├── docs ├── Makefile ├── _templates │ └── autosummary │ │ └── class.rst ├── clip.rst ├── conf.py ├── examples │ ├── GaylorPit_039_T15min.csv │ ├── GaylorPit_site_2017_2018_small.jpeg │ ├── download.ipynb │ ├── example_workflow.ipynb │ ├── goes-ortho-demo.pdf │ ├── goes-orthorectify.ipynb │ ├── jsontest.ipynb │ ├── make_abi_timeseries_example.ipynb │ ├── make_abi_timeseries_example_plot.png │ ├── ortho-horizontal-offset.ipynb │ ├── orthorectify_abi_example.ipynb │ ├── quick_start.ipynb │ └── subset_abi_netcdf_example.ipynb ├── geometry.rst ├── get_data.rst ├── images │ ├── ABIgrid.png │ ├── GOES-terrain-correction.gif │ ├── GOES_east-west_vis.gif │ ├── animation.gif │ ├── goes-ortho-flowchart.png │ ├── grs-80.PNG │ └── pixel_coords.PNG ├── index.rst ├── installation.rst ├── make.bat ├── orthorectify.rst ├── quick_start.rst ├── rad.rst └── timeseries.rst ├── environment.yml ├── pyproject.toml ├── scripts └── download-goes.py ├── src └── goes_ortho │ ├── Downloader.py │ ├── __init__.py │ ├── checkData.py │ ├── clip.py │ ├── geometry.py │ ├── get_data.py │ ├── io.py │ ├── orthorectify.py │ ├── rad.py │ ├── timeseries.py │ └── utils.py └── tests ├── __init__.py ├── conftest.py ├── test_clip.py ├── test_geometry.py └── test_rad.py /.github/workflows/build-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/.github/workflows/build-docs.yml -------------------------------------------------------------------------------- /.github/workflows/installation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/.github/workflows/installation.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/README.rst -------------------------------------------------------------------------------- /data/GOES16_ABI_ALLBANDS_MAR2016.eqw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/data/GOES16_ABI_ALLBANDS_MAR2016.eqw -------------------------------------------------------------------------------- /data/GOES17_ABI_ALLBANDS_MAR2016.eqw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/data/GOES17_ABI_ALLBANDS_MAR2016.eqw -------------------------------------------------------------------------------- /data/GOES18_ABI_ALLBANDS_MAR2016.eqw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/data/GOES18_ABI_ALLBANDS_MAR2016.eqw -------------------------------------------------------------------------------- /data/ahi_Sep2013.eqw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/data/ahi_Sep2013.eqw -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /docs/clip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/clip.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/examples/GaylorPit_039_T15min.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/examples/GaylorPit_039_T15min.csv -------------------------------------------------------------------------------- /docs/examples/GaylorPit_site_2017_2018_small.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/examples/GaylorPit_site_2017_2018_small.jpeg -------------------------------------------------------------------------------- /docs/examples/download.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/examples/download.ipynb -------------------------------------------------------------------------------- /docs/examples/example_workflow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/examples/example_workflow.ipynb -------------------------------------------------------------------------------- /docs/examples/goes-ortho-demo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/examples/goes-ortho-demo.pdf -------------------------------------------------------------------------------- /docs/examples/goes-orthorectify.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/examples/goes-orthorectify.ipynb -------------------------------------------------------------------------------- /docs/examples/jsontest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/examples/jsontest.ipynb -------------------------------------------------------------------------------- /docs/examples/make_abi_timeseries_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/examples/make_abi_timeseries_example.ipynb -------------------------------------------------------------------------------- /docs/examples/make_abi_timeseries_example_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/examples/make_abi_timeseries_example_plot.png -------------------------------------------------------------------------------- /docs/examples/ortho-horizontal-offset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/examples/ortho-horizontal-offset.ipynb -------------------------------------------------------------------------------- /docs/examples/orthorectify_abi_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/examples/orthorectify_abi_example.ipynb -------------------------------------------------------------------------------- /docs/examples/quick_start.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/examples/quick_start.ipynb -------------------------------------------------------------------------------- /docs/examples/subset_abi_netcdf_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/examples/subset_abi_netcdf_example.ipynb -------------------------------------------------------------------------------- /docs/geometry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/geometry.rst -------------------------------------------------------------------------------- /docs/get_data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/get_data.rst -------------------------------------------------------------------------------- /docs/images/ABIgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/images/ABIgrid.png -------------------------------------------------------------------------------- /docs/images/GOES-terrain-correction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/images/GOES-terrain-correction.gif -------------------------------------------------------------------------------- /docs/images/GOES_east-west_vis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/images/GOES_east-west_vis.gif -------------------------------------------------------------------------------- /docs/images/animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/images/animation.gif -------------------------------------------------------------------------------- /docs/images/goes-ortho-flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/images/goes-ortho-flowchart.png -------------------------------------------------------------------------------- /docs/images/grs-80.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/images/grs-80.PNG -------------------------------------------------------------------------------- /docs/images/pixel_coords.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/images/pixel_coords.PNG -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/orthorectify.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/orthorectify.rst -------------------------------------------------------------------------------- /docs/quick_start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/quick_start.rst -------------------------------------------------------------------------------- /docs/rad.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/rad.rst -------------------------------------------------------------------------------- /docs/timeseries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/docs/timeseries.rst -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/environment.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/download-goes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/scripts/download-goes.py -------------------------------------------------------------------------------- /src/goes_ortho/Downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/src/goes_ortho/Downloader.py -------------------------------------------------------------------------------- /src/goes_ortho/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/src/goes_ortho/__init__.py -------------------------------------------------------------------------------- /src/goes_ortho/checkData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/src/goes_ortho/checkData.py -------------------------------------------------------------------------------- /src/goes_ortho/clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/src/goes_ortho/clip.py -------------------------------------------------------------------------------- /src/goes_ortho/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/src/goes_ortho/geometry.py -------------------------------------------------------------------------------- /src/goes_ortho/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/src/goes_ortho/get_data.py -------------------------------------------------------------------------------- /src/goes_ortho/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/src/goes_ortho/io.py -------------------------------------------------------------------------------- /src/goes_ortho/orthorectify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/src/goes_ortho/orthorectify.py -------------------------------------------------------------------------------- /src/goes_ortho/rad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/src/goes_ortho/rad.py -------------------------------------------------------------------------------- /src/goes_ortho/timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/src/goes_ortho/timeseries.py -------------------------------------------------------------------------------- /src/goes_ortho/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/src/goes_ortho/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/tests/test_clip.py -------------------------------------------------------------------------------- /tests/test_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/tests/test_geometry.py -------------------------------------------------------------------------------- /tests/test_rad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spestana/goes-ortho/HEAD/tests/test_rad.py --------------------------------------------------------------------------------