Skip to content

Instantly share code, notes, and snippets.

@cjordan
Last active November 16, 2021 12:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cjordan/d8ca8a0c1e73be5123e90b4000abf772 to your computer and use it in GitHub Desktop.
Save cjordan/d8ca8a0c1e73be5123e90b4000abf772 to your computer and use it in GitHub Desktop.
rust fits file stuff
Helping /u/exoplanet_hunter with using Rust to read a fits file.
I put the supplied filename "harps592_S1D_A.fits" at the root of a new Cargo project ("cargo new"), then ran "cargo run".
Checking against fits viewer (available as "fv") suggests that this is working.
[package]
name = "fits"
version = "0.1.0"
edition = "2021"
[dependencies]
fitsio = "0.19.0"
fitsio-sys = "^0" # This version matches what is used by "fitsio"
use std::ffi::CString;
use fitsio::{errors::Error, tables::Column, FitsFile};
use fitsio_sys::ffgnxk;
fn main() {
let mut fptr = open_my_fits_file().expect("Couldn't open my fits file");
print_header_keywords(&mut fptr)
.expect("Something went wrong when trying to print header keywords");
print_data_column_names(&mut fptr)
.expect("Something went wrong when trying to print data column names");
print_flux_col(&mut fptr)
.expect("Something went wrong when trying to print the flux data column");
}
// I've given this function an awkward name because the file is opens is
// hard-coded.
fn open_my_fits_file() -> Result<FitsFile, Error> {
FitsFile::open("harps592_S1D_A.fits")
}
fn print_header_keywords(fptr: &mut FitsFile) -> Result<(), Error> {
let _hdu = fptr.hdu(0)?;
println!("Header keywords:");
// This is a bit hardcore because we have to call cfitsio manually.
let mut status = 0;
let inclist = [CString::new("*").unwrap()];
let exclist: [CString; 0] = [];
while status == 0 {
unsafe {
let keyword = CString::from_vec_unchecked(vec![1; 200]).into_raw();
ffgnxk(
fptr.as_raw(), /* I - FITS file pointer */
inclist.as_ptr() as _, /* I - list of included keyword names */
1, /* I - number of names in inclist */
exclist.as_ptr() as _, /* I - list of excluded keyword names */
0, /* I - number of names in exclist */
keyword, /* O - first matching keyword */
&mut status, /* IO - error status */
);
let s = CString::from_raw(keyword)
.to_str()
.expect("Couldn't convert the C string to a Rust string")
.to_string();
println!("{}", s);
}
}
println!();
Ok(())
}
fn print_data_column_names(fptr: &mut FitsFile) -> Result<(), Error> {
let hdu = fptr.hdu(1)?;
println!("Data HDU columns:");
for column in hdu.columns(fptr) {
let col_name = match column {
Column::Int32 { name, .. } => name,
Column::Int64 { name, .. } => name,
Column::Float { name, .. } => name,
Column::Double { name, .. } => name,
Column::String { name, .. } => name,
};
println!("\t{}", col_name);
}
println!();
Ok(())
}
fn print_flux_col(fptr: &mut FitsFile) -> Result<(), Error> {
let hdu = fptr.hdu(1)?;
println!("First 5 fluxes from the 'flux' column:");
let fluxes: Vec<f64> = hdu.read_col(fptr, "flux")?;
println!("{:?}", &fluxes[0..5]);
Ok(())
}
$ cargo run
Compiling fits v0.1.0 (/home/chj/Software/personal/test-rust/fits)
Finished dev [unoptimized + debuginfo] target(s) in 0.77s
Running `target/debug/fits`
Header keywords:
NAXIS = 0 / number of data axes
EXTEND = T / FITS dataset may contain extensions
COMMENT FITS (Flexible Image Transport System) format is defined in 'Astronomy
COMMENT and Astrophysics', volume 376, page 359; bibcode: 2001A&A...376..359H
DATE = '2020-08-25T21:10:10' / file creation date (YYYY-MM-DDThh:mm:ss UT)
VERSION = 120203 / Application parameter value
DWELL = 300000 / Application parameter value
RD_TIME = 0 / Application parameter value
RS_TIME = 383 / Application parameter value
FRM_TYPE= 1 / Application parameter value
NUM_EXPS= 1 / Application parameter value
EL_GAIN = 1 / Application parameter value
SPEED = 1 / Application parameter value
SER_REG = 0 / Application parameter value
CLK_MON1= 0 / Application parameter value
CLK_MON2= 1 / Application parameter value
TELESCOP= 'TNG '
TIMESYS = 'UTC ' / Explicit time scale specification
DATE-OBS= '2015-07-18T16:27:39.592' / Date and time of start of obs. in UTC
PROCESS = 'Single raw read' / Data processing mode
FILENAME= 'HARPN.2015-07-18T16-27-39.592.fits' / FITS file generatedName
TIME = '16:33:00' / Time FITS file was written
EXPSTART= '16:27:39' / Exposure start time (UT)
PROGRAM = 'SOLAR ' / Program generatedName
OBS-TYPE= 'SCIENCE ' / Observation type
SITENAME= 'ORM ' / La Palma
INSTRUME= 'HARPN ' / Instrument generatedName
OBSERVAT= 'TNG ' / Observatory
GEOELEV = 2387.2 / no comment
GEOLAT = '28 45 14.4 N' / no comment
GEOLON = '17 53 20.6 W' / no comment
RA-RAD = 2.05416780840655 / Right ascension (radians as float)
DEC-RAD = 0.366642440734189 / Declination (radians as float)
RA-DEG = 117.695145833333 / Right ascension (degrees as float)
DEC-DEG = 21.0070644444444 / Declination (degrees as float)
RA = 7.84634305555555 / Right Ascension (hours as float)
DEC = 1.40047096296296 / Declination (hours as float)
EL = 0.80522951811023 / Elevation at the end (radians as float)
AIRMASS = 1.38477749733296 / Air mass
AG-FILE = '20150718T162739.fits' / Autoguider file generatedName
EM-FILE = 'NONE ' / Exposure meter file generatedName
EX-FILE = 'NONE ' / Expose AG file generatedName
MJD-OBS = 57221.6858680551 / Julian Date
LST = 11.0133333333333 / Local Sidereal Time
EQUINOX = 2000. / no comment
EXPTIME = 300. / Effective exposure time (in secs)
DATAMD5 = '4b34251db84ba6233cf60bd610eede09' / MD5 checksum
PIPEFILE= 'HARPN_S1D_A.fits' / Filename of data product
HIERARCH ESO PRO CATG = 'S1D_A ' / Category of pipeline product frame
HIERARCH ESO PRO DID = 'PRO-1.16' / Data dictionary for PRO
HIERARCH ESO PRO TYPE = 'REDUCED ' / Product type
HIERARCH ESO PRO TECH = 'UNDEFINED' / Observation technique
HIERARCH ESO PRO SCIENCE = F / Scientific product if T
HIERARCH ESO PRO REC1 ID = 'espdr_sci_red' / Pipeline recipe (unique) identifier
HIERARCH ESO PRO REC1 DRS ID = 'cpl-7.1.3' / Data Reduction System identifier
HIERARCH ESO PRO REC1 PIPE ID = 'espdr/2.2.2' / Pipeline (unique) identifier
HIERARCH ESO PRO REC1 RAW1 NAME = 'HARPN.2015-07-18T16-27-39.592.fits' / File na
HIERARCH ESO PRO REC1 RAW1 CATG = 'HEADER ' / Category of raw frame
HIERARCH ESO PRO REC1 RAW2 NAME = 'HARPN.2015-07-18T16-27-39.592.fits' / File na
HIERARCH ESO PRO REC1 RAW2 CATG = 'OBJ_FP ' / Category of raw frame
HIERARCH ESO PRO DATANCOM = 2 / Number of combined frames
HIERARCH ESO PRO REC1 CAL1 NAME = 'HARPN_CCD_geom_config.fits' / File name of ca
HIERARCH ESO PRO REC1 CAL1 CATG = 'CCD_GEOM' / Category of calibration frame
HIERARCH ESO PRO REC1 CAL2 NAME= 'HARPN_HARPNCCD1_FOCUS1_master_inst_config.fit'
HIERARCH ESO PRO REC1 CAL2 CATG = 'MASTER_INST_CONFIG' / Category of calibration
HIERARCH ESO PRO REC1 CAL3 NAME = 'HARPN_hot_pixels.fits' / File name of calibra
HIERARCH ESO PRO REC1 CAL3 CATG = 'HOT_PIXEL_MASK' / Category of calibration fra
HIERARCH ESO PRO REC1 CAL3 DATAMD5 = '22f4bb946f551ee4791f135e1ab33724' / MD5 si
HIERARCH ESO PRO REC1 CAL4 NAME = 'HARPN_HARPNCCD1_0_bad_pixels.fits' / File nam
HIERARCH ESO PRO REC1 CAL4 CATG = 'BAD_PIXEL_MASK' / Category of calibration fra
HIERARCH ESO PRO REC1 CAL4 DATAMD5 = '732fba7dfb43fd6dfeebb6aab0c4a3bd' / MD5 si
HIERARCH ESO PRO REC1 CAL5 NAME= 'r.HARPN.2015-07-18T17:31:11.338_ORDER_TABLE_A'
HIERARCH ESO PRO REC1 CAL5 CATG = 'ORDER_TABLE_A' / Category of calibration fram
HIERARCH ESO PRO REC1 CAL5 DATAMD5 = 'eff94fea787a63165e11ae5ebd66a1b5' / MD5 si
HIERARCH ESO PRO REC1 CAL6 NAME= 'r.HARPN.2015-07-18T17:31:11.338_ORDER_TABLE_B'
HIERARCH ESO PRO REC1 CAL6 CATG = 'ORDER_TABLE_B' / Category of calibration fram
HIERARCH ESO PRO REC1 CAL6 DATAMD5 = 'c561cf530b173d33db587f54938f0eff' / MD5 si
HIERARCH ESO PRO REC1 CAL7 NAME= 'r.HARPN.2015-07-18T17:31:50.957_MASTER_ORDER_'
HIERARCH ESO PRO REC1 CAL7 CATG = 'MASTER_ORDER_PROFILE_A' / Category of calibra
HIERARCH ESO PRO REC1 CAL7 DATAMD5 = 'cbc49a01c4682e729591f5b958220a14' / MD5 si
HIERARCH ESO PRO REC1 CAL8 NAME= 'r.HARPN.2015-07-18T17:31:50.957_MASTER_ORDER_'
HIERARCH ESO PRO REC1 CAL8 CATG = 'MASTER_ORDER_PROFILE_B' / Category of calibra
HIERARCH ESO PRO REC1 CAL8 DATAMD5 = 'dd1c55272b21f28475ab5e429c52ee88' / MD5 si
HIERARCH ESO PRO REC1 CAL9 NAME= 'r.HARPN.2015-07-18T17:31:50.957_MASTER_FSPECT'
HIERARCH ESO PRO REC1 CAL9 CATG = 'MASTER_FSPECTRUM_A' / Category of calibration
HIERARCH ESO PRO REC1 CAL9 DATAMD5 = '48a5134d68ad248944a74da64c416309' / MD5 si
HIERARCH ESO PRO REC1 CAL10 NAME= 'r.HARPN.2015-07-18T17:31:50.957_MASTER_FSPEC'
HIERARCH ESO PRO REC1 CAL10 CATG = 'MASTER_FSPECTRUM_B' / Category of calibratio
HIERARCH ESO PRO REC1 CAL10 DATAMD5 = 'd3d064fc41c96a03d41b397c64e6833a' / MD5 s
HIERARCH ESO PRO REC1 CAL11 NAME= 'r.HARPN.2015-07-18T17:31:50.957_MASTER_BLAZE'
HIERARCH ESO PRO REC1 CAL11 CATG = 'MASTER_BLAZE_A' / Category of calibration fr
HIERARCH ESO PRO REC1 CAL11 DATAMD5 = '0783e32df4ddaea3c16e5826935b3b23' / MD5 s
HIERARCH ESO PRO REC1 CAL12 NAME= 'r.HARPN.2015-07-18T17:31:50.957_MASTER_BLAZE'
HIERARCH ESO PRO REC1 CAL12 CATG = 'MASTER_BLAZE_B' / Category of calibration fr
HIERARCH ESO PRO REC1 CAL12 DATAMD5 = '78960cdf0c9ebff8806435377721d597' / MD5 s
HIERARCH ESO PRO REC1 CAL13 NAME= 'r.HARPN.2015-07-18T17:46:45.302_WAVE_MATRIX_'
HIERARCH ESO PRO REC1 CAL13 CATG = 'WAVE_MATRIX_DRIFT_THAR_FP_A' / Category of c
HIERARCH ESO PRO REC1 CAL13 DATAMD5 = '2de5a118b6b08665951add3c1316172e' / MD5 s
HIERARCH ESO PRO REC1 CAL14 NAME= 'r.HARPN.2015-07-18T17:35:44.444_WAVE_MATRIX_'
HIERARCH ESO PRO REC1 CAL14 CATG = 'WAVE_MATRIX_DRIFT_THAR_THAR_B' / Category of
HIERARCH ESO PRO REC1 CAL14 DATAMD5 = '8a982e9ec20bca2a077ffd836428512d' / MD5 s
HIERARCH ESO PRO REC1 CAL15 NAME= 'r.HARPN.2015-07-18T17:46:45.302_DLL_MATRIX_D'
HIERARCH ESO PRO REC1 CAL15 CATG = 'DLL_MATRIX_DRIFT_THAR_FP_A' / Category of ca
HIERARCH ESO PRO REC1 CAL15 DATAMD5 = '4c5157add618051fbeb0be7cec25d37e' / MD5 s
HIERARCH ESO PRO REC1 CAL16 NAME= 'r.HARPN.2015-07-18T17:35:44.444_DLL_MATRIX_D'
HIERARCH ESO PRO REC1 CAL16 CATG = 'DLL_MATRIX_DRIFT_THAR_THAR_B' / Category of
HIERARCH ESO PRO REC1 CAL16 DATAMD5 = '923b112246102e2eec144fe59b19eefa' / MD5 s
HIERARCH ESO PRO REC1 CAL17 NAME = 'HARPN_REL_EFF_B.fits' / File name of calibra
HIERARCH ESO PRO REC1 CAL17 CATG = 'REL_EFF_B' / Category of calibration frame
HIERARCH ESO PRO REC1 CAL17 DATAMD5 = '343a32255b063b76d09ab0c8440e7877' / MD5 s
HIERARCH ESO PRO REC1 CAL18 NAME= 'r.HARPN.2020-03-11T04:10:06.828_ABS_EFF_A.fi'
HIERARCH ESO PRO REC1 CAL18 CATG = 'ABS_EFF_A' / Category of calibration frame
HIERARCH ESO PRO REC1 CAL18 DATAMD5 = '998fe7221ecc44b56f35b0c8e31a3fd6' / MD5 s
HIERARCH ESO PRO REC1 CAL19 NAME= 'r.HARPN.2015-07-18T17:59:04.429_CONTAM_FP_B.'
HIERARCH ESO PRO REC1 CAL19 CATG = 'CONTAM_FP' / Category of calibration frame
HIERARCH ESO PRO REC1 CAL19 DATAMD5 = '8dbdac7b2cc772c34e64cd9fb9e5b015' / MD5 s
HIERARCH ESO PRO REC1 CAL20 NAME= 'r.HARPN.2015-07-18T17:46:45.302_S2D_BLAZE_TH'
HIERARCH ESO PRO REC1 CAL20 CATG = 'S2D_BLAZE_THAR_FP_B' / Category of calibrati
HIERARCH ESO PRO REC1 CAL20 DATAMD5 = '9f67c49685271559f6f9c26989966f2b' / MD5 s
HIERARCH ESO PRO REC1 CAL21 NAME = 'ESPRESSO_EXTINCTION_TABLE.fits' / File name
HIERARCH ESO PRO REC1 CAL21 CATG = 'EXT_TABLE' / Category of calibration frame
HIERARCH ESO PRO REC1 CAL22 NAME = 'ESPRESSO_mask_lut.fits' / File name of calib
HIERARCH ESO PRO REC1 CAL22 CATG = 'MASK_LUT' / Category of calibration frame
HIERARCH ESO PRO REC1 CAL23 NAME = 'HARPN_flux_template.fits' / File name of cal
HIERARCH ESO PRO REC1 CAL23 CATG = 'FLUX_TEMPLATE' / Category of calibration fra
HIERARCH ESO PRO REC1 CAL24 NAME = 'ESPRESSO_F9.fits' / File name of calibration
HIERARCH ESO PRO REC1 CAL24 CATG = 'MASK_TABLE' / Category of calibration frame
HIERARCH ESO PRO REC1 CAL25 NAME = 'ESPRESSO_G2.fits' / File name of calibration
HIERARCH ESO PRO REC1 CAL25 CATG = 'MASK_TABLE' / Category of calibration frame
HIERARCH ESO PRO REC1 CAL26 NAME = 'ESPRESSO_G8.fits' / File name of calibration
HIERARCH ESO PRO REC1 CAL26 CATG = 'MASK_TABLE' / Category of calibration frame
HIERARCH ESO PRO REC1 CAL27 NAME = 'ESPRESSO_G9.fits' / File name of calibration
HIERARCH ESO PRO REC1 CAL27 CATG = 'MASK_TABLE' / Category of calibration frame
HIERARCH ESO PRO REC1 CAL28 NAME = 'ESPRESSO_K2.fits' / File name of calibration
HIERARCH ESO PRO REC1 CAL28 CATG = 'MASK_TABLE' / Category of calibration frame
HIERARCH ESO PRO REC1 CAL29 NAME = 'ESPRESSO_K6.fits' / File name of calibration
HIERARCH ESO PRO REC1 CAL29 CATG = 'MASK_TABLE' / Category of calibration frame
HIERARCH ESO PRO REC1 CAL30 NAME = 'ESPRESSO_M0.fits' / File name of calibration
HIERARCH ESO PRO REC1 CAL30 CATG = 'MASK_TABLE' / Category of calibration frame
HIERARCH ESO PRO REC1 CAL31 NAME = 'ESPRESSO_M2.fits' / File name of calibration
HIERARCH ESO PRO REC1 CAL31 CATG = 'MASK_TABLE' / Category of calibration frame
HIERARCH ESO PRO REC1 CAL32 NAME = 'ESPRESSO_M3.fits' / File name of calibration
HIERARCH ESO PRO REC1 CAL32 CATG = 'MASK_TABLE' / Category of calibration frame
HIERARCH ESO PRO REC1 CAL33 NAME = 'ESPRESSO_M4.fits' / File name of calibration
HIERARCH ESO PRO REC1 CAL33 CATG = 'MASK_TABLE' / Category of calibration frame
HIERARCH ESO PRO REC1 CAL34 NAME = 'ESPRESSO_M5.fits' / File name of calibration
HIERARCH ESO PRO REC1 CAL34 CATG = 'MASK_TABLE' / Category of calibration frame
HIERARCH ESO PRO REC1 PARAM1 NAME = 'ovsc_sig_clip_method' / method for sigma cl
HIERARCH ESO PRO REC1 PARAM1 VALUE = 'mean ' / Default: 'mean'
HIERARCH ESO PRO REC1 PARAM2 NAME = 'ovsc_ksigma' / ksigma for sigma clipping in
HIERARCH ESO PRO REC1 PARAM2 VALUE = '4 ' / Default: 4
HIERARCH ESO PRO REC1 PARAM3 NAME = 'ovsc_max_iter' / maximal number of iteratio
HIERARCH ESO PRO REC1 PARAM3 VALUE = '10 ' / Default: 10
HIERARCH ESO PRO REC1 PARAM4 NAME = 'background_sw' / Background subtraction act
HIERARCH ESO PRO REC1 PARAM4 VALUE = 'on ' / Default: 'on'
HIERARCH ESO PRO REC1 PARAM5 NAME = 'sci_bkgr_grid_size_x' / Grid size in x used
HIERARCH ESO PRO REC1 PARAM5 VALUE = '577 ' / Default: 577
HIERARCH ESO PRO REC1 PARAM6 NAME = 'sci_bkgr_grid_size_y' / Grid size in y used
HIERARCH ESO PRO REC1 PARAM6 VALUE = '256 ' / Default: 256
HIERARCH ESO PRO REC1 PARAM7 NAME = 'wave_cal_source' / Wavelength calibration s
HIERARCH ESO PRO REC1 PARAM7 VALUE = 'THAR ' / Default: 'THAR'
HIERARCH ESO PRO REC1 PARAM8 NAME = 'mask_table_id' / Mask table to be used, def
HIERARCH ESO PRO REC1 PARAM8 VALUE = 'XX ' / Default: 'XX'
HIERARCH ESO PRO REC1 PARAM9 NAME = 'rv_center' / Approximate RV. In case of def
HIERARCH ESO PRO REC1 PARAM9 VALUE = '-9999 ' / Default: -9999
HIERARCH ESO PRO REC1 PARAM10 NAME = 'rv_range' / Range for the RV table.
HIERARCH ESO PRO REC1 PARAM10 VALUE = '20 ' / Default: 20
HIERARCH ESO PRO REC1 PARAM11 NAME = 'rv_step ' / Range's step for the RV table.
HIERARCH ESO PRO REC1 PARAM11 VALUE = '0.5 ' / Default: 0.5
HIERARCH ESO PRO REC1 PARAM12 NAME = 'extraction_method' / Method used to extrac
HIERARCH ESO PRO REC1 PARAM12 VALUE = 'horne ' / Default: 'horne'
HIERARCH ESO PRO REC1 PARAM13 NAME = 'ksigma_cosmic' / ksigma for removing cosmi
HIERARCH ESO PRO REC1 PARAM13 VALUE = '3.5 ' / Default: 3.5
HIERARCH ESO PRO REC1 PARAM14 NAME = 'bias_res_removal_sw' / Flag indicating to
HIERARCH ESO PRO REC1 PARAM14 VALUE = 'on ' / Default: 'on'
HIERARCH ESO PRO REC1 PARAM15 NAME = 'flux_correction_type' / Flux correction: N
HIERARCH ESO PRO REC1 PARAM15 VALUE = 'AUTO ' / Default: 'AUTO'
HIERARCH ESO PRO REC1 PARAM16 NAME = 'drift_correction_sw' / Drift correction ac
HIERARCH ESO PRO REC1 PARAM16 VALUE = 'on ' / Default: 'on'
HIERARCH ESO PRO REC1 PARAM17 NAME = 'drift_method_fp' / Method adopted to compu
HIERARCH ESO PRO REC1 PARAM17 VALUE = 'flux_global_drift_global_sequential_fit'
HIERARCH ESO PRO REC1 PARAM18 NAME = 'drift_space' / Space to compute drift (pix
HIERARCH ESO PRO REC1 PARAM18 VALUE = 'pixel ' / Default: 'pixel'
HIERARCH ESO PRO REC1 PARAM19 NAME = 'drift_ksigma' / ksigma for computing drift
HIERARCH ESO PRO REC1 PARAM19 VALUE = '50 ' / Default: 50
HIERARCH ESO PRO REC1 PARAM20 NAME = 'sky_sub_method' / Method used to subtract
HIERARCH ESO PRO REC1 PARAM20 VALUE = 'pixel-by-pixel' / Default: 'pixel-by-pixe
HIERARCH ESO PRO REC1 PARAM21 NAME = 'sky_sub_sliding_box_size' / Sliding box si
HIERARCH ESO PRO REC1 PARAM21 VALUE = '50 ' / Default: 50
HIERARCH ESO PRO REC1 PARAM22 NAME = 'slit_loss' / Slit loss in flux calibration
HIERARCH ESO PRO REC1 PARAM22 VALUE = '-1 ' / Default: -1
HIERARCH COM_TAB_START = 0 / Application parameter value
HIERARCH TNG AG ACQ BKGD = -99999.9 / no comment
HIERARCH TNG AG ACQ FLUX = -99999.9 / no comment
HIERARCH TNG AG ACQ POSX = -99999.9 / no comment
HIERARCH TNG AG ACQ POSY = -99999.9 / no comment
HIERARCH TNG AG ACQ FWHMX = -99999.9 / no comment
HIERARCH TNG AG ACQ FWHMY = -99999.9 / no comment
HIERARCH TNG AG ACQ POSM2 = -99999.9 / no comment
HIERARCH TNG OBS NAME = 'OB_SOLAR' / no comment
HIERARCH TNG OBS ID = 11 / no comment
HIERARCH TNG OBS TARG NAME = 'Sun ' / no comment
HIERARCH TNG OBS PI-COI ID = 1 / no comment
HIERARCH TNG OBS GRP = 'HARPS ' / no comment
HIERARCH TNG OBS PI-COI NAME = 'PHILLIPS' / no comment
HIERARCH TNG OBS PROG ID = 'SOLAR ' / no comment
HIERARCH TNG TEL TARG MAG = -26.74 / no comment
HIERARCH TNG TEL TARG RADVEL = 0.1 / Hard coded for SUN
HIERARCH TNG TEL TARG EPOCH = 2000. / no comment
HIERARCH TNG TEL TARG ALPHA = '07h49m58.5581' / Corrected coordinates from astro
HIERARCH TNG TEL TARG EQUINOX = 2000 / no comment
HIERARCH TNG TEL TARG SPTYPE = 'G2 ' / no comment
HIERARCH TNG TEL TARG DELTA = '21:02:00.602' / Corrected coordinates from astrop
HIERARCH TNG TEL TARG PMA = 0. / no comment
HIERARCH TNG TEL TARG PMD = 0. / no comment
HIERARCH TNG INS OPTI1 POS = 'COMB ' / no comment
HIERARCH TNG INS MIRR POS = 'BOTH ' / no comment
HIERARCH TNG INS DUST ST = F / no comment
HIERARCH TNG INS MODE = 'HARPN ' / no comment
HIERARCH TNG INS OPTI2 POS = 'FP ' / no comment
HIERARCH TNG DET READ GAIN = 1 / no comment
HIERARCH TNG DET EXP TYPE = 'NORMAL ' / no comment
HIERARCH TNG DET READ SPEED = 1 / no comment
HIERARCH TNG DET READ MODE = 'High, 500kHz' / no comment
HIERARCH TNG DET READ REG = 0 / no comment
HIERARCH TNG DET WIN1 UIT1 = 300. / no comment
HIERARCH TNG DPR TYPE = 'STAR ' / no comment
HIERARCH TNG DPR CATG = 'SCIENCE ' / no comment
HIERARCH TNG DPR TECH = 'ECHELLE ' / no comment
HIERARCH TNG TPL NAME = 'HARPN_ech_sol_wavesimult' / no comment
HIERARCH TNG TPL ID = 'HARPN_ech_sol_wavesimult' / no comment
HIERARCH TNG TPL NEXP = 1000 / no comment
HIERARCH TNG TPL EXPNO = 2 / no comment
HIERARCH TNG VTRK TRK ALFAST = -99999.9 / no comment
HIERARCH TNG VTRK TRK DELAST = -99999.9 / no comment
HIERARCH TNG VTRK TRK PRMAR = -99999.9 / no comment
HIERARCH TNG VTRK TRK PRMDE = -99999.9 / no comment
HIERARCH TNG VTRK TRK PARALL = -99999.9 / no comment
HIERARCH TNG VTRK TRK AZENC = -99999.9 / no comment
HIERARCH TNG VTRK TRK ELENC = -99999.9 / no comment
HIERARCH TNG VTRK GHO STATUS = 'NONE ' / no comment
HIERARCH TNG METEO HUMIDITY = -99999.9 / no comment
HIERARCH TNG METEO PRESSURE = -99999.9 / no comment
HIERARCH TNG METEO WINDSPEED = -99999.9 / no comment
HIERARCH TNG METEO WINDDIR = -99999.9 / no comment
HIERARCH TNG METEO TEMP10M = -99999.9 / no comment
HIERARCH TNG M1 CH1TEMP = -99999.9 / M1 channel1 temperature
HIERARCH TNG EXP_METER_A UIT = 1. / Time per sample (seconds)
HIERARCH TNG EXP_METER_A EXP CENTROID = 0.4976 / Fractional exposure centroid in
HIERARCH TNG EXP_METER_A COUNTS MEAN = 145079.632 / Mean counts per second
HIERARCH TNG EXP_METER_A EXPECTED MEAN = 150000. / Expected mean counts per sec
HIERARCH TNG EXP_METER_A EFFICENCY MEAN = 0.967 / Efficency of the measured mean
HIERARCH TNG EXP_METER_A COUNTS MIN = 17. / Minimum counts per second
HIERARCH TNG EXP_METER_A COUNTS MAX = 147398. / Maximum counts per second
HIERARCH TNG EXP_METER_A COUNTS STDDEV = 10024.594 / Standard deviation of the c
HIERARCH TNG EXP_METER_A COUNTS TOTAL = 43679414. / Total number of counts dur
HIERARCH TNG EXP_METER_B UIT = 1. / Time per sample
HIERARCH TNG EXP_METER_B EXP CENTROID = 0.4975 / Fractional exposure centroid in
HIERARCH TNG EXP_METER_B COUNTS MEAN = 11493.947 / Mean counts per second
HIERARCH TNG EXP_METER_B COUNTS MIN = 10. / Minimum counts per second
HIERARCH TNG EXP_METER_B COUNTS MAX = 11810. / Maximum counts per second
HIERARCH TNG EXP_METER_B COUNTS STDDEV = 759.304 / Standard deviation of the cou
HIERARCH TNG EXP_METER_B COUNTS TOTAL = 3446552. / Total number of counts durin
HIERARCH TNG INS DETHDBODY_T MIN = 19.446 / MIN Detector-Head body b
HIERARCH TNG INS DETHDBODY_T MAX = 19.448 / MAX Detector-Head body b
HIERARCH TNG INS DETHDBODY_T MEAN = 19.447 / MEAN Detector-Head body
HIERARCH TNG INS CCDCONTRL_T MIN = -114.99 / MIN Detector Head Heater control re
HIERARCH TNG INS CCDCONTRL_T MAX = -114.99 / MAX Detector Head Heater
HIERARCH TNG INS CCDCONTRL_T MEAN = -114.99 / MEAN Detector Head Hea
HIERARCH TNG INS CFCSORPUMP_T MIN = -181. / MIN CFC sorption pump temperature
HIERARCH TNG INS CFCSORPUMP_T MAX = -181. / MAX CFC sorption pump temperature
HIERARCH TNG INS CFCSORPUMP_T MEAN = -181. / MEAN CFC sorption pump
HIERARCH TNG INS EMPTY MIN = -273.15 / MIN Empty
HIERARCH TNG INS EMPTY MAX = -273.15 / MAX Empty
HIERARCH TNG INS EMPTY MEAN = -273.15 / MEAN Empty
HIERARCH TNG INS AIRIN1T_T MIN = 15.113 / MIN Air in 1T Temperature
HIERARCH TNG INS AIRIN1T_T MAX = 15.372 / MAX Air in 1T Temperature
HIERARCH TNG INS AIRIN1T_T MEAN = 15.286 / MEAN Air in 1T Temperatu
HIERARCH TNG INS CCOLNEARG_T MIN = 17.458 / MIN Camera Optics Collima
HIERARCH TNG INS CCOLNEARG_T MAX = 17.46 / MAX Camera Optics Collima
HIERARCH TNG INS CCOLNEARG_T MEAN = 17.4587 / MEAN Camera Optics Coll
HIERARCH TNG INS CCDSEC_T MIN = -115.64 / MIN Detector Head Heater se
HIERARCH TNG INS CCDSEC_T MAX = -115.63 / MAX Detector Head Heater s
HIERARCH TNG INS CCDSEC_T MEAN = -115.63182 / MEAN Detector Head Heater
HIERARCH TNG INS EMPTY7_T MIN = -99999.9 / MIN Empty7
HIERARCH TNG INS EMPTY7_T MAX = -99999.9 / MAX Empty7
HIERARCH TNG INS EMPTY7_T MEAN = -99999.9 / MEAN Empty7
HIERARCH TNG INS CDETNEARL5_T MIN = 17.61 / MIN Camera Optics Detec
HIERARCH TNG INS CDETNEARL5_T MAX = 17.612 / MAX Camera Optics Detec
HIERARCH TNG INS CDETNEARL5_T MEAN = 17.6112 / MEAN Camera Optics Dete
HIERARCH TNG INS HEADSEC_T MIN = 19.184 / MIN CCD chip secondary tempe
HIERARCH TNG INS HEADSEC_T MAX = 19.185 / MAX CCD chip secondary tem
HIERARCH TNG INS HEADSEC_T MEAN = 19.184818 / MEAN CCD chip secondary t
HIERARCH TNG INS FEUTT_T MIN = 15.524 / MIN Temperature of Tip-tilt
HIERARCH TNG INS FEUTT_T MAX = 15.542 / MAX Temperature of Tip-tilt
HIERARCH TNG INS FEUTT_T MEAN = 15.531818 / MEAN Temperature of Tip-til
HIERARCH TNG INS INCABDET_T MIN = -245.15 / MIN Detector Cabinet ins
HIERARCH TNG INS INCABDET_T MAX = -245.15 / MAX Detector Cabinet ins
HIERARCH TNG INS INCABDET_T MEAN = -245.15 / MEAN Detector Cabinet i
HIERARCH TNG INS FOOTCONTRL_T MIN = 17.003 / MIN Vacuum Vessel foot
HIERARCH TNG INS FOOTCONTRL_T MAX = 17.007 / MAX Vacuum Vessel foot
HIERARCH TNG INS FOOTCONTRL_T MEAN = 17.004726 / MEAN Vacuum Vessel foo
HIERARCH TNG INS SPAREIN1_T MIN = 17.154 / MIN None
HIERARCH TNG INS SPAREIN1_T MAX = 17.157 / MAX None
HIERARCH TNG INS SPAREIN1_T MEAN = 17.1558 / MEAN None
HIERARCH TNG INS SPARE3_T MIN = 16.638 / MIN Temperature of Spare #2
HIERARCH TNG INS SPARE3_T MAX = 16.66 / MAX Temperature of Spare #2
HIERARCH TNG INS SPARE3_T MEAN = 16.652 / MEAN Temperature of Spare
HIERARCH TNG INS VVOUTCOL_T MIN = 17.51 / MIN Temperature of Vacuum
HIERARCH TNG INS VVOUTCOL_T MAX = 17.547 / MAX Temperature of Vacuum
HIERARCH TNG INS VVOUTCOL_T MEAN = 17.5272 / MEAN Temperature of Vacuu
HIERARCH TNG INS EMPTY8_T MIN = -99999.9 / MIN Empty8
HIERARCH TNG INS EMPTY8_T MAX = -99999.9 / MAX Empty8
HIERARCH TNG INS EMPTY8_T MEAN = -99999.9 / MEAN Empty8
HIERARCH TNG INS COLONTOP_T MIN = 16.975 / MIN Collimator on the top
HIERARCH TNG INS COLONTOP_T MAX = 16.981 / MAX Collimator on the top
HIERARCH TNG INS COLONTOP_T MEAN = 16.9769 / MEAN Collimator on the to
HIERARCH TNG INS CUHALOGEN_T MIN = 13.589 / MIN CU Halogen lamp Temp
HIERARCH TNG INS CUHALOGEN_T MAX = 13.664 / MAX CU Halogen lamp Temp
HIERARCH TNG INS CUHALOGEN_T MEAN = 13.626182 / MEAN CU Halogen lamp Te
HIERARCH TNG INS FEUGUIDEC_T MIN = 15.32 / MIN Guide Camera Tempera
HIERARCH TNG INS FEUGUIDEC_T MAX = 15.346 / MAX Guide Camera Tempera
HIERARCH TNG INS FEUGUIDEC_T MEAN = 15.332 / MEAN Guide Camera Tempe
HIERARCH TNG INS VVOUTS4_T MIN = 17.043 / MIN Temperature of Vacuum V
HIERARCH TNG INS VVOUTS4_T MAX = 17.054 / MAX Temperature of Vacuum
HIERARCH TNG INS VVOUTS4_T MEAN = 17.0499 / MEAN Temperature of Vacuu
HIERARCH TNG INS HEADCONTRL_T MIN = 19.502 / MIN CCD chip control reference temp
HIERARCH TNG INS HEADCONTRL_T MAX = 19.508 / MAX CCD chip control re
HIERARCH TNG INS HEADCONTRL_T MEAN = 19.505545 / MEAN CCD chip control
HIERARCH TNG INS FP_P MIN = 1.2 / MIN Fabry-Perot pressure
HIERARCH TNG INS FP_P MAX = 1.2 / MAX Fabry-Perot pressure
HIERARCH TNG INS FP_P MEAN = 1.2 / MEAN Fabry-Perot pressure
HIERARCH TNG INS OPBTOPDET_T MIN = 17.374 / MIN Optical Bench top-Det
HIERARCH TNG INS OPBTOPDET_T MAX = 17.378 / MAX Optical Bench top-De
HIERARCH TNG INS OPBTOPDET_T MEAN = 17.3759 / MEAN Optical Bench top-
HIERARCH TNG INS VVINLEFT_T MIN = 16.88 / MIN Vacuum vessel insite l
HIERARCH TNG INS VVINLEFT_T MAX = 16.885 / MAX Vacuum vessel insite
HIERARCH TNG INS VVINLEFT_T MEAN = 16.8836 / MEAN Vacuum vessel insit
HIERARCH TNG INS CUCHASSIS_T MIN = 13.367 / MIN CAL Unit chassis Tem
HIERARCH TNG INS CUCHASSIS_T MAX = 13.398 / MAX CAL Unit chassis Tem
HIERARCH TNG INS CUCHASSIS_T MEAN = 13.382 / MEAN CAL Unit chassis Te
HIERARCH TNG INS OPBBOTR_T MIN = 17.357 / MIN Optical Bench bottom r
HIERARCH TNG INS OPBBOTR_T MAX = 17.359 / MAX Optical Bench bottom r
HIERARCH TNG INS OPBBOTR_T MEAN = 17.3578 / MEAN Optical Bench bottom r
HIERARCH TNG INS EMPTY4_T MIN = -99999.9 / MIN Empty4
HIERARCH TNG INS EMPTY4_T MAX = -99999.9 / MAX Empty4
HIERARCH TNG INS EMPTY4_T MEAN = -99999.9 / MEAN Empty4
HIERARCH TNG INS SPAREIN3_T MIN = 17.165 / MIN None
HIERARCH TNG INS SPAREIN3_T MAX = 17.167 / MAX None
HIERARCH TNG INS SPAREIN3_T MEAN = 17.1662 / MEAN None
HIERARCH TNG INS CCRATETOP_T MIN = 18.259 / MIN Control rack tempera
HIERARCH TNG INS CCRATETOP_T MAX = 18.37 / MAX Control rack tempera
HIERARCH TNG INS CCRATETOP_T MEAN = 18.316092 / MEAN Control rack tempe
HIERARCH TNG INS OPBBOTDET_T MIN = 17.341 / MIN Optical Bench bot-De
HIERARCH TNG INS OPBBOTDET_T MAX = 17.343 / MAX Optical Bench bot-Det
HIERARCH TNG INS OPBBOTDET_T MEAN = 17.3421 / MEAN Optical Bench bot-D
HIERARCH TNG INS FEUCHASSIS_T MIN = 29.619 / MIN Temperature of FEU
HIERARCH TNG INS FEUCHASSIS_T MAX = 29.645 / MAX Temperature of FEU
HIERARCH TNG INS FEUCHASSIS_T MEAN = 29.631363 / MEAN Temperature of FE
HIERARCH TNG INS 3TSEC_T MIN = 17.443 / MIN 3T secondary temperature
HIERARCH TNG INS 3TSEC_T MAX = 17.447 / MAX 3T secondary temperature
HIERARCH TNG INS 3TSEC_T MEAN = 17.444908 / MEAN 3T secondary temperatu
HIERARCH TNG INS ECHONTOP_T MIN = 17.022 / MIN Echelle Grating on top
HIERARCH TNG INS ECHONTOP_T MAX = 17.025 / MAX Echelle Grating on top
HIERARCH TNG INS ECHONTOP_T MEAN = 17.0236 / MEAN Echelle Grating on
HIERARCH TNG INS SPAREIN2_T MIN = 17.23 / MIN None
HIERARCH TNG INS SPAREIN2_T MAX = 17.232 / MAX None
HIERARCH TNG INS SPAREIN2_T MEAN = 17.2313 / MEAN None
HIERARCH TNG INS OPBBOTCOL_T MIN = 17.019 / MIN Optical Bench bot-Co
HIERARCH TNG INS OPBBOTCOL_T MAX = 17.026 / MAX Optical Bench bot-Co
HIERARCH TNG INS OPBBOTCOL_T MEAN = 17.0229 / MEAN Optical Bench bot-
HIERARCH TNG INS VVINDET_T MIN = 16.827 / MIN Vacuum vessel insite in
HIERARCH TNG INS VVINDET_T MAX = 16.83 / MAX Vacuum vessel insite i
HIERARCH TNG INS VVINDET_T MEAN = 16.8286 / MEAN Vacuum vessel insite
HIERARCH TNG INS AIRTHRUGIBFAN4_T MIN = 16.989 / MIN Temperature of
HIERARCH TNG INS AIRTHRUGIBFAN4_T MAX = 17.021 / MAX Temperature of a
HIERARCH TNG INS AIRTHRUGIBFAN4_T MEAN = 17.0029 / MEAN Temperature o
HIERARCH TNG INS FEUGUIDEF2_T MIN = 15.252 / MIN Guide filter 2 Temper
HIERARCH TNG INS FEUGUIDEF2_T MAX = 15.274 / MAX Guide filter 2 Temp
HIERARCH TNG INS FEUGUIDEF2_T MEAN = 15.262909 / MEAN Guide filter 2 Te
HIERARCH TNG INS EMPTY2_T MIN = -99999.9 / MIN Empty2
HIERARCH TNG INS EMPTY2_T MAX = -99999.9 / MAX Empty2
HIERARCH TNG INS EMPTY2_T MEAN = -99999.9 / MEAN Empty2
HIERARCH TNG INS ISCRAMOUTVV_T MIN = 16.859 / MIN Temperature of Ima
HIERARCH TNG INS ISCRAMOUTVV_T MAX = 16.889 / MAX Temperature of Imag
HIERARCH TNG INS ISCRAMOUTVV_T MEAN = 16.8721 / MEAN Temperature of Im
HIERARCH TNG INS CUCALSEL1_T MIN = 13.334 / MIN CU CAL selector 1 Te
HIERARCH TNG INS CUCALSEL1_T MAX = 13.351 / MAX CU CAL selector 1 Te
HIERARCH TNG INS CUCALSEL1_T MEAN = 13.341272 / MEAN CU CAL selector 1
HIERARCH TNG INS VVINRIGHT_T MIN = 16.693 / MIN Vacuum vessel insite
HIERARCH TNG INS VVINRIGHT_T MAX = 16.701 / MAX Vacuum vessel insite
HIERARCH TNG INS VVINRIGHT_T MEAN = 16.697 / MEAN Vacuum vessel insi
HIERARCH TNG INS OPBTOPCOL_T MIN = 16.978 / MIN Optical Bench top-Col
HIERARCH TNG INS OPBTOPCOL_T MAX = 16.985 / MAX Optical Bench top-Col
HIERARCH TNG INS OPBTOPCOL_T MEAN = 16.9812 / MEAN Optical Bench top-Co
HIERARCH TNG INS ISINVV_T MIN = 16.811 / MIN Image Scrambler inside V
HIERARCH TNG INS ISINVV_T MAX = 16.82 / MAX Image Scrambler inside V
HIERARCH TNG INS ISINVV_T MEAN = 16.8161 / MEAN Image Scrambler insid
HIERARCH TNG INS VVINTOP_T MIN = 16.856 / MIN Vacuum vessel insite t
HIERARCH TNG INS VVINTOP_T MAX = 16.864 / MAX Vacuum vessel insite t
HIERARCH TNG INS VVINTOP_T MEAN = 16.8594 / MEAN Vacuum vessel insite
HIERARCH TNG INS FOOTSEC_T MIN = 16.963 / MIN Vacuum Vessel foot sec
HIERARCH TNG INS FOOTSEC_T MAX = 16.966 / MAX Vacuum Vessel foot sec
HIERARCH TNG INS FOOTSEC_T MEAN = 16.964455 / MEAN Vacuum Vessel foot s
HIERARCH TNG INS OPBTOPL_T MIN = 17.223 / MIN Optical Bench top left
HIERARCH TNG INS OPBTOPL_T MAX = 17.229 / MAX Optical Bench top left
HIERARCH TNG INS OPBTOPL_T MEAN = 17.2262 / MEAN Optical Bench top le
HIERARCH TNG INS 3TCONTRL_T MIN = 17.504 / MIN 3T control reference
HIERARCH TNG INS 3TCONTRL_T MAX = 17.507 / MAX 3T control reference
HIERARCH TNG INS 3TCONTRL_T MEAN = 17.504818 / MEAN 3T control referenc
HIERARCH TNG INS FEUADC2_T MIN = 14.115 / MIN ADC2 Temperature
HIERARCH TNG INS FEUADC2_T MAX = 14.132 / MAX ADC2 Temperature
HIERARCH TNG INS FEUADC2_T MEAN = 14.123181 / MEAN ADC2 Temperature
HIERARCH TNG INS DETECTOR_P MIN = 0. / MIN Detector Dewar pre
HIERARCH TNG INS DETECTOR_P MAX = 0. / MAX Detector Dewar pre
HIERARCH TNG INS DETECTOR_P MEAN = 0. / MEAN Detector Dewar p
HIERARCH TNG INS CFCCPLATE_T MIN = -162. / MIN CFC cold plate temperature
HIERARCH TNG INS CFCCPLATE_T MAX = -159. / MAX CFC cold plate temperature
HIERARCH TNG INS CFCCPLATE_T MEAN = -160.7 / MEAN CFC cold plate te
HIERARCH TNG INS CCRATEBOT_T MIN = 15.938 / MIN Control rack tempera
HIERARCH TNG INS CCRATEBOT_T MAX = 16.012 / MAX Control rack tempera
HIERARCH TNG INS CCRATEBOT_T MEAN = 15.979728 / MEAN Control rack tempe
HIERARCH TNG INS AIRIN3T_T MIN = 16.877 / MIN Air in 3T Temperature
HIERARCH TNG INS AIRIN3T_T MAX = 16.89 / MAX Air in 3T Temperature
HIERARCH TNG INS AIRIN3T_T MEAN = 16.8841 / MEAN Air in 3T Temperatur
HIERARCH TNG INS PRIMLINE_P MIN = 11. / MIN Primary pump line pre
HIERARCH TNG INS PRIMLINE_P MAX = 11. / MAX Primary pump line pre
HIERARCH TNG INS PRIMLINE_P MEAN = 11. / MEAN Primary pump line p
HIERARCH TNG INS VVINBOT_T MIN = 16.911 / MIN Vacuum vessel insite b
HIERARCH TNG INS VVINBOT_T MAX = 16.919 / MAX Vacuum vessel insite b
HIERARCH TNG INS VVINBOT_T MEAN = 16.9151 / MEAN Vacuum vessel insite
HIERARCH TNG INS EMPTY3_T MIN = -99999.9 / MIN Empty3
HIERARCH TNG INS EMPTY3_T MAX = -99999.9 / MAX Empty3
HIERARCH TNG INS EMPTY3_T MEAN = -99999.9 / MEAN Empty3
HIERARCH TNG INS EMPTY5_T MIN = -99999.9 / MIN Empty5
HIERARCH TNG INS EMPTY5_T MAX = -99999.9 / MAX Empty5
HIERARCH TNG INS EMPTY5_T MEAN = -99999.9 / MEAN Empty5
HIERARCH TNG INS SPAREIN4_T MIN = 17.205 / MIN None
HIERARCH TNG INS SPAREIN4_T MAX = 17.208 / MAX None
HIERARCH TNG INS SPAREIN4_T MEAN = 17.2059 / MEAN None
HIERARCH TNG INS FPSEC_T MIN = 21.085 / MIN Fabry Perot temperature
HIERARCH TNG INS FPSEC_T MAX = 21.086 / MAX Fabry Perot temperature
HIERARCH TNG INS FPSEC_T MEAN = 21.085636 / MEAN Fabry Perot temperature
HIERARCH TNG INS VLINE_P MIN = 0. / MIN Pumping line pressure
HIERARCH TNG INS VLINE_P MAX = 0. / MAX Pumping line pressure
HIERARCH TNG INS VLINE_P MEAN = 0. / MEAN Pumping line pressur
HIERARCH TNG INS CUCALSEL2_T MIN = 13.566 / MIN CU CAL selector 2 Te
HIERARCH TNG INS CUCALSEL2_T MAX = 13.637 / MAX CU CAL selector 2 Te
HIERARCH TNG INS CUCALSEL2_T MEAN = 13.600909 / MEAN CU CAL selector 2
HIERARCH TNG INS GRISMONEDGE_T MIN = 17.158 / MIN The Grism on the ed
HIERARCH TNG INS GRISMONEDGE_T MAX = 17.168 / MAX The Grism on the e
HIERARCH TNG INS GRISMONEDGE_T MEAN = 17.1639 / MEAN The Grism on the
HIERARCH TNG INS DETHDRING_T MIN = 19.548 / MIN Detector-Head holding
HIERARCH TNG INS DETHDRING_T MAX = 19.55 / MAX Detector-Head holdin
HIERARCH TNG INS DETHDRING_T MEAN = 19.5487 / MEAN Detector-Head hold
HIERARCH TNG INS SECLINE_P MIN = 0.0001 / MIN Secondary pump line
HIERARCH TNG INS SECLINE_P MAX = 0.0001 / MAX Secondary pump line
HIERARCH TNG INS SECLINE_P MEAN = 0.0001 / MEAN Secondary pump li
HIERARCH TNG INS AIRIN2T_T MIN = 14.523 / MIN Air in 2T Temperature
HIERARCH TNG INS AIRIN2T_T MAX = 14.558 / MAX Air in 2T Temperature
HIERARCH TNG INS AIRIN2T_T MEAN = 14.5418 / MEAN Air in 2T Temperatur
HIERARCH TNG INS VVINCOL_T MIN = 16.893 / MIN Vacuum vessel insite ins
HIERARCH TNG INS VVINCOL_T MAX = 16.917 / MAX Vacuum vessel insite in
HIERARCH TNG INS VVINCOL_T MEAN = 16.9046 / MEAN Vacuum vessel insite
HIERARCH TNG INS FXHOLD_T MIN = 17.159 / MIN Fiber exit on square fib
HIERARCH TNG INS FXHOLD_T MAX = 17.171 / MAX Fiber exit on square fib
HIERARCH TNG INS FXHOLD_T MEAN = 17.1643 / MEAN Fiber exit on square
HIERARCH TNG INS CFCEXHAUST_T MIN = 8. / MIN CFC exhaust gas temperature
HIERARCH TNG INS CFCEXHAUST_T MAX = 11. / MAX CFC exhaust gas temperature
HIERARCH TNG INS CFCEXHAUST_T MEAN = 9.6 / MEAN CFC exhaust gas te
HIERARCH TNG INS FEUADC1_T MIN = 15.538 / MIN ADC1 Temperature
HIERARCH TNG INS FEUADC1_T MAX = 15.57 / MAX ADC1 Temperature
HIERARCH TNG INS FEUADC1_T MEAN = 15.553909 / MEAN ADC1 Temperature
HIERARCH TNG INS OPBTOPR_T MIN = 17.308 / MIN Optical Bench top righ
HIERARCH TNG INS OPBTOPR_T MAX = 17.31 / MAX Optical Bench top righ
HIERARCH TNG INS OPBTOPR_T MEAN = 17.3089 / MEAN Optical Bench top rig
HIERARCH TNG INS FEUGUIDEF1_T MIN = 15.159 / MIN Guide filter 1 Temp
HIERARCH TNG INS FEUGUIDEF1_T MAX = 15.186 / MAX Guide filter 1 Temp
HIERARCH TNG INS FEUGUIDEF1_T MEAN = 15.171727 / MEAN Guide filter 1 Te
HIERARCH TNG INS OPBBOTL_T MIN = 17.309 / MIN Optical Bench bottom l
HIERARCH TNG INS OPBBOTL_T MAX = 17.311 / MAX Optical Bench bottom l
HIERARCH TNG INS OPBBOTL_T MEAN = 17.31 / MEAN Optical Bench bottom
HIERARCH TNG INS CFCINVV_T MIN = 17.208 / MIN CFC Inside Vacuum Vess
HIERARCH TNG INS CFCINVV_T MAX = 17.21 / MAX CFC Inside Vacuum Vess
HIERARCH TNG INS CFCINVV_T MEAN = 17.2093 / MEAN CFC Inside Vacuum Ve
HIERARCH TNG INS INCABSPECTR_T MIN = 21.022 / MIN Temperature of Vac
HIERARCH TNG INS INCABSPECTR_T MAX = 21.267 / MAX Temperature of Vac
HIERARCH TNG INS INCABSPECTR_T MEAN = 21.1568 / MEAN Temperature of Va
HIERARCH TNG INS CFCOUTVV_T MIN = 14.432 / MIN Temperature of Cryosta
HIERARCH TNG INS CFCOUTVV_T MAX = 14.451 / MAX Temperature of Cryost
HIERARCH TNG INS CFCOUTVV_T MEAN = 14.4425 / MEAN Temperature of Cryo
HIERARCH TNG INS EMPTY6_T MIN = -99999.9 / MIN Empty6
HIERARCH TNG INS EMPTY6_T MAX = -99999.9 / MAX Empty6
HIERARCH TNG INS EMPTY6_T MEAN = -99999.9 / MEAN Empty6
HIERARCH TNG INS PUMP_T MIN = -245.15 / MIN Pumpt or Spare
HIERARCH TNG INS PUMP_T MAX = -245.15 / MAX Pumpt or Spare
HIERARCH TNG INS PUMP_T MEAN = -245.15 / MEAN Pumpt or Spare
HIERARCH TNG INS DCRATETOP_T MIN = -99999.9 / MIN Detector rack temper
HIERARCH TNG INS DCRATETOP_T MAX = -99999.9 / MAX Detector rack temper
HIERARCH TNG INS DCRATETOP_T MEAN = -99999.9 / MEAN Detector rack temp
HIERARCH TNG INS FPCONTRL_T MIN = 22.003 / MIN Fabry Perot control tem
HIERARCH TNG INS FPCONTRL_T MAX = 22.006 / MAX Fabry Perot control t
HIERARCH TNG INS FPCONTRL_T MEAN = 22.004272 / MEAN Fabry Perot control
HIERARCH TNG INS VESSEL_P MIN = 0.0002 / MIN Vacuum Vessel pressu
HIERARCH TNG INS VESSEL_P MAX = 0.0002 / MAX Vacuum Vessel pressu
HIERARCH TNG INS VESSEL_P MEAN = 0.0002 / MEAN Vacuum Vessel pres
HIERARCH PIPELINE MASK TIMESTAMP = '2020-06-23T15:29:53' / Header Mask generatio
HIERARCH TNG RV STEP = 0.82 / Coordinate increment per pixel
HIERARCH TNG RV START = -19.58 / Coordinate at reference pixel
HIERARCH TNG QC EXT0 ROX0 ROY0 BIAS RON = 3.88917013383276 / RON[ADU] for ext 0,
HIERARCH TNG QC EXT0 ROX1 ROY0 BIAS RON = 3.68980903593256 / RON[ADU] for ext 0,
HIERARCH TNG QC EXT0 ROX0 ROY0 MAX FLUX = 35937. / Max flux [ADU], raw image
HIERARCH TNG QC EXT0 ROX1 ROY0 MAX FLUX = 36189. / Max flux [ADU], raw image
HIERARCH TNG QC SATURATION CHECK = 1 / Saturation [ADU] QC
HIERARCH TNG QC ORDER1 COSMIC NB = 16 / Cosmics number in the order
HIERARCH TNG QC ORDER2 COSMIC NB = 41 / Cosmics number in the order
HIERARCH TNG QC ORDER3 COSMIC NB = 5 / Cosmics number in the order
HIERARCH TNG QC ORDER4 COSMIC NB = 4 / Cosmics number in the order
HIERARCH TNG QC ORDER5 COSMIC NB = 9 / Cosmics number in the order
HIERARCH TNG QC ORDER6 COSMIC NB = 5 / Cosmics number in the order
HIERARCH TNG QC ORDER7 COSMIC NB = 3 / Cosmics number in the order
HIERARCH TNG QC ORDER8 COSMIC NB = 4 / Cosmics number in the order
HIERARCH TNG QC ORDER9 COSMIC NB = 1 / Cosmics number in the order
HIERARCH TNG QC ORDER10 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER11 COSMIC NB = 6 / Cosmics number in the order
HIERARCH TNG QC ORDER12 COSMIC NB = 1 / Cosmics number in the order
HIERARCH TNG QC ORDER13 COSMIC NB = 2 / Cosmics number in the order
HIERARCH TNG QC ORDER14 COSMIC NB = 9 / Cosmics number in the order
HIERARCH TNG QC ORDER15 COSMIC NB = 18 / Cosmics number in the order
HIERARCH TNG QC ORDER16 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER17 COSMIC NB = 2 / Cosmics number in the order
HIERARCH TNG QC ORDER18 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER19 COSMIC NB = 1 / Cosmics number in the order
HIERARCH TNG QC ORDER20 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER21 COSMIC NB = 4 / Cosmics number in the order
HIERARCH TNG QC ORDER22 COSMIC NB = 2 / Cosmics number in the order
HIERARCH TNG QC ORDER23 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER24 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER25 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER26 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER27 COSMIC NB = 1 / Cosmics number in the order
HIERARCH TNG QC ORDER28 COSMIC NB = 1 / Cosmics number in the order
HIERARCH TNG QC ORDER29 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER30 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER31 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER32 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER33 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER34 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER35 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER36 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER37 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER38 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER39 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER40 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER41 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER42 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER43 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER44 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER45 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER46 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER47 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER48 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER49 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER50 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER51 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER52 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER53 COSMIC NB = 1 / Cosmics number in the order
HIERARCH TNG QC ORDER54 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER55 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER56 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER57 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER58 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER59 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER60 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER61 COSMIC NB = 1 / Cosmics number in the order
HIERARCH TNG QC ORDER62 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER63 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER64 COSMIC NB = 1 / Cosmics number in the order
HIERARCH TNG QC ORDER65 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER66 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER67 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER68 COSMIC NB = 0 / Cosmics number in the order
HIERARCH TNG QC ORDER69 COSMIC NB = 328 / Cosmics number in the order
HIERARCH TNG QC ORDER1 COSMIC NB2 = 0 / Number of cosmics found in each order (2
HIERARCH TNG QC ORDER2 COSMIC NB2 = 0 / Number of cosmics found in each order (2
HIERARCH TNG QC ORDER3 COSMIC NB2 = 0 / Number of cosmics found in each order (2
HIERARCH TNG QC ORDER4 COSMIC NB2 = 0 / Number of cosmics found in each order (2
HIERARCH TNG QC ORDER5 COSMIC NB2 = 0 / Number of cosmics found in each order (2
HIERARCH TNG QC ORDER6 COSMIC NB2 = 0 / Number of cosmics found in each order (2
HIERARCH TNG QC ORDER7 COSMIC NB2 = 0 / Number of cosmics found in each order (2
HIERARCH TNG QC ORDER8 COSMIC NB2 = 0 / Number of cosmics found in each order (2
HIERARCH TNG QC ORDER9 COSMIC NB2 = 0 / Number of cosmics found in each order (2
HIERARCH TNG QC ORDER10 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER11 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER12 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER13 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER14 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER15 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER16 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER17 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER18 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER19 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER20 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER21 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER22 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER23 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER24 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER25 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER26 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER27 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER28 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER29 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER30 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER31 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER32 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER33 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER34 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER35 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER36 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER37 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER38 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER39 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER40 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER41 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER42 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER43 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER44 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER45 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER46 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER47 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER48 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER49 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER50 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER51 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER52 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER53 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER54 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER55 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER56 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER57 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER58 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER59 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER60 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER61 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER62 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER63 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER64 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER65 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER66 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER67 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER68 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER69 COSMIC NB2 = 0 / Number of cosmics found in each order (
HIERARCH TNG QC ORDER1 SNR = 81.6218736598077 / SNR in the order
HIERARCH TNG QC ORDER2 SNR = 80.0561082632669 / SNR in the order
HIERARCH TNG QC ORDER3 SNR = 89.7736344849949 / SNR in the order
HIERARCH TNG QC ORDER4 SNR = 82.9875609718833 / SNR in the order
HIERARCH TNG QC ORDER5 SNR = 130.033966820903 / SNR in the order
HIERARCH TNG QC ORDER6 SNR = 136.628813231761 / SNR in the order
HIERARCH TNG QC ORDER7 SNR = 143.808389137781 / SNR in the order
HIERARCH TNG QC ORDER8 SNR = 144.4935064015 / SNR in the order
HIERARCH TNG QC ORDER9 SNR = 159.72356470084 / SNR in the order
HIERARCH TNG QC ORDER10 SNR = 158.638758986225 / SNR in the order
HIERARCH TNG QC ORDER11 SNR = 184.317604095768 / SNR in the order
HIERARCH TNG QC ORDER12 SNR = 180.31056496951 / SNR in the order
HIERARCH TNG QC ORDER13 SNR = 199.699106701135 / SNR in the order
HIERARCH TNG QC ORDER14 SNR = 177.499244951572 / SNR in the order
HIERARCH TNG QC ORDER15 SNR = 204.545157376834 / SNR in the order
HIERARCH TNG QC ORDER16 SNR = 153.067964082544 / SNR in the order
HIERARCH TNG QC ORDER17 SNR = 171.229692897019 / SNR in the order
HIERARCH TNG QC ORDER18 SNR = 224.754047645475 / SNR in the order
HIERARCH TNG QC ORDER19 SNR = 234.162634832204 / SNR in the order
HIERARCH TNG QC ORDER20 SNR = 243.545815691004 / SNR in the order
HIERARCH TNG QC ORDER21 SNR = 268.675658458448 / SNR in the order
HIERARCH TNG QC ORDER22 SNR = 292.282274023444 / SNR in the order
HIERARCH TNG QC ORDER23 SNR = 292.877782683161 / SNR in the order
HIERARCH TNG QC ORDER24 SNR = 298.744902210532 / SNR in the order
HIERARCH TNG QC ORDER25 SNR = 305.077997996994 / SNR in the order
HIERARCH TNG QC ORDER26 SNR = 325.531878903082 / SNR in the order
HIERARCH TNG QC ORDER27 SNR = 331.405031389124 / SNR in the order
HIERARCH TNG QC ORDER28 SNR = 323.679920834224 / SNR in the order
HIERARCH TNG QC ORDER29 SNR = 349.701552118163 / SNR in the order
HIERARCH TNG QC ORDER30 SNR = 359.587110913336 / SNR in the order
HIERARCH TNG QC ORDER31 SNR = 370.102304593481 / SNR in the order
HIERARCH TNG QC ORDER32 SNR = 336.283771934858 / SNR in the order
HIERARCH TNG QC ORDER33 SNR = 386.188551714717 / SNR in the order
HIERARCH TNG QC ORDER34 SNR = 366.269979167068 / SNR in the order
HIERARCH TNG QC ORDER35 SNR = 400.042315359223 / SNR in the order
HIERARCH TNG QC ORDER36 SNR = 371.675669285084 / SNR in the order
HIERARCH TNG QC ORDER37 SNR = 403.506624871646 / SNR in the order
HIERARCH TNG QC ORDER38 SNR = 375.847494419064 / SNR in the order
HIERARCH TNG QC ORDER39 SNR = 386.135974103099 / SNR in the order
HIERARCH TNG QC ORDER40 SNR = 367.491898187997 / SNR in the order
HIERARCH TNG QC ORDER41 SNR = 417.055985722417 / SNR in the order
HIERARCH TNG QC ORDER42 SNR = 399.879636184558 / SNR in the order
HIERARCH TNG QC ORDER43 SNR = 437.286479907835 / SNR in the order
HIERARCH TNG QC ORDER44 SNR = 429.581738411297 / SNR in the order
HIERARCH TNG QC ORDER45 SNR = 423.663129739144 / SNR in the order
HIERARCH TNG QC ORDER46 SNR = 418.402306388146 / SNR in the order
HIERARCH TNG QC ORDER47 SNR = 425.92975158263 / SNR in the order
HIERARCH TNG QC ORDER48 SNR = 426.169567097465 / SNR in the order
HIERARCH TNG QC ORDER49 SNR = 436.641639849641 / SNR in the order
HIERARCH TNG QC ORDER50 SNR = 432.481219539189 / SNR in the order
HIERARCH TNG QC ORDER51 SNR = 432.754788427641 / SNR in the order
HIERARCH TNG QC ORDER52 SNR = 432.286874145413 / SNR in the order
HIERARCH TNG QC ORDER53 SNR = 435.647760992693 / SNR in the order
HIERARCH TNG QC ORDER54 SNR = 420.897403740892 / SNR in the order
HIERARCH TNG QC ORDER55 SNR = 416.451248198951 / SNR in the order
HIERARCH TNG QC ORDER56 SNR = 415.286878366619 / SNR in the order
HIERARCH TNG QC ORDER57 SNR = 420.893570215311 / SNR in the order
HIERARCH TNG QC ORDER58 SNR = 423.923116457534 / SNR in the order
HIERARCH TNG QC ORDER59 SNR = 420.030663708838 / SNR in the order
HIERARCH TNG QC ORDER60 SNR = 411.92373472752 / SNR in the order
HIERARCH TNG QC ORDER61 SNR = 415.937724557591 / SNR in the order
HIERARCH TNG QC ORDER62 SNR = 412.375343725393 / SNR in the order
HIERARCH TNG QC ORDER63 SNR = 398.662387997046 / SNR in the order
HIERARCH TNG QC ORDER64 SNR = 413.127371365402 / SNR in the order
HIERARCH TNG QC ORDER65 SNR = 408.056215911079 / SNR in the order
HIERARCH TNG QC ORDER66 SNR = 384.785537105128 / SNR in the order
HIERARCH TNG QC ORDER67 SNR = 395.534668796472 / SNR in the order
HIERARCH TNG QC ORDER68 SNR = 396.60292305188 / SNR in the order
HIERARCH TNG QC ORDER69 SNR = 315.900323099831 / SNR in the order
HIERARCH TNG QC BERV = -0.158664108960444 / Barycentric correction [km/s]
HIERARCH TNG QC BJD = 2457222.18251526 / Barycentric Julian date (TDB) [JD]
HIERARCH TNG QC BERVMAX = 31.9999999682729 / Barycentric max [km/s]
HIERARCH TNG QC THAR LAMP OFFSET AR = 4.8653577893433 / TH lamp offset AR [m/s]
HIERARCH TNG QC THAR LAMP OFFSET AR1 = 4.64320248330576 / TH lamp offset AR1 [m/
HIERARCH TNG QC THAR LAMP OFFSET AR2 = 4.50435604284384 / TH lamp offset AR2 [m/
HIERARCH TNG QC EXT0 BKGR MEAN = 39.0610201748558 / Bkgr mean [e-] in the extens
HIERARCH TNG QC EXT0 BKGR MIN = 3.28441079384832 / Bkgr min [e-] in the extensio
HIERARCH TNG QC EXT0 BKGR MAX = 83.6740095178252 / Bkgr max [e-] in the extensio
HIERARCH TNG QC DRIFT DET0 FIRST_ORDER = 1 / first order nb on detector 0
HIERARCH TNG QC DRIFT DET0 LAST_ORDER = 69 / last order nb on detector 0
HIERARCH TNG QC DRIFT DET0 FLUX_RATIO = 0.999193645818844 / flux ratio for detec
HIERARCH TNG QC DRIFT DET0 FLUX_RATIO_ERR = 2.36880398870296E-05 / flux ratio er
HIERARCH TNG QC DRIFT DET0 MEAN = -2.8276618806889E-05 / mean drift [pxl] for de
HIERARCH TNG QC DRIFT DET0 MEAN_ERR = 6.25669170999861E-05 / mean drift err [pxl
HIERARCH TNG QC DRIFT DET0 SLOPE_X = 0. / drift slope along the orders for det 0
HIERARCH TNG QC DRIFT DET0 SLOPE_X_ERR = 0. / drift slope err for det 0
HIERARCH TNG QC DRIFT DET0 SLOPE_O = 0. / drift slope across the orders for det
HIERARCH TNG QC DRIFT DET0 SLOPE_O_ERR = 0. / drift slope err for det 0
HIERARCH TNG QC DRIFT DET0 CHISQ = 2.02565062369573 / drift fit CHI2 for det 0
HIERARCH TNG QC DRIFT DET0 REJECTED = 181 / nb of rejected pixels for det 0
HIERARCH TNG QC SCIRED DRIFT CHI2 CHECK = 1 / SCIRED drift CHI2 QC
HIERARCH TNG QC SCIRED DRIFT FLUX_RATIO CHECK = 1 / SCIRED drift flux ratio QC
HIERARCH TNG QC SCIRED DRIFT MEAN CHECK = 1 / SCIRED drift mean QC
HIERARCH TNG QC SCIRED DRIFT MEAN_ERR CHECK = 1 / SCIRED drift mean error QC
HIERARCH TNG QC SCIRED DRIFT CHECK = 1 / SCIRED drift QC
HIERARCH TNG QC ORDER1 FLUX CORR = 0.691922924239634 / Flux corr for the order
HIERARCH TNG QC ORDER2 FLUX CORR = 0.71773857021833 / Flux corr for the order
HIERARCH TNG QC ORDER3 FLUX CORR = 0.741307365087891 / Flux corr for the order
HIERARCH TNG QC ORDER4 FLUX CORR = 0.762839563095781 / Flux corr for the order
HIERARCH TNG QC ORDER5 FLUX CORR = 0.782537516789034 / Flux corr for the order
HIERARCH TNG QC ORDER6 FLUX CORR = 0.800595216174997 / Flux corr for the order
HIERARCH TNG QC ORDER7 FLUX CORR = 0.81719757665428 / Flux corr for the order
HIERARCH TNG QC ORDER8 FLUX CORR = 0.832519989911134 / Flux corr for the order
HIERARCH TNG QC ORDER9 FLUX CORR = 0.846727862460625 / Flux corr for the order
HIERARCH TNG QC ORDER10 FLUX CORR = 0.859976153493335 / Flux corr for the order
HIERARCH TNG QC ORDER11 FLUX CORR = 0.872409044396932 / Flux corr for the order
HIERARCH TNG QC ORDER12 FLUX CORR = 0.884159551784478 / Flux corr for the order
HIERARCH TNG QC ORDER13 FLUX CORR = 0.89534915759441 / Flux corr for the order
HIERARCH TNG QC ORDER14 FLUX CORR = 0.906087589536355 / Flux corr for the order
HIERARCH TNG QC ORDER15 FLUX CORR = 0.916472566581888 / Flux corr for the order
HIERARCH TNG QC ORDER16 FLUX CORR = 0.926589614027307 / Flux corr for the order
HIERARCH TNG QC ORDER17 FLUX CORR = 0.936511966196576 / Flux corr for the order
HIERARCH TNG QC ORDER18 FLUX CORR = 0.946300540481047 / Flux corr for the order
HIERARCH TNG QC ORDER19 FLUX CORR = 0.956003962836121 / Flux corr for the order
HIERARCH TNG QC ORDER20 FLUX CORR = 0.965658680403067 / Flux corr for the order
HIERARCH TNG QC ORDER21 FLUX CORR = 0.975289230634189 / Flux corr for the order
HIERARCH TNG QC ORDER22 FLUX CORR = 0.984908477593535 / Flux corr for the order
HIERARCH TNG QC ORDER23 FLUX CORR = 0.994517989212682 / Flux corr for the order
HIERARCH TNG QC ORDER24 FLUX CORR = 1.004108577838 / Flux corr for the order
HIERARCH TNG QC ORDER25 FLUX CORR = 1.01366088751638 / Flux corr for the order
HIERARCH TNG QC ORDER26 FLUX CORR = 1.02314613226986 / Flux corr for the order
HIERARCH TNG QC ORDER27 FLUX CORR = 1.03252689149735 / Flux corr for the order
HIERARCH TNG QC ORDER28 FLUX CORR = 1.04175805337673 / Flux corr for the order
HIERARCH TNG QC ORDER29 FLUX CORR = 1.05078784703915 / Flux corr for the order
HIERARCH TNG QC ORDER30 FLUX CORR = 1.05955898539287 / Flux corr for the order
HIERARCH TNG QC ORDER31 FLUX CORR = 1.06800989498424 / Flux corr for the order
HIERARCH TNG QC ORDER32 FLUX CORR = 1.07607604925852 / Flux corr for the order
HIERARCH TNG QC ORDER33 FLUX CORR = 1.08369137335512 / Flux corr for the order
HIERARCH TNG QC ORDER34 FLUX CORR = 1.09078968617496 / Flux corr for the order
HIERARCH TNG QC ORDER35 FLUX CORR = 1.09730616100205 / Flux corr for the order
HIERARCH TNG QC ORDER36 FLUX CORR = 1.1031788450814 / Flux corr for the order
HIERARCH TNG QC ORDER37 FLUX CORR = 1.10835014688837 / Flux corr for the order
HIERARCH TNG QC ORDER38 FLUX CORR = 1.11276825354571 / Flux corr for the order
HIERARCH TNG QC ORDER39 FLUX CORR = 1.11638842618231 / Flux corr for the order
HIERARCH TNG QC ORDER40 FLUX CORR = 1.11917418963776 / Flux corr for the order
HIERARCH TNG QC ORDER41 FLUX CORR = 1.12109833049408 / Flux corr for the order
HIERARCH TNG QC ORDER42 FLUX CORR = 1.12214364735155 / Flux corr for the order
HIERARCH TNG QC ORDER43 FLUX CORR = 1.12230338430345 / Flux corr for the order
HIERARCH TNG QC ORDER44 FLUX CORR = 1.12158132017157 / Flux corr for the order
HIERARCH TNG QC ORDER45 FLUX CORR = 1.11999144797846 / Flux corr for the order
HIERARCH TNG QC ORDER46 FLUX CORR = 1.11755721216741 / Flux corr for the order
HIERARCH TNG QC ORDER47 FLUX CORR = 1.11431025453749 / Flux corr for the order
HIERARCH TNG QC ORDER48 FLUX CORR = 1.11028866171728 / Flux corr for the order
HIERARCH TNG QC ORDER49 FLUX CORR = 1.10553477091253 / Flux corr for the order
HIERARCH TNG QC ORDER50 FLUX CORR = 1.10009260420975 / Flux corr for the order
HIERARCH TNG QC ORDER51 FLUX CORR = 1.09400505033227 / Flux corr for the order
HIERARCH TNG QC ORDER52 FLUX CORR = 1.08731106222604 / Flux corr for the order
HIERARCH TNG QC ORDER53 FLUX CORR = 1.08004320459531 / Flux corr for the order
HIERARCH TNG QC ORDER54 FLUX CORR = 1.07222621929577 / Flux corr for the order
HIERARCH TNG QC ORDER55 FLUX CORR = 1.06387729323251 / Flux corr for the order
HIERARCH TNG QC ORDER56 FLUX CORR = 1.05500900500738 / Flux corr for the order
HIERARCH TNG QC ORDER57 FLUX CORR = 1.04563677326769 / Flux corr for the order
HIERARCH TNG QC ORDER58 FLUX CORR = 1.03579256982994 / Flux corr for the order
HIERARCH TNG QC ORDER59 FLUX CORR = 1.02554752037577 / Flux corr for the order
HIERARCH TNG QC ORDER60 FLUX CORR = 1.01504715606279 / Flux corr for the order
HIERARCH TNG QC ORDER61 FLUX CORR = 1.00456397965172 / Flux corr for the order
HIERARCH TNG QC ORDER62 FLUX CORR = 0.994573250267422 / Flux corr for the order
HIERARCH TNG QC ORDER63 FLUX CORR = 0.985860050375777 / Flux corr for the order
HIERARCH TNG QC ORDER64 FLUX CORR = 0.97966826299853 / Flux corr for the order
HIERARCH TNG QC ORDER65 FLUX CORR = 0.977904007027973 / Flux corr for the order
HIERARCH TNG QC ORDER66 FLUX CORR = 0.983411484456155 / Flux corr for the order
HIERARCH TNG QC ORDER67 FLUX CORR = 1.00034266417424 / Flux corr for the order
HIERARCH TNG QC ORDER68 FLUX CORR = 1.03464833610997 / Flux corr for the order
HIERARCH TNG QC ORDER69 FLUX CORR = 1.09472896714215 / Flux corr for the order
HIERARCH TNG QC FLUX CORR MIN = 0.691922924239634 / Min of flux correction
HIERARCH TNG QC FLUX CORR MAX = 1.12230338430345 / Max of flux correction
HIERARCH TNG QC SCIRED FLUX CORR CHECK = 1 / Flux correction QC
HIERARCH TNG QC CCF RV = -0.00814132310799438 / Radial velocity [km/s]
HIERARCH TNG QC CCF RV ERROR = 0.000209630750327646 / Uncertainty on radial velo
HIERARCH TNG QC CCF FWHM = 7.73920226285548 / CCF FWHM [km/s]
HIERARCH TNG QC CCF FWHM ERROR = 0.000419261500655292 / Uncertainty on CCF FWHM
HIERARCH TNG QC CCF CONTRAST = 60.4169208942176 / CCF contrast %
HIERARCH TNG QC CCF CONTRAST ERROR = 0.00327301032570969 / CCF contrast error %
HIERARCH TNG QC CCF CONTINUUM = 24736538.6798794 / CCF continuum level [e-]
HIERARCH TNG QC CCF MASK = 'G2 ' / CCF mask used
HIERARCH TNG QC CCF FLUX ASYMMETRY = 0.0330405043099812 / CCF asymmetry (km/s)
HIERARCH TNG QC CCF FLUX ASYMMETRY ERROR = 0.000349627772013141 / CCF asymmetry
HIERARCH TNG QC CCF BIS SPAN = -0.0878114681103811 / CCF bisector span (km/s)
HIERARCH TNG QC CCF BIS SPAN ERROR = 0.000419261500655292 / CCF bisector span er
HIERARCH TNG QC SCIRED CHECK = 1 / SCIRED global QC
CHECKSUM= 'ZSKcaRHcTRHcZRHc' / HDU checksum updated 2020-08-25T21:10:40
DATASUM = ' 0' / data unit checksum updated 2020-08-25T21:10:40
Data HDU columns:
wavelength
wavelength_air
flux
error
quality
First 5 fluxes from the 'flux' column:
[0.0, 0.0, 0.0, 0.0, 0.0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment