Aperture Photometry with CCD Images using IRAF. Kevin Krisciunas

Size: px
Start display at page:

Download "Aperture Photometry with CCD Images using IRAF. Kevin Krisciunas"

Transcription

1 Aperture Photometry with CCD Images using IRAF Kevin Krisciunas

2 Images must be taken in a sensible manner. Ask advice from experienced observers. But remember Wallerstein s Rule: Four astronomers, five opinions. 1) Some people prefer dome flats. 2) I prefer sky flats (pointless if there are visible clouds). 3) After focusing camera at start, do one standards field in all the filters you will use. 4) Finish the night with a standards field. 5) Do standards every 90 minutes or so. It is the only way to prove that the night was photometric. The CCD detector is a much better cloud detector than your eyes

3 If your program objects are observed low in the sky and high in the sky, you better observe standards low in the sky and high in the sky so that you can measure the effect of the atmosphere. If your program stars are very red or very blue, you better observe standard stars that are even redder or bluer, so that you can interpolate transformations rather than extrapolate them. Or you may realize that you need non-linear transformations.

4 Popular lists of standards: UBVRI Landolt (1992), Landolt (2007) Sloan filters J. Allyn Smith et al. (2002) Here north is down, east to the left. Most field stars are red. Many Landolt fields have one very blue star like Rubin 149 and a number of redder stars, allowing you to determine photometric color terms easily.

5 For crowded fields you have to reduce your photometry with DAOPHOT or DOPHOT. This involves determining the point spread function of the instrument. The PSF can vary with position in a frame or from frame to frame. Plots made with IRAF task imexam with options r (for radial plot) or s (for surface plot).

6 If you have non-crowded fields, aperture photometry can often be much more straightforward. And there are some advantages: If the focus slowly degrades over the course of the night or you have slight tracking errors (giving stellar images that are not round), with a software aperture of radius 8 or 10 pixels, you can still put more than 98 percent of the light into that aperture. 8 px might be OK for observations high in the sky, but seeing is worse for observations low in the sky. The underlying sky level is determined by using an annulus (say from radius 12 to 20 pixels) centered on each star. IRAF allows you to easily get around faint stars or cosmic ray hits in the sky annulus.

7 Say you observe with UBVRI filters. The goal is to convert the instrumental magnitudes of the standards to a photometric system such as Landolt s. One assumes that the CCD detector is linear, namely that the arrival of twice as many photons produces twice as many countable electrons. Some cameras are demonstrably non-linear at high count rates, such as the Las Campanas 1-m camera. In that case the observer has to make sure that one doesn t exceed the recommended count limit on the stars of interest, or one must correct for this after the fact (which would be a hassle).

8 We transform the instrumental magnitudes of the standards to some photometric system using linear equations such as these for the CTIO 0.9-m telescope s camera. U = u k u X + CT u (u-b) + zp u B = b k b X + CT b (b-v) + zp b V = v k v X + CT v (b-v) + zp v R = r k r X + CT r (v-r) + zp r I = i k i X + CT i (v-i) + zp i UBVRI are catalog magnitudes from Landolt. ubvri are instrumental magnitudes from IRAF. k s are extintinction coefficients for the atmosphere. X = air mass. CT s are color terms. zp s are photometric zeropoints.

9 The air mass X is the path length through the atmosphere toward the field you are observing, compared to the path length through the atmosphere toward the zenith. Most observing is done more than 30 degrees above the horizon (zenith angle 60 degrees). We can use a plane atmosphere approximation and take X = secant of the zenith angle. So it is determined from spherical trigonometry. Typical extinction coefficients at Cerro Tololo are k u = 0.51, k b = 0.26, k v = 0.15, k r = 0.11, and k i = 0.06 magnitudes per air mass. But these can vary +/- 20 % from clear night to clear night. The U-band coefficient might vary 20 percent over the course of a single night.

10 If you have a night s worth of images taken in a sensible fashion and they are properly flat fielded, IRAF will allow you to determine the extinction coefficients, color terms, and zero points. Then, observations of stars and supernovae of unknown brightness, made with the same telescope and camera on that night, can be transformed to the same photometric system.

11 Rev up IRAF. Type noao then digiphot then apphot.

12 It helps to have a hardcopy of a log of the images for a particular night. Of course it is sensible to put the images for each night into separate subdirectories. Know your FITS header parameters of interest, for example Universal Time, object name, filter, exposure time, and airmass. The parameter names vary from observatory to observatory. You can double check an image whatever.fits by doing something like this: > imhead whatever l+ page Then you might make a log file doing this: > hselect *.fits $I,ut,object,filter2,exptime,airmass yes > something.log

13 Ø epar datapars To set valid data range, read noise, gain (number of electrons per ADU), and names of key FITS header parameters. This example is for the CTIO 0.9-m telescope.

14 This example is for the Las Campanas 1-m telescope as it was in 2012:

15 Ø epar fitskypars To set the sky fitting algorithm ( median or mode better than mean ) and the sky annulus parameters. Exiting an option list is done via :q

16 Ø epar photpars To specify the list of aperture radii in pixels. You can decide later which aperture is best for the night in question. Now we re ready to obtain some aperture magnitudes with IRAF s apphot task phot. You put the little circle on a star in your SAOimage (ds9) window and hit the space bar.

17

18 This lists the image name, the pixel coordinates of the stars, and starting in column 5 the instrumental aperture magnitudes for radius = 6, 7, 8, 9, and 10 pixels.

19 Say a particular field was imaged in the U, B, V, R, and I filters, producing a set of files obj216.fits through obj220.fits. The telescope tracking might have drifted a little over time. A file of the pixel shifts between the images might contain these five lines for this set of images: obj obj obj obj obj I put all the sets of shifts on a given night into one file, called something like nov26.shifts

