Exercise of data reduction for MOIRCS Multi-Object Spectroscopy

Size: px
Start display at page:

Download "Exercise of data reduction for MOIRCS Multi-Object Spectroscopy"

Transcription

1 1D spectrum (Goal for quick workers) Subaru Autumn School 2014, on September 2014 Exercise of data reduction for MOIRCS Multi-Object Spectroscopy Schedule on 25 th Sep. (as a guide) 10:10-12:00 (~2 hours): Step 1 Step 2 13:00-15:00 (2 hours): Step 3 Step 7 15:30-17:30 (2 hours): Step 8 Step 10 Target galaxy: MODS (Detector 1) Standard star: M53735 (Detector 2) Masao Hayashi (NAOJ) and Anna Ferré-Mateu (Subaru) This document is for helping you understand a basic procedure of MOIRCS MOS data reduction. You should read the handbook carefully to get the detail. UNIX commands pwd - shows the current location of the directory cd X - changes current directory to the directory X mkdir X - makes new directory named X ls (-lrt) - lists all the files/directories in the current directory (by date created) cp A B - copies the file/directory A to the file/directory B less file.txt - shows the contents of file.txt sed s/x/y/ file.txt - reads character strings in file.txt and exchanges the strings following the requirement X to the string Y IRAF epar X - edits parameters of the task X.exit - to quit mcsmdp Be careful not to overwrite the existing files when you run a task Be careful to avoid a typo when you type a command, or you may encounter an error message. Data used for this exercise Feel free to ask us when you have any problems. There is no problem with you going ahead rapidly if you can understand the individual processes by reading the handbook and this document by yourself. Raw data Reduced 2D spectrum (Goal for all)

2 Step 1 Preparation for the data reduction Setup your working directory $ mkdir /data/users/youraccount $ mkdir /data/users/youraccount/red (comments) (directory for data reduction) Getting the MOIRCS MOS sample data $ cd /data/users/youraccount/red $ cp /mfst01d/hayshiso/autumn14/mcsmdp_sample.tbz. $ tar jxf MCSMDP_sample.tbz (extraction of the *.tbz file) You can also get the sample data from the website as follows: $ wget Setup the software (MCSMDP) Add the following path in your ~/.bashrc: $ emacs ~/.bashrc (You can use any text editors that you like) source /data/local/subaru/mcsmdp_v1_1_3/etc/mcsmdp.sh To enable the change of ~/.bashrc $ source ~/.bashrc Starting of MCSMDP $ cd /data/users/youraccount/red/mcsmdp_sample/ $ mcsmdp mkiraf? (yes): ( Enter) > mcsmdp (starting of ds9) Checking the data To make sure what kind of the data each frame is > hselect *.fits $I,OBS-MOD,DATA-TYP,OBJECT,DISPERSR,EXPTIME,DET-ID,K_DITCNT yes Keywords of the FITS header (see Table 2.2 in the manual) Making lists of the data processed simultaneously The frames of the same detector and the same nodding position are listed shows the requirement to list > hselect MCSA*.fits $I "OBJECT = 'DOMEFLAT' = 1" > flat1.lst > hselect MCSA*.fits $I "OBJECT = 'DOMEFLAT' = 2" > flat2.lst > hselect MCSA*.fits $I "OBJECT = 'CDFN_MASK02' = 1 & K_DITCNT = 1" > obj1a.lst > hselect MCSA*.fits $I "OBJECT = 'CDFN_MASK02' = 1 & K_DITCNT = 2" > obj1b.lst > hselect MCSA*.fits $I "OBJECT = 'CDFN_MASK02' = 2 & K_DITCNT = 1" > obj2a.lst > hselect MCSA*.fits $I "OBJECT = 'CDFN_MASK02' = 2 & K_DITCNT = 2" > obj2b.lst Check the lists and that they are created properly > ls > less flat1.lst (You should check all of the lists you created) DET-ID: Detector ID, 1 or 2 K_DITCNT: Nth number of nodding, 1 means A position and 2 means B position

3 Step 2 Flat fielding Combining all dome flat data (per Detector 1 or Detector 2) > epar imcombine (see section in the manual and make sure to set the proper parameters) > HK500_CDFN2_Domeflat1.fits > imarith HK500_CDFN2_Domeflat1.fits / HK500_CDFN2_Domeflat1.fits [Important parameters] combine, reject, scale, weight To better understand Why is median taken instead of average? Consider why it is divided by 10000? Try > histogram HK500_CDFN2_Domeflat1.fits Making lists for the resulting files >!sed 's/ (.* )/fl 1/' obj1a.lst > flobj1a.lst >!sed 's/ (.* )/fl 1/' obj1b.lst > flobj1b.lst ( means a backslash) Flat fielding > / > / Check the resulting files! Step 3 Interpolation of bad pixels Getting a bad pixel mask from the database (MDPDB) Name of the bad pixel mask for MCSA***.fits : MCSA***.pl > mkdir BPM (the directory where bad pixel masks for each frames are stored) >!sed 's/ (.* ).fits/bpm / 1.pl/' obj1a.lst > bpm1a.lst (lists of name of output files) >!sed 's/ (.* ).fits/bpm / 1.pl/' obj1b.lst > bpm1b.lst > imcopy mdpdb$bpm/nlbpm1_ff64r.fits,mdpdb$bpm/nlbpm1_ff64r.fits,mdpdb$bpm/nlbpm1_ff64r.fits, (this task must be written in one line) > imcopy mdpdb$bpm/nlbpm1_ff64r.fits,mdpdb$bpm/nlbpm1_ff64r.fits,mdpdb$bpm/nlbpm1_ff64r.fits, (this task must be written in one line) Check the resulting files! $ ls BPM to see the files in the directory BPM Fixing bad pixels specified by the BPM mask >!sed 's/ (.* )/cr 1/' flobj1a.lst > crobj1a.lst (lists of name of output files) >!sed 's/ (.* )/cr 1/' flobj1b.lst > crobj1b.lst (copy the frames before fixing the pixels) > epar fixpix (edit parameters of the task, fixpix) [Important parameters] cinterp, linterp You would notice that there are a lot of hot pixels left. So, there is still a room to improve this process. Check the resulting files! Consider how you can improve this process.

