diff options
author | Nadia Dencheva <nadia.dencheva@gmail.com> | 2016-08-04 17:42:01 -0400 |
---|---|---|
committer | Nadia Dencheva <nadia.dencheva@gmail.com> | 2016-08-04 17:42:01 -0400 |
commit | 4b65b226085ccb9e665a5866023d8114f7438188 (patch) | |
tree | 7183ed93c0624164930069bf5fedcd582dce84b6 /stwcs/__init__.py | |
parent | 86d1bc5a77491770d45b86e5cf18b79ded68fb9b (diff) | |
download | stwcs_hcf-4b65b226085ccb9e665a5866023d8114f7438188.tar.gz |
restructure and add stwcs tests
Diffstat (limited to 'stwcs/__init__.py')
-rw-r--r-- | stwcs/__init__.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/stwcs/__init__.py b/stwcs/__init__.py new file mode 100644 index 0000000..cd8b0e6 --- /dev/null +++ b/stwcs/__init__.py @@ -0,0 +1,32 @@ +""" STWCS + +This package provides support for WCS based distortion models and coordinate +transformation. It relies on PyWCS (based on WCSLIB). It consists of two +subpackages: updatewcs and wcsutil. + +updatewcs performs corrections to the +basic WCS and includes other distortion infomation in the science files as +header keywords or file extensions. + +Wcsutil provides an HSTWCS object which extends pywcs.WCS object and provides +HST instrument specific information as well as methods for coordinate +transformation. wcsutil also provides functions for manipulating alternate WCS +descriptions in the headers. + +""" +from __future__ import absolute_import, print_function # confidence high +import os + +from . import distortion +from stsci.tools import fileutil +from stsci.tools import teal + + +from .version import * + +try: + from . import gui + teal.print_tasknames(gui.__name__, os.path.dirname(gui.__file__)) + print('\n') +except: + print('No TEAL-based tasks available for this package!') |