Tools to display the TESS pixel response function (PRF) at any location on the detector
Project description
TESS_PRF
Tools to display the TESS pixel response function (PRF) at any location on the detector.
By default, will access the relevant PRF files on MAST (internet required), but you can also download these files and reference their local directory. There is also an option to generate a 2D Gaussian PRF, however appropriate that may be.
This package is primarily for estimating how the light from a point source is distributed given its position in a TESS Target Pixel File (TPF) or TESScut postage stamp. Referencing the real TESS PRF models, you'll need to provide the Camera, CCD, and Sector numbers, along with the column and row numbers at approximately the center of your TPF to interpolate a PRF appropriate for that postage stamp. This package assumes the PRF doesn't change considerably within a small TPF. You can then position the PRF model by passing the relative row and column location within the TPF to the "resample" method. The pixel locations follow WCS convention, that an integer value corresponds to the center of a pixel.
import PRF
import matplotlib.pyplot as plt
# Suppose the following for a TPF of interest
cam = 3
ccd = 4
sector = 13
colnum = 113 #middle of TPF
rownum = 298 #middle of TPF
prf = PRF.TESS_PRF(cam,ccd,sector,colnum,rownum)
# See what this looks like in the center of an 11x11 TPF
resampled = prf.locate(5.0, 5.0, (11,11))
plt.imshow(resampled)
plt.show()
With this result:
To generate a Gaussian PRF to relocate within a TPF, call PRF.Gaussian_PRF(sigma)
where sigma
is in units of TESS pixels.
Installation
TESS_PRF is pip installable with the command pip install TESS_PRF
Or clone this repository and run
cd TESS_PRF
python -m build
pip install -e .
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file TESS_PRF-0.1.3.tar.gz
.
File metadata
- Download URL: TESS_PRF-0.1.3.tar.gz
- Upload date:
- Size: 20.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | faff47c903f62d7d6c61076654fcc8454673a0e4a698f59377e23fa33b98b3f8 |
|
MD5 | acf028e84d25096bf893fc741e34cab7 |
|
BLAKE2b-256 | f2eb094cd4118fe01fcebc302c988e5b8eb425a457f6f27a67578c7918bcd476 |