blob: 45190770c3738e439e67506ef74a5265dc9651ab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
from __future__ import division # confidence high
#import all needed modules here to avoid relative imports
#import mappings
import utils
import distortion
import pywcs
from pytools import fileutil
__docformat__ = 'restructuredtext'
DEGTORAD = fileutil.DEGTORAD
RADTODEG = fileutil.RADTODEG
try:
import svn_version
__svn_version__ = svn_version.__svn_version__
except ImportError:
__svn_version__ = 'Unable to determine SVN revision'
|