4 Step 4 Cosmic rays This process is skipped this time, because it is not significant for the data we are now analyzing. You should be able to realize this by blinking the several consecutive frames as described in section of the manual. However, in general, it is better to remove cosmic rays on each frame. Step 5 A-B sky subtraction Subtracting the background by comparing two consecutive frames >!sed 's/ (.* )/ab 1/' crobj1a.lst > abobj1a.lst > - slit object A B A-B sky background A B A-B Consider why the positive/negative OH sky lines are still seen in the A-B frames? The sky background may be subtracted better by more frames (i.e, 3 or more) being used in this process. Consider how you can/may improve this process. Step 6 Distortion correction Correcting the spectra from spatial and spectral distortions (especially for those spectra near the edge). You have to use the database files corresponding to the date the data was obtained (see MCSRED for other database dates). >!sed 's/ (.* )/gc 1/' abobj1a.lst > gcobj1a.lst > epar geotran parameter: database mdpdb$geomap/mcsdistcrr1_feb07new.dbs mcsdistcrr1_feb07new.gmp parameter: transforms 2D spectrum Before the correction After the correction Check the resulting files! The process, grism rotation correction, is skipped this time, because it is not significant for the data. Step 7 Extraction of individual 2D spectra > maskplot CDFN_MASK02.mdp image=gcabcrflmcsa fits raw+ >!sed 's/ (.* ).fits/ 1_MODS fits/' gcobj1a.lst > gcmods lst >!sed 's/ (.* ).fits/ 1_MODS _rot.fits/' gcobj1a.lst > gcmods _rot.lst >!sed 's/ (.* )/ 1[*,1755:1840]/' gcobj1a.lst > cut.lst X range: all (you can extract the specific X range as well) Y range: from 1755 pixel to 1840 pixel (check the image visually!) (extract the 2D spectrum of the target object) (Detector 1: wavelength with x, so rotate the frames by 180 degree) wavelength x-coordinates

5 wavelength [A] y-coordinates Step 8 Wavelength calibration Preparing the spectra without the A-B subtraction to use OH sky lines for the calibration First, distortion correction is performed for the frames where the sky is not subtracted yet. >!sed 's/ (.* )/gcsky 1/' crobj1a.lst > gcsky1a.lst mdpdb$geomap/mcsdistcrr1_feb07new.dbs mcsdistcrr1_feb07new.gmp Next, the spectrum is extracted. This is the same process as the step-7, but for A -spectrum, not A-B -spectrum. >!sed 's/ (.* ).fits/ 1_MODS fits/' gcsky1a.lst > gcskymods lst >!sed 's/ (.* ).fits/ 1_MODS _rot.fits/' gcsky1a.lst > gcskymods _rot.lst >!sed 's/ (.* )/ 1[*,1755:1840]/' gcsky1a.lst > cut.lst Compare the spectra with those obtained in the Step-7. Can you see the strong OH sky lines on the 2D spectrum? Identifying the OH sky lines to determine the relation between the X-coordinates and wavelength Please read section of the handbook carefully and understand what is preformed in this process. (The figure 4.1 of the manual is provided in a paper apart.) > epar identify > identify gcskycrflmcsa _mods fits nsum section = middle line fwidth x-coordinates wavelength(x): wavelength as a function of x at a given y-coordinate Extract 1D spectrum along the line In the case that the fitting function is linear, function, order residual x [pixel] Fig. 4.2 of the handbook Command keys used frequently: m, f, l Figure similar to Fig. 4.3 of the handbook Command keys used frequently: d, f [Important parameters] section, nsum, fwidth, function, order Identifying the OH sky lines at different y-coordinates as well At this stage, y-coordinates can correspond to different wavelengths at a given x-coordinate. parameter: reference > epar reidentify > reidentify gcskycrflmcsa _mods fits gcskycrflmcsa _mods fits [Important parameters] trace, step parameter: images

6 y-coordinates 1D spectrum wavelength(x) at y3 nsum step 1D spectrum wavelength(x) at y2 fwidth x-coordinates 1D spectrum wavelength(x) at y1 Deriving the relation between the wavelength and (x,y) coordinates wavelength1(x) at y1 wavelength2(x) at y2 wavelength3(x) at y3 wavelength?(x) at y? wavelength(x, y) > epar fitcoords > fitcoords gcskycrflmcsa _mods [Important parameters] function, xorder, yorder Check the fitting results. Type xxyy and r, or type xxyr and r (see Table 4.3 of the handbook) Transforming the spectrum based on the database of the wavelength as a func. of (x,y) Here, we assume that the relation between wavelength and (x,y) derived for a given frame is applicable to the other frames as well. However, in general, the assumption is not always true. > epar transform >!sed 's/ (.* )/tr 1/' gcmods lst > trmods lst gcskycrflmcsa _mods (the name of the database) To check the transformed spectrum > mdpdisplay gcabcrflmcsa _mods fits frame=1 > mdpdisplay trgcabcrflmcsa _mods fits frame=2

7 Step 9 Removal of residual sky emission Subtracting the residual sky emission by fitting the background >!sed 's/ (.* )/bg 1/' trmods lst > bgmods lst > epar background ( q and then return to exit) [Important parameters] axis, function, order Step 10 Combining all of the spectra Shifting the spectra by the nodding length the nodding length > "$I,K_DITWID" yes (check the nodding length) >!sed 's/ (.* )/sh 1/' bgmods lst > shmods lst (26 = 3 / 0.117, 1pixel=0.117 ) A-B Inverting the negative value into the positive one >!sed 's/ (.* )/ng 1/' shmods lst > ngmods lst > * Combining the spectra > epar imcombine > HK500_MODS A A bg bg A+B A Shift B + B B Combine bg+ng sh Invert ng A B B A Now, you obtained the 2-D spectrum! The reduction is nearly completed.

