diff options
author | Aaron LI <aly@aaronly.me> | 2018-08-09 15:00:29 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-08-09 15:00:29 +0800 |
commit | ad95500cb96003f045565e7aa79cf12141f903b6 (patch) | |
tree | 00cf6c7ba6b7e72f5114ec864ca340e468deb9bb /astro/fits/fitsimage.py | |
parent | 1a0e23f1b40f1204bb1e8f8ca35692b7c984a254 (diff) | |
download | atoolbox-ad95500cb96003f045565e7aa79cf12141f903b6.tar.bz2 |
astro/fitsimage.py: Add "rotate" sub-command
Diffstat (limited to 'astro/fits/fitsimage.py')
-rwxr-xr-x | astro/fits/fitsimage.py | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/astro/fits/fitsimage.py b/astro/fits/fitsimage.py index edc1255..e155f6e 100755 --- a/astro/fits/fitsimage.py +++ b/astro/fits/fitsimage.py @@ -159,6 +159,17 @@ class FITSImage: raise ValueError("invalid flip direction: %s" % direction) return self.image + def rotate(self, to): + if to == "left": + self.image = np.rot90(self.image, k=-1) + elif to == "right": + self.image = np.rot90(self.image, k=1) + elif to == "180": + self.image = np.rot90(self.image, k=2) + else: + raise ValueError("invalid rotate to: %s" % to) + return self.image + def write(self, outfile, clobber=False): self.header.add_history(" ".join(sys.argv)) hdu = fits.PrimaryHDU(data=self.data, header=self.header) @@ -322,6 +333,37 @@ def cmd_zoom(args): print("Saved zoomed FITS image to: %s" % args.outfile) +def cmd_flip(args): + """ + Sub-command: "flip", flip the image left-right or up-down. + """ + fimage = FITSImage(args.infile) + print("Flipping image ...") + direction = "lr" if args.lr else "ud" + print("Flip direction: %s" % direction) + fimage.flip(direction) + fimage.write(args.outfile, clobber=args.clobber) + print("Saved flipped FITS image to: %s" % args.outfile) + + +def cmd_rotate(args): + """ + Sub-command: "rotate", rotate the image. + """ + fimage = FITSImage(args.infile) + print("Rotating image ...") + if args.left: + to = "left" + elif args.right: + to = "right" + else: + to = "180" + print("Rotate to: %s" % to) + fimage.rotate(to) + fimage.write(args.outfile, clobber=args.clobber) + print("Saved rotated FITS image to: %s" % args.outfile) + + def main(): parser = argparse.ArgumentParser( description="FITS image manipulation tool") @@ -452,6 +494,26 @@ def main(): help="flip in the left/right direction") parser_flip.set_defaults(func=cmd_flip) + # sub-command: "rotate" + parser_rot = subparsers.add_parser( + "rot", aliases=["rotate"], + help="rotate the image") + parser_rot.add_argument("-C", "--clobber", action="store_true", + help="overwrite existing output file") + parser_rot.add_argument("-i", "--infile", required=True, + help="input FITS image") + parser_rot.add_argument("-o", "--outfile", required=True, + help="output rotated FITS image") + exgrp_rot = parser_rot.add_mutually_exclusive_group(required=True) + exgrp_rot.add_argument("-l", "--left", action="store_true", + help="rotate left") + exgrp_rot.add_argument("-r", "--right", action="store_true", + help="rotate right") + exgrp_rot.add_argument("-u", "--180", dest="ud", + action="store_true", + help="rotate 180 degree") + parser_rot.set_defaults(func=cmd_rotate) + args = parser.parse_args() args.func(args) |