Convenience utilities made by ysBach especially for dealing FITS files in astronomical sciences.
Project description
ysfitsutilpy
Convenience utilities made by ysBach especially for dealing FITS files in astronomical sciences.
Please always refer to GitHub repo for the most recent updates.
Why "ys"fitsutilpy? The name "fitsutilpy" is too general, and I believe a better package should take that name, so I decided not to occupy the name. I see many useless packages that preoccupy meaningful names...
Install by
$ pip install ysfitsutilpy
or
$ cd <where you want to download this package>
$ git clone https://github.com/ysBach/ysfitsutilpy
$ cd ysfitsutilpy
$ git pull && pip install -e .
From the second time, just run the last line.
This package is made to be used for
- Preprocessing (= bias, dark, and flat) of imaging data (not tested for spectroscopy yet)
- Simple analysis of FITS files by making summary csv file, getting statistics (
misc.give_stats
), etc. - Educational purpose
- ...
Although I tried to make some functions as general as possible, this package as a whole is not designed for very general use, e.g., MEF (multi-extension FITS) and radio data, for instance. MEF is somewhat treatable in current version, but not satisfactorily yet.
You may import using import ysfitsutilpy as yfu
.
An example usage to make a summary file of FITS files:
import ysfitsutilpy as yfu
summary = yfu.make_summary(
"observation_2018-01-01/R*.fits",
keywords=["DATE-OBS", "FILTER", "OBJECT"], # header keywords; actually it is case-insensitive
fname_option='name', # 'file' column will contain only the name of the file (not full path)
sort_by="DATE-OBS", # 'file' column will be sorted based on "DATE-OBS" value in the header
output="summary_2018-01-01.csv",
)
summary
# shows results of the summary CSV file.
A simple example to combine multiple images:
import ysfitsutilpy as yfu
comb = yfu.imcombine(
"observation_2018-01-01/R*M101*.fits",
combine="med", # med, median | avg, mean, average | sum
reject="sc", # sc, sigc, sigclip, ... | ccd, ccdc, ccdclip
sigma=[2, 2], # default is [3., 3.]
offset="wcs", # combine by integer shift based on WCS information in headers
output="combined.fits",
output_err="comb_err.fits", # errormap of survived pixels
output_mask="comb_mask.fits", # N+1-dimensional mask of the rejected pixel positions
output_nrej="comb_nrej.fits", # number of pixels rejected in the output file.
output_low="comb_low.fits", # the lower limit used in pixel value rejection
output_upp="comb_upp.fits", # the upper limit used in pixel value rejection
output_rejcode="comb_rejcode.fits", # represents what rejection has happened (see docstring)
full=True,
verbose=True
)
A quick dark combine:
import ysfitsutilpy as yfu
# Say dark frames have header OBJECT = "calib" && "IMAGE-TYP" = "DARK"
comb = yfu.group_combine(
"observation_2018-01-01/*DARK*.fits",
type_key=["OBJECT", "IMAGE-TYP"],
type_val=["calib", "DARK"],
group_key=["FILTER", "EXPTIME"],
fmt="dark_{:s}_{:.1f}sec.fits", # output file name format
outdir="cal-dark" # output directory (will automatically be made if not exist)
)
BSD 3-Clause License
Copyright (c) 2020, Yoonsoo P. Bach All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
-
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
-
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
-
Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
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
Built Distribution
File details
Details for the file ysfitsutilpy-0.2.tar.gz
.
File metadata
- Download URL: ysfitsutilpy-0.2.tar.gz
- Upload date:
- Size: 133.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2d82c553c0e179ff39e849ef15da6798b63710c892a7dfe354549c9eef4262d |
|
MD5 | 62e16d8827cee23e08cbae9e87b991fb |
|
BLAKE2b-256 | 03d0455a0264d4f55d273396c451a9063b68cb7433f134fc6e12863ca065b7eb |
File details
Details for the file ysfitsutilpy-0.2-py3-none-any.whl
.
File metadata
- Download URL: ysfitsutilpy-0.2-py3-none-any.whl
- Upload date:
- Size: 139.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8fc8fac9c743c3f0cd0f96a160aca44cade009430504cae67da969825b5797a0 |
|
MD5 | 9c251d25ed2f815def07b93260db5d5a |
|
BLAKE2b-256 | 2bca0c3f37ea25f90bb2ece7e2b01f1440297c619ef7e5c2b662345e89c92104 |