├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cli ├── README.md └── main.cpp ├── cmake └── modules │ ├── CMakeParseArguments.cmake │ ├── FindASTROMETRYNET.cmake │ ├── FindCFITSIO.cmake │ ├── FindGSL.cmake │ ├── FindPackageHandleStandardArgs.cmake │ ├── FindPackageMessage.cmake │ ├── FindStellarSolver.cmake │ └── FindWCSLIB.cmake ├── craft-blueprints ├── QT5 │ ├── StellarSolverTester │ │ ├── StellarSolverInstallIcon.icns │ │ ├── StellarSolverInstallIcon.ico │ │ └── StellarSolverTester.py │ ├── stellarbatchsolver │ │ ├── .DS_Store │ │ ├── StellarBatchSolverInstallIcon.icns │ │ ├── StellarBatchSolverInstallIcon.ico │ │ └── stellarbatchsolver.py │ └── stellarsolver │ │ └── stellarsolver.py └── QT6 │ ├── StellarSolverTester │ ├── StellarSolverInstallIcon.icns │ ├── StellarSolverInstallIcon.ico │ └── StellarSolverTester.py │ ├── stellarbatchsolver │ ├── .DS_Store │ ├── StellarBatchSolverInstallIcon.icns │ ├── StellarBatchSolverInstallIcon.ico │ └── stellarbatchsolver.py │ └── stellarsolver │ └── stellarsolver.py ├── debian ├── changelog ├── compat ├── control ├── copyright ├── libstellarsolver-dev.install ├── libstellarsolver.install ├── rules └── source │ └── format ├── demos ├── demoextractsolve.cpp ├── demofitsextractsolve.cpp ├── demofitsplatesolve.cpp ├── demofitsstarextract.cpp ├── demomultiplesolves.cpp ├── demoplatesolve.cpp ├── demosignalsslots.cpp ├── demosignalsslots.h ├── demostarextract.cpp ├── pleiades.jpg └── randomsky.fits ├── images ├── Sextractor.png ├── Solver.png ├── StellarSolverInAction.png └── StellarSolverPretty.png ├── linux-scripts ├── installStellarSolverLibraryQt5.sh ├── installStellarSolverLibraryQt6.sh ├── installStellarSolverTesterQt5.sh ├── installStellarSolverTesterQt6.sh └── removeStellarSolver.sh ├── spec └── stellarsolver.spec ├── ssolverutils ├── bayer.c ├── bayer.h ├── dms.cpp ├── dms.h ├── fileio.cpp ├── fileio.h ├── imagelabel.cpp ├── imagelabel.h ├── stretch.cpp └── stretch.h ├── stellarbatchsolver ├── StellarBatchSolverIcon.icns ├── StellarBatchSolverIcon.ico ├── StellarBatchSolverIcon.png ├── StellarBatchSolverIcon.xcf ├── com.github.rlancaste.stellarbatchsolver.desktop ├── icons │ └── hicolor │ │ ├── 128x128 │ │ └── apps │ │ │ └── StellarBatchSolverIcon.png │ │ ├── 16x16 │ │ └── apps │ │ │ └── StellarBatchSolverIcon.png │ │ ├── 32x32 │ │ └── apps │ │ │ └── StellarBatchSolverIcon.png │ │ ├── 48x48 │ │ └── apps │ │ │ └── StellarBatchSolverIcon.png │ │ └── 64x64 │ │ └── apps │ │ └── StellarBatchSolverIcon.png ├── resources.qrc ├── stellarbatchsolver.cpp ├── stellarbatchsolver.h ├── stellarbatchsolver.ui └── windowsicon.rc ├── stellarsolver.pc.cmake ├── stellarsolver ├── astrometry │ ├── CREDITS │ ├── LICENSE │ ├── README.md │ ├── blind │ │ ├── blind.c │ │ ├── engine.c │ │ ├── matchobj.c │ │ ├── pquad.h │ │ ├── quad-utils.c │ │ ├── solver.c │ │ ├── tweak2.c │ │ ├── verify.c │ │ └── windirent.h │ ├── boilerplate.h │ ├── include │ │ └── astrometry │ │ │ ├── an-bool.h │ │ │ ├── anqfits.h │ │ │ ├── bl-nl.h │ │ │ ├── bl-nl.inc │ │ │ ├── bl-nl.ph │ │ │ ├── bl-sort.h │ │ │ ├── bl.h │ │ │ ├── bl.inc │ │ │ ├── bl.ph │ │ │ ├── blind.h │ │ │ ├── codefile.h │ │ │ ├── codekd.h │ │ │ ├── datalog.h │ │ │ ├── engine.h │ │ │ ├── errors.h │ │ │ ├── fit-wcs.h │ │ │ ├── fitsbin.h │ │ │ ├── fitsfile.h │ │ │ ├── fitsioutils.h │ │ │ ├── fitstable.h │ │ │ ├── gslutils.h │ │ │ ├── healpix.h │ │ │ ├── index.h │ │ │ ├── ioutils.h │ │ │ ├── kdtree.h │ │ │ ├── kdtree_fits_io.h │ │ │ ├── keywords.h │ │ │ ├── log.h │ │ │ ├── matchobj.h │ │ │ ├── mathutil.h │ │ │ ├── mathutil.inc │ │ │ ├── os-features-config.h │ │ │ ├── os-features.h │ │ │ ├── permutedsort.h │ │ │ ├── qfits_byteswap.h │ │ │ ├── qfits_card.h │ │ │ ├── qfits_config.h │ │ │ ├── qfits_convert.h │ │ │ ├── qfits_error.h │ │ │ ├── qfits_float.h │ │ │ ├── qfits_header.h │ │ │ ├── qfits_image.h │ │ │ ├── qfits_keywords.h │ │ │ ├── qfits_md5.h │ │ │ ├── qfits_memory.h │ │ │ ├── qfits_rw.h │ │ │ ├── qfits_std.h │ │ │ ├── qfits_table.h │ │ │ ├── qfits_time.h │ │ │ ├── qfits_tools.h │ │ │ ├── quad-utils.h │ │ │ ├── quadfile.h │ │ │ ├── sip-utils.h │ │ │ ├── sip.h │ │ │ ├── solver.h │ │ │ ├── starkd.h │ │ │ ├── starutil.h │ │ │ ├── starutil.inc │ │ │ ├── starxy.h │ │ │ ├── tic.h │ │ │ ├── tweak2.h │ │ │ └── verify.h │ ├── libkd │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README │ │ ├── an-fls.h │ │ ├── kdint_ddd.c │ │ ├── kdint_dds.c │ │ ├── kdint_ddu.c │ │ ├── kdint_dss.c │ │ ├── kdint_dtype_d.h │ │ ├── kdint_dtype_f.h │ │ ├── kdint_dtype_s.h │ │ ├── kdint_dtype_u.h │ │ ├── kdint_duu.c │ │ ├── kdint_etype_d.h │ │ ├── kdint_etype_f.h │ │ ├── kdint_etype_s.h │ │ ├── kdint_etype_u.h │ │ ├── kdint_fff.c │ │ ├── kdint_ttype_d.h │ │ ├── kdint_ttype_f.h │ │ ├── kdint_ttype_s.h │ │ ├── kdint_ttype_u.h │ │ ├── kdtree.c │ │ ├── kdtree_dim.c │ │ ├── kdtree_fits_io.c │ │ ├── kdtree_internal.c │ │ ├── kdtree_internal.h │ │ ├── kdtree_internal_common.h │ │ ├── kdtree_internal_dists.c │ │ ├── kdtree_internal_dualtree.c │ │ ├── kdtree_internal_fits.c │ │ ├── kdtree_mem.c │ │ └── kdtree_mem.h │ ├── qfits-an │ │ ├── AUTHORS │ │ ├── NOTE-Astrometry.net │ │ ├── README │ │ ├── anqfits.c │ │ ├── md5.c │ │ ├── md5.h │ │ ├── qfits_byteswap.c │ │ ├── qfits_card.c │ │ ├── qfits_convert.c │ │ ├── qfits_error.c │ │ ├── qfits_float.c │ │ ├── qfits_header.c │ │ ├── qfits_image.c │ │ ├── qfits_memory.c │ │ ├── qfits_rw.c │ │ ├── qfits_table.c │ │ ├── qfits_time.c │ │ └── qfits_tools.c │ └── util │ │ ├── bl-nl-sort.c │ │ ├── bl-nl.c │ │ ├── bl-sort.c │ │ ├── bl.c │ │ ├── codekd.c │ │ ├── datalog.c │ │ ├── errors.c │ │ ├── fit-wcs.c │ │ ├── fitsbin.c │ │ ├── fitsfile.c │ │ ├── fitsioutils.c │ │ ├── fitstable.c │ │ ├── gslutils.c │ │ ├── healpix.c │ │ ├── index.c │ │ ├── ioutils.c │ │ ├── log.c │ │ ├── mathutil.c │ │ ├── md5.c │ │ ├── md5.h │ │ ├── os-features-test.c │ │ ├── os-features.c │ │ ├── permutedsort.c │ │ ├── qsort_reentrant.c │ │ ├── quadfile.c │ │ ├── sip-utils.c │ │ ├── sip.c │ │ ├── starkd.c │ │ ├── starutil.c │ │ ├── starxy.c │ │ └── tic.c ├── astrometrylogger.cpp ├── astrometrylogger.h ├── externalextractorsolver.cpp ├── externalextractorsolver.h ├── extractorsolver.cpp ├── extractorsolver.h ├── internalextractorsolver.cpp ├── internalextractorsolver.h ├── onlinesolver.cpp ├── onlinesolver.h ├── parameters.cpp ├── parameters.h ├── sep │ ├── AUTHORS.md │ ├── BSD_LICENSE.txt │ ├── LGPL_LICENSE.txt │ ├── MIT_LICENSE.txt │ ├── README.md │ ├── analyse.cpp │ ├── analyse.h │ ├── aperture.cpp │ ├── aperture.i │ ├── background.cpp │ ├── convolve.cpp │ ├── deblend.cpp │ ├── deblend.h │ ├── extract.c │ ├── extract.cpp │ ├── extract.h │ ├── lutz.cpp │ ├── lutz.h │ ├── overlap.h │ ├── sep.h │ ├── sepcore.h │ └── util.cpp ├── stellarsolver.cpp ├── stellarsolver.h ├── stellarsolver_export.h ├── structuredefinitions.h ├── wcsdata.cpp └── wcsdata.h ├── tester ├── StellarSolverIcon.icns ├── StellarSolverIcon.ico ├── StellarSolverIcon.png ├── com.github.rlancaste.stellarsolver.desktop ├── icons │ └── hicolor │ │ ├── 128x128 │ │ └── apps │ │ │ └── StellarSolverIcon.png │ │ ├── 16x16 │ │ └── apps │ │ │ └── StellarSolverIcon.png │ │ ├── 32x32 │ │ └── apps │ │ │ └── StellarSolverIcon.png │ │ ├── 48x48 │ │ └── apps │ │ │ └── StellarSolverIcon.png │ │ └── 64x64 │ │ └── apps │ │ └── StellarSolverIcon.png ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── nan.h ├── resources.qrc └── windowsicon.rc ├── tests ├── testdeletesolver.cpp ├── testdeletesolver.h ├── testmultiplesyncsolvers.cpp ├── testmultiplesyncsolvers.h ├── testtwostellarsolvers.cpp └── testtwostellarsolvers.h └── version.h.cmake /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/README.md -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/cli/main.cpp -------------------------------------------------------------------------------- /cmake/modules/CMakeParseArguments.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/cmake/modules/CMakeParseArguments.cmake -------------------------------------------------------------------------------- /cmake/modules/FindASTROMETRYNET.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/cmake/modules/FindASTROMETRYNET.cmake -------------------------------------------------------------------------------- /cmake/modules/FindCFITSIO.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/cmake/modules/FindCFITSIO.cmake -------------------------------------------------------------------------------- /cmake/modules/FindGSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/cmake/modules/FindGSL.cmake -------------------------------------------------------------------------------- /cmake/modules/FindPackageHandleStandardArgs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/cmake/modules/FindPackageHandleStandardArgs.cmake -------------------------------------------------------------------------------- /cmake/modules/FindPackageMessage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/cmake/modules/FindPackageMessage.cmake -------------------------------------------------------------------------------- /cmake/modules/FindStellarSolver.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/cmake/modules/FindStellarSolver.cmake -------------------------------------------------------------------------------- /cmake/modules/FindWCSLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/cmake/modules/FindWCSLIB.cmake -------------------------------------------------------------------------------- /craft-blueprints/QT5/StellarSolverTester/StellarSolverInstallIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/craft-blueprints/QT5/StellarSolverTester/StellarSolverInstallIcon.icns -------------------------------------------------------------------------------- /craft-blueprints/QT5/StellarSolverTester/StellarSolverInstallIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/craft-blueprints/QT5/StellarSolverTester/StellarSolverInstallIcon.ico -------------------------------------------------------------------------------- /craft-blueprints/QT5/StellarSolverTester/StellarSolverTester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/craft-blueprints/QT5/StellarSolverTester/StellarSolverTester.py -------------------------------------------------------------------------------- /craft-blueprints/QT5/stellarbatchsolver/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/craft-blueprints/QT5/stellarbatchsolver/.DS_Store -------------------------------------------------------------------------------- /craft-blueprints/QT5/stellarbatchsolver/StellarBatchSolverInstallIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/craft-blueprints/QT5/stellarbatchsolver/StellarBatchSolverInstallIcon.icns -------------------------------------------------------------------------------- /craft-blueprints/QT5/stellarbatchsolver/StellarBatchSolverInstallIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/craft-blueprints/QT5/stellarbatchsolver/StellarBatchSolverInstallIcon.ico -------------------------------------------------------------------------------- /craft-blueprints/QT5/stellarbatchsolver/stellarbatchsolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/craft-blueprints/QT5/stellarbatchsolver/stellarbatchsolver.py -------------------------------------------------------------------------------- /craft-blueprints/QT5/stellarsolver/stellarsolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/craft-blueprints/QT5/stellarsolver/stellarsolver.py -------------------------------------------------------------------------------- /craft-blueprints/QT6/StellarSolverTester/StellarSolverInstallIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/craft-blueprints/QT6/StellarSolverTester/StellarSolverInstallIcon.icns -------------------------------------------------------------------------------- /craft-blueprints/QT6/StellarSolverTester/StellarSolverInstallIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/craft-blueprints/QT6/StellarSolverTester/StellarSolverInstallIcon.ico -------------------------------------------------------------------------------- /craft-blueprints/QT6/StellarSolverTester/StellarSolverTester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/craft-blueprints/QT6/StellarSolverTester/StellarSolverTester.py -------------------------------------------------------------------------------- /craft-blueprints/QT6/stellarbatchsolver/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/craft-blueprints/QT6/stellarbatchsolver/.DS_Store -------------------------------------------------------------------------------- /craft-blueprints/QT6/stellarbatchsolver/StellarBatchSolverInstallIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/craft-blueprints/QT6/stellarbatchsolver/StellarBatchSolverInstallIcon.icns -------------------------------------------------------------------------------- /craft-blueprints/QT6/stellarbatchsolver/StellarBatchSolverInstallIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/craft-blueprints/QT6/stellarbatchsolver/StellarBatchSolverInstallIcon.ico -------------------------------------------------------------------------------- /craft-blueprints/QT6/stellarbatchsolver/stellarbatchsolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/craft-blueprints/QT6/stellarbatchsolver/stellarbatchsolver.py -------------------------------------------------------------------------------- /craft-blueprints/QT6/stellarsolver/stellarsolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/craft-blueprints/QT6/stellarsolver/stellarsolver.py -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/libstellarsolver-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/debian/libstellarsolver-dev.install -------------------------------------------------------------------------------- /debian/libstellarsolver.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/debian/libstellarsolver.install -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /demos/demoextractsolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/demos/demoextractsolve.cpp -------------------------------------------------------------------------------- /demos/demofitsextractsolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/demos/demofitsextractsolve.cpp -------------------------------------------------------------------------------- /demos/demofitsplatesolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/demos/demofitsplatesolve.cpp -------------------------------------------------------------------------------- /demos/demofitsstarextract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/demos/demofitsstarextract.cpp -------------------------------------------------------------------------------- /demos/demomultiplesolves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/demos/demomultiplesolves.cpp -------------------------------------------------------------------------------- /demos/demoplatesolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/demos/demoplatesolve.cpp -------------------------------------------------------------------------------- /demos/demosignalsslots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/demos/demosignalsslots.cpp -------------------------------------------------------------------------------- /demos/demosignalsslots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/demos/demosignalsslots.h -------------------------------------------------------------------------------- /demos/demostarextract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/demos/demostarextract.cpp -------------------------------------------------------------------------------- /demos/pleiades.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/demos/pleiades.jpg -------------------------------------------------------------------------------- /demos/randomsky.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/demos/randomsky.fits -------------------------------------------------------------------------------- /images/Sextractor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/images/Sextractor.png -------------------------------------------------------------------------------- /images/Solver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/images/Solver.png -------------------------------------------------------------------------------- /images/StellarSolverInAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/images/StellarSolverInAction.png -------------------------------------------------------------------------------- /images/StellarSolverPretty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/images/StellarSolverPretty.png -------------------------------------------------------------------------------- /linux-scripts/installStellarSolverLibraryQt5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/linux-scripts/installStellarSolverLibraryQt5.sh -------------------------------------------------------------------------------- /linux-scripts/installStellarSolverLibraryQt6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/linux-scripts/installStellarSolverLibraryQt6.sh -------------------------------------------------------------------------------- /linux-scripts/installStellarSolverTesterQt5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/linux-scripts/installStellarSolverTesterQt5.sh -------------------------------------------------------------------------------- /linux-scripts/installStellarSolverTesterQt6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/linux-scripts/installStellarSolverTesterQt6.sh -------------------------------------------------------------------------------- /linux-scripts/removeStellarSolver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/linux-scripts/removeStellarSolver.sh -------------------------------------------------------------------------------- /spec/stellarsolver.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/spec/stellarsolver.spec -------------------------------------------------------------------------------- /ssolverutils/bayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/ssolverutils/bayer.c -------------------------------------------------------------------------------- /ssolverutils/bayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/ssolverutils/bayer.h -------------------------------------------------------------------------------- /ssolverutils/dms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/ssolverutils/dms.cpp -------------------------------------------------------------------------------- /ssolverutils/dms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/ssolverutils/dms.h -------------------------------------------------------------------------------- /ssolverutils/fileio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/ssolverutils/fileio.cpp -------------------------------------------------------------------------------- /ssolverutils/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/ssolverutils/fileio.h -------------------------------------------------------------------------------- /ssolverutils/imagelabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/ssolverutils/imagelabel.cpp -------------------------------------------------------------------------------- /ssolverutils/imagelabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/ssolverutils/imagelabel.h -------------------------------------------------------------------------------- /ssolverutils/stretch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/ssolverutils/stretch.cpp -------------------------------------------------------------------------------- /ssolverutils/stretch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/ssolverutils/stretch.h -------------------------------------------------------------------------------- /stellarbatchsolver/StellarBatchSolverIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarbatchsolver/StellarBatchSolverIcon.icns -------------------------------------------------------------------------------- /stellarbatchsolver/StellarBatchSolverIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarbatchsolver/StellarBatchSolverIcon.ico -------------------------------------------------------------------------------- /stellarbatchsolver/StellarBatchSolverIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarbatchsolver/StellarBatchSolverIcon.png -------------------------------------------------------------------------------- /stellarbatchsolver/StellarBatchSolverIcon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarbatchsolver/StellarBatchSolverIcon.xcf -------------------------------------------------------------------------------- /stellarbatchsolver/com.github.rlancaste.stellarbatchsolver.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarbatchsolver/com.github.rlancaste.stellarbatchsolver.desktop -------------------------------------------------------------------------------- /stellarbatchsolver/icons/hicolor/128x128/apps/StellarBatchSolverIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarbatchsolver/icons/hicolor/128x128/apps/StellarBatchSolverIcon.png -------------------------------------------------------------------------------- /stellarbatchsolver/icons/hicolor/16x16/apps/StellarBatchSolverIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarbatchsolver/icons/hicolor/16x16/apps/StellarBatchSolverIcon.png -------------------------------------------------------------------------------- /stellarbatchsolver/icons/hicolor/32x32/apps/StellarBatchSolverIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarbatchsolver/icons/hicolor/32x32/apps/StellarBatchSolverIcon.png -------------------------------------------------------------------------------- /stellarbatchsolver/icons/hicolor/48x48/apps/StellarBatchSolverIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarbatchsolver/icons/hicolor/48x48/apps/StellarBatchSolverIcon.png -------------------------------------------------------------------------------- /stellarbatchsolver/icons/hicolor/64x64/apps/StellarBatchSolverIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarbatchsolver/icons/hicolor/64x64/apps/StellarBatchSolverIcon.png -------------------------------------------------------------------------------- /stellarbatchsolver/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarbatchsolver/resources.qrc -------------------------------------------------------------------------------- /stellarbatchsolver/stellarbatchsolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarbatchsolver/stellarbatchsolver.cpp -------------------------------------------------------------------------------- /stellarbatchsolver/stellarbatchsolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarbatchsolver/stellarbatchsolver.h -------------------------------------------------------------------------------- /stellarbatchsolver/stellarbatchsolver.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarbatchsolver/stellarbatchsolver.ui -------------------------------------------------------------------------------- /stellarbatchsolver/windowsicon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarbatchsolver/windowsicon.rc -------------------------------------------------------------------------------- /stellarsolver.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver.pc.cmake -------------------------------------------------------------------------------- /stellarsolver/astrometry/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/CREDITS -------------------------------------------------------------------------------- /stellarsolver/astrometry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/LICENSE -------------------------------------------------------------------------------- /stellarsolver/astrometry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/README.md -------------------------------------------------------------------------------- /stellarsolver/astrometry/blind/blind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/blind/blind.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/blind/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/blind/engine.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/blind/matchobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/blind/matchobj.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/blind/pquad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/blind/pquad.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/blind/quad-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/blind/quad-utils.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/blind/solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/blind/solver.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/blind/tweak2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/blind/tweak2.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/blind/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/blind/verify.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/blind/windirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/blind/windirent.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/boilerplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/boilerplate.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/an-bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/an-bool.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/anqfits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/anqfits.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/bl-nl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/bl-nl.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/bl-nl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/bl-nl.inc -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/bl-nl.ph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/bl-nl.ph -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/bl-sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/bl-sort.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/bl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/bl.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/bl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/bl.inc -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/bl.ph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/bl.ph -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/blind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/blind.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/codefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/codefile.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/codekd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/codekd.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/datalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/datalog.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/engine.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/errors.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/fit-wcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/fit-wcs.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/fitsbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/fitsbin.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/fitsfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/fitsfile.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/fitsioutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/fitsioutils.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/fitstable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/fitstable.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/gslutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/gslutils.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/healpix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/healpix.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/index.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/ioutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/ioutils.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/kdtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/kdtree.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/kdtree_fits_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/kdtree_fits_io.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/keywords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/keywords.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/log.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/matchobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/matchobj.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/mathutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/mathutil.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/mathutil.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/mathutil.inc -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/os-features-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/os-features-config.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/os-features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/os-features.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/permutedsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/permutedsort.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/qfits_byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/qfits_byteswap.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/qfits_card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/qfits_card.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/qfits_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/qfits_config.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/qfits_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/qfits_convert.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/qfits_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/qfits_error.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/qfits_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/qfits_float.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/qfits_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/qfits_header.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/qfits_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/qfits_image.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/qfits_keywords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/qfits_keywords.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/qfits_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/qfits_md5.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/qfits_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/qfits_memory.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/qfits_rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/qfits_rw.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/qfits_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/qfits_std.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/qfits_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/qfits_table.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/qfits_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/qfits_time.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/qfits_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/qfits_tools.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/quad-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/quad-utils.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/quadfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/quadfile.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/sip-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/sip-utils.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/sip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/sip.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/solver.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/starkd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/starkd.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/starutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/starutil.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/starutil.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/starutil.inc -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/starxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/starxy.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/tic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/tic.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/tweak2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/tweak2.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/include/astrometry/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/include/astrometry/verify.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/AUTHORS: -------------------------------------------------------------------------------- 1 | Dustin Lang 2 | Keir Mierle 3 | -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/LICENSE -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/README -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/an-fls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/an-fls.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_ddd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_ddd.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_dds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_dds.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_ddu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_ddu.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_dss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_dss.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_dtype_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_dtype_d.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_dtype_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_dtype_f.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_dtype_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_dtype_s.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_dtype_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_dtype_u.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_duu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_duu.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_etype_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_etype_d.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_etype_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_etype_f.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_etype_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_etype_s.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_etype_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_etype_u.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_fff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_fff.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_ttype_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_ttype_d.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_ttype_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_ttype_f.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_ttype_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_ttype_s.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdint_ttype_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdint_ttype_u.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdtree.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdtree_dim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdtree_dim.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdtree_fits_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdtree_fits_io.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdtree_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdtree_internal.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdtree_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdtree_internal.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdtree_internal_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdtree_internal_common.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdtree_internal_dists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdtree_internal_dists.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdtree_internal_dualtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdtree_internal_dualtree.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdtree_internal_fits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdtree_internal_fits.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdtree_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdtree_mem.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/libkd/kdtree_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/libkd/kdtree_mem.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/AUTHORS -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/NOTE-Astrometry.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/NOTE-Astrometry.net -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/README -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/anqfits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/anqfits.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/md5.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/md5.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/qfits_byteswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/qfits_byteswap.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/qfits_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/qfits_card.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/qfits_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/qfits_convert.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/qfits_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/qfits_error.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/qfits_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/qfits_float.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/qfits_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/qfits_header.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/qfits_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/qfits_image.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/qfits_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/qfits_memory.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/qfits_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/qfits_rw.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/qfits_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/qfits_table.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/qfits_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/qfits_time.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/qfits-an/qfits_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/qfits-an/qfits_tools.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/bl-nl-sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/bl-nl-sort.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/bl-nl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/bl-nl.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/bl-sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/bl-sort.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/bl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/bl.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/codekd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/codekd.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/datalog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/datalog.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/errors.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/fit-wcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/fit-wcs.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/fitsbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/fitsbin.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/fitsfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/fitsfile.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/fitsioutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/fitsioutils.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/fitstable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/fitstable.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/gslutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/gslutils.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/healpix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/healpix.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/index.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/ioutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/ioutils.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/log.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/mathutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/mathutil.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/md5.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/md5.h -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/os-features-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/os-features-test.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/os-features.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/os-features.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/permutedsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/permutedsort.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/qsort_reentrant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/qsort_reentrant.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/quadfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/quadfile.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/sip-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/sip-utils.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/sip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/sip.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/starkd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/starkd.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/starutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/starutil.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/starxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/starxy.c -------------------------------------------------------------------------------- /stellarsolver/astrometry/util/tic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometry/util/tic.c -------------------------------------------------------------------------------- /stellarsolver/astrometrylogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometrylogger.cpp -------------------------------------------------------------------------------- /stellarsolver/astrometrylogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/astrometrylogger.h -------------------------------------------------------------------------------- /stellarsolver/externalextractorsolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/externalextractorsolver.cpp -------------------------------------------------------------------------------- /stellarsolver/externalextractorsolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/externalextractorsolver.h -------------------------------------------------------------------------------- /stellarsolver/extractorsolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/extractorsolver.cpp -------------------------------------------------------------------------------- /stellarsolver/extractorsolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/extractorsolver.h -------------------------------------------------------------------------------- /stellarsolver/internalextractorsolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/internalextractorsolver.cpp -------------------------------------------------------------------------------- /stellarsolver/internalextractorsolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/internalextractorsolver.h -------------------------------------------------------------------------------- /stellarsolver/onlinesolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/onlinesolver.cpp -------------------------------------------------------------------------------- /stellarsolver/onlinesolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/onlinesolver.h -------------------------------------------------------------------------------- /stellarsolver/parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/parameters.cpp -------------------------------------------------------------------------------- /stellarsolver/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/parameters.h -------------------------------------------------------------------------------- /stellarsolver/sep/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/AUTHORS.md -------------------------------------------------------------------------------- /stellarsolver/sep/BSD_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/BSD_LICENSE.txt -------------------------------------------------------------------------------- /stellarsolver/sep/LGPL_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/LGPL_LICENSE.txt -------------------------------------------------------------------------------- /stellarsolver/sep/MIT_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/MIT_LICENSE.txt -------------------------------------------------------------------------------- /stellarsolver/sep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/README.md -------------------------------------------------------------------------------- /stellarsolver/sep/analyse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/analyse.cpp -------------------------------------------------------------------------------- /stellarsolver/sep/analyse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/analyse.h -------------------------------------------------------------------------------- /stellarsolver/sep/aperture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/aperture.cpp -------------------------------------------------------------------------------- /stellarsolver/sep/aperture.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/aperture.i -------------------------------------------------------------------------------- /stellarsolver/sep/background.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/background.cpp -------------------------------------------------------------------------------- /stellarsolver/sep/convolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/convolve.cpp -------------------------------------------------------------------------------- /stellarsolver/sep/deblend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/deblend.cpp -------------------------------------------------------------------------------- /stellarsolver/sep/deblend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/deblend.h -------------------------------------------------------------------------------- /stellarsolver/sep/extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/extract.c -------------------------------------------------------------------------------- /stellarsolver/sep/extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/extract.cpp -------------------------------------------------------------------------------- /stellarsolver/sep/extract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/extract.h -------------------------------------------------------------------------------- /stellarsolver/sep/lutz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/lutz.cpp -------------------------------------------------------------------------------- /stellarsolver/sep/lutz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/lutz.h -------------------------------------------------------------------------------- /stellarsolver/sep/overlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/overlap.h -------------------------------------------------------------------------------- /stellarsolver/sep/sep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/sep.h -------------------------------------------------------------------------------- /stellarsolver/sep/sepcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/sepcore.h -------------------------------------------------------------------------------- /stellarsolver/sep/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/sep/util.cpp -------------------------------------------------------------------------------- /stellarsolver/stellarsolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/stellarsolver.cpp -------------------------------------------------------------------------------- /stellarsolver/stellarsolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/stellarsolver.h -------------------------------------------------------------------------------- /stellarsolver/stellarsolver_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/stellarsolver_export.h -------------------------------------------------------------------------------- /stellarsolver/structuredefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/structuredefinitions.h -------------------------------------------------------------------------------- /stellarsolver/wcsdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/wcsdata.cpp -------------------------------------------------------------------------------- /stellarsolver/wcsdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/stellarsolver/wcsdata.h -------------------------------------------------------------------------------- /tester/StellarSolverIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tester/StellarSolverIcon.icns -------------------------------------------------------------------------------- /tester/StellarSolverIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tester/StellarSolverIcon.ico -------------------------------------------------------------------------------- /tester/StellarSolverIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tester/StellarSolverIcon.png -------------------------------------------------------------------------------- /tester/com.github.rlancaste.stellarsolver.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tester/com.github.rlancaste.stellarsolver.desktop -------------------------------------------------------------------------------- /tester/icons/hicolor/128x128/apps/StellarSolverIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tester/icons/hicolor/128x128/apps/StellarSolverIcon.png -------------------------------------------------------------------------------- /tester/icons/hicolor/16x16/apps/StellarSolverIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tester/icons/hicolor/16x16/apps/StellarSolverIcon.png -------------------------------------------------------------------------------- /tester/icons/hicolor/32x32/apps/StellarSolverIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tester/icons/hicolor/32x32/apps/StellarSolverIcon.png -------------------------------------------------------------------------------- /tester/icons/hicolor/48x48/apps/StellarSolverIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tester/icons/hicolor/48x48/apps/StellarSolverIcon.png -------------------------------------------------------------------------------- /tester/icons/hicolor/64x64/apps/StellarSolverIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tester/icons/hicolor/64x64/apps/StellarSolverIcon.png -------------------------------------------------------------------------------- /tester/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tester/main.cpp -------------------------------------------------------------------------------- /tester/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tester/mainwindow.cpp -------------------------------------------------------------------------------- /tester/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tester/mainwindow.h -------------------------------------------------------------------------------- /tester/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tester/mainwindow.ui -------------------------------------------------------------------------------- /tester/nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tester/nan.h -------------------------------------------------------------------------------- /tester/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tester/resources.qrc -------------------------------------------------------------------------------- /tester/windowsicon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tester/windowsicon.rc -------------------------------------------------------------------------------- /tests/testdeletesolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tests/testdeletesolver.cpp -------------------------------------------------------------------------------- /tests/testdeletesolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tests/testdeletesolver.h -------------------------------------------------------------------------------- /tests/testmultiplesyncsolvers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tests/testmultiplesyncsolvers.cpp -------------------------------------------------------------------------------- /tests/testmultiplesyncsolvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tests/testmultiplesyncsolvers.h -------------------------------------------------------------------------------- /tests/testtwostellarsolvers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tests/testtwostellarsolvers.cpp -------------------------------------------------------------------------------- /tests/testtwostellarsolvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/tests/testtwostellarsolvers.h -------------------------------------------------------------------------------- /version.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlancaste/stellarsolver/HEAD/version.h.cmake --------------------------------------------------------------------------------