Binning (how to do HW#3, problem #3)

Similar documents
Point Spread Functions. Aperture Photometry. Obs Tech Obs Tech 26 Sep 2017

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

On the calibration of WFCAM data from 2MASS

1 The Preliminary Processing

Photometric Techniques II Data analysis, errors, completeness

Data Reduction - Optical / NIR Imaging. Chian-Chou Chen Ph319

Comet Measurement Techniques. Karen Meech Institute for Astronomy Session 27 1/18/05

Reduction procedure of long-slit optical spectra. Astrophysical observatory of Asiago

Astronomical image reduction using the Tractor

arxiv: v1 [astro-ph.im] 31 Jul 2014

Chapter 6: Transforming your data

Detection of Exoplanets Using the Transit Method

Exploring Data. Keck LRIS spectra. Handbook of CCD Astronomy by Steve Howell Chap. 4, parts of 6

IN REPORT: Plate Scale and FOV of CCD for Each Telescope using Albireo Stars

The Accuracy of WFPC2 Photometric Zeropoints

Okay now go back to your pyraf window

WHAT PHOTOMETRIC PRECISION CAN I ACHIEVE? DAVID BOYD

VRI Photometry of M67 for CCD Standardization at 2.3m VBT

Measuring the Age of the Beehive Cluster (M44)

Lab 4: Differential Photometry of an Extrasolar Planetary Transit

Observing Night 1 DON T FORGET TO KEEP NOTES ON YOUR PROCEDURE AND KEEP AN OBSERVING LOG FOR THE NIGHT!!!!!

OPTICAL PHOTOMETRY. Observational Astronomy (2011) 1

Lab 4 Radial Velocity Determination of Membership in Open Clusters

PHYSICS Observing Guide

Lecture 8. October 25, 2017 Lab 5

Analysis of wavelength shifts reported for X-shooter spectra

New Northern Hemisphere Variables

Selection of stars to calibrate Gaia

Photometric Studies of GEO Debris

Transiting Exoplanet in the Near Infra-red for the XO-3 System

arxiv: v1 [astro-ph.im] 31 Jul 2014

C. Watson, E. Churchwell, R. Indebetouw, M. Meade, B. Babler, B. Whitney

Astrometric Performance of STIS CCD CTI Corrections on Omega Cen Images

GALEX GR1 Instrument Performance and Calibration Review

Lab 3: Open Star Cluster Age and Distance Determination

Discussing the brighter-fatter correction. Augustin Guyonnet

The shapes of faint galaxies: A window unto mass in the universe

Calibration Goals and Plans

Study of Physical Characteristics of High Apogee Space Debris

NICMOS Status and Plans

Introduction of near-infrared (NIR) spectroscopy. Ken-ichi Tadaki (NAOJ)

arxiv:astro-ph/ v2 8 Jan 2002

VISTA HEMISPHERE SURVEY DATA RELEASE 1

Very Large Telescope. HAWK-I Calibration Plan

arxiv:astro-ph/ v1 24 Oct 2006

PROJECT GLOBULAR CLUSTERS

Commissioning of the Hanle Autoguider

The Dark Energy Survey Public Data Release 1

Processing Wide Field Imaging data Mike Irwin

SMTN-002: Calculating LSST limiting magnitudes and SNR

Chapter 3 Observational Program: Phase I The first phase of the observing program was begun in 1996 by Prof. Janes, prior to the Lowell Observatory pa

Temporal &Spatial Dependency of the MOS RMF

XMM-Newton Optical-UV Monitor: introduction and calibration status OM instrument and calibration

Open Cluster Photometry: Part II

SVM by Sequential Minimal Optimization (SMO)

ROSAT Roentgen Satellite. Chandra X-ray Observatory

Sky Brightness at the Hobby-Eberly Telescope

ACS after SM4: RELATIVE GAIN VALUES AMONG THE FOUR WFC AMPLIFIERS

First On-orbit Measurements of the WFC3-IR Count-rate Non-Linearity

Photometric Systems. Neil Phillips 08 April Introduction 1. 2 Magnitudes and Colours 2

Relative Astrometry Within ACS Visits

CLEA/VIREO PHOTOMETRY OF THE PLEIADES

Large Imaging Surveys for Cosmology:

A Fast Algorithm for Cosmic Rays Removal from Single Images

Calibration of WFCAM data from 2MASS: an investigation and implications for observing strategy

NEWFIRM Quick Guide for Proposal Preparation

Photometry with Iris Photometry with Iris

STUDIES OF SELECTED VOIDS. SURFACE PHOTOMETRY OF FAINT GALAXIES IN THE DIRECTION OF IN HERCULES VOID

Basics of Photometry

STELLAR PHOTOMETRY IN THE LOCAL GROUP DWARF GALAXY CETUS

Extinction and Transform Observations

WFC3 TV2 Testing: UVIS-2 Dark Frames and Rates

Ay Fall 2012 Imaging and Photometry Part I

arxiv:astro-ph/ v1 12 Nov 2003

DISCOVERY OF A PROBABLE SX PHOENICIS STAR IN M107 (NGC 6171) 1

CALCULUS AB WEEKLY REVIEW SEMESTER 2

EXPOSURE TIME ESTIMATION

arxiv:astro-ph/ v1 17 Feb 2003

phot g, r, i' gri g, r, i 182 g r i gri g r i" r g i r r) , (g g) and (i i) r

On-orbit Calibration of ACS CTE Corrections for Photometry

Cross-Talk in the ACS WFC Detectors. I: Description of the Effect

The SDSS Data. Processing the Data

arxiv: v1 [astro-ph.ep] 13 Jan 2009

Modern Image Processing Techniques in Astronomical Sky Surveys

A Comparison Between a Non-Linear and a Linear Gaussian Statistical Detector for Detecting Dim Satellites

Astro 500 A500/L-10 1

Photometry of Supernovae with Makali i

7. Telescopes: Portals of Discovery Pearson Education Inc., publishing as Addison Wesley

Analyzing Spiral Galaxies Observed in Near-Infrared

Expected precision on planet radii with

The Impact of x-cte in the WFC3/UVIS detector on Astrometry

Influence of moon light on tip-tilt sensing accuracy using STRAP

Very Large Telescope. HAWK-I Calibration Plan

Concurrent Vector Systems in Cartesian Coordinates

A MODEL FOR A CONTACT ECLIPSING BINARY SYSTEM IN THE FIELD OF KOI Emily D. Stoker. Submitted to Brigham Young University in partial fulfillment

Time Dependence of ACS WFC CTE Corrections for Photometry and Future Predictions

Physics 344 Lab 4 Observing with a CCD: Photometry of the Galaxies M31 and M32

A Fast Algorithm for Cosmic-Ray Removal from Single Images

WFC3 IR Blobs, IR Sky Flats and the measured IR background levels

Determining colours of NGC 1073 Sjoerd Hardeman and Thijs Coenen University of Amsterdam Faculty of Science

Transcription:

Binning (how to do HW#3, problem #3) Say you have a dataset of noisy (x,y) values. You want to make a binned plot of the median value of y, in bins of x. You also want to esamate the sum of all the y values if they had followed the median values (instead of their actual noisy values) as a funcaon of x. Lets do 20 bins of x, where each bin has a width dx. nbin = 20 dx = 5 inbin = np.trunc(x/dx) bin_x = np.zeros(nbin) bin_med = np.zeros(nbin) bin_medsum = np.zeros(nbin) for i in range(0,nbin): want = (inbin==i) bin_med[i] = np.median(y[want]) bin_medsum[i] = np.median(y[want])*len(y[want]) bin_x[i] = (i+0.5)*dx plt.scaqer(x,y) plt.scaqer(bin_x,bin_med) print np.sum(bin_medsum)

Example binning grey dots: raw unbinned noisy data red line: median of y values in 20 bins of x with bin size dx=5.

Surface Brightness Profile of M84 (how to do HW#3, problem #3) Your plot for M84 s surface brightness profile should look a lot like this.

Combining Images We can digitally combine N individual images into one master image of much beqer quality. Advantage #1: Increase exposure Ame and signal- to- noise. Advantage #2: Correct for image contaminants (cosmic rays, satellite trails, scaqered light) Advantage #3: Correct for detector problems (bad columns, flat fielding variaaons, etc) Advantage #4: Reduce observing risk.

Combining Images Problem #1: Different Photometric Zeropoints Images were taken at different airmasses (and someames on different nights) so they have different photometric zeropoints. The same star will produce fewer counts when observed at greater airmass. We can t just average all the images together, we have to scale them to correct for the different zeropoints. Method #1: Observe standard stars, work out photometric soluaon, apply to individual images. m V = m inst +K V *sec(z) + C V *(B- V) + ZP V Method #2: Measure stars of known brightness on the image, calibrate zeropoints directly. m V = m inst + C V *(B- V) + ZPFRAME (where ZPFRAME = K V *sec(z) + ZP V ) Each star on the image gives a value for m V m inst and (B- V), plot those values and work out C V and ZPFRAME.

Combining Images Problem #2: Different Sky values Sky brightness can change over the course of a night, and also depends on airmass and direcaon you are observing. So the images all have different sky levels and we have to subtract off this sky level before combining. Method #1: Measure sky at many spots across the image, work out an average value, subtract it off. SKY = average sky

Combining Images Problem #2: Different Sky values Sky brightness can change over the course of a night, and also depends on airmass and direcaon you are observing. So the images all have different sky levels and we have to subtract off this sky level before combining. Method #1: Measure sky at many spots across the image, work out an average value, subtract it off. SKY = average sky Method #2: Measure sky at many spots across the image, fit a plane to the sky level as a funcaon of X,Y posiaon on the image. SKY = X*dx + Y*dy + const

Sky correcaon Last Ame: fit a plane to the sky to subtract: SKY = X*dx + Y*dy + const Aler subtracang this sky model, we can look at the residual sky values around each star we did photometry on. It looks asymmetric, skewed towards posiave values. Mean = 0.05 ADU Median = 0.43 ADU Why would it be skewed posiave? So the constant sky value is biased to be too bright. We will correct for this by reducing the fiqed const value by the median offset. SKY0 = const 0.43

Photometric Scaling The zeropoint converts counts (in ADU) to calibrated magnitude. A star of given magnitude m will have different counts in images with different zeropoints. Since zeropoints are in magnitudes, we can say ZP 1 ZP 2 = 2.5*log(COUNTS 1 /COUNTS 2 ) So we can pick a master zeropoint and rescale all the images in intensity so that they have that zeropoint: COUNTS_MASTER = COUNTS * 10 +0.4*(ZP MASTERZP) That 10^ term is the photometric scaling we mulaply each image by to get them on the master zeropoint. What do we chose for the MASTERZP? MASTERZP = np.average(zp)

Applying correcaons to data imexpression: pyraf command to do complex image math. Conceptually, we want to do the following: corrected image = (flaqened image sky model) * photometric scaling using imexpr we say: imexpr expr= (a- (I*b+J*c+d+e))*f output = c<imagename> a = <imagename> b = <dx value for image> c = <dy value for image> d = <const sky value for image> e = <median sky residual for image> f = <photometric scaling> I means CCD X coordinate J means CCD Y coordinate

Grab and run the scripts: in pyraf, in your Vdata directory:!cp /astroweb_data/astr306/vcalib.cl. cl < Vcalib.cl And then do the same thing to the B data with Bcalib.cl Now you have sky subtracted, photometrically scaled data. We are almost ready to combine!