├── .github └── workflows │ └── build.yml ├── .gitignore ├── .travis.yml ├── AUTHORS ├── BUGS ├── COPYRIGHT ├── ChangeLog ├── HISTORY ├── INSTALL ├── LICENSE ├── Makefile.am ├── README.md ├── THANKS ├── autogen.sh ├── config ├── default.conv ├── default.psfex ├── prepsfex.param └── prepsfex.sex ├── configure.ac ├── debian ├── Makefile.am ├── README ├── changelog.in ├── compat ├── control └── rules ├── doc ├── Makefile.am ├── TODO ├── requirements.txt ├── src │ ├── Appendices.rst │ ├── Ending.rst │ ├── Examples.rst │ ├── GettingStarted.rst │ ├── Installing.rst │ ├── Introduction.rst │ ├── License.rst │ ├── Working.rst │ ├── conf.py │ ├── conf.py.in │ ├── figures │ │ ├── chi2map.png │ │ ├── ellipmap.png │ │ ├── extremeimapsfs.pdf │ │ ├── extremeimapsfs.svg │ │ ├── extremepsfs.pdf │ │ ├── fwhmmap.png │ │ ├── lanczos4.pdf │ │ ├── lanczos4.svg │ │ ├── megproto.png │ │ ├── megsnap.png │ │ ├── psfex_intro.png │ │ ├── psfex_layout.pdf │ │ ├── psfex_layout.svg │ │ ├── psfex_xml.png │ │ ├── psfmap.pdf │ │ ├── psfmap.svg │ │ ├── psfmega.pdf │ │ ├── psfmega.svg │ │ ├── psfschmidt.pdf │ │ ├── psfschmidt.svg │ │ ├── rhmag.png │ │ ├── schmidtproto.png │ │ ├── schmidtresi.png │ │ └── schmidtsnap.png │ ├── index.rst │ ├── keys.rst │ ├── references.bib │ └── references.rst └── theme │ └── css │ └── custom.css ├── m4 ├── acx_atlas.m4 ├── acx_fftw.m4 ├── acx_mkl.m4 ├── acx_openblas.m4 ├── acx_plplot.m4 ├── acx_prog_cc_optim.m4 ├── acx_pthread.m4 └── acx_urbi_resolve_dir.m4 ├── man ├── Makefile.am ├── psfex.1.in └── psfex.x ├── psfex.spec.in ├── src ├── Makefile.am ├── cathead.h ├── catout.c ├── catout.h ├── check.c ├── check.h ├── context.c ├── context.h ├── cplot.c ├── cplot.h ├── define.h ├── diagnostic.c ├── diagnostic.h ├── fft.c ├── fft.h ├── field.c ├── field.h ├── fits │ ├── Makefile.am │ ├── fitsbody.c │ ├── fitscat.c │ ├── fitscat.h │ ├── fitscat_defs.h │ ├── fitscheck.c │ ├── fitscleanup.c │ ├── fitsconv.c │ ├── fitshead.c │ ├── fitskey.c │ ├── fitsmisc.c │ ├── fitsread.c │ ├── fitstab.c │ ├── fitsutil.c │ └── fitswrite.c ├── fitswcs.c ├── fitswcs.h ├── globals.h ├── homo.c ├── homo.h ├── key.h ├── levmar │ ├── Axb.c │ ├── Axb_core.c │ ├── CMakeLists.txt │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.icc │ ├── Makefile.vc │ ├── README │ ├── README.txt │ ├── compiler.h │ ├── expfit.c │ ├── levmar.h │ ├── levmar.h.in │ ├── lm.c │ ├── lm.h │ ├── lm_core.c │ ├── lmbc.c │ ├── lmbc_core.c │ ├── lmblec.c │ ├── lmblec_core.c │ ├── lmbleic.c │ ├── lmbleic_core.c │ ├── lmdemo.c │ ├── lmlec.c │ ├── lmlec_core.c │ ├── matlab │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.w32 │ │ ├── README.txt │ │ ├── bt3.m │ │ ├── expfit.m │ │ ├── hs01.m │ │ ├── jacbt3.m │ │ ├── jacexpfit.m │ │ ├── jachs01.m │ │ ├── jacmeyer.m │ │ ├── jacmodhs38.m │ │ ├── jacmodhs52.m │ │ ├── jacmodhs76.m │ │ ├── jacosborne.m │ │ ├── levmar.c │ │ ├── levmar.m │ │ ├── lmdemo.m │ │ ├── meyer.m │ │ ├── modhs38.m │ │ ├── modhs52.m │ │ ├── modhs76.m │ │ ├── mods235.m │ │ └── osborne.m │ ├── misc.c │ ├── misc.h │ └── misc_core.c ├── main.c ├── makeit.c ├── misc.c ├── misc.h ├── pca.c ├── pca.h ├── preflist.h ├── prefs.c ├── prefs.h ├── psf.c ├── psf.h ├── sample.c ├── sample.h ├── threads.h ├── types.h ├── vignet.c ├── vignet.h ├── wcs │ ├── LICENSE │ ├── Makefile.am │ ├── README │ ├── cel.c │ ├── cel.h │ ├── lin.c │ ├── lin.h │ ├── poly.c │ ├── poly.h │ ├── proj.c │ ├── proj.h │ ├── sph.c │ ├── sph.h │ ├── tnx.c │ ├── tnx.h │ ├── wcs.c │ ├── wcs.h │ ├── wcsmath.h │ ├── wcstrig.c │ └── wcstrig.h ├── wcscelsys.h ├── xml.c └── xml.h └── xsl └── psfex.xsl /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/ChangeLog -------------------------------------------------------------------------------- /HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/HISTORY -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/README.md -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/THANKS -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/autogen.sh -------------------------------------------------------------------------------- /config/default.conv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/config/default.conv -------------------------------------------------------------------------------- /config/default.psfex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/config/default.psfex -------------------------------------------------------------------------------- /config/prepsfex.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/config/prepsfex.param -------------------------------------------------------------------------------- /config/prepsfex.sex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/config/prepsfex.sex -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/debian/Makefile.am -------------------------------------------------------------------------------- /debian/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/debian/README -------------------------------------------------------------------------------- /debian/changelog.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/debian/changelog.in -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/debian/control -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/debian/rules -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/TODO -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinxcontrib-bibtex 2 | -------------------------------------------------------------------------------- /doc/src/Appendices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/Appendices.rst -------------------------------------------------------------------------------- /doc/src/Ending.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/Ending.rst -------------------------------------------------------------------------------- /doc/src/Examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/Examples.rst -------------------------------------------------------------------------------- /doc/src/GettingStarted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/GettingStarted.rst -------------------------------------------------------------------------------- /doc/src/Installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/Installing.rst -------------------------------------------------------------------------------- /doc/src/Introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/Introduction.rst -------------------------------------------------------------------------------- /doc/src/License.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/License.rst -------------------------------------------------------------------------------- /doc/src/Working.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/Working.rst -------------------------------------------------------------------------------- /doc/src/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/conf.py -------------------------------------------------------------------------------- /doc/src/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/conf.py.in -------------------------------------------------------------------------------- /doc/src/figures/chi2map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/chi2map.png -------------------------------------------------------------------------------- /doc/src/figures/ellipmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/ellipmap.png -------------------------------------------------------------------------------- /doc/src/figures/extremeimapsfs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/extremeimapsfs.pdf -------------------------------------------------------------------------------- /doc/src/figures/extremeimapsfs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/extremeimapsfs.svg -------------------------------------------------------------------------------- /doc/src/figures/extremepsfs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/extremepsfs.pdf -------------------------------------------------------------------------------- /doc/src/figures/fwhmmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/fwhmmap.png -------------------------------------------------------------------------------- /doc/src/figures/lanczos4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/lanczos4.pdf -------------------------------------------------------------------------------- /doc/src/figures/lanczos4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/lanczos4.svg -------------------------------------------------------------------------------- /doc/src/figures/megproto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/megproto.png -------------------------------------------------------------------------------- /doc/src/figures/megsnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/megsnap.png -------------------------------------------------------------------------------- /doc/src/figures/psfex_intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/psfex_intro.png -------------------------------------------------------------------------------- /doc/src/figures/psfex_layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/psfex_layout.pdf -------------------------------------------------------------------------------- /doc/src/figures/psfex_layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/psfex_layout.svg -------------------------------------------------------------------------------- /doc/src/figures/psfex_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/psfex_xml.png -------------------------------------------------------------------------------- /doc/src/figures/psfmap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/psfmap.pdf -------------------------------------------------------------------------------- /doc/src/figures/psfmap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/psfmap.svg -------------------------------------------------------------------------------- /doc/src/figures/psfmega.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/psfmega.pdf -------------------------------------------------------------------------------- /doc/src/figures/psfmega.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/psfmega.svg -------------------------------------------------------------------------------- /doc/src/figures/psfschmidt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/psfschmidt.pdf -------------------------------------------------------------------------------- /doc/src/figures/psfschmidt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/psfschmidt.svg -------------------------------------------------------------------------------- /doc/src/figures/rhmag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/rhmag.png -------------------------------------------------------------------------------- /doc/src/figures/schmidtproto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/schmidtproto.png -------------------------------------------------------------------------------- /doc/src/figures/schmidtresi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/schmidtresi.png -------------------------------------------------------------------------------- /doc/src/figures/schmidtsnap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/figures/schmidtsnap.png -------------------------------------------------------------------------------- /doc/src/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/index.rst -------------------------------------------------------------------------------- /doc/src/keys.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/keys.rst -------------------------------------------------------------------------------- /doc/src/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/references.bib -------------------------------------------------------------------------------- /doc/src/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/src/references.rst -------------------------------------------------------------------------------- /doc/theme/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/doc/theme/css/custom.css -------------------------------------------------------------------------------- /m4/acx_atlas.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/m4/acx_atlas.m4 -------------------------------------------------------------------------------- /m4/acx_fftw.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/m4/acx_fftw.m4 -------------------------------------------------------------------------------- /m4/acx_mkl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/m4/acx_mkl.m4 -------------------------------------------------------------------------------- /m4/acx_openblas.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/m4/acx_openblas.m4 -------------------------------------------------------------------------------- /m4/acx_plplot.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/m4/acx_plplot.m4 -------------------------------------------------------------------------------- /m4/acx_prog_cc_optim.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/m4/acx_prog_cc_optim.m4 -------------------------------------------------------------------------------- /m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /m4/acx_urbi_resolve_dir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/m4/acx_urbi_resolve_dir.m4 -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/psfex.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/man/psfex.1.in -------------------------------------------------------------------------------- /man/psfex.x: -------------------------------------------------------------------------------- 1 | [name] 2 | psfex \- generate a PSF super-tabulated model for SExtractor 3 | -------------------------------------------------------------------------------- /psfex.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/psfex.spec.in -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/cathead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/cathead.h -------------------------------------------------------------------------------- /src/catout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/catout.c -------------------------------------------------------------------------------- /src/catout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/catout.h -------------------------------------------------------------------------------- /src/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/check.c -------------------------------------------------------------------------------- /src/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/check.h -------------------------------------------------------------------------------- /src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/context.c -------------------------------------------------------------------------------- /src/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/context.h -------------------------------------------------------------------------------- /src/cplot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/cplot.c -------------------------------------------------------------------------------- /src/cplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/cplot.h -------------------------------------------------------------------------------- /src/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/define.h -------------------------------------------------------------------------------- /src/diagnostic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/diagnostic.c -------------------------------------------------------------------------------- /src/diagnostic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/diagnostic.h -------------------------------------------------------------------------------- /src/fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fft.c -------------------------------------------------------------------------------- /src/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fft.h -------------------------------------------------------------------------------- /src/field.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/field.c -------------------------------------------------------------------------------- /src/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/field.h -------------------------------------------------------------------------------- /src/fits/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fits/Makefile.am -------------------------------------------------------------------------------- /src/fits/fitsbody.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fits/fitsbody.c -------------------------------------------------------------------------------- /src/fits/fitscat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fits/fitscat.c -------------------------------------------------------------------------------- /src/fits/fitscat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fits/fitscat.h -------------------------------------------------------------------------------- /src/fits/fitscat_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fits/fitscat_defs.h -------------------------------------------------------------------------------- /src/fits/fitscheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fits/fitscheck.c -------------------------------------------------------------------------------- /src/fits/fitscleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fits/fitscleanup.c -------------------------------------------------------------------------------- /src/fits/fitsconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fits/fitsconv.c -------------------------------------------------------------------------------- /src/fits/fitshead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fits/fitshead.c -------------------------------------------------------------------------------- /src/fits/fitskey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fits/fitskey.c -------------------------------------------------------------------------------- /src/fits/fitsmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fits/fitsmisc.c -------------------------------------------------------------------------------- /src/fits/fitsread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fits/fitsread.c -------------------------------------------------------------------------------- /src/fits/fitstab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fits/fitstab.c -------------------------------------------------------------------------------- /src/fits/fitsutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fits/fitsutil.c -------------------------------------------------------------------------------- /src/fits/fitswrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fits/fitswrite.c -------------------------------------------------------------------------------- /src/fitswcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fitswcs.c -------------------------------------------------------------------------------- /src/fitswcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/fitswcs.h -------------------------------------------------------------------------------- /src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/globals.h -------------------------------------------------------------------------------- /src/homo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/homo.c -------------------------------------------------------------------------------- /src/homo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/homo.h -------------------------------------------------------------------------------- /src/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/key.h -------------------------------------------------------------------------------- /src/levmar/Axb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/Axb.c -------------------------------------------------------------------------------- /src/levmar/Axb_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/Axb_core.c -------------------------------------------------------------------------------- /src/levmar/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/CMakeLists.txt -------------------------------------------------------------------------------- /src/levmar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/LICENSE -------------------------------------------------------------------------------- /src/levmar/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/Makefile.am -------------------------------------------------------------------------------- /src/levmar/Makefile.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/Makefile.icc -------------------------------------------------------------------------------- /src/levmar/Makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/Makefile.vc -------------------------------------------------------------------------------- /src/levmar/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/README -------------------------------------------------------------------------------- /src/levmar/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/README.txt -------------------------------------------------------------------------------- /src/levmar/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/compiler.h -------------------------------------------------------------------------------- /src/levmar/expfit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/expfit.c -------------------------------------------------------------------------------- /src/levmar/levmar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/levmar.h -------------------------------------------------------------------------------- /src/levmar/levmar.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/levmar.h.in -------------------------------------------------------------------------------- /src/levmar/lm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/lm.c -------------------------------------------------------------------------------- /src/levmar/lm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/lm.h -------------------------------------------------------------------------------- /src/levmar/lm_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/lm_core.c -------------------------------------------------------------------------------- /src/levmar/lmbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/lmbc.c -------------------------------------------------------------------------------- /src/levmar/lmbc_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/lmbc_core.c -------------------------------------------------------------------------------- /src/levmar/lmblec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/lmblec.c -------------------------------------------------------------------------------- /src/levmar/lmblec_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/lmblec_core.c -------------------------------------------------------------------------------- /src/levmar/lmbleic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/lmbleic.c -------------------------------------------------------------------------------- /src/levmar/lmbleic_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/lmbleic_core.c -------------------------------------------------------------------------------- /src/levmar/lmdemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/lmdemo.c -------------------------------------------------------------------------------- /src/levmar/lmlec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/lmlec.c -------------------------------------------------------------------------------- /src/levmar/lmlec_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/lmlec_core.c -------------------------------------------------------------------------------- /src/levmar/matlab/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/CMakeLists.txt -------------------------------------------------------------------------------- /src/levmar/matlab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/Makefile -------------------------------------------------------------------------------- /src/levmar/matlab/Makefile.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/Makefile.w32 -------------------------------------------------------------------------------- /src/levmar/matlab/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/README.txt -------------------------------------------------------------------------------- /src/levmar/matlab/bt3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/bt3.m -------------------------------------------------------------------------------- /src/levmar/matlab/expfit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/expfit.m -------------------------------------------------------------------------------- /src/levmar/matlab/hs01.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/hs01.m -------------------------------------------------------------------------------- /src/levmar/matlab/jacbt3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/jacbt3.m -------------------------------------------------------------------------------- /src/levmar/matlab/jacexpfit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/jacexpfit.m -------------------------------------------------------------------------------- /src/levmar/matlab/jachs01.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/jachs01.m -------------------------------------------------------------------------------- /src/levmar/matlab/jacmeyer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/jacmeyer.m -------------------------------------------------------------------------------- /src/levmar/matlab/jacmodhs38.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/jacmodhs38.m -------------------------------------------------------------------------------- /src/levmar/matlab/jacmodhs52.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/jacmodhs52.m -------------------------------------------------------------------------------- /src/levmar/matlab/jacmodhs76.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/jacmodhs76.m -------------------------------------------------------------------------------- /src/levmar/matlab/jacosborne.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/jacosborne.m -------------------------------------------------------------------------------- /src/levmar/matlab/levmar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/levmar.c -------------------------------------------------------------------------------- /src/levmar/matlab/levmar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/levmar.m -------------------------------------------------------------------------------- /src/levmar/matlab/lmdemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/lmdemo.m -------------------------------------------------------------------------------- /src/levmar/matlab/meyer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/meyer.m -------------------------------------------------------------------------------- /src/levmar/matlab/modhs38.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/modhs38.m -------------------------------------------------------------------------------- /src/levmar/matlab/modhs52.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/modhs52.m -------------------------------------------------------------------------------- /src/levmar/matlab/modhs76.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/modhs76.m -------------------------------------------------------------------------------- /src/levmar/matlab/mods235.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/mods235.m -------------------------------------------------------------------------------- /src/levmar/matlab/osborne.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/matlab/osborne.m -------------------------------------------------------------------------------- /src/levmar/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/misc.c -------------------------------------------------------------------------------- /src/levmar/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/misc.h -------------------------------------------------------------------------------- /src/levmar/misc_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/levmar/misc_core.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/main.c -------------------------------------------------------------------------------- /src/makeit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/makeit.c -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/misc.c -------------------------------------------------------------------------------- /src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/misc.h -------------------------------------------------------------------------------- /src/pca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/pca.c -------------------------------------------------------------------------------- /src/pca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/pca.h -------------------------------------------------------------------------------- /src/preflist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/preflist.h -------------------------------------------------------------------------------- /src/prefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/prefs.c -------------------------------------------------------------------------------- /src/prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/prefs.h -------------------------------------------------------------------------------- /src/psf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/psf.c -------------------------------------------------------------------------------- /src/psf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/psf.h -------------------------------------------------------------------------------- /src/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/sample.c -------------------------------------------------------------------------------- /src/sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/sample.h -------------------------------------------------------------------------------- /src/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/threads.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/types.h -------------------------------------------------------------------------------- /src/vignet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/vignet.c -------------------------------------------------------------------------------- /src/vignet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/vignet.h -------------------------------------------------------------------------------- /src/wcs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/LICENSE -------------------------------------------------------------------------------- /src/wcs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/Makefile.am -------------------------------------------------------------------------------- /src/wcs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/README -------------------------------------------------------------------------------- /src/wcs/cel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/cel.c -------------------------------------------------------------------------------- /src/wcs/cel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/cel.h -------------------------------------------------------------------------------- /src/wcs/lin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/lin.c -------------------------------------------------------------------------------- /src/wcs/lin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/lin.h -------------------------------------------------------------------------------- /src/wcs/poly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/poly.c -------------------------------------------------------------------------------- /src/wcs/poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/poly.h -------------------------------------------------------------------------------- /src/wcs/proj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/proj.c -------------------------------------------------------------------------------- /src/wcs/proj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/proj.h -------------------------------------------------------------------------------- /src/wcs/sph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/sph.c -------------------------------------------------------------------------------- /src/wcs/sph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/sph.h -------------------------------------------------------------------------------- /src/wcs/tnx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/tnx.c -------------------------------------------------------------------------------- /src/wcs/tnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/tnx.h -------------------------------------------------------------------------------- /src/wcs/wcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/wcs.c -------------------------------------------------------------------------------- /src/wcs/wcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/wcs.h -------------------------------------------------------------------------------- /src/wcs/wcsmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/wcsmath.h -------------------------------------------------------------------------------- /src/wcs/wcstrig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/wcstrig.c -------------------------------------------------------------------------------- /src/wcs/wcstrig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcs/wcstrig.h -------------------------------------------------------------------------------- /src/wcscelsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/wcscelsys.h -------------------------------------------------------------------------------- /src/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/xml.c -------------------------------------------------------------------------------- /src/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/src/xml.h -------------------------------------------------------------------------------- /xsl/psfex.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astromatic/psfex/HEAD/xsl/psfex.xsl --------------------------------------------------------------------------------