20 Next one exits apphot and invokes photcal in IRAF. One can create a text file of the U, B, V, R, I aperture photometry on a given field using mknobsfile. Parameters are set via epar mknobsfile then executing the action with :go We will also be using fitparams and evalfit.

21 Example for CTIO 0.9-m telescope: File ru149.imsets might contain only one line: ru149 : obj216 obj217 obj218 obj219 obj220 We decided to use the 5 th aperture specified by photpars (radius = 10 px).

22 This example of the parameters for mknobsfile is for the Las Campanas 1-m telescope as it was in It s particularly important to have idfilter correct.

23 Having generated a number of text files with mknobsfile containing the aperture magnitudes for each star in each filter, one uses an editor and creates a single file such as stds.raw. Then one can solve for the coefficients for all the photometric transformations using program fitparams.

24 Example for CTIO 0.9-m telescope, which uses five filters (U, B, V, R, I).

25 Example for Las Campanas 1-m telescope, which uses 6 filters (u, B, V,g, r, i) Note: set parameter interac to no.

26 File ubvri is derived from Landolt (1992, 2007) or some other list of magnitudes and/or colors. Here the variable BV is the B-V color, UB is the U-B color, etc. IRAF insists that the names of your standards in your raw data file match the ID s in your catalog file.

27 Beginning and end of the file ubvri_ext.config which is used to specify the transformation to the standard photometric system. One can give default starting values for certain parameters. Here, for example, V+BV means V mag from ubvri + B-V color, which equals B magnitude.

28 We should point out that if all the observations were taken at just about the elevation angle, there is very little range of air mass for the observations. In that case one should just adopt sensible mean values of extinction for the site and use simpler transformation equations, solving only for zeropoints and color terms.

29 Example of B-band fit for Nov 26, 2005, photometry with CTIO 0.9-m telescope. RMS error +/ mag zp b = / k b = / mag/airmass CT b = / (part of file nov26.out)

30 On this night we obtained the following. This is about as good as it gets doing ground based photometry. Filter RMS extinction U +/ (0.032) B (0.007) V (0.006) R (0.004) I (0.008)

31

32

33 Using stds.raw, ubvri_ext.config, and your catalog file of magnitudes and colors of standards (ubvri) you can use program evalfit to apply the derived transformations to all the observations of the standards. The output file gives the differences between your UBVRI magnitudes and those of Landolt. If your residuals change steadily from to over the course of the night, that indicates the photometric zeropoint was slowly changing over the night. A truly photometric night should show random small pluses and minuses in these residuals vs. time.

34 Example of parameters for IRAF program evalfit in the photcal package. This applies the photometry calibration from fitparams to photometry done in the same software aperture for program fields. This was used for photometry obtained with the Las Campanas 1-m telescope.

35 Portion of file stds.calib (output of task evalfit ). Starting in column 4, every 3 rd column gives catalog value minus our value. This example is data taken with the CTIO 0.9-m telescope (filters U, B, V, R, I).

36 Finally Obtain the aperture magnitudes for all your research stars for all the frames and filters using phot. Use mknobsfile to create files such as ngc1234.raw (you have to use the same aperture size as for standards) Use files such as ubvri_ext.config, nov26.out and IRAF program evalfit to apply transformations to convert instrumental magnitudes on research objects to standardized photometric system.

Photometry. La Palma trip 2014 Lecture 2 Prof. S.C. Trager

Photometry. La Palma trip 2014 Lecture 2 Prof. S.C. Trager Photometry La Palma trip 2014 Lecture 2 Prof. S.C. Trager Photometry is the measurement of magnitude from images technically, it s the measurement of light, but astronomers use the above definition these

More information

Photometry. Variable Star Photometry

Photometry. Variable Star Photometry Variable Star Photometry Photometry One of the most basic of astronomical analysis is photometry, or the monitoring of the light output of an astronomical object. Many stars, be they in binaries, interacting,

More information

Stellar Photometry: I. Measuring. Ast 401/Phy 580 Fall 2014

Stellar Photometry: I. Measuring. Ast 401/Phy 580 Fall 2014 What s Left (Today): Introduction to Photometry Nov 10 Photometry I/Spectra I Nov 12 Spectra II Nov 17 Guest lecture on IR by Trilling Nov 19 Radio lecture by Hunter Nov 24 Canceled Nov 26 Thanksgiving

More information

Comparing Aperture Photometry Software Packages

Comparing Aperture Photometry Software Packages Comparing Aperture Photometry Software Packages V. Bajaj, H. Khandrika April 6, 2017 Abstract Multiple software packages exist to perform aperture photometry on HST data. Three of the most used softwares

More information

Photometric Calibration for Wide- Area Space Surveillance Sensors

Photometric Calibration for Wide- Area Space Surveillance Sensors Photometric Calibration for Wide- Area Space Surveillance Sensors J.S. Stuart, E. C. Pearce, R. L. Lambour 2007 US-Russian Space Surveillance Workshop 30-31 October 2007 The work was sponsored by the Department

More information

Differential Photometry with IRAF

Differential Photometry with IRAF Differential Photometry with IRAF Once you have fully reduced your images for the night, you will need to measure the brightness of your target compared to some reference stars in the field to search for

More information

Imaging Cameras. Imagers can be put at almost any focus, but most commonly they are put at prime focus or at cassegrain.

