From 4b65b226085ccb9e665a5866023d8114f7438188 Mon Sep 17 00:00:00 2001 From: Nadia Dencheva Date: Thu, 4 Aug 2016 17:42:01 -0400 Subject: restructure and add stwcs tests --- lib/stwcs/__init__.py | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 lib/stwcs/__init__.py (limited to 'lib/stwcs/__init__.py') diff --git a/lib/stwcs/__init__.py b/lib/stwcs/__init__.py deleted file mode 100644 index 9f12bce..0000000 --- a/lib/stwcs/__init__.py +++ /dev/null @@ -1,33 +0,0 @@ -""" 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 - -__docformat__ = 'restructuredtext' - -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!') -- cgit