aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/ds9.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/ds9.py')
-rw-r--r--scripts/ds9.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/scripts/ds9.py b/scripts/ds9.py
deleted file mode 100644
index e8c8e88..0000000
--- a/scripts/ds9.py
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright (c) 2017 Weitian LI <liweitianux@live.com>
-# MIT license
-
-"""
-Wrapper function to view FITS files using DS9.
-"""
-
-import subprocess
-
-
-def ds9_view(filename, regfile=None, regformat="ciao", regsystem="physical",
- cmap="he", binfactor=2, scale="linear", smooth=None):
- """
- Wrapper function to view FITS files using DS9.
- """
- cmd = [
- "ds9", filename,
- "-cmap", cmap,
- "-bin", "factor", str(binfactor),
- "-scale", scale,
- ]
- if regfile:
- cmd += [
- "-regions", "format", regformat,
- "-regions", "system", regsystem,
- "-regions", regfile,
- ]
- if smooth:
- cmd += ["-smooth", "yes", "-smooth", "radius", str(smooth)]
- subprocess.check_call(cmd)