def test_read_h100():
    h100 = DLASurvey.load_H100()
    assert h100.nsys == 100

    SiII_clms = h100.ions((14, 2))
    gdSiII = np.where(SiII_clms['flag_N'] > 0)[0]
    assert len(gdSiII) == 98
Esempio n. 2
0
def test_read_h100():
    h100 = DLASurvey.load_H100()
    assert h100.nsys == 100

    SiII_clms = h100.ions((14, 2))
    gdSiII = np.where(SiII_clms['flag_N'] > 0)[0]
    assert len(gdSiII) == 98
def test_read_h100_nosys():
    h100 = DLASurvey.load_H100(load_sys=False)
    assert h100.nsys == 100
Esempio n. 4
0
def test_read_h100_nosys():
    h100 = DLASurvey.load_H100(load_sys=False)
    assert h100.nsys == 100