MEarth README

These data products are an intermediate product of the Spextool pipeline (v3), with minor modifications as described in Newton et al. (2014). The data were calibrated and extracted, and target spectra were combined, then corrected for tellurics. The final step of the pipeline, merging into one-dimensional spectra, was not performed. The fits files present wavelength, flux, and error for each of the six orders in a three dimensional array, with the one dimension indicating the order.

This Jupyter notebook can be used to access the data in python.

IDL code snippet example:
data=MRDFITS('2MASSJ03480588+4032226_tc.fits',0,header)
for i=0,5 do begin
wave = data[*,0,i]
flux = data[*,1,i]
error = data[*,2,i]
endfor