PSF photometry on crowded CCD frames
See original GitHub issueHi there. I occasionally need to perform PSF photometry on crowded fields, and I’m looking to get rid of IRAF as soon as possible. This package seems to be ideal replacement, but for what I can gather photutils
it is still in a heavy development phase.
Below are the steps needed to complete a full PSF photometry process, and the packages in IRAF used in each step (as described in A User’s Guide to Stellar CCD Photometry with IRAF). I was wondering if these features are in the roadmap to be implemented, or if they are not planned at all.
- Alignment of CCD images taken with different filters and exposure times (
imalign
) - Combine images with equivalent exposures to reduce S/N ratio (
imcombine
) - Standard stars aperture photometry (
daophot --> daofind, phot
) - Standard stars catalog to convert instrumental magnitudes to standard (
photcal --> mkcatalog, mknobsfile, mkconfig, fitparams
) - PSF photometry on all filters and exposures observed for the crowded field (
daophot --> daofind, phot, psf, nstar, substar, allstar
) - Transformation of stars’ magnitudes in crowded field to standard system (
daophot --> mkobsfile, invertfit
) - Combine all exposures into a single observation for all stars in the field (no IRAF task as far as I am aware)
Sorry for the long post.
Issue Analytics
- State:
- Created 7 years ago
- Comments:7 (7 by maintainers)
Top Results From Across the Web
A deconvolution-based algorithm for crowded field photometry ...
A new method is presented for determining the point spread function (PSF) of images that lack bright and isolated stars. It is based....
Read more >Crowded Field Photometry and Difference Imaging - NExScI
Effects of object crowding in microlensing surveys. • From conventional PSF fitting to image differencing ... Astronomical (CCD) image formation.
Read more >Point-Spread Function Fitting Photometry - NASA/ADS
Point-spread function fitting (PSF) photometry has proven to be a valuable tool for determining the magnitudes of stars in crowded fields.
Read more >(PDF) Combining Aperture and PSF-Fitting Photometry
The DAOPHOT program exploits the capability of photometrically linear image detectors to perform stellar photometry in crowded fields. Raw CCD ...
Read more >Artificial Star Test for Crowded Field CCD Photometry
Key words:galaxies: stellar content – techniques: photometric – catalogs1. INTRODUCTIONThe point spread function (PSF) based CCD photometry in crowded stellar ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@Gabriel-p - a bit more on these steps:
2: can be done with
ccdproc
or just directly on image arrays, or for dithered images, you might want to have a look at reproject (http://reproject.readthedocs.io/), which has various ways of putting them all on the same frame without combing.One extra bit here, though: in fact in many cases you don’t want to do this at all - the mode we’re hoping to implement is instead providing the different exposures separately, but doing a simultaneous fit, rather than coadding and then fitting on the coadds. But with the above tools, essentially both are supported.
3: I think in @mirca’s last implementation this is done simultaneously with 5, although you can do it separately if you want.
4, 6, 7: The intent is to provide utilities to do all this. The basic idea would be functions that take the tables that the PSF photometry classes from 5 output and add extra columns with instrumental mags, calibration mags, etc. This is an area where contributions would be especially useful because it’s mostly just table operations. (Will try to make an issue for this).
I’ll close this now because I think the questions are answered, but will try to make another issue to address the 4/6/7 question above.
Hi @Gabriel-p , and all… we have just started an effort at STScI to get down to the nitty gritty of replacing IRAF tasks still used by the community. So first of all, this input is MUCH appreciated. We would like to either have a notebook with python examples for IRAF tasks if they already exist in the python libraries, or if they are still missing, write them. But we’re still in the very early stages of this. Long term, we would like to write a psfmeasure replacement if we can’t find an existing one.
I will definitely be adding the stellar photometry users guide to our list of examples. If we end up having the time and man-power, we’d like to replace a lot of these guides with the python equivalent walkthrough.
Sorry I don’t have a quick solution for you, but just know that we’re working on it!