diff options
author | dencheva <dencheva@stsci.edu> | 2009-02-12 14:57:59 -0500 |
---|---|---|
committer | dencheva <dencheva@stsci.edu> | 2009-02-12 14:57:59 -0500 |
commit | 29e09d97fbac778ad0d216fef4b21fc189315bf4 (patch) | |
tree | a35d83a729925fdd8fe7fd29021864f395c5d414 /wcsutil/mappings.py | |
parent | 48391819c2284d83a2440b3ba7173a2e4c18354b (diff) | |
download | stwcs_hcf-29e09d97fbac778ad0d216fef4b21fc189315bf4.tar.gz |
Added support for nicmos, stis, wfc3
git-svn-id: http://svn.stsci.edu/svn/ssb/stsci_python/development/trunk/updatewcs@7549 fe389314-cf27-0410-b35b-8c050e845b92
Diffstat (limited to 'wcsutil/mappings.py')
-rw-r--r-- | wcsutil/mappings.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/wcsutil/mappings.py b/wcsutil/mappings.py index d5d5e29..48f687f 100644 --- a/wcsutil/mappings.py +++ b/wcsutil/mappings.py @@ -4,15 +4,18 @@ # The instrument class handles instrument specific keywords inst_mappings={'WFPC2': 'WFPC2WCS', - 'ACS': 'ACSWCS' + 'ACS': 'ACSWCS', + 'NICMOS': 'NICMOSWCS', + 'STIS': 'STISWCS', + 'WFC3': 'WFC3WCS' } # A list of instrument specific keywords # Every instrument class must have methods which define each of these # as class attributes. -ins_spec_kw = ['ltv1', 'ltv2', 'parity', 'binned','vafactor', 'chip', - 'naxis1', 'naxis2', 'filter1', 'filter2', 'detector'] +ins_spec_kw = [ 'detector', 'ltv1', 'ltv2', 'parity', 'binned','vafactor', 'chip', + 'naxis1', 'naxis2', 'filter1', 'filter2'] # A list of keywords defined in the primary header. # The HSTWCS class sets this as attributes |