8 Step 11 Reduction of spectrum of a standard star The spectrum of a standard star is used for flux calibration and telluric correction. Standard star: M53735 The spectrum was taken on the detector 2. ## flat > epar imcombine > HK500_CDFN2_Domeflat2.fits > imarith HK500_CDFN2_Domeflat2.fits / HK500_CDFN2_Domeflat2.fits > imarith MCSA fits / HK500_CDFN2_Domeflat2.fits flmcsa fits > imarith MCSA fits / HK500_CDFN2_Domeflat2.fits flmcsa fits ## bad pixel > imcopy mdpdb$bpm/nlbpm2_ff64r.fits BPM/MCSA pl > imcopy mdpdb$bpm/nlbpm2_ff64r.fits BPM/MCSA pl > imcopy flmcsa fits crflmcsa fits > imcopy flmcsa fits crflmcsa fits > epar fixpix > fixpix crflmcsa fits BPM/MCSA pl > fixpix crflmcsa fits BPM/MCSA pl ## A-B sky subtraction > imarith crflmcsa fits - crflmcsa fits abcrflmcsa fits ## distortion > epar geotran > geotran abcrflmcsa fits gcabcrflmcsa fits mdpdb$geomap/mcsdistcrr2_feb07new.dbs mcsdistcrr2_feb07new.gmp ## extraction of a slit > maskplot CDFN_MASK02.mdp image=gcabcrflmcsa fits raw+ > imcopy gcabcrflmcsa fits[*,902:1022] gcabcrflmcsa _m53735.fits ## wavelengh calibration > geotran crflmcsa fits gcskycrflmcsa fits mdpdb$geomap/mcsdistcrr2_feb07new.dbs mcsdistcrr2_feb07new.gmp > imcopy gcskycrflmcsa fits[*,902:1022] gcskycrflmcsa _m53735.fits > epar identify > identify gcskycrflmcsa _m53735.fits > epar reidentify > reidentify gcskycrflmcsa _m53735.fits gcskycrflmcsa _m53735.fits > epar fitcoords > fitcoords gcskycrflmcsa _m53735 > epar transform > transform gcabcrflmcsa _m53735.fits trgcabcrflmcsa _m53735.fits gccrflmcsa _m53735 > mdpdisplay gcabcrflmcsa _m53735.fits frame=1 > mdpdisplay trgcabcrflmcsa _m53735.fits frame=2 ## residual background subtraction > epar background > background trgcabcrflmcsa _m53735.fits bgtrgcabcrflmcsa _m53735.fits

9 ## A+B combine > hselect bgtrgcabcrflmcsa _m53735.fits "$I,K_DITWID" yes > imshift bgtrgcabcrflmcsa _m53735.fits shbgtrgcabcrflmcsa _m53735.fits 0 43 > imarith shbgtrgcabcrflmcsa _m53735.fits * -1 ngshbgtrgcabcrflmcsa _m53735.fits > epar imcombine > imcombine bgtrgcabcrflmcsa _m53735.fits,ngshbgtrgcabcrflmcsa _m53735.fits HK500_M53735.fits Extracting the 1D spectrum of the standard star Please read section 4.6 of the handbook carefully and understand what is preformed in this task. ## apall > apall HK500_M53735.fits Step 12 Flux calibration and telluric correction Please read section 4.6 of the handbook carefully and understand what is preformed in this process. > epar rescurve > rescurve HK500_M53735.ms.fits resc_cdfn2_hk500.fits > mdpfcalib HK500_MODS fits resc_cdfn2_hk500.fits HK500_MODS fl.fits Detection of emission line The reduction is completed!!

10 Step 13 Data anaysis For example, Measurement of redshift of the target galaxy > splot HK500_MODS fl.fits 41 :nsum 5 the region [*,39:43] is used to plot the spectrum, i.e 5 pixels around 41 w and then x zoom the plot in x w and then c zoom the plot around the cursor k in the left side of emission line and then k in the right profile fitting Consider what is the redshift of this target galaxy, given that this line is Hα? Measurement of luminosity of the emission line Estimation of star formation rate of this galaxy And so on Enjoy the analysis with near-infrared spectra taken by MOIRCS MOS!!

The Italian LBT spectroscopic data reduction pipeline

The Italian LBT spectroscopic data reduction pipeline LBTO 2017 Users' Meeting The Italian LBT spectroscopic data reduction pipeline Alida Marchetti INAF-IASF Milano Firenze, June 20th-23rd reduction pipeline SOME NUMBERS INAF nights 46 Effective observing

More information

Basic PyRAF. Version 2.0 July Space Telescope Science Institute 3700 San Martin Drive Baltimore, Maryland 21218

Basic PyRAF. Version 2.0 July Space Telescope Science Institute 3700 San Martin Drive Baltimore, Maryland 21218 Version 2.0 July 2014 Basic PyRAF Space Telescope Science Institute 3700 San Martin Drive Baltimore, Maryland 21218 Operated by the Association of Universities for Research in Astronomy, Inc., for the

More information

Some simple functions in IRAF. and how to flatten frames

Some simple functions in IRAF. and how to flatten frames Some simple functions in IRAF and how to flatten frames On the work stations in the computer lab we will set up the standard Image Reduction and Analysis Facility (IRAF) for each user by having each user

More information

FIFI-LS: Basic Cube Analysis using SOSPEX

FIFI-LS: Basic Cube Analysis using SOSPEX FIFI-LS: Basic Cube Analysis using SOSPEX Date: 1 Oct 2018 Revision: - CONTENTS 1 INTRODUCTION... 1 2 INGREDIENTS... 1 3 INSPECTING THE CUBE... 3 4 COMPARING TO A REFERENCE IMAGE... 5 5 REFERENCE VELOCITY

More information

X shooter pipeline reduc1ons. In 7 (x3) easy steps

X shooter pipeline reduc1ons. In 7 (x3) easy steps X shooter pipeline reduc1ons In 7 (x3) easy steps Cascade X shooter headers, tools Example Run chain(vis) Overview Differences VIS/UVB/NIR chains Examples Outputs Observing strategy : To nod or not to

More information

HESP PIPELINE v. 1.0

HESP PIPELINE v. 1.0 HESP PIPELINE v. 1.0 Installation and Usage Arun Surya 20/06/2017 1. INSTALLATION The HESP pipeline installation zip file can be downloaded from, https://www.iiap.res.in/hesp/hesp_pipeline.zip. The zip

More information

BE CAREFUL! The Summer Research Student s Guide to UNIX

BE CAREFUL! The Summer Research Student s Guide to UNIX BE CAREFUL! The Summer Research Student s Guide to UNIX Luke Leisman adapted from Andrew Butler June 2011 This is a guide designed to help summer researchers navigate the complexities of using a unix/linux

More information

Spectroscopy techniques II. Danny Steeghs

Spectroscopy techniques II. Danny Steeghs Spectroscopy techniques II Danny Steeghs Conducting long-slit spectroscopy Science goals must come first, what are the resolution and S/N requirements? Is there a restriction on exposure time? Decide on

More information

Using IRAF in Swain West 311

Using IRAF in Swain West 311 Using IRAF in Swain West 311 About IRAF: The IRAF software package (Image Reduction and Analysis Facility) was developed at the National Optical Astronomy Observatories for use with astronomical data in

More information

7.3 ACS/WFC: Optimizing the Image Alignment for Multiple Visits

7.3 ACS/WFC: Optimizing the Image Alignment for Multiple Visits ACS/WFC: Optimizing the Image Alignment for Multiple Visits 186 7.3 ACS/WFC: Optimizing the Image Alignment for Multiple Visits Introduction Three ACS/WFC images of a crowded stellar field, obtained at

More information

NIFS Data Reduction. Richard McDermid. Gemini Data Reduction Workshop Tucson, July 2010

