ApJdataFrames 004: Hartmann2005

Title: IRAC Observations of Taurus Pre–Main-Sequence Stars
Authors: Lee Hartmann, S. T. Megeath, Lori Allen, Kevin Luhman, Nuria Calvet, Paola D'Alessio, Ramiro Franco-Hernandez, and Giovanni Fazio

Data is from this paper: http://iopscience.iop.org/0004-637X/629/2/881


In [1]:
import warnings
warnings.filterwarnings("ignore")

Table 1- IRAC Photometry


In [2]:
import pandas as pd

In [3]:
names = ["Name","2MASS ID","R.A.(J2000.0)(deg)","Decl. (J2000.0)(deg)",
         "J(mag)","H(mag)","Ks(mag)","[3.6](mag)","[4.5](mag)",
         "[5.8](mag)","[8](mag)","JD-53000","IRAC Type"]
tbl1 = pd.read_csv("http://iopscience.iop.org/0004-637X/629/2/881/fulltext/61849.tb1.txt", 
                   na_values='\ldots',sep='\t', names=names)
tbl1.head()


Out[3]:
Name 2MASS ID R.A.(J2000.0)(deg) Decl. (J2000.0)(deg) J(mag) H(mag) Ks(mag) [3.6](mag) [4.5](mag) [5.8](mag) [8](mag) JD-53000 IRAC Type
0 04260+2642 04290498+2649073 67.27046 26.81819 14.680 13.025 11.883 9.984 \pm 0.011 9.388 \pm 0.040 8.853 \pm 0.008 8.009 \pm 0.008 71.676 I
1 04248+2612 04275730+2619183 66.98861 26.32129 13.235 11.795 11.026 9.335 \pm 0.019 8.616 \pm 0.014 7.855 \pm 0.007 6.812 \pm 0.006 71.676 I
2 04489+3042 04520668+3047175 73.02742 30.78775 14.426 12.021 10.383 8.379 \pm 0.011 7.690 \pm 0.012 7.095 \pm 0.008 6.161 \pm 0.012 49.355 I
3 04368+2557 NaN 69.97395 26.05224 NaN NaN NaN 12.095 \pm 0.243 10.484 \pm 0.046 9.521 \pm 0.088 9.137 \pm 0.062 71.637 0
4 04365+2535 04393519+2541447 69.89638 25.69535 16.905 13.752 10.837 7.466 \pm 0.008 6.111 \pm 0.008 5.151 \pm 0.004 4.420 \pm 0.007 71.641 I

The end.