diff options
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 |