diff options
author | dencheva <dencheva@stsci.edu> | 2008-12-22 09:25:37 -0500 |
---|---|---|
committer | dencheva <dencheva@stsci.edu> | 2008-12-22 09:25:37 -0500 |
commit | e6b107260a28f7e5909333fbf208c5ad3280b424 (patch) | |
tree | 4f552fd373d2a738e0ec9b0f74d8dbcf99f4388e /hstwcs | |
parent | ee923d86a40c6a32608c833ae46a8a7e82756dd8 (diff) | |
download | stwcs_hcf-e6b107260a28f7e5909333fbf208c5ad3280b424.tar.gz |
Changed names
git-svn-id: http://svn.stsci.edu/svn/ssb/stsci_python/development/trunk/updatewcs@7408 fe389314-cf27-0410-b35b-8c050e845b92
Diffstat (limited to 'hstwcs')
-rw-r--r-- | hstwcs/__init__.py | 4 | ||||
-rw-r--r-- | hstwcs/corrections.py | 2 | ||||
-rw-r--r-- | hstwcs/makewcs.py | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/hstwcs/__init__.py b/hstwcs/__init__.py index efa9287..2d280c4 100644 --- a/hstwcs/__init__.py +++ b/hstwcs/__init__.py @@ -1,10 +1,10 @@ import os import pyfits #from .. wcsutil import HSTWCS -from hstwcs.wcsutil import HSTWCS +from updatewcs.wcsutil import HSTWCS #from .. mappings import allowed_corrections -from hstwcs import utils +from updatewcs import utils import corrections, makewcs import dgeo import time diff --git a/hstwcs/corrections.py b/hstwcs/corrections.py index 645e98d..e76a260 100644 --- a/hstwcs/corrections.py +++ b/hstwcs/corrections.py @@ -2,7 +2,7 @@ import datetime import numpy from numpy import linalg from pytools import fileutil -from hstwcs.utils import diff_angles +from updatewcs.utils import diff_angles import makewcs, dgeo MakeWCS = makewcs.MakeWCS diff --git a/hstwcs/makewcs.py b/hstwcs/makewcs.py index 40be750..d016583 100644 --- a/hstwcs/makewcs.py +++ b/hstwcs/makewcs.py @@ -1,8 +1,8 @@ #from .. mappings import DEGTORAD, RADTODEG -from hstwcs import DEGTORAD, RADTODEG +from updatewcs import DEGTORAD, RADTODEG import numpy from math import sin, sqrt, pow, cos, asin, atan2,pi -from hstwcs import utils +from updatewcs import utils from pytools import fileutil class MakeWCS(object): |