The Art of Noise: Optimal DN encoding for CCD and CMOS detectors Rob Seaman NOAO SDM

Size: px
Start display at page:

Download "The Art of Noise: Optimal DN encoding for CCD and CMOS detectors Rob Seaman NOAO SDM"

Transcription

1 S D M The Art of Noise: Optimal DN encoding for CCD and CMOS detectors Rob Seaman NOAO SDM

2 As with all questions of physics & metaphysics, the answer lies with 80 s sampled Synthpop With the invention of the machine, Noise was born. Today, Noise triumphs and reigns supreme over the sensibility of men. Luigi Russolo, The Art of Noises, 1913

3 Poisson encoding for astronomical data Astronomical Image Compression W. D. Pence NASA Goddard Space Flight Center, Greenbelt, MD R. Seaman National Optical Astronomy Observatories, Tucson, AZ and R. L. White Space Telescope Science Institute, Baltimore, MD ABSTRACT Draft: 26 November 2008 In this paper we compare a variety of modern image compression methods on a large sample of astronomical images. We begin by demonstrating from first principles how the amount of noise in the image pixel values sets a theoretical upper limit on the lossless compression ratio of the image. We derive simple procedures for measuring the amount of noise in an image and for quantitatively predicting how much compression will be possible. We then compare the traditional techinque of using the GZIP utility to externally compress the image, with a newer technique of dividing the image into tiles, and then compressing and storing each tile in a FITS binary table structure. This tiled-image compression technique offers a choice of other compression algorithms besides GZIP, some of which are much better suited to compressing astronomical images. Our tests on a large sample of images show that the Rice algorithm provides the best combination of speed and compression efficiency. In particular, Rice typically produces 1.5 times greater compression and provides much faster compression speed than GZIP. Floating point images generally contain too much noise to be effectively compressed with any lossless algorithm. We have developed a lossy compression technique which discards some of the useless noise bits by quantizing the pixel values as scaled integers. The integer image can then typically be compressed by a factor of 4 or more. Our image compression and uncompression utilities (called fpack and funpack) that were used in this study are publicly available from the HEASARC web site. Users may run these stand-alone programs to compress and uncompress their own images files. Subject headings: image compression, FITS format, fpack 1. Introduction 1 As the size of astronomical data archives continues to increase at ever greater rates, it is in the interests of both data providers and data users to make use of the most effective possible file compression techniques. Compressing the data reduces the storage media costs and also reduces the network bandwidth needed to transmit the files to users. In principle, compressing the data may also reduce data analysis times because the software needs to transfer fewer bytes to or from local disks. In this paper we investigate the state of the art in lossless compression of astronomical images Next step in Tile Compression collaboration with Bill Pence of GSFC & Rick White of STScI Figures borrowed from the latest draft (and from Janesick) However, any half baked ideas are mine alone Many papers on compression issues, including ADASS Formalize basis for astronomy 3

4 FITS Tile Compression A FITS standard compressed data are FITS binary tables Headers remain readable Tiling permits rapid random read/write access Supports multiple compression algorithms Both lossless and lossy As much about throughput as storage CFITSIO supports on the fly (un)compression First and every copy can be in native compressed format 4

5 Supported algorithms Rice (quick & simple) blocked difference coding with adaptive noise partitioning Rice is best trade off between compression and speed Hcompress (complex) 1) wavelet transform (2 D Haar) 2) optional quantization to discard noise (lossy) 3) quadtree coding of coefficient bitplanes GZIP (pattern matching) coded dictionary of repeated byte sequences PLIO (special purpose) run length encoding specialized for masks 5

6 All Noise, all the time For most astronomical data (eg., Mosaic and NEWFIRM), the compression ratio depends only on background noise Background σ from 3 rd order median absolute difference: σ = median ( x i 2 + 2x i x i+2 ) via fast median algorithm Effective noise bits from quantization condition: N bits = log 2 (σ 12) σ in quantized units N bits = log 2 σ but, non linear for small N bits (σ 2 = (2 2N 1) / 12) 6

7 Appendix For images with a Gaussian noise distribution (for instance, the readout floor of a CCD), we derive the equivalent number of noise bits. Start by assuming N bits of uniform noise and average over the range of data numbers (x=dn) for the expected values of x and x 2 :!x" = [k (k + 1) / 2] / 2 N (! of DN series, with k = 2 N 1) = (2 N 1) / 2 and!x 2 " = [k (k + 1) (2k + 1) 6] / 2 N (! of series of squares) = (2 N 1) (2 N+1 1) / 6 Solve for the variance, # 2 =!x 2 "!x" 2 : # 2 = (2 2N 1) / 12 In the limit of large N (> ~2): # = 2 N / $12 % N bits = log 2 (# $12) = log 2 (#)

8 Noise is incompressible Signal in astronomical data comes at negligible cost Compression ratio definition: R = size ORIGINAL / size COMPRESSED Theoretical best: R = BITPIX / N bits = BITPIX npixels N bits npixels Real world algorithms impose a tax of K bits/pixel: R = BITPIX / (N bits + K) K ~ 1 for Rice 8

9 Compression ratio Mosaic II Compression correlates closely with noise Distinctive functional behavior For three very different comp. algorithms R For flat field and bias exposures as well as for science data That is, for pictures of: the sky a lamp in the dome no exposure at all Noise bits Signal doesn t matter!

10 Speed matters Rice Rice (GZIP means tiled gzip -1 )

11 Compressing Mosaic data Tight correlation between R & N bits Rice Compression Ratio Extreme crowding, Overlapping PSFs N bits Noise Even tighter per chip (see inset) Line is synthetic Gaussian noise Symbols are data from community instrumentation

12 A better compression diagram Compressed bits per pixel K Lossy algorithms shift left to move down Predicted non-linearity GZIP Rice Hcompress R Margin for improvement R = BITPIX / (N bits + K) Effective BITPIX:.. BIT EFF = BITPIX / R BIT EFF = N bits + K Linear with: Slope = 1 Intercept = K N bits Noise

