Esempio n. 1
0
def _hrTg(path):
    """
    Load One HR diagrams (Tg type)
    """
    a = np.loadtxt(path)
    return hr.HRDiagram(a[15300:20400, :].reshape(51, 100, 100),
                        a[20400:25500, :].reshape(51, 100, 100),
                        a[25500:30600, :].reshape(51, 100, 100),
                        hr_type='Tg')
Esempio n. 2
0
def _hrTTG(path):
    """
    Load One HR diagrams (T/TG type)
    """
    a = np.loadtxt(path)
    return hr.HRDiagram(a[30600:35700, :].reshape(51, 100, 100),
                        a[35700:40800, :].reshape(51, 100, 100),
                        a[40800:, :].reshape(51, 100, 100),
                        hr_type='TTG')
Esempio n. 3
0
def _hrTL(path):
    """
    Load HR diagrams (TL type)
    """
    # 'a' is just a place order which contains the whole file in an array of shape (45900,100)
    a = np.loadtxt(path)
    return hr.HRDiagram(a[0:5100, :].reshape(51, 100, 100),
                        a[5100:10200, :].reshape(51, 100, 100),
                        a[10200:15300, :].reshape(51, 100, 100),
                        hr_type='TL')