From 302fced198ae7bdef49490cd423baa106d4875ba Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Sat, 9 Dec 2017 11:23:29 +0800 Subject: Remove astro/fits/rescale_image.py and astro/fits/crop_image.py --- astro/fits/crop_image.py | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100755 astro/fits/crop_image.py (limited to 'astro/fits/crop_image.py') diff --git a/astro/fits/crop_image.py b/astro/fits/crop_image.py deleted file mode 100755 index 9cfa7bf..0000000 --- a/astro/fits/crop_image.py +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/env python3 -# -# Copyright (c) 2017 Aaron LI -# MIT license -# - -""" -Crop out the central region of specified size from the FITS image. -""" - -import argparse - -from rescale_image import FITSImage - - -def main(): - parser = argparse.ArgumentParser( - description="Rescale a FITS image to the desired size/resolution") - parser.add_argument("-C", "--clobber", action="store_true", - help="overwrite existing output file") - parser.add_argument("-s", "--size", type=float, required=True, - help="central crop box size [deg]") - parser.add_argument("-i", "--infile", required=True, - help="input FITS image") - parser.add_argument("-o", "--outfile", required=True, - help="output cropped FITS image") - args = parser.parse_args() - - fitsimage = FITSImage(args.infile) - fitsimage.crop(size=args.size) - fitsimage.write(args.outfile, clobber=args.clobber) - - -if __name__ == "__main__": - main() -- cgit v1.2.2