Skip to content

Commit

Permalink
new LCOGT telescopes added
Browse files Browse the repository at this point in the history
  • Loading branch information
mommermi committed Nov 7, 2018
1 parent 32f7e57 commit c50f04f
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 0 deletions.
8 changes: 8 additions & 0 deletions doc/supported.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,14 @@ observatories/instruments:
+--------------------------+--------------------+----------------+
| LCOGT 1m (LSC) | Sinistro (fl03) | LCOSINFL03 |
+--------------------------+--------------------+----------------+
| LCOGT 1m (CPT) | Sinistro (fl06) | LCOSINFL06 |
+--------------------------+--------------------+----------------+
| LCOGT XXXm (XXX) | Sinistro (fa15) | LCOSINFA15 |
+--------------------------+--------------------+----------------+
| LCOGT 1m (COJ) | Sinistro (fl11) | LCOSINFL11 |
+--------------------------+--------------------+----------------+
| LCOGT 1m (CPT) | Sinistro (fl16) | LCOSINFL16 |
+--------------------------+--------------------+----------------+
| LCOGT 2m (COJ) | Spectral (fs01) | LCOSPECFS01 |
+--------------------------+--------------------+----------------+
| Lowell 31" | NASACAM | LOWELL31 |
Expand Down
70 changes: 70 additions & 0 deletions setup/telescopes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2724,6 +2724,73 @@
}


# LCOGT, SINISTRO camera (SAAO, FL06)
lcosinfl06_param = {
# telescope/instrument name
'telescope_instrument': 'LCOGT(SAAO)/SINISTRO',
'telescope_keyword': 'LCOSINFL06', # telescope/instrument keyword
'observatory_code': 'K92', # MPC observatory code
'secpix': (0.389, 0.389), # pixel size (arcsec)
# before binning
'ext_coeff': 0.05, # typical extinction coefficient


# image orientation preferences
'flipx': False,
'flipy': True,
'rotate': 0,

# instrument-specific FITS header keywords
'binning': ('CCDSUM#blank0', 'CCDSUM#blank1'), # binning in x/y
'extent': ('NAXIS1', 'NAXIS2'), # N_pixels in x/y
'ra': 'RA', # telescope pointing, RA
'dec': 'DEC', # telescope pointin, Dec
'radec_separator': ':', # RA/Dec hms separator, use 'XXX'
# if already in degrees
'date_keyword': 'DATE-OBS', # obs date/time
# keyword; use
# 'date|time' if
# separate
'obsmidtime_jd': 'MJD-OBS', # obs midtime jd keyword
# (usually provided by
# pp_prepare
'object': 'OBJECT', # object name keyword
'filter': 'FILTER', # filter keyword
'filter_translations': {'gp': 'g', 'rp': 'r',
'ip': 'i', 'zp': 'z', 'w': None},
# filtername translation dictionary
'exptime': 'EXPTIME', # exposure time keyword (s)
'airmass': 'AIRMASS', # airmass keyword

# source extractor settings
'source_minarea': 9, # default sextractor source minimum N_pixels
'source_snr': 3, # default sextractor source snr for registration
'aprad_default': 5, # default aperture radius in px
'aprad_range': [2, 10], # [minimum, maximum] aperture radius (px)
'sex-config-file': rootpath+'/setup/lcosin.sex',
'mask_file': {},
# mask files as a function of x,y binning

# registration settings (Scamp)
'scamp-config-file': rootpath+'/setup/lcosin.scamp',
'reg_max_mag': 18,
'reg_search_radius': 0.5, # deg
'source_tolerance': 'high',

# swarp settings
'copy_keywords': ('TELESCOP,INSTRUME,FILTER,EXPTIME,OBJECT,' +
'DATE-OBS,RA,DEC,SECPIX,AIRMASS,' +
'TEL_KEYW,MIDTIMJD'),
# keywords to be copied in image
# combination using swarp
'swarp-config-file': rootpath+'/setup/vatt4k.swarp',

# default catalog settings
'astrometry_catalogs': ['GAIA'],
'photometry_catalogs': ['PANSTARRS', 'SDSS-R9', 'APASS9']
}


# Apache Point Observatory 3.5m, SPICAM
arc35spicam_param = {
'telescope_instrument': 'ARC35/SPICAM', # telescope/instrument name
Expand Down Expand Up @@ -3270,6 +3337,7 @@
'KPNO4NEWF', 'UKIRTWFCAM', 'VLTFORS2',
'LOWELL42SITE', 'PLUTOPLATE', 'TCS15MUSCAT2',
'LCOSBIGKB78', 'ARC35SPICAM', 'LCOSINFL03',
'LCOSINFL06',
'LCOSINFL16', 'LCOSINFL11', 'LCOSINFA15',
'LCOSPECFS01', 'P60OPT', 'P60SEDM', 'GMOSN',
'DFOSC', 'LONEOS']
Expand Down Expand Up @@ -3322,6 +3390,7 @@
'kb78': 'LCOSBIGKB78',
'spicam': 'ARC35SPICAM',
'fl03': 'LCOSINFL03',
'fl06': 'LCOSINFL06',
'fl16': 'LCOSINFL16',
'fl11': 'LCOSINFL11',
'fa15': 'LCOSINFA15',
Expand Down Expand Up @@ -3372,6 +3441,7 @@
'LCOSBIGKB78': lcosbigkb78_param,
'ARC35SPICAM': arc35spicam_param,
'LCOSINFL03': lcosinfl03_param,
'LCOSINFL06': lcosinfl06_param,
'LCOSINFL16': lcosinfl16_param,
'LCOSINFL11': lcosinfl11_param,
'LCOSINFA15': lcosinfa15_param,
Expand Down

0 comments on commit c50f04f

Please sign in to comment.