From 29e09d97fbac778ad0d216fef4b21fc189315bf4 Mon Sep 17 00:00:00 2001 From: dencheva Date: Thu, 12 Feb 2009 19:57:59 +0000 Subject: 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 --- wcsutil/mappings.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'wcsutil/mappings.py') 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 -- cgit