NIFS Data Reduction. Richard McDermid. Gemini Data Reduction Workshop Tucson, July 2010 NIFS Data Reduction Richard McDermid Gemini Data Reduction Workshop Tucson, July 2010 NIFS Spaxel IFU Techniques: Image Slicer MIRI - JWST Pros: Compact design High throughput Easy cryogenics Cons: Difficult

More information

Data products. Dario Fadda (USRA) Pipeline team Bill Vacca Melanie Clarke Dario Fadda

Data products. Dario Fadda (USRA) Pipeline team Bill Vacca Melanie Clarke Dario Fadda Data products Dario Fadda (USRA) Pipeline team Bill Vacca Melanie Clarke Dario Fadda Pipeline (levels 1 à 2) The pipeline consists in a sequence of modules. For each module, files are created and read

More information

Guide to the CTIO Slit Spectra Reduction Task SPECPROC

Guide to the CTIO Slit Spectra Reduction Task SPECPROC Guide to the CTIO Slit Spectra Reduction Task SPECPROC Francisco Valdes IRAF Group - Central Computer Services National Optical Astronomy Observatories September 1990 ABSTRACT The IRAF specred package

More information

OU-VIS: Status. H.J. McCracken. and the OU-VIS team

OU-VIS: Status. H.J. McCracken. and the OU-VIS team OU-VIS: Status H.J. McCracken and the OU-VIS team What is OU-VIS for? From raw VIS data, create the algorithms and software to produce calibrated images suitable for cosmic shear measurement Implications:

More information

zap Documentation Release 1.0.dev86 Kurt Soto

zap Documentation Release 1.0.dev86 Kurt Soto zap Documentation Release 1.0.dev86 Kurt Soto February 03, 2016 Contents 1 Installation 3 1.1 Requirements............................................... 3 1.2 Steps...................................................

More information

Using External SExtractor (v2.8.6) Catalogs from *_crclean.fits Images to Align ACS/WFC Images With Drizzlepac/Tweakreg

Using External SExtractor (v2.8.6) Catalogs from *_crclean.fits Images to Align ACS/WFC Images With Drizzlepac/Tweakreg Using External SExtractor (v2.8.6) Catalogs from *_crclean.fits Images to Align ACS/WFC Images With Drizzlepac/Tweakreg Introduction* * *!!! This!example!describes!the!alignment!of!four!ACS/WFC!images!that!contain!a!!

More information

Reducing LRIS longslit spectra in IRAF

Reducing LRIS longslit spectra in IRAF Reducing LRIS longslit spectra in IRAF Varun B. Bhalerao Department of Astronomy, California Institute of Technology, Pasadena, CA 91125, USA varun@astro.caltech.edu ABSTRACT The word IRAF scares me to

More information

JWST Pipeline & Data Products

JWST Pipeline & Data Products JWST Pipeline & Data Products Stage 1: Ramps-to-Slopes Karl D. Gordon JWST Calibration WG Lead Space Telescope Sci. Inst. Baltimore, MD, USA Stage 2: Calibrated Slopes Stage 3: Ensemble Processing Star

More information

EMBO Practical Course on Image Processing for Cryo EM 1-11 September 2015

EMBO Practical Course on Image Processing for Cryo EM 1-11 September 2015 EMBO Practical Course on Image Processing for Cryo EM 1-11 September 2015 Practical 4: Optional part for experienced IMOD users - Reconstructing a cryo tomogram and sub-tomogram averaging of GroEL IMOD

More information

Galaxie Photodiode Array Software

Galaxie Photodiode Array Software Varian, Inc. 2700 Mitchell Drive Walnut Creek, CA 94598-1675/USA Galaxie Photodiode Array Software User s Guide Varian, Inc. 2002-2006 03-914950-00:6 Table of Contents Introduction... 3 General... 3 PDA

More information

A more generalized coordinate transformation approach for grisms

A more generalized coordinate transformation approach for grisms Instrument Science Report WFC3 2017-01 A more generalized coordinate transformation approach for grisms Nor Pirzkal, R. Ryan January 5, 2017 ABSTRACT Current HST configuration files for the NICMOS, ACS

More information

Basic Use of SExtractor Catalogs With TweakReg - I

Basic Use of SExtractor Catalogs With TweakReg - I Instrument Science Report ACS 2015-04 Basic Use of SExtractor Catalogs With TweakReg - I Ray A. Lucas and Bryan Hilbert May 27, 2015 ABSTRACT We describe using external SExtractor (v2.8.6) catalogs from

More information

Introduction to IRAF

Introduction to IRAF Introduction to IRAF Guillermo Damke (TA) Steve Majewski (Course instructor) ASTR 5110 Fall 2011 University of Virginia What is IRAF? Image Reduction an Analysis Facility, a general purpose software system

More information

Low Resolu+on Op+cal Spectroscopy. Tom Matheson

Low Resolu+on Op+cal Spectroscopy. Tom Matheson Low Resolu+on Op+cal Spectroscopy Tom Matheson How to get from here To here: Why Spectroscopy? Composi+on/abundances Velocity (radial, dispersion, rota+on curves) Temperature Excita+on mechanisms Density/pressure

More information

Spectral Extraction of Extended Sources Using Wavelet Interpolation

Spectral Extraction of Extended Sources Using Wavelet Interpolation The 2005 HST Calibration Workshop Space Telescope Science Institute, 2005 A. M. Koekemoer, P. Goudfrooij, and L. L. Dressel, eds. Spectral Extraction of Extended Sources Using Wavelet Interpolation Paul

More information

Lab #8: Introduction to UNIX and GMT

Lab #8: Introduction to UNIX and GMT Geol 335.3 1 Lab #8: Introduction to UNIX and GMT In this lab, you ll familiarize yourself with some of the leading components of scientific computing: UNIX operating system, and a free, open-source, GIS/plotting

More information

Data Processing Status

Data Processing Status Data Processing Status William Vacca Assoc. Director, Science Data Systems USRA-SOFIA SOFIA Users Group Meeting #10 November 2016 SOFIA Pipeline Products Defined in the Data Processing Plan for SOFIA SIs

More information

AN INTRODUCTION TO UNIX

AN INTRODUCTION TO UNIX AN INTRODUCTION TO UNIX Paul Johnson School of Mathematics September 18, 2011 OUTLINE 1 INTRODUTION Unix Common Tasks 2 THE UNIX FILESYSTEM Moving around Copying, deleting File Permissions 3 SUMMARY OUTLINE

More information

OM data reduction using SAS

