├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── ci.yaml │ └── deploy.yaml ├── .gitignore ├── .readthedocs.yml ├── .stickler.yml ├── AUTHORS.md ├── CHANGELOG.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── RELEASING.md ├── changelog.rst ├── continuous_integration ├── build-manylinux-wheels.sh └── environment.yaml ├── cython_test.pyx ├── cython_test2.pyx ├── doc ├── Makefile └── source │ ├── conf.py │ ├── images │ ├── scatter_cartesian_distances.png │ ├── scatter_cartesian_distances_thumb.png │ ├── terra_20110821_1115_maspalomas_rednsow.png │ ├── terra_20110821_1115_maspalomas_rednsow_int.png │ ├── terra_20110821_1115_maspalomas_rednsow_int_thumb.png │ ├── terra_20110821_1115_rednsow.png │ ├── terra_20110821_1115_rednsow_int.png │ └── terra_20110821_1115_rednsow_int_thumb.png │ └── index.rst ├── geotiepoints ├── __init__.py ├── _modis_interpolator.pyx ├── _modis_utils.pxd ├── _modis_utils.pyx ├── _simple_modis_interpolator.pyx ├── basic_interpolator.py ├── geointerpolator.py ├── interpolator.py ├── modisinterpolator.py ├── multilinear.py ├── multilinear_cython.pyx ├── simple_modis_interpolator.py ├── tests │ ├── __init__.py │ ├── test_geointerpolator.py │ ├── test_interpolator.py │ ├── test_modis.py │ ├── test_modisinterpolator.py │ ├── test_multilinear.py │ ├── test_satelliteinterpolator.py │ ├── test_simple_modis_interpolator.py │ ├── test_viiinterpolator.py │ └── utils.py ├── version.py └── viiinterpolator.py ├── mytest_fillborders.py ├── mytest_modis5to1.py ├── pyproject.toml ├── requirements.txt ├── rtd_requirements.txt ├── setup.cfg ├── setup.py ├── testdata ├── 250m_lonlat_section_input.h5 ├── 250m_lonlat_section_result.h5 ├── create_modis_test_data.py ├── modis_test_data.h5 ├── test_5_to_1_geoloc_5km.h5 └── test_5_to_1_geoloc_full.h5 └── versioneer.py /.gitattributes: -------------------------------------------------------------------------------- 1 | geotiepoints/version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.stickler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/.stickler.yml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/RELEASING.md -------------------------------------------------------------------------------- /changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/changelog.rst -------------------------------------------------------------------------------- /continuous_integration/build-manylinux-wheels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/continuous_integration/build-manylinux-wheels.sh -------------------------------------------------------------------------------- /continuous_integration/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/continuous_integration/environment.yaml -------------------------------------------------------------------------------- /cython_test.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/cython_test.pyx -------------------------------------------------------------------------------- /cython_test2.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/cython_test2.pyx -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/images/scatter_cartesian_distances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/doc/source/images/scatter_cartesian_distances.png -------------------------------------------------------------------------------- /doc/source/images/scatter_cartesian_distances_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/doc/source/images/scatter_cartesian_distances_thumb.png -------------------------------------------------------------------------------- /doc/source/images/terra_20110821_1115_maspalomas_rednsow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/doc/source/images/terra_20110821_1115_maspalomas_rednsow.png -------------------------------------------------------------------------------- /doc/source/images/terra_20110821_1115_maspalomas_rednsow_int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/doc/source/images/terra_20110821_1115_maspalomas_rednsow_int.png -------------------------------------------------------------------------------- /doc/source/images/terra_20110821_1115_maspalomas_rednsow_int_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/doc/source/images/terra_20110821_1115_maspalomas_rednsow_int_thumb.png -------------------------------------------------------------------------------- /doc/source/images/terra_20110821_1115_rednsow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/doc/source/images/terra_20110821_1115_rednsow.png -------------------------------------------------------------------------------- /doc/source/images/terra_20110821_1115_rednsow_int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/doc/source/images/terra_20110821_1115_rednsow_int.png -------------------------------------------------------------------------------- /doc/source/images/terra_20110821_1115_rednsow_int_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/doc/source/images/terra_20110821_1115_rednsow_int_thumb.png -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /geotiepoints/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/__init__.py -------------------------------------------------------------------------------- /geotiepoints/_modis_interpolator.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/_modis_interpolator.pyx -------------------------------------------------------------------------------- /geotiepoints/_modis_utils.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/_modis_utils.pxd -------------------------------------------------------------------------------- /geotiepoints/_modis_utils.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/_modis_utils.pyx -------------------------------------------------------------------------------- /geotiepoints/_simple_modis_interpolator.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/_simple_modis_interpolator.pyx -------------------------------------------------------------------------------- /geotiepoints/basic_interpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/basic_interpolator.py -------------------------------------------------------------------------------- /geotiepoints/geointerpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/geointerpolator.py -------------------------------------------------------------------------------- /geotiepoints/interpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/interpolator.py -------------------------------------------------------------------------------- /geotiepoints/modisinterpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/modisinterpolator.py -------------------------------------------------------------------------------- /geotiepoints/multilinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/multilinear.py -------------------------------------------------------------------------------- /geotiepoints/multilinear_cython.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/multilinear_cython.pyx -------------------------------------------------------------------------------- /geotiepoints/simple_modis_interpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/simple_modis_interpolator.py -------------------------------------------------------------------------------- /geotiepoints/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/tests/__init__.py -------------------------------------------------------------------------------- /geotiepoints/tests/test_geointerpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/tests/test_geointerpolator.py -------------------------------------------------------------------------------- /geotiepoints/tests/test_interpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/tests/test_interpolator.py -------------------------------------------------------------------------------- /geotiepoints/tests/test_modis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/tests/test_modis.py -------------------------------------------------------------------------------- /geotiepoints/tests/test_modisinterpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/tests/test_modisinterpolator.py -------------------------------------------------------------------------------- /geotiepoints/tests/test_multilinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/tests/test_multilinear.py -------------------------------------------------------------------------------- /geotiepoints/tests/test_satelliteinterpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/tests/test_satelliteinterpolator.py -------------------------------------------------------------------------------- /geotiepoints/tests/test_simple_modis_interpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/tests/test_simple_modis_interpolator.py -------------------------------------------------------------------------------- /geotiepoints/tests/test_viiinterpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/tests/test_viiinterpolator.py -------------------------------------------------------------------------------- /geotiepoints/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/tests/utils.py -------------------------------------------------------------------------------- /geotiepoints/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/version.py -------------------------------------------------------------------------------- /geotiepoints/viiinterpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/geotiepoints/viiinterpolator.py -------------------------------------------------------------------------------- /mytest_fillborders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/mytest_fillborders.py -------------------------------------------------------------------------------- /mytest_modis5to1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/mytest_modis5to1.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/requirements.txt -------------------------------------------------------------------------------- /rtd_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/rtd_requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | ignore = D107 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/setup.py -------------------------------------------------------------------------------- /testdata/250m_lonlat_section_input.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/testdata/250m_lonlat_section_input.h5 -------------------------------------------------------------------------------- /testdata/250m_lonlat_section_result.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/testdata/250m_lonlat_section_result.h5 -------------------------------------------------------------------------------- /testdata/create_modis_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/testdata/create_modis_test_data.py -------------------------------------------------------------------------------- /testdata/modis_test_data.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/testdata/modis_test_data.h5 -------------------------------------------------------------------------------- /testdata/test_5_to_1_geoloc_5km.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/testdata/test_5_to_1_geoloc_5km.h5 -------------------------------------------------------------------------------- /testdata/test_5_to_1_geoloc_full.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/testdata/test_5_to_1_geoloc_full.h5 -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytroll/python-geotiepoints/HEAD/versioneer.py --------------------------------------------------------------------------------