Imaging Cameras. Imagers can be put at almost any focus, but most commonly they are put at prime focus or at cassegrain. Imaging Cameras Imagers can be put at almost any focus, but most commonly they are put at prime focus or at cassegrain. PanStarrs DES The scale of a focus is given by S=206265/(D x f#) (arcsec/mm) Examples:

More information

Photometry, PSF Fitting, Astrometry. AST443, Lecture 8 Stanimir Metchev

Photometry, PSF Fitting, Astrometry. AST443, Lecture 8 Stanimir Metchev Photometry, PSF Fitting, Astrometry AST443, Lecture 8 Stanimir Metchev Administrative Project 2: finalized proposals due today Project 3: see at end due in class on Wed, Oct 14 Midterm: Monday, Oct 26

More information

Astronomy 341 Fall 2012 Observational Astronomy Haverford College. CCD Terminology

Astronomy 341 Fall 2012 Observational Astronomy Haverford College. CCD Terminology CCD Terminology Read noise An unavoidable pixel-to-pixel fluctuation in the number of electrons per pixel that occurs during chip readout. Typical values for read noise are ~ 10 or fewer electrons per

More information

OmegaCAM calibrations for KiDS

OmegaCAM calibrations for KiDS OmegaCAM calibrations for KiDS Gijs Verdoes Kleijn for OmegaCEN & KiDS survey team Kapteyn Astronomical Institute University of Groningen A. Issues common to wide field imaging surveys data processing

More information

Calibrating VISTA Data

Calibrating VISTA Data Calibrating VISTA Data IR Camera Astronomy Unit Queen Mary University of London Cambridge Astronomical Survey Unit, Institute of Astronomy, Cambridge Jim Emerson Simon Hodgkin, Peter Bunclark, Mike Irwin,

More information

Imaging Cameras. Imagers can be put at almost any focus, but most commonly they are put at prime focus or at cassegrain.

Imaging Cameras. Imagers can be put at almost any focus, but most commonly they are put at prime focus or at cassegrain. Imaging Cameras Imagers can be put at almost any focus, but most commonly they are put at prime focus or at cassegrain. The scale of a focus is given by S=206265/(D x f#) (arcsec/mm) Examples: 1. 3m @f/5

More information

M67 Cluster Photometry

M67 Cluster Photometry Lab 3 part I M67 Cluster Photometry Observational Astronomy ASTR 310 Fall 2009 1 Introduction You should keep in mind that there are two separate aspects to this project as far as an astronomer is concerned.

More information

ACS/WFC: Differential CTE corrections for Photometry and Astrometry from non-drizzled images

ACS/WFC: Differential CTE corrections for Photometry and Astrometry from non-drizzled images SPACE TELESCOPE SCIENCE INSTITUTE Operated for NASA by AURA Instrument Science Report ACS 2007-04 ACS/WFC: Differential CTE corrections for Photometry and Astrometry from non-drizzled images Vera Kozhurina-Platais,

More information

Optical Photometry. The crash course Tomas Dahlen

Optical Photometry. The crash course Tomas Dahlen The crash course Tomas Dahlen Aim: Measure the luminosity of your objects in broad band optical filters Optical: Wave lengths about 3500Å 9000Å Typical broad band filters: U,B,V,R,I Software: IRAF & SExtractor

More information

This release contains deep Y-band images of the UDS field and the extracted source catalogue.

This release contains deep Y-band images of the UDS field and the extracted source catalogue. ESO Phase 3 Data Release Description Data Collection HUGS_UDS_Y Release Number 1 Data Provider Adriano Fontana Date 22.09.2014 Abstract HUGS (an acronym for Hawk-I UDS and GOODS Survey) is a ultra deep

More information

Errata to First Printing 1 2nd Edition of of The Handbook of Astronomical Image Processing

Errata to First Printing 1 2nd Edition of of The Handbook of Astronomical Image Processing Errata to First Printing 1 nd Edition of of The Handbook of Astronomical Image Processing 1. Page 47: In nd line of paragraph. Following Equ..17, change 4 to 14. Text should read as follows: The dark frame

More information

Processing ACA Monitor Window Data

Processing ACA Monitor Window Data Processing ACA Monitor Window Data CIAO 3.4 Science Threads Processing ACA Monitor Window Data 1 Table of Contents Processing ACA Monitor Window Data CIAO 3.4 Background Information Get Started Obtaining

More information

DBSP Observing Manual

DBSP Observing Manual DBSP Observing Manual I. Arcavi, P. Bilgi, N.Blagorodnova, K.Burdge, A.Y.Q.Ho June 18, 2018 Contents 1 Observing Guides 2 2 Before arrival 2 2.1 Submit observing setup..................................

More information

CCD Image Processing of M15 Images Estimated time: 4 hours

CCD Image Processing of M15 Images Estimated time: 4 hours CCD Image Processing of M15 Images Estimated time: 4 hours For this part of the astronomy lab, you will use the astronomy software package IRAF (Image Reduction and Analysis Facility) to perform the basic

More information

What an Observational Astronomer needs to know!

What an Observational Astronomer needs to know! What an Observational Astronomer needs to know! IRAF:Photometry D. Hatzidimitriou Masters course on Methods of Observations and Analysis in Astronomy Basic concepts Counts how are they related to the actual

More information

Photometry of the variable stars using CCD detectors

Photometry of the variable stars using CCD detectors Contrib. Astron. Obs. Skalnaté Pleso 35, 35 44, (2005) Photometry of the variable stars using CCD detectors I. Photometric reduction. Š. Parimucha 1, M. Vaňko 2 1 Institute of Physics, Faculty of Natural

More information

MiCPhot: A prime-focus multicolor CCD photometer on the 85-cm Telescope

MiCPhot: A prime-focus multicolor CCD photometer on the 85-cm Telescope Research in Astron. Astrophys. 2009 Vol. 9 No. 3, 349 366 http://www.raa-journal.org http://www.iop.org/journals/raa Research in Astronomy and Astrophysics MiCPhot: A prime-focus multicolor CCD photometer

More information

RHO CCD. imaging and observa3on notes AST aug 2011

RHO CCD. imaging and observa3on notes AST aug 2011 RHO CCD imaging and observa3on notes AST 6725 30 aug 2011 Camera Specs & Info 76 cm Telescope f/4 Prime focus (3.04 m focal length) SBIG ST- 8XME CCD Camera Kodak KAF- 1603ME Class 2 imaging CCD Built-

More information

Optical Imaging. (Some selected topics) Richard Hook ST-ECF/ESO

Optical Imaging. (Some selected topics)   Richard Hook ST-ECF/ESO Optical Imaging (Some selected topics) http://www.stecf.org/~rhook/neon/archive_garching2006.ppt Richard Hook ST-ECF/ESO 30th August 2006 NEON Archive School 1 Some Caveats & Warnings! I have selected

More information

The iptf IPAC Pipelines: what works and what doesn t (optimally)

The iptf IPAC Pipelines: what works and what doesn t (optimally) The iptf IPAC Pipelines: what works and what doesn t (optimally) Frank Masci & the iptf / ZTF Team ZTF-Photometry Workshop, September 2015 http://web.ipac.caltech.edu/staff/fmasci/home/miscscience/masci_ztfmeeting_sep2015.pdf

More information

Using CCDAuto (last update: 06/21/05)

Using CCDAuto (last update: 06/21/05) (last update: 06/21/05) (1) Table of Contents I. Overview...3 A. Program...3 B. Observatory...3 i. Specifications...3 ii. Instruments...4 iii. Using the UCI Student Observatory...7 II. Acquiring Calibration

More information

WFC Zeropoints at -80C

WFC Zeropoints at -80C WFC Zeropoints at -80C J. Mack, R. L. Gilliland, J. Anderson, & M. Sirianni May 2, 2007 ABSTRACT Following the recovery of ACS with the side-2 electronics in July 2006, the temperature of the WFC detector

More information

ObsAstro Documentation

ObsAstro Documentation ObsAstro Documentation Release 0.1 Matthew Craig, Juan Cabanela & Linda Winkler February 18, 2014 Contents 1 Basic image statistics 3 1.1 Before you begin.............................................

More information

Photometry using CCDs

Photometry using CCDs Photometry using CCDs Signal-to-Noise Ratio (SNR) Instrumental & Standard Magnitudes Point Spread Function (PSF) Aperture Photometry & PSF Fitting Examples Some Old-Fashioned Photometers ! Arrangement

More information

ObsAstro Documentation

ObsAstro Documentation ObsAstro Documentation Release 0.1 Matthew Craig, Juan Cabanela & Linda Winkler February 18, 2014 Contents i ii Contents: Contents 1 2 Contents CHAPTER 1 Basic image statistics Contents: 1.1 Before you

More information

Astronomy IRAF Tutorial 1

Astronomy IRAF Tutorial 1 Astronomy 480 - IRAF Tutorial 1 Starting IRAF. This is a short exercise that should help acquaint you with the basics of IRAF. The first step is to get IRAF running properly, with appropriate auxiliary

More information

VAPHOT A Package for Precision Differential Aperture Photometry

VAPHOT A Package for Precision Differential Aperture Photometry VAPHOT A Package for Precision Differential Aperture Photometry HANS J. DEEG 1,, LAURANCE R. DOYLE 3 1 Centro de Astrobiología, INTA, E 8807 Torrejon (Madrid), Spain (hdeeg@bigfoot.com) Instituto de Astrofísica

More information

TIRCAM2 (TIFR Near Infrared Imaging Camera - 3.6m Devasthal Optical Telescope (DOT)

TIRCAM2 (TIFR Near Infrared Imaging Camera - 3.6m Devasthal Optical Telescope (DOT) TIRCAM2 (TIFR Near Infrared Imaging Camera - II) @ 3.6m Devasthal Optical Telescope (DOT) (ver 4.0 June 2017) TIRCAM2 (TIFR Near Infrared Imaging Camera - II) is a closed cycle cooled imager that has been

More information

LSST All-Sky IR Camera Cloud Monitoring Test Results

LSST All-Sky IR Camera Cloud Monitoring Test Results LSST All-Sky IR Camera Cloud Monitoring Test Results Jacques Sebag a, John Andrew a, Dimitri Klebe b, Ronald D. Blatherwick c a National Optical Astronomical Observatory, 950 N Cherry, Tucson AZ 85719

More information

INTRODUCTION TO CCD IMAGING

INTRODUCTION TO CCD IMAGING ASTR 1030 Astronomy Lab 85 Intro to CCD Imaging INTRODUCTION TO CCD IMAGING SYNOPSIS: In this lab we will learn about some of the advantages of CCD cameras for use in astronomy and how to process an image.

More information

WIYN High-Resolution Infrared Camera (WHIRC)

WIYN High-Resolution Infrared Camera (WHIRC) WIYN High-Resolution Infrared Camera (WHIRC) Quick Guide to Data Reduction Dick Joyce Version 1.03, 2009 August 24 WHIRC Data Reduction Manual Version 1.03, 2009 August 24 1 ACRONYMS AND ABBREVIATIONS:...

More information

The IRAF Mosaic Data Reduction Package

The IRAF Mosaic Data Reduction Package Astronomical Data Analysis Software and Systems VII ASP Conference Series, Vol. 145, 1998 R. Albrecht, R. N. Hook and H. A. Bushouse, eds. The IRAF Mosaic Data Reduction Package Francisco G. Valdes IRAF

More information

Observing*Checklist:*A3ernoon*

Observing*Checklist:*A3ernoon* Ay#122a:# Intro#to#Observing/Image#Processing# (Many&slides&today& c/o&m.&bolte)& Observing*Checklist:*A3ernoon* Set*up*instrument*(verify*and*set*filters,*gra@ngs,*etc.)* Set*up*detector*(format,*gain,*binning)*

More information

Total Comet Magnitudes from CCD- and DSLR-Photometry

Total Comet Magnitudes from CCD- and DSLR-Photometry European Comet Conference Ondrejov 2015 Total Comet Magnitudes from CCD- and DSLR-Photometry Thomas Lehmann, Weimar (Germany) Overview 1. Introduction 2. Observation 3. Image Reduction 4. Comet Extraction

More information

A Guide to AstroImageJ Differential Photometry

A Guide to AstroImageJ Differential Photometry British Astronomical Association Supporting amateur astronomers since 1890 A Guide to AstroImageJ Differential Photometry Image Display Interface with WASP-12b Target and Comparison Aperture overlay Richard

More information

Annual Report on CCD Imaging at the OAN-SPM 2007

Annual Report on CCD Imaging at the OAN-SPM 2007 Annual Report on CCD Imaging at the OAN-SPM 2007 Michael Richer & Alan Watson November 2007 1 Introduction This is a report on the state of CCDs and small telescopes of the OAN-SPM. It is based on measurements

More information

Cerro Tololo Inter-American Observatory. CHIRON manual. A. Tokovinin Version 2. May 25, 2011 (manual.pdf)

Cerro Tololo Inter-American Observatory. CHIRON manual. A. Tokovinin Version 2. May 25, 2011 (manual.pdf) Cerro Tololo Inter-American Observatory CHIRON manual A. Tokovinin Version 2. May 25, 2011 (manual.pdf) 1 1 Overview Calibration lamps Quartz, Th Ar Fiber Prism Starlight GAM mirror Fiber Viewer FEM Guider

More information

The 0.84 m Telescope OAN/SPM - BC, Mexico

The 0.84 m Telescope OAN/SPM - BC, Mexico The 0.84 m Telescope OAN/SPM - BC, Mexico Readout error CCD zero-level (bias) ramping CCD bias frame banding Shutter failure Significant dark current Image malting Focus frame taken during twilight IR

More information

A PSF-fitting Photometry Pipeline for Crowded Under-sampled Fields. M. Marengo & Jillian Neeley Iowa State University

A PSF-fitting Photometry Pipeline for Crowded Under-sampled Fields. M. Marengo & Jillian Neeley Iowa State University A PSF-fitting Photometry Pipeline for Crowded Under-sampled Fields M. Marengo & Jillian Neeley Iowa State University What, and Why Developed to extract globular cluster photometry for Spitzer/IRAC Carnegie

More information

Image Enhancement (from Chapter 13) (V6)

Image Enhancement (from Chapter 13) (V6) Image Enhancement (from Chapter 13) (V6) Astronomical images often span a wide range of brightness, while important features contained in them span a very narrow range of brightness. Alternatively, interesting

More information

SAMI Manual. Prepared by: A. Tokovinin Version: 1 Date: March 13, 2013 File: soar/sami/doc/sami-manual.tex

SAMI Manual. Prepared by: A. Tokovinin Version: 1 Date: March 13, 2013 File: soar/sami/doc/sami-manual.tex SAMI Manual Full-frame image of planetary nebula NGC 2440 in Hα filter taken with SAMI on February 26, 2013. Exposure time 60 s, FWHM resolution 0.32, binning 2x2. Prepared by: A. Tokovinin Version: 1

More information

Scientific Image Processing System Photometry tool

Scientific Image Processing System Photometry tool Scientific Image Processing System Photometry tool Pavel Cagas http://www.tcmt.org/ What is SIPS? SIPS abbreviation means Scientific Image Processing System The software package evolved from a tool to

More information

FLAT FIELD DETERMINATIONS USING AN ISOLATED POINT SOURCE

FLAT FIELD DETERMINATIONS USING AN ISOLATED POINT SOURCE Instrument Science Report ACS 2015-07 FLAT FIELD DETERMINATIONS USING AN ISOLATED POINT SOURCE R. C. Bohlin and Norman Grogin 2015 August ABSTRACT The traditional method of measuring ACS flat fields (FF)

More information

Exoplanet Observing Using AstroImageJ

Exoplanet Observing Using AstroImageJ Exoplanet Observing Using AstroImageJ Dennis M. Conti Chair, AAVSO Exoplanet Section Copyright Dennis M. Conti 2017 1 AstroImageJ (AIJ) All-in-one freeware developed and maintained by Dr. Karen Collins

More information

Kepler photometric accuracy with degraded attitude control: Simulation of White Paper Attitude

Kepler photometric accuracy with degraded attitude control: Simulation of White Paper Attitude Kepler photometric accuracy with degraded attitude control: Simulation of White Paper Attitude Hans Kjeldsen, Torben Arentoft and Jørgen Christensen-Dalsgaard KASOC, Stellar Astrophysics Centre, Aarhus

More information

CCD User s Guide SBIG ST7E CCD camera and Macintosh ibook control computer with Meade flip mirror assembly mounted on LX200

CCD User s Guide SBIG ST7E CCD camera and Macintosh ibook control computer with Meade flip mirror assembly mounted on LX200 Massachusetts Institute of Technology Department of Earth, Atmospheric, and Planetary Sciences Handout 8 /week of 2002 March 18 12.409 Hands-On Astronomy, Spring 2002 CCD User s Guide SBIG ST7E CCD camera

More information

Cross-Talk in the ACS WFC Detectors. II: Using GAIN=2 to Minimize the Effect

Cross-Talk in the ACS WFC Detectors. II: Using GAIN=2 to Minimize the Effect Cross-Talk in the ACS WFC Detectors. II: Using GAIN=2 to Minimize the Effect Mauro Giavalisco August 10, 2004 ABSTRACT Cross talk is observed in images taken with ACS WFC between the four CCD quadrants

More information

WFCAM Catalogues. Document Number: VDF-SPE-IOA Version 5 02/09/2008. Author: Mike Irwin

WFCAM Catalogues. Document Number: VDF-SPE-IOA Version 5 02/09/2008. Author: Mike Irwin WFCAM Catalogues Document Number: VDF-SPE-IOA-00009-0001 Version 5 02/09/2008 Author: Mike Irwin Changes Version 4: The main changes from the previous versions of this document are: a slightly refined

More information

VATTSpec Instructions Rev. 10/23/2015

VATTSpec Instructions Rev. 10/23/2015 VATTSpec Instructions Rev. 10/23/2015 Introduction VATTSpec is a medium resolution CCD range spectrograph with a skinny chip having excellent cosmetics. Its UA ITL chip, Serial Number 8228, has a gain

More information

The predicted performance of the ACS coronagraph

The predicted performance of the ACS coronagraph Instrument Science Report ACS 2000-04 The predicted performance of the ACS coronagraph John Krist March 30, 2000 ABSTRACT The Aberrated Beam Coronagraph (ABC) on the Advanced Camera for Surveys (ACS) has

More information

CCD PHOTOMETRY OF THE δ SCUTI STAR FG VIRGINIS DURING THE 1995 MULTI-SITE CAMPAIGN

CCD PHOTOMETRY OF THE δ SCUTI STAR FG VIRGINIS DURING THE 1995 MULTI-SITE CAMPAIGN CCD PHOTOMETRY OF THE δ SCUTI STAR FG VIRGINIS DURING THE 1995 MULTI-SITE CAMPAIGN A. STANKOV Institut für Astronomie, Universität Wien, Türkenschanzstraße 17, A-1180 Wien, Austria; E-mail: stankov@astro.univie.ac.at

More information

Imaging and Photometry

Imaging and Photometry Imaging and Photometry Ay 122 - Fall 2006 Imaging and Photometry (Many slides today c/o Mike Bolte, UCSC) Now essentially always done with imaging arrays (e.g., CCDs); it used to be with single-channel

More information

2017 Update on the WFC3/UVIS Stability and Contamination Monitor

2017 Update on the WFC3/UVIS Stability and Contamination Monitor Instrument Science Report WFC3 2017-15 2017 Update on the WFC3/UVIS Stability and Contamination Monitor C. E. Shanahan, C. M. Gosmeyer, S. Baggett June 9, 2017 ABSTRACT The photometric throughput of the

More information

Performing Photometry on HDI Data With AstroImageJ Using Lippy s HDI Tools By Andy Lipnicky March 19, 2017

Performing Photometry on HDI Data With AstroImageJ Using Lippy s HDI Tools By Andy Lipnicky March 19, 2017 Performing Photometry on HDI Data With AstroImageJ Using Lippy s HDI Tools By Andy Lipnicky March 19, 2017 On January 12, 2017 Michael Richmond, Jen Connelly, Ekta Shah, Trent Seelig, and I observed the

More information

"Internet Telescope" Performance Requirements

Internet Telescope Performance Requirements "Internet Telescope" Performance Requirements by Dr. Frank Melsheimer DFM Engineering, Inc. 1035 Delaware Avenue Longmont, Colorado 80501 phone 303-678-8143 fax 303-772-9411 www.dfmengineering.com Table

More information

CCD reductions techniques

CCD reductions techniques CCD reductions techniques Origin of noise Noise: whatever phenomena that increase the uncertainty or error of a signal Origin of noises: 1. Poisson fluctuation in counting photons (shot noise) 2. Pixel-pixel

More information

WFC3 SMOV Program 11427: UVIS Channel Shutter Shading

WFC3 SMOV Program 11427: UVIS Channel Shutter Shading Instrument Science Report WFC3 2009-25 WFC3 SMOV Program 11427: UVIS Channel Shutter Shading B. Hilbert June 23, 2010 ABSTRACT A series of internal flat field images and standard star observations were

More information

ARRAY CONTROLLER REQUIREMENTS

ARRAY CONTROLLER REQUIREMENTS ARRAY CONTROLLER REQUIREMENTS TABLE OF CONTENTS 1 INTRODUCTION...3 1.1 QUANTUM EFFICIENCY (QE)...3 1.2 READ NOISE...3 1.3 DARK CURRENT...3 1.4 BIAS STABILITY...3 1.5 RESIDUAL IMAGE AND PERSISTENCE...4

More information

Chapter 2 DECam Imager

Chapter 2 DECam Imager Chapter 2 DECam Imager Version 0.0, Aug 2011 In This Chapter Instrument Overview... 2-1 Data Products... 2-7 Calibration.(TBD) Sources of Error.(TBD) References & Further Information 2-14 NOAO DATA The

More information

WFC3 TV3 Testing: IR Channel Nonlinearity Correction

WFC3 TV3 Testing: IR Channel Nonlinearity Correction Instrument Science Report WFC3 2008-39 WFC3 TV3 Testing: IR Channel Nonlinearity Correction B. Hilbert 2 June 2009 ABSTRACT Using data taken during WFC3's Thermal Vacuum 3 (TV3) testing campaign, we have

More information

on behalf of the OAO - Observatori Astronómic - Universitat de Valéncia, C/ Catedrático Agustín Escardino Benlloch, Paterna, Valéncia, Spain

on behalf of the OAO - Observatori Astronómic - Universitat de Valéncia, C/ Catedrático Agustín Escardino Benlloch, Paterna, Valéncia, Spain Second Workshop on Robotic Autonomous Observatories ASI Conference Series, 2012, Vol. 7, pp 179 186 Edited by Sergey Guziy, Shashi B. Pandey, Juan C. Tello & Alberto J. Castro-Tirado The TROBAR pipeline

More information

Observing Guide to Transiting Extrasolar Planets

Observing Guide to Transiting Extrasolar Planets Observing Guide to Transiting Extrasolar Planets M. Barbieri, C. Lopresti, A. Marchini, R. Papini, and F. Salvaggio e-mail:maueo@gmail.com August 0, 008 Abstract Observing Guide to Transiting Extrasolar

More information

Cousins/Bessell vs. Johnson Filter Standards

Cousins/Bessell vs. Johnson Filter Standards Cousins/Bessell vs. Johnson Filter Standards by Gerald Persha President, Optec, Inc. [Also available in Adobe PDF Format: filter monograph.pdf] Identifying broad band "standard" photometric filters for

More information

Abstract. Preface. Acknowledgments

Abstract. Preface. Acknowledgments Contents Abstract Preface Acknowledgments iv v vii 1 Introduction 1 1.1 A Very Brief History of Visible Detectors in Astronomy................ 1 1.2 The CCD: Astronomy s Champion Workhorse......................

More information

The Noise about Noise

The Noise about Noise The Noise about Noise I have found that few topics in astrophotography cause as much confusion as noise and proper exposure. In this column I will attempt to present some of the theory that goes into determining

More information

Padova and Asiago Observatories

Padova and Asiago Observatories ISSN 1594-1906 Padova and Asiago Observatories The Echelle E2V CCD47-10 CCD H. Navasardyan, M. D'Alessandro, E. Giro, Technical Report n. 22 September 2004 Document available at: http://www.pd.astro.it/

More information

Astro-photography. Daguerreotype: on a copper plate

Astro-photography. Daguerreotype: on a copper plate AST 1022L Astro-photography 1840-1980s: Photographic plates were astronomers' main imaging tool At right: first ever picture of the full moon, by John William Draper (1840) Daguerreotype: exposure using

More information

APO TripleSpecTool User's Guide

APO TripleSpecTool User's Guide APO TripleSpecTool User's Guide Updated 09MAR2009 Table of Contents 7. APOTripleSpecTool 7.1. Installation 7.1.a. Computer Requirements 7.1.b. Download 7.1.c. IDL Setup 7.2. Data Preparation 7.3. Quickstart

More information

arxiv: v1 [astro-ph.im] 1 Feb 2011

arxiv: v1 [astro-ph.im] 1 Feb 2011 A New Method for Band-limited Imaging with Undersampled Detectors Andrew S. Fruchter Space Telescope Science Institute, Baltimore, MD 21218 arxiv:1102.0292v1 [astro-ph.im] 1 Feb 2011 ABSTRACT Since its

More information

Astrophysical Techniques Optical/IR photometry and spectroscopy. Danny Steeghs

Astrophysical Techniques Optical/IR photometry and spectroscopy. Danny Steeghs Astrophysical Techniques Optical/IR photometry and spectroscopy Danny Steeghs Imaging / Photometry background Point source Extended/resolved source Photometry = Quantifying source brightness Detectors

More information

OPDs, PSFs and Aperture Spatial Resolution and Photometry

OPDs, PSFs and Aperture Spatial Resolution and Photometry OPDs, PSFs and Aperture Spatial Resolution and Photometry Arne Ardeberg and Peter Linde Lund Observatory OPD-based K and V band PSF On-axis (Euro50 case) Time sequence: 3 s Frame interval: 2 ms OPD-based

More information

Proposal for a research project to be carried. out in Physics 400 (Senior Research) and. IDIS 493 (Honors Thesis).

Proposal for a research project to be carried. out in Physics 400 (Senior Research) and. IDIS 493 (Honors Thesis). Proposal for a research project to be carried out in Physics 400 (Senior Research) and IDIS 493 (Honors Thesis). Variable Star CCD Photometry and Analysis Amber L. Stuver Submitted in fulfillment of requirements

More information

SPACE TELESCOPE SCIENCE INSTITUTE Operated for NASA by AURA

SPACE TELESCOPE SCIENCE INSTITUTE Operated for NASA by AURA SPACE TELESCOPE SCIENCE INSTITUTE Operated for NASA by AURA Instrument Science Report WFC3 2010-08 WFC3 Pixel Area Maps J. S. Kalirai, C. Cox, L. Dressel, A. Fruchter, W. Hack, V. Kozhurina-Platais, and

More information

DARK CURRENT ELIMINATION IN CHARGED COUPLE DEVICES

DARK CURRENT ELIMINATION IN CHARGED COUPLE DEVICES DARK CURRENT ELIMINATION IN CHARGED COUPLE DEVICES L. Kňazovická, J. Švihlík Department o Computing and Control Engineering, ICT Prague Abstract Charged Couple Devices can be ound all around us. They are

More information

Chapter 3: Equipment and software overview

Chapter 3: Equipment and software overview Chapter 3: Equipment and software overview Since you are using this guide, it is assumed that you already have a telescope, mount, CCD camera and all the associated equipment needed to do photometry. Therefore,

More information

CCD Image Calibration Using AIP4WIN

CCD Image Calibration Using AIP4WIN CCD Image Calibration Using AIP4WIN David Haworth The purpose of image calibration is to remove unwanted errors caused by CCD camera operation. Image calibration is a very import first step in the processing

More information

Optical Imaging. Richard Hook. Part 1: Telescope Optics and Related Topics Part 2: Astronomical Digital Images.

Optical Imaging. Richard Hook. Part 1: Telescope Optics and Related Topics Part 2: Astronomical Digital Images. Optical Imaging Part 1: Telescope Optics and Related Topics Part 2: Astronomical Digital Images http://www.stecf.org/~rhook/neon Richard Hook ST-ECF/ESO 24th July 2006 NEON Observing School, OHP 1 Some

More information

DSLR Photometry. Part 1. ASSA Photometry Nov 2016

DSLR Photometry. Part 1. ASSA Photometry Nov 2016 DSLR Photometry Part 1 ASSA Photometry Nov 2016 Because of the complexity of the subject, these two sessions on DSLR Photometry will not equip you to be a fully fledged DSLR photometrists. It is hoped

More information

STScI/IDTL Near-IR Detector Simulations

STScI/IDTL Near-IR Detector Simulations STScI/IDTL Near-IR Detector Simulations Anand Sivaramakrishnan Ernie Morse, Russ Makidon, Eddie Bergeron, Stefano Casertano, Don Figer Space Telescope Science Institute with Scott Acton, Paul Atcheson

More information

Baseline Tests for the Advanced Camera for Surveys Astronomer s Proposal Tool Exposure Time Calculator

Baseline Tests for the Advanced Camera for Surveys Astronomer s Proposal Tool Exposure Time Calculator Baseline Tests for the Advanced Camera for Surveys Astronomer s Proposal Tool Exposure Time Calculator F. R. Boffi, R. C. Bohlin, D. F. McLean, C. M. Pavlovsky July 10, 2003 ABSTRACT The verification tests

More information

You, too, can make useful and beautiful astronomical images at Mees: Lesson 1

You, too, can make useful and beautiful astronomical images at Mees: Lesson 1 You, too, can make useful and beautiful astronomical images at Mees: Lesson 1 Useful references: The Mees telescope startup/shutdown guide: http://www.pas.rochester.edu/~dmw/ast142/projects/chklist.pdf

More information

NATIONAL OPTICAL ASTRONOMY OBSERVATORY. WIYN Consortium. WTTM User Manual

NATIONAL OPTICAL ASTRONOMY OBSERVATORY. WIYN Consortium. WTTM User Manual NATIONAL OPTICAL ASTRONOMY OBSERVATORY WIYN Consortium WTTM User Manual WI YN O B SE R VAT O R Y WTTM User Manual Last Updated: January 28, 2005 950 North Cherry Avenue Tucson, AZ 85719 Phone 520-318-8000

More information

Astronomical Detectors. Lecture 3 Astronomy & Astrophysics Fall 2011

Astronomical Detectors. Lecture 3 Astronomy & Astrophysics Fall 2011 Astronomical Detectors Lecture 3 Astronomy & Astrophysics Fall 2011 Detector Requirements Record incident photons that have been captured by the telescope. Intensity, Phase, Frequency, Polarization Difficulty

More information

Nonlinearity in the Detector used in the Subaru Telescope High Dispersion Spectrograph

Nonlinearity in the Detector used in the Subaru Telescope High Dispersion Spectrograph Nonlinearity in the Detector used in the Subaru Telescope High Dispersion Spectrograph Akito Tajitsu Subaru Telescope, National Astronomical Observatory of Japan, 650 North A ohoku Place, Hilo, HI 96720,

More information

Lecture 5. Telescopes (part II) and Detectors

Lecture 5. Telescopes (part II) and Detectors Lecture 5 Telescopes (part II) and Detectors Please take a moment to remember the crew of STS-107, the space shuttle Columbia, as well as their families. Crew of the Space Shuttle Columbia Lost February

More information

Pixel Response Effects on CCD Camera Gain Calibration

Pixel Response Effects on CCD Camera Gain Calibration 1 of 7 1/21/2014 3:03 PM HO M E P R O D UC T S B R IE F S T E C H NO T E S S UP P O RT P UR C HA S E NE W S W E B T O O L S INF O C O NTA C T Pixel Response Effects on CCD Camera Gain Calibration Copyright

More information

SONG Stellar Observations Network Group. The prototype

SONG Stellar Observations Network Group. The prototype SONG Stellar Observations Network Group The prototype F. Grundahl1, J. Christensen Dalsgaard1, U. G. Jørgensen2, H. Kjeldsen1,S. Frandsen1 and P. Kjærgaard2 1) Danish AsteroSeismology Centre, University

More information

Properties of a Detector

Properties of a Detector Properties of a Detector Quantum Efficiency fraction of photons detected wavelength and spatially dependent Dynamic Range difference between lowest and highest measurable flux Linearity detection rate

More information

APO TripleSpecTool User s Guide

APO TripleSpecTool User s Guide APO TripleSpecTool User s Guide University of Virginia Astronomy Department July 16, 2009 Contents 1 Introduction 2 2 Installation 2 2.1 Computer Requirements....................................... 2 2.2

More information

UNIVERSITY COLLEGE LONDON Department of Physics and Astronomy. An Introduction to Image Processing

UNIVERSITY COLLEGE LONDON Department of Physics and Astronomy. An Introduction to Image Processing UNIVERSITY COLLEGE LONDON Department of Physics and Astronomy UCL Observatory PHAS2130 2015 16.2 An Introduction to Image Processing 1 Introduction Students will have submitted imaging requests to the

More information

WEBCAMS UNDER THE SPOTLIGHT

WEBCAMS UNDER THE SPOTLIGHT WEBCAMS UNDER THE SPOTLIGHT MEASURING THE KEY PERFORMANCE CHARACTERISTICS OF A WEBCAM BASED IMAGER Robin Leadbeater Q-2006 If a camera is going to be used for scientific measurements, it is important to

More information

Puntino. Shack-Hartmann wavefront sensor for optimizing telescopes. The software people for optics

Puntino. Shack-Hartmann wavefront sensor for optimizing telescopes. The software people for optics Puntino Shack-Hartmann wavefront sensor for optimizing telescopes 1 1. Optimize telescope performance with a powerful set of tools A finely tuned telescope is the key to obtaining deep, high-quality astronomical

More information

Flux Calibration of the ACS CCD Cameras III. Sensitivity Changes over Time

Flux Calibration of the ACS CCD Cameras III. Sensitivity Changes over Time SPACE TELESCOPE SCIENCE INSTITUTE Operated for NASA by AURA Instrument Science Report ACS 2011-03 Flux Calibration of the ACS CCD Cameras III. Sensitivity Changes over Time Ralph C. Bohlin, Jennifer Mack,

More information

Week 10. Lab 3! Photometric quality. Stamp out those bad points. Finish it.

Week 10. Lab 3! Photometric quality. Stamp out those bad points. Finish it. Week 10 Lab 3! Photometric quality. Stamp out those bad points. Finish it. Lab 4! Great data. Evening sessions this week focus on Lab 3 wrap-up and Lab 4 reducgons. Exams ready for return Read the book!

More information