OM data reduction using SAS XMM-Newton Optical-UV Monitor: data reduction OM data reduction using SAS Antonio Talavera XMM-Newton Science Operation Centre, ESAC, ESA Simon Rosen, Chris Brindle & Vladimir Yershov MSSL, UCL, UK OM

More information

Introduction to IRAF. v5.0 Trey Wenger Guillermo Damke Steve Majewski. ASTR 5110 Fall 2015 University of Virginia

Introduction to IRAF. v5.0 Trey Wenger Guillermo Damke Steve Majewski. ASTR 5110 Fall 2015 University of Virginia Introduction to IRAF v5.0 Trey Wenger Guillermo Damke Steve Majewski ASTR 5110 Fall 2015 University of Virginia What is IRAF? Image Reduction an Analysis Facility, a general purpose software system for

More information

Long-slit data reduction: some advices. From: Alexei Kniazev

Long-slit data reduction: some advices. From: Alexei Kniazev Long-slit data reduction: some advices From: Alexei Kniazev The plan of this tedious talk 1. Very short introduction 2. Some advices 3. One example of the system of shell scripts for the long-slit reduction

More information

Overview of Post-BCD Processing

Overview of Post-BCD Processing Overview of Post-BCD Processing Version 1.1 Release Date: January 7, 2004 Issued by the Spitzer Science Center California Institute of Technology Mail Code 314-6 1200 E. California Blvd Pasadena, California

More information

GPI, Exercise #1. Part 1

GPI, Exercise #1. Part 1 GPI, Exercise #1 In this exercise you will gain some experience with GPI data and the basic reduction steps. Start by reading the three papers related to GPI s commissioning, first- light and observations

More information

Document Number: SC2/FTS/SOF/020

Document Number: SC2/FTS/SOF/020 SCUBA-2 FTS Project Office University of Lethbridge Physics Department 4401 University Drive Lethbridge, Alberta CANADA T1K 3M4 Tel: 1-403-329-2771 Fax: 1-403-329-2057 Email: brad.gom@uleth.ca WWW: http://research.uleth.ca/scuba2/

More information

Reduc&on of spectra from ground-based telescopes

Reduc&on of spectra from ground-based telescopes Reduc&on of spectra from ground-based telescopes Julia de León InsAtuto de AstroDsica de Canarias - IAC November 15, 2016. Tuesday 15:00 17:30 The composiaon of asteroids is inferred by the study of the

More information

EE368 Project Report CD Cover Recognition Using Modified SIFT Algorithm

EE368 Project Report CD Cover Recognition Using Modified SIFT Algorithm EE368 Project Report CD Cover Recognition Using Modified SIFT Algorithm Group 1: Mina A. Makar Stanford University mamakar@stanford.edu Abstract In this report, we investigate the application of the Scale-Invariant

More information

Software tools for ACS: Geometrical Issues and Overall Software Tool Development

Software tools for ACS: Geometrical Issues and Overall Software Tool Development Software tools for ACS: Geometrical Issues and Overall Software Tool Development W.B. Sparks, R. Jedrzejewski, M. Clampin, R.C. Bohlin. June 8, 2000 ABSTRACT We describe the issues relating to internal

More information

Introduction To. Barry Grant

Introduction To. Barry Grant Introduction To Barry Grant bjgrant@umich.edu http://thegrantlab.org Working with Unix How do we actually use Unix? Inspecting text files less - visualize a text file: use arrow keys page down/page up

More information

VERY LARGE TELESCOPE 3D Visualization Tool Cookbook

VERY LARGE TELESCOPE 3D Visualization Tool Cookbook European Organisation for Astronomical Research in the Southern Hemisphere VERY LARGE TELESCOPE 3D Visualization Tool Cookbook VLT-SPE-ESO-19500-5652 Issue 1.0 10 July 2012 Prepared: Mark Westmoquette

More information

JWST Pipeline & Data Products

JWST Pipeline & Data Products JWST Pipeline & Data Products Stage 1: Ramps-to-Slopes Karl D. Gordon JWST Calibration WG Lead Space Telescope Sci. Inst. Baltimore, MD, USA Stage 2: Calibrated Slopes Stage 3: Ensemble Processing 18 May

More information

From multiple images to catalogs

From multiple images to catalogs Lecture 14 From multiple images to catalogs Image reconstruction Optimal co-addition Sampling-reconstruction-resampling Resolving faint galaxies Automated object detection Photometric catalogs Deep CCD

More information

Using FTOOLS and Fv for Data Analysis: Chandra

Using FTOOLS and Fv for Data Analysis: Chandra Using FTOOLS and Fv for Data Analysis: Chandra This tutorial is designed to build upon your current knowledge of FTOOLS and to also provide an introduction to the imaging program Fv. It is strongly recommended

More information

Using the Zoo Workstations

Using the Zoo Workstations Using the Zoo Workstations Version 1.86: January 16, 2014 If you ve used Linux before, you can probably skip many of these instructions, but skim just in case. Please direct corrections and suggestions

More information

From Here to There: Applications of the Distance Formula