13 16 bit versus 32 bit Compressed bits per pixel R K K Non-linear GZIP deficit for numerical data R Compressed bits per pixel R K GZIP performance also suffers for science data K 8-bit boundary visible for GZIP R N bits Noise N bits Noise Rice output is same size whether input is 16-bit or 32-bit. GZIP is 20% larger than 16-bit Rice, but 57% larger for 32-bit data. Solid lines are synthetic data with N bits of uniform random noise. Symbols are data with N bits equivalent gaussian noise. (not to same scale)

14 Numerical compression FITS is a numerical standard (unlike non science image formats) So FITS Tile Compression convention can support numerical compression algorithms Also since R = BITPIX / (N bits + K) Compression ratio automatically scales upward with BITPIX for same data (same pixel values, thus same N bits ) Thus no penalty for choosing a 32 bit format Integer scaling option also provides high compression ratios for 32 bit floating point data (but that is another talk) 14

15 Software CFITSIO (& fpack / funpack): DES/DECam, LSST, Internal to SDM E2E system IRAF FITS kernel and tasks DS9, etc Your favorite software package or library 15

16 Part 2 of talk 16

17 How much is enough noise? 15 Lossy algorithms shift left to move down Quantize floating point R 1.2 Compressed bits per pixel K to pack into integers In general, seek the natural noise level Predicted non-linearity GZIP Rice Hcompress Margin for improvement N bits Noise

18 CCDs are linear A. What does this mean? B. It does not mean that DNs must be represented on a linear scale 18

19 Heteroscedasticity A vector of random variables (ie., an image) is heteroscedastic if the variance depends on the signal CCD and CMOS are photon counting devices thus shot noise so these are poisson processes, not gaussian, with noise ~ sqrt (signal) Many familiar statistical techniques formally require homoscedasticity, for example, least squares fitting Penalty for ignoring this may be negligible or significant 19

20 Variance stabilization Techniques exist to stabilize variance Anscombe transform (really Johnson s result extended from Bartlett) Convert poisson to (near) gaussian with unit variance: S xy = 2 sqrt (S xy + 3/8) (for S > ~30 e ) also Box Cox, many references 20

21 Generalized Anscombe Transform Real CCDs are Poisson + Gaussian Bijaoui with Starck & Murtagh: I xy = (2/α) sqrt (α I xy + (3/8) α 2 + σ 2 α mean) α = 1 / gain (gain in e / ADU) 21

22 In usual CCD terms: I xy = 2 sqrt (gain (I xy bias) + read 2 + 3/8) I xy in DN (ADU) bias in ADU gain in e / ADU read noise in e 22

23 Was reminded of The CCD photon transfer technique For example the IRAF task, findgain, to measure the gain of a CCD from flat field and bias exposures Gain is the slope of the mean variance relation So went looking for 23

24 Janesick s Big Book 24

25 Basic References Scientific Charge Coupled Devices, Janesick, SPIE Press, 2001 Photon Transfer, DN > lambda, Janesick, SPIE Press,

26 Noise sampling Brighter pixels greatly oversample the noise: ADC quantizing noise = sqrt (1 / 12) To avoid aliasing, keep gain < readnoise So readnoise ~ 1 DN rms (1 bit) High end governed by shot noise (& full well): DN = 64K (16 bits) is 256 (8 bits) 26

27 ADC quantization noise 27

28 Read noise masks quantization 28

29 Compact encoding Seven bits of the brightest pixels represent uselessly oversampled noise Low end is properly (?) sampled Intermediate pixels ~ square root Thus can encode CCD / CMOS images into far fewer DNs 29

30 Square rooter In either hardware or software: DN out = sqrt (DN in ) 2 (N out bitpix/2) same as Anscombe if N out = 1 + bitpix/2 ie., N out = 9 for bitpix = 16 30

31 Implementation Map input to output DNs via Look Up Table Modify FITS tile compression convention (or FITS itself) to convey and apply LUTs on input/output For some purposes, use raw square root values: Display (8 bit LUTs could suffice) Multiresolution / wavelets Principle Components Analysis 31

32 Optimal encoding Only technically lossy Ideally would apply this before the ADC But after ADC, penalty is a modest sqrt(1/12) 32

33 Back to compression Advantage is not as dramatic in bits Reducing 64K range (16 bits) to 0.5K range (9 bits) is R =

34 More references Simple square rooter combined with Rice: Data Compression for NGST Nieto Santisteban, et al., ADASS VIII, 1999 Various other references, eg.: Poisson Recoding of Solar Images for Enhanced Compression Nicula, et al., Solar Phys. 228,

35 Tame the noise Use for space missions is generally presented as lossy Not if noise isn t trimmed beyond detector s innate level Variance stabilization tells you what that is The square root of a gaussian is a gaussian (formalize this) Narrower for typical astronomical data So background N bits can be minimized Rice is blind to an additive offset Allowing an adjustment for the bias Tempering the noise allows Rice to maximize compression More work needed to characterize possible benefits 35

36 Issue #1 Per Pence, et al., only the background noise matters in typical astronomical cases So need to handle low end properly Transition to linear? (also to keep radicand positive) But that squanders advantage where needed Want to avoid having to go actually lossy 36

37 Issue #2 CCDs (+ CMOS) are Gaussian + Poisson Raw detectors also have Fixed Pattern Noise (FPN): Sensitivity = sqrt (read 2 + η S + (P N S) 2 ) quantum yield, η = 1 e / γ for CCDs FPN quality factor, P N (~ 1 %) FPN dominates bright pixels! 37

38 Square rooter PTC response Naïve use can increase noise in the background Used with care could change R=2 to R=3 DN ~ 30 38

39 NOAO Data & Metadata Flow - Compression multiplier Data Transport Metadata Transport PIPELINE Community data sets Telescope Schedule DB Portals access NSA via web services Pipelines access NSA directly via Data Service Kitt Peak Data Server Tucson Data Server NOAO Archive Security DB Query VO Interfaces NOAO Portal NSA Server Databases WIYN Community VO archive NCSA Data Server Community VO portal Cerro Tololo DS La Serena Data Server Just a 15% improvement in network throughput and storage efficiency is the same as eliminating the overhead of one whole copy of the archive and the perpetual latency of one replication leg Cerro Pachon Data Server PIPELINE SOAR 39

