Exemplo n.º 1
0
def get_all_dets_per_view(month, view='is_spaceview'):
    print 'Working on',month
    pump = DataPump()
    store = pump.get_month_h5(month)
    df = store.select('df', (view+'=True'))
    store.close()
    return df
Exemplo n.º 2
0
def get_data(month, det, view='is_spaceview', lock=None, container=None):
    print 'Working on',month
    pump = DataPump()
    store = pump.get_month_h5(month)
    df = store.select('df', (view+'=True'), columns=[det,'calib_block_labels'])
    store.close()
    return df