├── .gitattributes ├── .gitignore ├── .travis.yml ├── DEVELOPMENT ├── LICENSE ├── MANIFEST.in ├── README.rst ├── auromat ├── __init__.py ├── _version.py ├── cli │ ├── __init__.py │ ├── convert.py │ └── download.py ├── coordinates │ ├── __init__.py │ ├── constellations.py │ ├── ephem.py │ ├── geodesic.py │ ├── igrf.py │ ├── intersection.py │ ├── spacetrack.py │ ├── transform.py │ ├── transformations.py │ └── wcs.py ├── debug.py ├── draw.py ├── draw_helpers.py ├── export │ ├── __init__.py │ ├── _gdal.py │ ├── cdf.py │ └── netcdf.py ├── fits.py ├── mapping │ ├── __init__.py │ ├── astrometry.py │ ├── cdf.py │ ├── iss.py │ ├── mapping.py │ ├── miracle.py │ ├── netcdf.py │ ├── spacecraft.py │ └── themis.py ├── resample.py ├── resources │ ├── README │ ├── __init__.py │ ├── ne_10m_populated_places_simple.dbf │ ├── ne_10m_populated_places_simple.shp │ ├── ne_10m_populated_places_simple.shx │ ├── ne_50m_populated_places_simple.dbf │ ├── ne_50m_populated_places_simple.shp │ └── ne_50m_populated_places_simple.shx ├── solving │ ├── __init__.py │ ├── eol.py │ ├── masking.py │ ├── noiseestimation.py │ ├── solving.py │ ├── spacecraft.py │ └── viewasblocks.py ├── test │ ├── .gitignore │ ├── __init__.py │ ├── benchmark.py │ ├── boundingbox_test.py │ ├── draw_test.py │ ├── elevation_test.py │ ├── export_cdf_test.py │ ├── export_netcdf_test.py │ ├── geodesic_test.py │ ├── intersection_test.py │ ├── iss_provider_test.py │ ├── lensdistortion_test.py │ ├── mapping_test.py │ ├── movie_test.py │ ├── mpl_leak.py │ ├── outline_test.py │ ├── profiling.py │ ├── resample_test.py │ ├── resources │ │ ├── ISS029-E-8492.jpg │ │ ├── ISS029-E-8492.wcs │ │ ├── ISS030-E-102170_dc.jpg │ │ ├── ISS030-E-102170_dc.wcs │ │ ├── ISS030-E-130515.jpg │ │ ├── README │ │ ├── SOD120304_171900_557_1000.jpg │ │ ├── cal.txt │ │ ├── seq │ │ │ ├── ISS029-E-8493.wcs │ │ │ ├── ISS029-E-8494.wcs │ │ │ ├── ISS029-E-8495.wcs │ │ │ ├── ISS029-E-8496.wcs │ │ │ ├── ISS029-E-8497.wcs │ │ │ ├── ISS029-E-8498.wcs │ │ │ ├── ISS029-E-8499.wcs │ │ │ ├── ISS029-E-8500.wcs │ │ │ ├── ISS029-E-8501.wcs │ │ │ └── ISS029-E-8502.wcs │ │ ├── seq2 │ │ │ ├── ISS030-E-229356.wcs │ │ │ ├── ISS030-E-229357.wcs │ │ │ ├── ISS030-E-229358.wcs │ │ │ └── ISS030-E-229359.wcs │ │ └── seq3 │ │ │ ├── ISS030-E-102170.wcs │ │ │ ├── ISS030-E-102171.wcs │ │ │ └── ISS030-E-102172.wcs │ ├── spacecraft_parallel_test.py │ ├── transform_test.py │ └── wcs_test.py ├── util │ ├── __init__.py │ ├── coroutine.py │ ├── decorators.py │ ├── exiftool.py │ ├── histogram.py │ ├── image.py │ ├── lensdistortion.py │ ├── movie.py │ ├── os.py │ ├── time.py │ └── url.py └── utils.py ├── dev-requirements.txt ├── docs ├── .gitignore ├── Makefile ├── _static │ ├── astrometry.jpg │ ├── grid_overlay.jpg │ ├── horizon.jpg │ ├── horizon_12km.jpg │ ├── map2_initial.png │ ├── map_masked.png │ ├── map_nearest.png │ ├── map_rebinned.png │ ├── map_themis.png │ ├── movie.mp4 │ ├── movie.webm │ ├── pxscales.png │ ├── radec.png │ └── rotation.png ├── conf.py ├── index.rst ├── make.bat └── userguide │ └── index.rst ├── requirements.txt ├── setup.py └── snakefood ├── .gitignore ├── Makefile ├── Makefile.rules ├── clusters ├── clusters_grouped ├── filters_auromat ├── filters_auromat_nodeps ├── filters_deps └── filters_stdlib /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/.travis.yml -------------------------------------------------------------------------------- /DEVELOPMENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/DEVELOPMENT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/README.rst -------------------------------------------------------------------------------- /auromat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/__init__.py -------------------------------------------------------------------------------- /auromat/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/_version.py -------------------------------------------------------------------------------- /auromat/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/cli/__init__.py -------------------------------------------------------------------------------- /auromat/cli/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/cli/convert.py -------------------------------------------------------------------------------- /auromat/cli/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/cli/download.py -------------------------------------------------------------------------------- /auromat/coordinates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/coordinates/__init__.py -------------------------------------------------------------------------------- /auromat/coordinates/constellations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/coordinates/constellations.py -------------------------------------------------------------------------------- /auromat/coordinates/ephem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/coordinates/ephem.py -------------------------------------------------------------------------------- /auromat/coordinates/geodesic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/coordinates/geodesic.py -------------------------------------------------------------------------------- /auromat/coordinates/igrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/coordinates/igrf.py -------------------------------------------------------------------------------- /auromat/coordinates/intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/coordinates/intersection.py -------------------------------------------------------------------------------- /auromat/coordinates/spacetrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/coordinates/spacetrack.py -------------------------------------------------------------------------------- /auromat/coordinates/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/coordinates/transform.py -------------------------------------------------------------------------------- /auromat/coordinates/transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/coordinates/transformations.py -------------------------------------------------------------------------------- /auromat/coordinates/wcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/coordinates/wcs.py -------------------------------------------------------------------------------- /auromat/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/debug.py -------------------------------------------------------------------------------- /auromat/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/draw.py -------------------------------------------------------------------------------- /auromat/draw_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/draw_helpers.py -------------------------------------------------------------------------------- /auromat/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/export/__init__.py -------------------------------------------------------------------------------- /auromat/export/_gdal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/export/_gdal.py -------------------------------------------------------------------------------- /auromat/export/cdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/export/cdf.py -------------------------------------------------------------------------------- /auromat/export/netcdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/export/netcdf.py -------------------------------------------------------------------------------- /auromat/fits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/fits.py -------------------------------------------------------------------------------- /auromat/mapping/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/mapping/__init__.py -------------------------------------------------------------------------------- /auromat/mapping/astrometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/mapping/astrometry.py -------------------------------------------------------------------------------- /auromat/mapping/cdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/mapping/cdf.py -------------------------------------------------------------------------------- /auromat/mapping/iss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/mapping/iss.py -------------------------------------------------------------------------------- /auromat/mapping/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/mapping/mapping.py -------------------------------------------------------------------------------- /auromat/mapping/miracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/mapping/miracle.py -------------------------------------------------------------------------------- /auromat/mapping/netcdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/mapping/netcdf.py -------------------------------------------------------------------------------- /auromat/mapping/spacecraft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/mapping/spacecraft.py -------------------------------------------------------------------------------- /auromat/mapping/themis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/mapping/themis.py -------------------------------------------------------------------------------- /auromat/resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/resample.py -------------------------------------------------------------------------------- /auromat/resources/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/resources/README -------------------------------------------------------------------------------- /auromat/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auromat/resources/ne_10m_populated_places_simple.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/resources/ne_10m_populated_places_simple.dbf -------------------------------------------------------------------------------- /auromat/resources/ne_10m_populated_places_simple.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/resources/ne_10m_populated_places_simple.shp -------------------------------------------------------------------------------- /auromat/resources/ne_10m_populated_places_simple.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/resources/ne_10m_populated_places_simple.shx -------------------------------------------------------------------------------- /auromat/resources/ne_50m_populated_places_simple.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/resources/ne_50m_populated_places_simple.dbf -------------------------------------------------------------------------------- /auromat/resources/ne_50m_populated_places_simple.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/resources/ne_50m_populated_places_simple.shp -------------------------------------------------------------------------------- /auromat/resources/ne_50m_populated_places_simple.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/resources/ne_50m_populated_places_simple.shx -------------------------------------------------------------------------------- /auromat/solving/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/solving/__init__.py -------------------------------------------------------------------------------- /auromat/solving/eol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/solving/eol.py -------------------------------------------------------------------------------- /auromat/solving/masking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/solving/masking.py -------------------------------------------------------------------------------- /auromat/solving/noiseestimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/solving/noiseestimation.py -------------------------------------------------------------------------------- /auromat/solving/solving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/solving/solving.py -------------------------------------------------------------------------------- /auromat/solving/spacecraft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/solving/spacecraft.py -------------------------------------------------------------------------------- /auromat/solving/viewasblocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/solving/viewasblocks.py -------------------------------------------------------------------------------- /auromat/test/.gitignore: -------------------------------------------------------------------------------- 1 | /iss_cache 2 | -------------------------------------------------------------------------------- /auromat/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /auromat/test/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/benchmark.py -------------------------------------------------------------------------------- /auromat/test/boundingbox_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/boundingbox_test.py -------------------------------------------------------------------------------- /auromat/test/draw_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/draw_test.py -------------------------------------------------------------------------------- /auromat/test/elevation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/elevation_test.py -------------------------------------------------------------------------------- /auromat/test/export_cdf_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/export_cdf_test.py -------------------------------------------------------------------------------- /auromat/test/export_netcdf_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/export_netcdf_test.py -------------------------------------------------------------------------------- /auromat/test/geodesic_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/geodesic_test.py -------------------------------------------------------------------------------- /auromat/test/intersection_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/intersection_test.py -------------------------------------------------------------------------------- /auromat/test/iss_provider_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/iss_provider_test.py -------------------------------------------------------------------------------- /auromat/test/lensdistortion_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/lensdistortion_test.py -------------------------------------------------------------------------------- /auromat/test/mapping_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/mapping_test.py -------------------------------------------------------------------------------- /auromat/test/movie_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/movie_test.py -------------------------------------------------------------------------------- /auromat/test/mpl_leak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/mpl_leak.py -------------------------------------------------------------------------------- /auromat/test/outline_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/outline_test.py -------------------------------------------------------------------------------- /auromat/test/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/profiling.py -------------------------------------------------------------------------------- /auromat/test/resample_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resample_test.py -------------------------------------------------------------------------------- /auromat/test/resources/ISS029-E-8492.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/ISS029-E-8492.jpg -------------------------------------------------------------------------------- /auromat/test/resources/ISS029-E-8492.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/ISS029-E-8492.wcs -------------------------------------------------------------------------------- /auromat/test/resources/ISS030-E-102170_dc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/ISS030-E-102170_dc.jpg -------------------------------------------------------------------------------- /auromat/test/resources/ISS030-E-102170_dc.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/ISS030-E-102170_dc.wcs -------------------------------------------------------------------------------- /auromat/test/resources/ISS030-E-130515.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/ISS030-E-130515.jpg -------------------------------------------------------------------------------- /auromat/test/resources/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/README -------------------------------------------------------------------------------- /auromat/test/resources/SOD120304_171900_557_1000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/SOD120304_171900_557_1000.jpg -------------------------------------------------------------------------------- /auromat/test/resources/cal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/cal.txt -------------------------------------------------------------------------------- /auromat/test/resources/seq/ISS029-E-8493.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/seq/ISS029-E-8493.wcs -------------------------------------------------------------------------------- /auromat/test/resources/seq/ISS029-E-8494.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/seq/ISS029-E-8494.wcs -------------------------------------------------------------------------------- /auromat/test/resources/seq/ISS029-E-8495.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/seq/ISS029-E-8495.wcs -------------------------------------------------------------------------------- /auromat/test/resources/seq/ISS029-E-8496.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/seq/ISS029-E-8496.wcs -------------------------------------------------------------------------------- /auromat/test/resources/seq/ISS029-E-8497.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/seq/ISS029-E-8497.wcs -------------------------------------------------------------------------------- /auromat/test/resources/seq/ISS029-E-8498.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/seq/ISS029-E-8498.wcs -------------------------------------------------------------------------------- /auromat/test/resources/seq/ISS029-E-8499.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/seq/ISS029-E-8499.wcs -------------------------------------------------------------------------------- /auromat/test/resources/seq/ISS029-E-8500.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/seq/ISS029-E-8500.wcs -------------------------------------------------------------------------------- /auromat/test/resources/seq/ISS029-E-8501.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/seq/ISS029-E-8501.wcs -------------------------------------------------------------------------------- /auromat/test/resources/seq/ISS029-E-8502.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/seq/ISS029-E-8502.wcs -------------------------------------------------------------------------------- /auromat/test/resources/seq2/ISS030-E-229356.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/seq2/ISS030-E-229356.wcs -------------------------------------------------------------------------------- /auromat/test/resources/seq2/ISS030-E-229357.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/seq2/ISS030-E-229357.wcs -------------------------------------------------------------------------------- /auromat/test/resources/seq2/ISS030-E-229358.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/seq2/ISS030-E-229358.wcs -------------------------------------------------------------------------------- /auromat/test/resources/seq2/ISS030-E-229359.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/seq2/ISS030-E-229359.wcs -------------------------------------------------------------------------------- /auromat/test/resources/seq3/ISS030-E-102170.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/seq3/ISS030-E-102170.wcs -------------------------------------------------------------------------------- /auromat/test/resources/seq3/ISS030-E-102171.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/seq3/ISS030-E-102171.wcs -------------------------------------------------------------------------------- /auromat/test/resources/seq3/ISS030-E-102172.wcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/resources/seq3/ISS030-E-102172.wcs -------------------------------------------------------------------------------- /auromat/test/spacecraft_parallel_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/spacecraft_parallel_test.py -------------------------------------------------------------------------------- /auromat/test/transform_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/transform_test.py -------------------------------------------------------------------------------- /auromat/test/wcs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/test/wcs_test.py -------------------------------------------------------------------------------- /auromat/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/util/__init__.py -------------------------------------------------------------------------------- /auromat/util/coroutine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/util/coroutine.py -------------------------------------------------------------------------------- /auromat/util/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/util/decorators.py -------------------------------------------------------------------------------- /auromat/util/exiftool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/util/exiftool.py -------------------------------------------------------------------------------- /auromat/util/histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/util/histogram.py -------------------------------------------------------------------------------- /auromat/util/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/util/image.py -------------------------------------------------------------------------------- /auromat/util/lensdistortion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/util/lensdistortion.py -------------------------------------------------------------------------------- /auromat/util/movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/util/movie.py -------------------------------------------------------------------------------- /auromat/util/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/util/os.py -------------------------------------------------------------------------------- /auromat/util/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/util/time.py -------------------------------------------------------------------------------- /auromat/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/util/url.py -------------------------------------------------------------------------------- /auromat/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/auromat/utils.py -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | nose 2 | wheel 3 | sphinx_rtd_theme -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | /api 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/astrometry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/_static/astrometry.jpg -------------------------------------------------------------------------------- /docs/_static/grid_overlay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/_static/grid_overlay.jpg -------------------------------------------------------------------------------- /docs/_static/horizon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/_static/horizon.jpg -------------------------------------------------------------------------------- /docs/_static/horizon_12km.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/_static/horizon_12km.jpg -------------------------------------------------------------------------------- /docs/_static/map2_initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/_static/map2_initial.png -------------------------------------------------------------------------------- /docs/_static/map_masked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/_static/map_masked.png -------------------------------------------------------------------------------- /docs/_static/map_nearest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/_static/map_nearest.png -------------------------------------------------------------------------------- /docs/_static/map_rebinned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/_static/map_rebinned.png -------------------------------------------------------------------------------- /docs/_static/map_themis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/_static/map_themis.png -------------------------------------------------------------------------------- /docs/_static/movie.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/_static/movie.mp4 -------------------------------------------------------------------------------- /docs/_static/movie.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/_static/movie.webm -------------------------------------------------------------------------------- /docs/_static/pxscales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/_static/pxscales.png -------------------------------------------------------------------------------- /docs/_static/radec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/_static/radec.png -------------------------------------------------------------------------------- /docs/_static/rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/_static/rotation.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/userguide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/docs/userguide/index.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/setup.py -------------------------------------------------------------------------------- /snakefood/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/snakefood/.gitignore -------------------------------------------------------------------------------- /snakefood/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/snakefood/Makefile -------------------------------------------------------------------------------- /snakefood/Makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/snakefood/Makefile.rules -------------------------------------------------------------------------------- /snakefood/clusters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/snakefood/clusters -------------------------------------------------------------------------------- /snakefood/clusters_grouped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/snakefood/clusters_grouped -------------------------------------------------------------------------------- /snakefood/filters_auromat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/snakefood/filters_auromat -------------------------------------------------------------------------------- /snakefood/filters_auromat_nodeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/snakefood/filters_auromat_nodeps -------------------------------------------------------------------------------- /snakefood/filters_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/snakefood/filters_deps -------------------------------------------------------------------------------- /snakefood/filters_stdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esa/auromat/HEAD/snakefood/filters_stdlib --------------------------------------------------------------------------------