40 Issue #3 Bringing generalized Anscombe and generalized Janesick into alignment Easy to get lost in DNs versus electrons What Janesick calls sensitivity, most call gain Need to fold quantum yield into Anscombe 40

41 Conclusions Issue #3 just requires more work Issue #2 doesn t apply to flat fielded data and care more about background, not bright pixels Issue #1 depends on the intended purpose for compression, any pragmatic compromise will work stabilizing variance for image processing techniques (eg., PCA) needs care 41

BigBOSS Data Reduction Software

BigBOSS Data Reduction Software BigBOSS Data Reduction Software The University of Utah Department of Physics & Astronomy The Premise BigBOSS data reduction software is as important as BigBOSS data collection hardware to the scientific

More information

1 The Preliminary Processing

1 The Preliminary Processing AY 257 Modern Observational Techniques...23 1 The Preliminary Processing Frames must be corrected for a bias level and quantum efficiency variations on all scales. For a minority of CCDs and most near-ir

More information

NICMOS Status and Plans

NICMOS Status and Plans 1997 HST Calibration Workshop Space Telescope Science Institute, 1997 S. Casertano, et al., eds. NICMOS Status and Plans Rodger I. Thompson Steward Observatory, University of Arizona, Tucson, AZ 85721

More information

Astronomy of the Next Decade: From Photons to Petabytes. R. Chris Smith AURA Observatory in Chile CTIO/Gemini/SOAR/LSST