From Here to There: Applications of the Distance Formula From Here to There: Applications of the Distance Formula Activity 14 Many problems in applied mathematics involve finding the distance between points. If we know the coordinates of a pair of points (x

More information

Working With Unix. Scott A. Handley* September 15, *Adapted from UNIX introduction material created by Dr. Julian Catchen

Working With Unix. Scott A. Handley* September 15, *Adapted from UNIX introduction material created by Dr. Julian Catchen Working With Unix Scott A. Handley* September 15, 2014 *Adapted from UNIX introduction material created by Dr. Julian Catchen What is UNIX? An operating system (OS) Designed to be multiuser and multitasking

More information

Introduction to Raman spectroscopy measurement data processing using Igor Pro

Introduction to Raman spectroscopy measurement data processing using Igor Pro Introduction to Raman spectroscopy measurement data processing using Igor Pro This introduction is intended to minimally guide beginners to processing Raman spectroscopy measurement data, which includes

More information

PROCESSING 2D SPECTRA USING VNMRJ JB Stothers NMR Facility Materials Science Addition 0216 Department of Chemistry Western University

PROCESSING 2D SPECTRA USING VNMRJ JB Stothers NMR Facility Materials Science Addition 0216 Department of Chemistry Western University PROCESSING 2D SPECTRA USING VNMRJ JB Stothers NMR Facility Materials Science Addition 0216 Department of Chemistry Western University 1. INTRODUCTION...1 1.1. About this Worksheet... 1 1.2. A Very Brief

More information

Zahner 12/2011. Light Spectra Display and Analysis

Zahner 12/2011. Light Spectra Display and Analysis Zahner 12/2011 Light Spectra Display and Analysis Light Spectra Analysis -2-1. Introduction 3 2. Light Spectra Analysis Graphic Software 4 2.1. Startup...4 2.2. Export Functions...6 2.2.1. Export ASCII

More information

Setup Procedure for NEESPOP prior to Testing

Setup Procedure for NEESPOP prior to Testing Setup Procedure for NEESPOP prior to Testing The following instructions describe the procedure to send data to the RDV (Remote Data Viewer). 1. Camera Setup 1.1. Put cameras on tripods in the desired location.

More information

Lecture 01 - Working with Linux Servers and Git

Lecture 01 - Working with Linux Servers and Git Jan. 9, 2018 Working with Linux Servers: SSH SSH (named for Secure SHell) is a protocol commonly used for remote login. You can use it from a command line interface with the following syntax ssh username@server_url

More information

Introduction. Overview of 201 Lab and Linux Tutorials. Stef Nychka. September 10, Department of Computing Science University of Alberta

Introduction. Overview of 201 Lab and Linux Tutorials. Stef Nychka. September 10, Department of Computing Science University of Alberta 1 / 12 Introduction Overview of 201 Lab and Linux Tutorials Stef Nychka Department of Computing Science University of Alberta September 10, 2007 2 / 12 Can you Log In? Should be same login and password

More information

NIR INSTRUMENT FOR GLAO. Takashi Hattori, Iwata Ikuru (Subaru Telescope)

NIR INSTRUMENT FOR GLAO. Takashi Hattori, Iwata Ikuru (Subaru Telescope) NIR INSTRUMENT FOR GLAO Takashi Hattori, Iwata Ikuru (Subaru Telescope) Instrument for GLAO Need for wide field NIR instrument GLAO : good image quality over 15 FoV cf. current Cs NIR instrument (MOIRCS)

More information

PERFORMANCE REPORT ESTEC. The spectral calibration of JWST/NIRSpec: accuracy of the instrument model for the ISIM-CV3 test cycle

PERFORMANCE REPORT ESTEC. The spectral calibration of JWST/NIRSpec: accuracy of the instrument model for the ISIM-CV3 test cycle ESTEC European Space Research and Technology Centre Keplerlaan 1 2201 AZ Noordwijk The Netherlands www.esa.int PERFORMANCE REPORT The spectral calibration of JWST/NIRSpec: accuracy of the instrument model

More information

SPICE User s Guide. SPitzer IRS Custom Extractor. Spitzer Heritage Archive Documentation. SPICE GUI version

SPICE User s Guide. SPitzer IRS Custom Extractor. Spitzer Heritage Archive Documentation. SPICE GUI version SPitzer IRS Custom Extractor Spitzer Heritage Archive Documentation SPICE GUI version 2.3.1+ Contents Chapter 1. Introduction... 4 1.1 Important Documentation...4 1.2 Getting Started...5 1.3 IRS Pipeline

More information

simx: A General-Purpose X-ray Event Simulator Randall Smith

simx: A General-Purpose X-ray Event Simulator Randall Smith simx: A General-Purpose X-ray Event Simulator Randall Smith Download simx from http://hea-www.harvard.edu/simx Install via: (requires c compiler) unix% tar -zxf simx-2.4.2.tar.gz unix% cd simx-2.4.2 unix%./configure

More information

Combine Bias. PACKAGE = images.immatch TASK = imcombine

Combine Bias. PACKAGE = images.immatch TASK = imcombine Combine Bias PACKAGE = images.immatch TASK = imcombine input = bi*.fit List of images to combine output = zero.fit List of output images (rejmask= ) List of rejection masks (optional) (plfile = ) List

More information

Unix/Linux Primer. Taras V. Pogorelov and Mike Hallock School of Chemical Sciences, University of Illinois

Unix/Linux Primer. Taras V. Pogorelov and Mike Hallock School of Chemical Sciences, University of Illinois Unix/Linux Primer Taras V. Pogorelov and Mike Hallock School of Chemical Sciences, University of Illinois August 25, 2017 This primer is designed to introduce basic UNIX/Linux concepts and commands. No

More information

CanariCam: Polarimetry & Data Reduction

CanariCam: Polarimetry & Data Reduction Acknowledgements CanariCam: Polarimetry & Data Reduction Chris Packham, Charlie Telesco & The CanariCam Team University of Florida Text heavily drawn from Polpack Starlink manual by Berry & Gledhill Longevity

More information

Filter-Dependent and Geometric Distortions

Filter-Dependent and Geometric Distortions Updates to the WFC3/UVIS Filter-Dependent and Geometric Distortions C. Martlin, V. Kozhurina-Platais, M. McKay, E. Sabbi. July 11, 2018 Abstract Individual geometric distortion solutions and fine-scale

More information

Create a PSF CIAO 3.4 Science Threads

Create a PSF CIAO 3.4 Science Threads Create a PSF CIAO 3.4 Science Threads Create a PSF 1 Table of Contents Create a PSF CIAO 3.4 The PSF Libraries Get Started Characterizing the Source What is the energy of the source? (dmextract) How far

More information

CHAPTER 3 IMAGE ENHANCEMENT IN THE SPATIAL DOMAIN

CHAPTER 3 IMAGE ENHANCEMENT IN THE SPATIAL DOMAIN CHAPTER 3 IMAGE ENHANCEMENT IN THE SPATIAL DOMAIN CHAPTER 3: IMAGE ENHANCEMENT IN THE SPATIAL DOMAIN Principal objective: to process an image so that the result is more suitable than the original image

More information

Getting Started With Cpsc (Advanced) Hosted by Jarrett Spiker

Getting Started With Cpsc (Advanced) Hosted by Jarrett Spiker Getting Started With Cpsc (Advanced) Hosted by Jarrett Spiker Advanced? - Assuming that everyone has done at least a year of CPSC already, or has a strong base knowledge. - If not, there is a Beginners

More information

Advanced Image Combine Techniques

Advanced Image Combine Techniques Advanced Image Combine Techniques Ray Gralak November 16 2008 AIC 2008 Important Equation 1 of 22 (Joke! ) Outline Some History The Imager s Enemies artifacts! The Basic Raw Image Types Image Calibration

More information

SPICAM Archive Tutorial. Principal Investigator : J.L. Bertaux Archive Manager : A. Reberac

SPICAM Archive Tutorial. Principal Investigator : J.L. Bertaux Archive Manager : A. Reberac SPICAM Archive Tutorial Principal Investigator : J.L. Bertaux Archive Manager : A. Reberac 1 SPICAM Archive Tutorial SPICAM Instrument SPICAM data levels/products SPICAM Archive volume set organization

More information

Extracting Extended Source Spectra and Responses

Extracting Extended Source Spectra and Responses Extracting Extended Source Spectra and Responses CIAO 3.4 Science Threads Extracting Extended Source Spectra and Responses 1 Table of Contents Getting Started CALDB 3.3.0.1 patch Using Consistent Calibration:

More information

Keyboard Controller. Users' Manual

Keyboard Controller. Users' Manual Keyboard Controller Users' Manual 1 Contents 1. Summary ------------------------------------------------------------------------------------------------------------------- 3 1.1 Notice ----------------------------------------------------------------------------------------------------------------------

More information

XDGNIRS v2.0. Rachel Mason & Omaira González-Martín. Contents. 1 Introduction 2. 2 Code, Access and Requirements 4. 3 Inspecting Your Data 6

XDGNIRS v2.0. Rachel Mason & Omaira González-Martín. Contents. 1 Introduction 2. 2 Code, Access and Requirements 4. 3 Inspecting Your Data 6 XDGNIRS v2.0 Rachel Mason & Omaira González-Martín November 6, 2013 Contents 1 Introduction 2 2 Code, Access and Requirements 4 2.1 The Code..................................... 4 2.2 The Data.....................................

More information

Southern African Large Telescope

Southern African Large Telescope Southern African Large Telescope Title: Author(s): MIDAS automatic pipeline for HRS data Alexei Kniazev Doc. number: HRS0000006 Version: 1.0 Date: November 10, 2016 Keywords: HRS, Pipeline Approved: Petri

More information

Data Processing for SUBARU Telescope using GRID

Data Processing for SUBARU Telescope using GRID Data Processing for SUBARU Telescope using GRID Y. Shirasaki M. Tanaka S. Kawanomoto S. Honda M. Ohishi Y. Mizumoto National Astronomical Observatory of Japan, 2-21-1, Osawa, Mitaka, Tokyo 181-8588, Japan

More information

/23/2004 TA : Jiyoon Kim. Recitation Note 1

/23/2004 TA : Jiyoon Kim. Recitation Note 1 Recitation Note 1 This is intended to walk you through using STATA in an Athena environment. The computer room of political science dept. has STATA on PC machines. But, knowing how to use it on Athena

More information

CRISM (Compact Reconnaissance Imaging Spectrometer for Mars) on MRO. Calibration Upgrade, version 2 to 3

CRISM (Compact Reconnaissance Imaging Spectrometer for Mars) on MRO. Calibration Upgrade, version 2 to 3 CRISM (Compact Reconnaissance Imaging Spectrometer for Mars) on MRO Calibration Upgrade, version 2 to 3 Dave Humm Applied Physics Laboratory, Laurel, MD 20723 18 March 2012 1 Calibration Overview 2 Simplified

More information

arxiv: v1 [astro-ph.im] 2 May 2018

arxiv: v1 [astro-ph.im] 2 May 2018 Research in Astronomy and Astrophysics manuscript no. (L A TEX: ms-raa-- R.tex; printed on May, ; :) arxiv:.v [astro-ph.im] May Investigating the Efficiency of the Beijing Faint Object Spectrograph and

More information

ALMA Science Pipeline Quickstart Guide

ALMA Science Pipeline Quickstart Guide Doc 2.13, ver. 1.0 September 2014 ALMA Science Pipeline Quickstart Guide ALMA, an international astronomy facility, is a partnership of Europe, North America and East Asia in cooperation with the Republic

More information

ENVI Classic Tutorial: Multispectral Analysis of MASTER HDF Data 2

ENVI Classic Tutorial: Multispectral Analysis of MASTER HDF Data 2 ENVI Classic Tutorial: Multispectral Analysis of MASTER HDF Data Multispectral Analysis of MASTER HDF Data 2 Files Used in This Tutorial 2 Background 2 Shortwave Infrared (SWIR) Analysis 3 Opening the

More information

Virtual Machine. Linux flavor : Debian. Everything (except slides) preinstalled for you. https://www.virtualbox.org/

Virtual Machine. Linux flavor : Debian. Everything (except slides) preinstalled for you. https://www.virtualbox.org/ Virtual Machine Anyone have problems installing it? VM: Virtual Box - allows you to run a different operating system within the current operating system of your machine. https://www.virtualbox.org/ Linux

More information

CHEM5302 Fall 2015: Introduction to Maestro and the command line

CHEM5302 Fall 2015: Introduction to Maestro and the command line CHEM5302 Fall 2015: Introduction to Maestro and the command line Ronald Levy October 29, 2015 1 Introduction As this course has evolved through the years, the landscape of computational hardware and software

More information

The STScI STIS Pipeline VII: Extraction of 1-D Spectra

The STScI STIS Pipeline VII: Extraction of 1-D Spectra STIS Instrument Science Report 97-02 The STScI STIS Pipeline VII: Extraction of 1-D Spectra Steve Hulbert, Phil Hodge, and Ivo Busko February 1997 ABSTRACT This report discusses the extraction of 1-D spectra

More information

Getting Started With UNIX Lab Exercises

Getting Started With UNIX Lab Exercises Getting Started With UNIX Lab Exercises This is the lab exercise handout for the Getting Started with UNIX tutorial. The exercises provide hands-on experience with the topics discussed in the tutorial.

More information

ENVI Tutorial: Introduction to ENVI

ENVI Tutorial: Introduction to ENVI ENVI Tutorial: Introduction to ENVI Table of Contents OVERVIEW OF THIS TUTORIAL...1 GETTING STARTED WITH ENVI...1 Starting ENVI...1 Starting ENVI on Windows Machines...1 Starting ENVI in UNIX...1 Starting

More information

ADC Figure of Merit. Introduction:

ADC Figure of Merit. Introduction: ADC Figure of Merit Introduction: The improved performance LRIS in spectroscopic mode with the ADC (over the no-adc case) has many factors. Concentrating solely on spectral throughput, those factors that

More information

TECHNICAL REPORT. Title: The Coordinate Systems of NIRISS Doc #: Date: Rev: Authors: André R. Martel Phone:

TECHNICAL REPORT. Title: The Coordinate Systems of NIRISS Doc #: Date: Rev: Authors: André R. Martel Phone: When there is a discrepancy between the information in this technical report and information in JDox, assume JDox is correct. TECHNICAL REPORT Title: The Coordinate Systems of NIRISS Doc #: Date: Rev:

More information

PyMOL is a molecular visualization tool. There are many such tools available both commercially and publicly available:

PyMOL is a molecular visualization tool. There are many such tools available both commercially and publicly available: Workshop #1: PyMOL PyMOL is a molecular visualization tool. There are many such tools available both commercially and publicly available: PyMOL (www.pymol.org) Swiss-PdbViewer (spdbv.vital-it.ch) RasMol

More information

Introduction. SSH Secure Shell Client 1

Introduction. SSH Secure Shell Client 1 SSH Secure Shell Client 1 Introduction An SSH Secure Shell Client is a piece of software that allows a user to do a number of functions. Some of these functions are: file transferring, setting permissions,

More information

PINGSoft 2: an IDL Integral Field Spectroscopy Software

PINGSoft 2: an IDL Integral Field Spectroscopy Software arxiv:1211.0277v1 [astro-ph.im] 1 Nov 2012 PINGSoft 2: an IDL Integral Field Spectroscopy Software F. Fabián Rosales-Ortega Departamento de Física Teórica, Universidad Autónoma de Madrid, Spain Instituto

More information

Introduction to Digital Image Processing

Introduction to Digital Image Processing Fall 2005 Image Enhancement in the Spatial Domain: Histograms, Arithmetic/Logic Operators, Basics of Spatial Filtering, Smoothing Spatial Filters Tuesday, February 7 2006, Overview (1): Before We Begin

More information

Interactive comment on Quantification and mitigation of the impact of scene inhomogeneity on Sentinel-4 UVN UV-VIS retrievals by S. Noël et al.

Interactive comment on Quantification and mitigation of the impact of scene inhomogeneity on Sentinel-4 UVN UV-VIS retrievals by S. Noël et al. Atmos. Meas. Tech. Discuss., www.atmos-meas-tech-discuss.net/5/c741/2012/ Author(s) 2012. This work is distributed under the Creative Commons Attribute 3.0 License. Atmospheric Measurement Techniques Discussions

More information

Optical Distortion and its Representation

Optical Distortion and its Representation Optical Distortion and its Representation Frank Masci August 7, 001 Frank Masci (1) Aims Due to off-axis reflective elements, there will be some degree of distortion (change) in pixel scale across the

More information

Interactive comment on Quantification and mitigation of the impact of scene inhomogeneity on Sentinel-4 UVN UV-VIS retrievals by S. Noël et al.

Interactive comment on Quantification and mitigation of the impact of scene inhomogeneity on Sentinel-4 UVN UV-VIS retrievals by S. Noël et al. Atmos. Meas. Tech. Discuss., 5, C741 C750, 2012 www.atmos-meas-tech-discuss.net/5/c741/2012/ Author(s) 2012. This work is distributed under the Creative Commons Attribute 3.0 License. Atmospheric Measurement

More information

Astronomy IRAF Tutorial for Exercise I Introduction

Astronomy IRAF Tutorial for Exercise I Introduction Astronomy 480 - IRAF Tutorial for Exercise I Introduction Learning Goals Successfully start and run IRAF Demonstrate fluency with IRAF packages and tasks Determine characteristics of a CCD used at Kitt

More information

Introduction to Linux. Roman Cheplyaka

Introduction to Linux. Roman Cheplyaka Introduction to Linux Roman Cheplyaka Generic commands, files, directories What am I running? ngsuser@ubuntu:~$ cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=16.04 DISTRIB_CODENAME=xenial DISTRIB_DESCRIPTION="Ubuntu

More information

Tutorial 1: Unix Basics

Tutorial 1: Unix Basics Tutorial 1: Unix Basics To log in to your ece account, enter your ece username and password in the space provided in the login screen. Note that when you type your password, nothing will show up in the

More information

MonoVista CRS+ Raman Microscopes

MonoVista CRS+ Raman Microscopes MonoVista CRS+ Benefits Deep UV to NIR wavelength range Up to 4 integrated multi-line lasers plus port for large external lasers Dual beam path for UV and VIS/NIR Motorized Laser selection Auto Alignment

More information

Unix - Basics Course on Unix and Genomic Data Prague, January 2017

Unix - Basics Course on Unix and Genomic Data Prague, January 2017 Unix - Basics Course on Unix and Genomic Data Prague, January 2017 Libor Mořkovský, Václav Janoušek, Anastassiya Zidkova, Anna Přistoupilová, Filip Sedlák http://ngs-course.readthedocs.org/en/praha-january-2017/

More information

27-Sep CSCI 2132 Software Development Lab 4: Exploring bash and C Compilation. Faculty of Computer Science, Dalhousie University

27-Sep CSCI 2132 Software Development Lab 4: Exploring bash and C Compilation. Faculty of Computer Science, Dalhousie University Lecture 4 p.1 Faculty of Computer Science, Dalhousie University CSCI 2132 Software Development Lab 4: Exploring bash and C Compilation 27-Sep-2017 Location: Goldberg CS Building Time: Wednesday, 16:05

More information

Shell Programming Systems Skills in C and Unix

Shell Programming Systems Skills in C and Unix Shell Programming 15-123 Systems Skills in C and Unix The Shell A command line interpreter that provides the interface to Unix OS. What Shell are we on? echo $SHELL Most unix systems have Bourne shell

More information

ALMA Science Pipeline Quickstart Guide

ALMA Science Pipeline Quickstart Guide Doc 2.13, ver. 2.0 August 2015 ALMA Science Pipeline Quickstart Guide Pipeline CASA 4.3.1 ALMA, an international astronomy facility, is a partnership of Europe, North America and East Asia in cooperation

More information

Alpy 600 Mixed Mode Calibration

Alpy 600 Mixed Mode Calibration Alpy 600 Mixed Mode Calibration Paul Luckas October, 2016 1 Introduction Alpy 600 Calibration using the mixed mode involves the following basic steps. 1. Use a sequence of spectra from a type A or B star

More information

Radiance, Irradiance and Reflectance

Radiance, Irradiance and Reflectance CEE 6100 Remote Sensing Fundamentals 1 Radiance, Irradiance and Reflectance When making field optical measurements we are generally interested in reflectance, a relative measurement. At a minimum, measurements

More information

PHYS-4007/5007: Computational Physics. Using IDL in Command Line Mode

PHYS-4007/5007: Computational Physics. Using IDL in Command Line Mode PHYS-4007/5007: Computational Physics Using IDL in Command Line Mode 1 Editing a New IDL Procedure File There are two ways to run IDL under Linux: (1) the IDL Workbench Graphic User Interface (GUI) and

More information

Simulation and Auxiliary Data Management

Simulation and Auxiliary Data Management Simulation and Auxiliary Data Management Paola Sartoretti GEPI Meudon Simulation/Test and Auxiliary data! Test data are the simulated RVS data needed to test the data reduction algorithms. They are produced

More information