Astronomy of the Next Decade: From Photons to Petabytes. R. Chris Smith AURA Observatory in Chile CTIO/Gemini/SOAR/LSST Astronomy of the Next Decade: From Photons to Petabytes R. Chris Smith AURA Observatory in Chile CTIO/Gemini/SOAR/LSST Classical Astronomy still dominates new facilities Even new large facilities (VLT,

More information

FLAT FIELDS FROM THE MOONLIT EARTH

FLAT FIELDS FROM THE MOONLIT EARTH Instrument Science Report WFPC2 2008-01 FLAT FIELDS FROM THE MOONLIT EARTH R. C. Bohlin, J. Mack, and J. Biretta 2008 February 4 ABSTRACT The Earth illuminated by light from the full Moon was observed

More information

What bandwidth do I need for my image?

What bandwidth do I need for my image? What bandwidth do I need for my image? Adrian M. Price-Whelan 1, David W. Hogg 1,2 ABSTRACT Computer representations of real numbers are necessarily discrete, with some finite resolution, discreteness,

More information

Detecting Cosmic Rays in Infrared Data

Detecting Cosmic Rays in Infrared Data The 2010 STScI Calibration Workshop Space Telescope Science Institute, 2010 Susana Deustua and Cristina Oliveira, eds. Detecting Cosmic Rays in Infrared Data Rachel E. Anderson and Karl Gordon Space Telescope

More information

3 things your robot should know

3 things your robot should know 3 things your robot should know Rob Seaman NOAO Science Data Management Telescopes from Afar Kohala, HI, 1 March 2011 1 March 2011 1 (Decided to go with Doctor Seuss rather than Doctor Asimov) 1 March

More information

NATIONAL RADIO ASTRONOMY OBSERVATORY MEMORANDUM

NATIONAL RADIO ASTRONOMY OBSERVATORY MEMORANDUM NATIONAL RADIO ASTRONOMY OBSERVATORY MEMORANDUM DATE: September 16, 1996 TO: M. Clark, B. Garwood, D. Hogg, H. Liszt FROM: Ron Maddalena SUBJECT: GBT and Aips++ requirements for traditional, all-sky pointing

More information

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

Exploring Data. Keck LRIS spectra. Handbook of CCD Astronomy by Steve Howell Chap. 4, parts of 6 Exploring Data Keck LRIS spectra Handbook of CCD Astronomy by Steve Howell Chap. 4, parts of 6 FITS: Flexible Image Transport System Digital file format used to store astronomical images, data, and catalogs.

More information

Transient Alerts in LSST. 1 Introduction. 2 LSST Transient Science. Jeffrey Kantor Large Synoptic Survey Telescope

Transient Alerts in LSST. 1 Introduction. 2 LSST Transient Science. Jeffrey Kantor Large Synoptic Survey Telescope Transient Alerts in LSST Jeffrey Kantor Large Synoptic Survey Telescope 1 Introduction During LSST observing, transient events will be detected and alerts generated at the LSST Archive Center at NCSA in

More information

Astro 500 A500/L-10 1

Astro 500 A500/L-10 1 Astro 500 A500/L-10 1 Lecture Outline What is the AΩ argument? Proposals Observing Ø Coordinates & visibility Ø Planning tools Ø Decisions before observing Ø At Night: efficiency, focus, and calibration

More information

Fundamentals of Exoplanet Observing

Fundamentals of Exoplanet Observing Fundamentals of Exoplanet Observing Dennis M. Conti Chair, AAVSO Exoplanet Section Copyright Dennis M. Conti 2017 1 The Strange World of Exoplanets Most exoplanets we have discovered are close-in, large

More information

Fundamentals of Exoplanet Observing

Fundamentals of Exoplanet Observing Fundamentals of Exoplanet Observing Dennis M. Conti Chair, AAVSO Exoplanet Section Copyright Dennis M. Conti 2017 1 The Strange World of Exoplanets Most exoplanets we have discovered are close-in, large

More information

A Fast Algorithm for Cosmic Rays Removal from Single Images

A Fast Algorithm for Cosmic Rays Removal from Single Images A Fast Algorithm for Cosmic Rays Removal from Single Images Wojtek Pych David Dunlap Observatory, University of Toronto P.O. Box 360, Richmond Hill, Ontario, Canada L4C 4Y6 and Copernicus Astronomical

More information

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

Data Reduction - Optical / NIR Imaging. Chian-Chou Chen Ph319 Data Reduction - Optical / NIR Imaging Chian-Chou Chen (T.C.) @ Ph319 Images at different wavelengths... Images at different wavelengths... However, the raw data are always not as pretty Why? The total

More information

WFC3 TV2 Testing: UVIS-2 Dark Frames and Rates

WFC3 TV2 Testing: UVIS-2 Dark Frames and Rates Instrument Science Report WFC3 007-06 WFC3 TV Testing: UVIS- Dark Frames and Rates A.R. Martel November 0, 007 ABSTRACT WFC3 underwent its second thermal vacuum testing in the Space Environment Simulation

More information

The in-orbit wavelength calibration of the WFC G800L grism

The in-orbit wavelength calibration of the WFC G800L grism The in-orbit wavelength calibration of the WFC G800L grism A. Pasquali, N. Pirzkal, J.R. Walsh March 5, 2003 ABSTRACT We present the G800L grism spectra of the Wolf-Rayet stars WR45 and WR96 acquired with

More information

Pysynphot: A Python Re Implementation of a Legacy App in Astronomy

Pysynphot: A Python Re Implementation of a Legacy App in Astronomy Pysynphot: A Python Re Implementation of a Legacy App in Astronomy Vicki Laidler 1, Perry Greenfield, Ivo Busko, Robert Jedrzejewski Science Software Branch Space Telescope Science Institute Baltimore,

More information

arxiv:astro-ph/ v1 12 Nov 2003

arxiv:astro-ph/ v1 12 Nov 2003 A Fast Algorithm for Cosmic Rays Removal from Single Images Wojtek Pych arxiv:astro-ph/0311290v1 12 Nov 2003 David Dunlap Observatory, University of Toronto P.O. Box 360, Richmond Hill, Ontario, Canada

More information

Updated flux calibration and fringe modelling for the ACS/WFC G800L grism

Updated flux calibration and fringe modelling for the ACS/WFC G800L grism Updated flux calibration and fringe modelling for the ACS/WFC G800L grism H. Kuntschner, M. Kümmel, J. R. Walsh January 25, 2008 ABSTRACT A revised flux calibration is presented for the G800L grism with

More information

Data Processing in DES

Data Processing in DES Data Processing in DES Brian Yanny Oct 28, 2016 http://data.darkenergysurvey.org/fnalmisc/talk/detrend.p Basic Signal-to-Noise calculation in astronomy: Assuming a perfect atmosphere (fixed PSF of p arcsec

More information

High Precision Exoplanet Observations with Amateur Telescopes

High Precision Exoplanet Observations with Amateur Telescopes High Precision Exoplanet Observations with Amateur Telescopes Dennis M. Conti Chair, AAVSO Exoplanet Section Member, KELT Follow-up Team Member, TESS TFOP Working Group HAL Meeting: October 19, 2017 1

More information

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

arxiv: v1 [astro-ph.im] 31 Jul 2014 A new method of CCD dark current correction via extracting the dark information from scientific images arxiv:1407.8279v1 [astro-ph.im] 31 Jul 2014 Bin Ma 1, Zhaohui Shang 2,1, Yi Hu 1, Qiang Liu 1, Lifan

More information

Open Cluster Photometry: Part II

Open Cluster Photometry: Part II Project 4 Open Cluster Photometry: Part II Observational Astronomy ASTR 310 Fall 2005 1 Introduction The objective of this and the previous project is to learn how to produce color-magnitude diagrams of

More information

Number Representation and Waveform Quantization

Number Representation and Waveform Quantization 1 Number Representation and Waveform Quantization 1 Introduction This lab presents two important concepts for working with digital signals. The first section discusses how numbers are stored in memory.

More information

Capturing and Processing Deep Space Images. Petros Pissias Eumetsat Astronomy Club 15/03/2018

Capturing and Processing Deep Space Images. Petros Pissias Eumetsat Astronomy Club 15/03/2018 Capturing and Processing Deep Space Images Petros Pissias Eumetsat Astronomy Club 15/03/2018 Agenda Introduction Basic Equipment Preparation Acquisition Processing Quick demo Petros Pissias Eumetsat Astronomy

More information

Automatic Star-tracker Optimization Framework. Andrew Tennenbaum The State University of New York at Buffalo

Automatic Star-tracker Optimization Framework. Andrew Tennenbaum The State University of New York at Buffalo SSC17-VIII-6 Automatic Star-tracker Optimization Framework Andrew Tennenbaum The State University of New York at Buffalo aztennen@buffalo.edu Faculty Advisor: John Crassidis The State University of New

More information

BetaDrizzle: A Redesign of the MultiDrizzle Package

BetaDrizzle: A Redesign of the MultiDrizzle Package The 2010 STScI Calibration Workshop Space Telescope Science Institute, 2010 Susana Deustua and Cristina Oliveira, eds. BetaDrizzle: A Redesign of the MultiDrizzle Package A. S. Fruchter, W. Hack, N. Dencheva,

More information

Processing Wide Field Imaging data Mike Irwin

Processing Wide Field Imaging data Mike Irwin Processing Wide Field Imaging data Mike Irwin N4244 confidence map stack 20 dithered i band frames Subaru 8m CTIO 4m KPNO 4m CFH 3.6m INT 2.5m ESO 2.2m DART WFPC2 SuprimeCam 1000Tb IPHAS 10Tb 100Tb overall

More information

WFC3 TV2 Testing: IR Channel Read Noise

WFC3 TV2 Testing: IR Channel Read Noise Instrument Science Report WFC3 2008-04 WFC3 TV2 Testing: IR Channel Read B. Hilbert 12 Feb 2008 ABSTRACT Using data taken during WFC3's Thermal Vacuum 2 (TV2) testing campaign, we have characterized the

More information

The SDSS Data. Processing the Data

The SDSS Data. Processing the Data The SDSS Data Processing the Data On a clear, dark night, light that has traveled through space for a billion years touches a mountaintop in southern New Mexico and enters the sophisticated instrumentation

More information

Predicted Countrates for the UV WFC3 Calibration Subsystem using Deuterium Lamps

Predicted Countrates for the UV WFC3 Calibration Subsystem using Deuterium Lamps Predicted Countrates for the UV WFC3 Calibration Subsystem using Deuterium Lamps S.Baggett, J. Sullivan, and M. Quijada May 17,24 ABSTRACT Predicted WFC3 calibration subsystem countrates have been computed

More information

Fully Bayesian Analysis of Low-Count Astronomical Images

Fully Bayesian Analysis of Low-Count Astronomical Images Fully Bayesian Analysis of Low-Count Astronomical Images 1 Alanna Connors 2 1 Department of Statistics University of California, Irvine 2 Eurika Scientific Thanks to James Chiang, Adam Roy, and The California

More information

Image Processing in Astronomy: Current Practice & Challenges Going Forward

Image Processing in Astronomy: Current Practice & Challenges Going Forward Image Processing in Astronomy: Current Practice & Challenges Going Forward Mario Juric University of Washington With thanks to Andy Connolly, Robert Lupton, Ian Sullivan, David Reiss, and the LSST DM Team

More information

Capturing and Processing Planetary Images. Petros Pissias Eumetsat Astronomy Club 11/06/2015

Capturing and Processing Planetary Images. Petros Pissias Eumetsat Astronomy Club 11/06/2015 Capturing and Processing Planetary Images Petros Pissias Eumetsat Astronomy Club 11/06/2015 Agenda Introduction Basic Equipment Preparation Acquisition Processing Quick demo Petros Pissias Eumetsat Astronomy

More information

The Dark Energy Survey Public Data Release 1

The Dark Energy Survey Public Data Release 1 The Dark Energy Survey Public Data Release 1 Matias Carrasco Kind (NCSA/UIUC) and the DR1 Release Team https://des.ncsa.illinois.edu/ Near-Field Cosmology with DES DR1 and Beyond Workshop, June 27-29th,

More information

Detection of Exoplanets Using the Transit Method

Detection of Exoplanets Using the Transit Method Detection of Exoplanets Using the Transit Method De nnis A fanase v, T h e Geo rg e W a s h i n g t o n Un i vers i t y, Washington, DC 20052 dennisafa@gwu.edu Abstract I conducted differential photometry

More information

Signal to Noise Comparison of IS-Instruments Ltd High Throughput OEM Spectrometer and a Czerny Turner Instrument. July 2013

Signal to Noise Comparison of IS-Instruments Ltd High Throughput OEM Spectrometer and a Czerny Turner Instrument. July 2013 Signal to Noise Comparison of IS-Instruments Ltd High Throughput OEM Spectrometer and a Czerny Turner Instrument July 2013 EXECUTIVE SUMMARY IS-Instrument s new range of High Étendue Spectrometers (HES)

More information

Approximate Inference Part 1 of 2

Approximate Inference Part 1 of 2 Approximate Inference Part 1 of 2 Tom Minka Microsoft Research, Cambridge, UK Machine Learning Summer School 2009 http://mlg.eng.cam.ac.uk/mlss09/ Bayesian paradigm Consistent use of probability theory

More information

EXPOSURE TIME ESTIMATION

EXPOSURE TIME ESTIMATION ASTR 511/O Connell Lec 12 1 EXPOSURE TIME ESTIMATION An essential part of planning any observation is to estimate the total exposure time needed to satisfy your scientific goal. General considerations

More information

From DES to LSST. Transient Processing Goes from Hours to Seconds. Eric Morganson, NCSA LSST Time Domain Meeting Tucson, AZ May 22, 2017

From DES to LSST. Transient Processing Goes from Hours to Seconds. Eric Morganson, NCSA LSST Time Domain Meeting Tucson, AZ May 22, 2017 From DES to LSST Transient Processing Goes from Hours to Seconds Eric Morganson, NCSA LSST Time Domain Meeting Tucson, AZ May 22, 2017 Hi, I m Eric Dr. Eric Morganson, Research Scientist, Nation Center

More information

Local Volume, Milky Way, Stars, Planets, Solar System: L3 Requirements

Local Volume, Milky Way, Stars, Planets, Solar System: L3 Requirements Local Volume, Milky Way, Stars, Planets, Solar System: L3 Requirements Anthony Brown Sterrewacht Leiden brown@strw.leidenuniv.nl Sterrewacht Leiden LSST@Europe2 2016.06.21-1/8 LSST data product levels

More information

Approximate Inference Part 1 of 2

Approximate Inference Part 1 of 2 Approximate Inference Part 1 of 2 Tom Minka Microsoft Research, Cambridge, UK Machine Learning Summer School 2009 http://mlg.eng.cam.ac.uk/mlss09/ 1 Bayesian paradigm Consistent use of probability theory

More information

NEWFIRM Quick Guide for Proposal Preparation

NEWFIRM Quick Guide for Proposal Preparation NEWFIRM Quick Guide for Proposal Preparation Ron Probst NEWFIRM Instrument Scientist September 2008 NEWFIRM is a 1-2.4 micron IR camera for the NOAO 4-m telescopes. It has a flexible complement of broad

More information

Reduced data products in the ESO Phase 3 archive (Status: 02 August 2017)

Reduced data products in the ESO Phase 3 archive (Status: 02 August 2017) Reduced data products in the ESO Phase 3 archive (Status: 02 August 2017) The ESO Phase 3 archive provides access to reduced and calibrated data products. All these data are stored in standard formats

More information

Hα Imaging of an Interstellar Neutral Hydrogen Shell

Hα Imaging of an Interstellar Neutral Hydrogen Shell Hα Imaging of an Interstellar Neutral Hydrogen Shell Paul L. Vaughan Faculty Sponsor: Shauna Sallmen, Department of Physics ABSTRACT The interstellar medium (ISM) is composed of very low-density material

More information

OPTICAL PHOTOMETRY. Observational Astronomy (2011) 1

OPTICAL PHOTOMETRY. Observational Astronomy (2011) 1 OPTICAL PHOTOMETRY Observational Astronomy (2011) 1 The optical photons coming from an astronomical object (star, galaxy, quasar, etc) can be registered in the pixels of a frame (or image). Using a ground-based

More information

Detection of Artificial Satellites in Images Acquired in Track Rate Mode.

Detection of Artificial Satellites in Images Acquired in Track Rate Mode. Detection of Artificial Satellites in Images Acquired in Track Rate Mode. Martin P. Lévesque Defence R&D Canada- Valcartier, 2459 Boul. Pie-XI North, Québec, QC, G3J 1X5 Canada, martin.levesque@drdc-rddc.gc.ca

More information

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

arxiv: v1 [astro-ph.im] 31 Jul 2014 The nonlinear photon transfer curve of CCDs and its effects on photometry arxiv:1407.880v1 [astro-ph.im] 31 Jul 014 Bin Ma 1, Zhaohui Shang,1, Lifan Wang 3,4, Yi Hu 1, Qiang Liu 1, Peng Wei 1 1 National

More information

! Where are we on course map? ! What we did in lab last week. " How it relates to this week. ! Compression. " What is it, examples, classifications

! Where are we on course map? ! What we did in lab last week.  How it relates to this week. ! Compression.  What is it, examples, classifications Lecture #3 Compression! Where are we on course map?! What we did in lab last week " How it relates to this week! Compression " What is it, examples, classifications " Probability based compression # Huffman

More information

RLW paper titles:

RLW paper titles: RLW paper titles: http://www.wordle.net Astronomical Surveys and Data Archives Richard L. White Space Telescope Science Institute HiPACC Summer School, July 2012 Overview Surveys & catalogs: Fundamental

More information

GIS Data Processing. Eddie Breeveld MSSL/UCL

GIS Data Processing. Eddie Breeveld MSSL/UCL GIS Data Processing Eddie Breeveld MSSL/UCL erb@mssl.ucl.ac.uk GIS Data Processing Introduction and status of the GIS system Planning GIS Observations Displaying GIS Data Correcting Instument Effects Fixed

More information

A Library of the X-ray Universe: Generating the XMM-Newton Source Catalogues

A Library of the X-ray Universe: Generating the XMM-Newton Source Catalogues A Library of the X-ray Universe: Generating the XMM-Newton Source Catalogues Iris Traulsen Axel Schwope, Georg Lamer Leibniz-Institut für Astrophysik Potsdam (AIP) on behalf of the XMM-Newton Survey Science

More information

Lab 4: Stellar Spectroscopy

Lab 4: Stellar Spectroscopy Name:... Astronomy 101: Observational Astronomy Fall 2006 Lab 4: Stellar Spectroscopy 1 Observations 1.1 Objectives and Observation Schedule During this lab each group will target a few bright stars of

More information

Losless compression of LIGO data.

Losless compression of LIGO data. LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY -LIGO- CALIFORNIA INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY Technical Note LIGO-T000076-00- D 08/7/2000 Losless compression of LIGO

More information

Chapter 6: Transforming your data

Chapter 6: Transforming your data Why is transformation necessary? Chapter 6: Transforming your data The AAVSO International Database is composed of data collected from many different observers, at different times, from around the globe.

More information

Applied Cartography and Introduction to GIS GEOG 2017 EL. Lecture-2 Chapters 3 and 4

Applied Cartography and Introduction to GIS GEOG 2017 EL. Lecture-2 Chapters 3 and 4 Applied Cartography and Introduction to GIS GEOG 2017 EL Lecture-2 Chapters 3 and 4 Vector Data Modeling To prepare spatial data for computer processing: Use x,y coordinates to represent spatial features

More information

More Optical Telescopes

More Optical Telescopes More Optical Telescopes There are some standard reflecting telescope designs used today All have the common feature of light entering a tube and hitting a primary mirror, from which light is reflected

More information

Extraction of Point Source Spectra from STIS Long Slit Data

Extraction of Point Source Spectra from STIS Long Slit Data 1997 HST Calibration Workshop Space Telescope Science Institute, 1997 S. Casertano, et al., eds. Extraction of Point Source Spectra from STIS Long Slit Data J. R. Walsh Spect Telescope European Coordinating

More information

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

Cross-Talk in the ACS WFC Detectors. I: Description of the Effect Cross-Talk in the ACS WFC Detectors. I: Description of the Effect Mauro Giavalisco August 10, 2004 ABSTRACT Images acquired with the Wide Field Channel (WFC) of the Advanced Camera for Surveys (ACS) are

More information

Operations Scheduling for the LSST

Operations Scheduling for the LSST Operations Scheduling for the LSST Robert J. Vanderbei 2015 March 18 http://www.princeton.edu/ rvdb LSST Scheduler Workshop Tucson AZ Simple Optimization Problem Unconstrained max x R n f(x) The function

More information

Information and Entropy. Professor Kevin Gold

Information and Entropy. Professor Kevin Gold Information and Entropy Professor Kevin Gold What s Information? Informally, when I communicate a message to you, that s information. Your grade is 100/100 Information can be encoded as a signal. Words

More information

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

Reduction procedure of long-slit optical spectra. Astrophysical observatory of Asiago Reduction procedure of long-slit optical spectra Astrophysical observatory of Asiago Spectrograph: slit + dispersion grating + detector (CCD) It produces two-dimension data: Spatial direction (x) along

More information

VRI Photometry of M67 for CCD Standardization at 2.3m VBT

VRI Photometry of M67 for CCD Standardization at 2.3m VBT J. Astrophys. Astr. (1992) 13, 293 305 VRI Photometry of M67 for CCD Standardization at 2.3m VBT P. N. Bhat & K. P. Singh Tata Institute of Fundamental Research, Bombay 400 005 T. P. Prabhu Indian Institute

More information

ArcGIS Enterprise: What s New. Philip Heede Shannon Kalisky Melanie Summers Shreyas Shinde

ArcGIS Enterprise: What s New. Philip Heede Shannon Kalisky Melanie Summers Shreyas Shinde ArcGIS Enterprise: What s New Philip Heede Shannon Kalisky Melanie Summers Shreyas Shinde ArcGIS Enterprise is the new name for ArcGIS for Server ArcGIS Enterprise Software Components ArcGIS Server Portal

More information

Commissioning of the Hanle Autoguider

Commissioning of the Hanle Autoguider Commissioning of the Hanle Autoguider Copenhagen University Observatory Edited November 10, 2005 Figure 1: First light image for the Hanle autoguider, obtained on September 17, 2005. A 5 second exposure

More information

SMTN-002: Calculating LSST limiting magnitudes and SNR

SMTN-002: Calculating LSST limiting magnitudes and SNR SMTN-002: Calculating LSST limiting magnitudes and SNR Release Lynne Jones 2017-12-05 Contents 1 Source Counts 3 2 Instrumental Zeropoints 5 3 Sky Counts 7 4 Instrumental Noise 9 5 Source footprint (n

More information

Submillimetre astronomy

Submillimetre astronomy Sep. 20 2012 Spectral line submillimetre observations Observations in the submillimetre wavelengths are in principle not different from those made at millimetre wavelengths. There are however, three significant

More information

Study of the evolution of the ACS/WFC sensitivity loss

Study of the evolution of the ACS/WFC sensitivity loss Instrument Science Report ACS 2013 01 Study of the evolution of the ACS/WFC sensitivity loss Leonardo Úbeda and Jay Anderson Space Telescope Science Institute January 28, 2013 ABSTRACT We present a study

More information

Laboratory Emulation of Observations from Space

Laboratory Emulation of Observations from Space Science with a Wide-field Infrared Telescopes in Space, Pasadena, Feb 13, 2012 of Observations from Space Roger Smith -- Caltech Jason Rhodes, Suresh Seshadri -- JPL Previous culture, friendly collaboration

More information

EE5585 Data Compression April 18, Lecture 23

EE5585 Data Compression April 18, Lecture 23 EE5585 Data Compression April 18, 013 Lecture 3 Instructor: Arya Mazumdar Scribe: Trevor Webster Differential Encoding Suppose we have a signal that is slowly varying For instance, if we were looking at

More information

PACS Wavelength Switching AOT release note

PACS Wavelength Switching AOT release note PACS Wavelength Switching AOT release note 1 Prepared by the PACS ICC 20 January 2010 Wavelength switching release note version of 03-dec-2009 updated with full dynamic range saturation limits. Differences

More information

Ground Calibration of X-ray CCD Detectors with Charge Injection for the X-ray Imaging Spectrometer on Astro-E2

Ground Calibration of X-ray CCD Detectors with Charge Injection for the X-ray Imaging Spectrometer on Astro-E2 Ground Calibration of X-ray CCD Detectors with Charge Injection for the X-ray Imaging Spectrometer on Astro-E2 Beverly LaMarr a, Mark Bautz a, Steve Kissel a, Gregory Prigozhin a Kiyoshi Hayashida b Takeshi

More information

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

WFC3 IR Blobs, IR Sky Flats and the measured IR background levels The 2010 STScI Calibration Workshop Space Telescope Science Institute, 2010 Susana Deustua and Cristina Oliveira, eds. WFC3 IR Blobs, IR Sky Flats and the measured IR background levels N. Pirzkal 1 Space

More information

Open Cluster Research Project

Open Cluster Research Project Open Cluster Research Project I. Introduction The observational data indicate that all stars form in clusters. In a cloud of hydrogen gas, laced with helium and a trace of other elements, something triggers

More information

* All those going out on the roof at night must carry a torch.

* All those going out on the roof at night must carry a torch. University of Exeter Observatory User Note: Observatory safety Tim Harries, September 2003 Observatory Safety Working at night in proximity to moving equipment is potentially hazardous, and safety is our

More information

Here Be Dragons: Characterization of ACS/WFC Scattered Light Anomalies

Here Be Dragons: Characterization of ACS/WFC Scattered Light Anomalies Instrument Science Report ACS 2016-06 Here Be Dragons: Characterization of ACS/WFC Scattered Light Anomalies Blair Porterfield, Dan Coe, Shireen Gonzaga, Jay Anderson, Norman Grogin November 1, 2016 Abstract

More information

ACS CCDs UV and narrowband filters red leak check

ACS CCDs UV and narrowband filters red leak check Instrument Science Report ACS 2007-03 ACS CCDs UV and narrowband filters red leak check Marco Chiaberge and Marco Sirianni May 01, 2007 ABSTRACT We present results of the observations of the star 15 Mon,

More information

Analyzing Spiral Galaxies Observed in Near-Infrared

Analyzing Spiral Galaxies Observed in Near-Infrared Analyzing Spiral Galaxies Observed in Near-Infrared Preben Grosbøl European Southern Observatory Karl-Schwarzschild-Str. 2, D-85748 Garching, Germany Abstract A sample of 54 spiral galaxies was observed

More information

MANUAL for GLORIA light curve demonstrator experiment test interface implementation

MANUAL for GLORIA light curve demonstrator experiment test interface implementation GLORIA is funded by the European Union 7th Framework Programme (FP7/2007-2013) under grant agreement n 283783 MANUAL for GLORIA light curve demonstrator experiment test interface implementation Version:

More information

Astronomical frequency comb for calibration of low and medium resolution spectrographs

Astronomical frequency comb for calibration of low and medium resolution spectrographs Astronomical frequency comb for calibration of low and medium resolution spectrographs innofspec at AIP has several years expertise in astronomical instrumentation. innofspec succesfully developed a new

More information

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

ACS after SM4: RELATIVE GAIN VALUES AMONG THE FOUR WFC AMPLIFIERS Instrument Science Report ACS 2009-03 ACS after SM4: RELATIVE GAIN VALUES AMONG THE FOUR WFC AMPLIFIERS R. C. Bohlin, A. Maybhate, & J. Mack 2009 October 8 ABSTRACT For the default setting of gain=2, the

More information

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

Transiting Exoplanet in the Near Infra-red for the XO-3 System Transiting Exoplanet in the Near Infra-red for the XO-3 System Nathaniel Rodriguez August 26, 2009 Abstract Our research this summer focused on determining if sufficient precision could be gained from

More information

Section 3: Combinational Logic Design. Department of Electrical Engineering, University of Waterloo. Combinational Logic

Section 3: Combinational Logic Design. Department of Electrical Engineering, University of Waterloo. Combinational Logic Section 3: Combinational Logic Design Major Topics Design Procedure Multilevel circuits Design with XOR gates Adders and Subtractors Binary parallel adder Decoders Encoders Multiplexers Programmed Logic

More information

Light and Optics. Light and Optics. Author: Sarah Roberts

Light and Optics. Light and Optics. Author: Sarah Roberts Activity Instructions Author: Sarah Roberts - Faulkes Telescope Project Activity Instructions Introduction In this activity, you will either search the image archive on the Faulkes Telescope Project website

More information

Lunar Reconnaissance Orbiter Camera Image Retrieval For the Big Moon Dig

Lunar Reconnaissance Orbiter Camera Image Retrieval For the Big Moon Dig Lunar Reconnaissance Orbiter Camera Image Retrieval For the Big Moon Dig Tom Riley TomRiley@WoodwareDesigns.com November 22, 2014 File: LROCameraRetrivalmmdddyy.docx Work in Progress LRO in orbit (artist

More information

Lecture 12. Block Diagram

Lecture 12. Block Diagram Lecture 12 Goals Be able to encode using a linear block code Be able to decode a linear block code received over a binary symmetric channel or an additive white Gaussian channel XII-1 Block Diagram Data

More information

ESASky, ESA s new open-science portal for ESA space astronomy missions

ESASky, ESA s new open-science portal for ESA space astronomy missions ESASky, ESA s new open-science portal for ESA space astronomy missions Bruno Merín ESAC Science Data Centre European Space Agency bruno.merin@esa.int Visit to NAOC, Beijing, 19/05/2017 ESA UNCLASSIFIED

More information

Spitzer Space Telescope

Spitzer Space Telescope Spitzer Space Telescope (A.K.A. The Space Infrared Telescope Facility) The Infrared Imaging Chain 1/38 The infrared imaging chain Generally similar to the optical imaging chain... 1) Source (different

More information

AstroBITS: Open Cluster Project

AstroBITS: Open Cluster Project AstroBITS: Open Cluster Project I. Introduction The observational data that astronomers have gathered over many years indicate that all stars form in clusters. In a cloud of hydrogen gas, laced with helium

More information

Fedora Astronomy. Integration of astronomical software into a Linux distribution. Christian Dersch. AG Astronomie, Philipps-Universität Marburg

Fedora Astronomy. Integration of astronomical software into a Linux distribution. Christian Dersch. AG Astronomie, Philipps-Universität Marburg Fedora Astronomy Integration of astronomical software into a Linux distribution Christian Dersch AG Astronomie, Philipps-Universität Marburg September 18, 2017 Why should astronomical software be part

More information

Serendipitous UV source catalogues for 10 years of XMM and 5 years of Swift

Serendipitous UV source catalogues for 10 years of XMM and 5 years of Swift Astrophys Space Sci (2014) 354:97 101 DOI 10.1007/s10509-014-1944-5 ORIGINAL ARTICLE Serendipitous UV source catalogues for 10 years of XMM and 5 years of Swift V.N. Yershov Received: 15 January 2014 /

More information

What is Image Deblurring?

What is Image Deblurring? What is Image Deblurring? When we use a camera, we want the recorded image to be a faithful representation of the scene that we see but every image is more or less blurry, depending on the circumstances.

More information

Image Compression. Qiaoyong Zhong. November 19, CAS-MPG Partner Institute for Computational Biology (PICB)

Image Compression. Qiaoyong Zhong. November 19, CAS-MPG Partner Institute for Computational Biology (PICB) Image Compression Qiaoyong Zhong CAS-MPG Partner Institute for Computational Biology (PICB) November 19, 2012 1 / 53 Image Compression The art and science of reducing the amount of data required to represent

More information

EIC Simulations. Thomas Kitching, EIC Weak Lensing & Simulation Working Groups

EIC Simulations. Thomas Kitching, EIC Weak Lensing & Simulation Working Groups EIC Simulations Thomas Kitching A. Amara, S. Bridle, O. Boulade, B. Dobke, A. Fontana, A. Grazian, A. Heavens, A. Kiessling, M. Meneghetti, S. Paulin-Henriksson, J. Rhodes, A. Refregier, A. Taylor, R.

More information

The IRS Flats. Spitzer Science Center

The IRS Flats. Spitzer Science Center Spitzer Science Center Table of Contents The IRS Flats 1 Chapter 1. The Purpose of this Document... 3 Chapter 2.... 4 2.1 Make a finely-spaced map of a star....4 2.2 Simulate an extended source...6 2.3

More information

IXYZ Frank Marshall NASA/GSFC 25 April April 25, 2012 Implementing Portals of the Universe

IXYZ Frank Marshall NASA/GSFC 25 April April 25, 2012 Implementing Portals of the Universe IXYZ Frank Marshall NASA/GSFC 25 April 2012 1 Explorer mission to study Gamma-Ray Bursts (GRBs) Launched in 2004; 2012 Senior Review recommended another 4 years of ops. 3 instruments: Burst Alert Telescope

More information

NAOYUKI TAMURA Subaru Instrument Astronomer Subaru Telescope, NAOJ

NAOYUKI TAMURA Subaru Instrument Astronomer Subaru Telescope, NAOJ FMOS status tt report Science workshop 2011.02.2802 28-03.0202 NAOYUKI TAMURA Subaru Instrument Astronomer Subaru Telescope, NAOJ * Overview * Recent history & current status t * Schedule & future plan

More information

ctools" tutorial Ulisses Barres de Almeida FAPESP High-Energy IAG/USP CTA Advanced School

ctools tutorial Ulisses Barres de Almeida FAPESP High-Energy IAG/USP CTA Advanced School ctools" tutorial Ulisses Barres de Almeida 26.05.2017 FAPESP High-Energy IAG/USP CTA Advanced School ctools" tutorial Ulisses Barres de Almeida DISCLAIMER: I am not a developer! This tutorial is based

More information