Exemple #1
0
def moose_acquisition(acq_name):
    """
    Helper function which returns a stream object corresponding to one acqusition on moose.

    The acq_name can be either a complete acquisition name, e.g. '20150910T041537Z_chime_beamformed',
    or a uniquely determining substring, e.g. '41537'.  For a list of all acquisitions, you may find
    the script show-moose-acquisitions.py useful.
    """
    filename_list = moose_filename_list(acq_name)
    return ch_vdif_assembler_cython.make_file_stream(filename_list)
def moose_acquisition(acq_name):
    """
    Helper function which returns a stream object corresponding to one acqusition on moose.

    The acq_name can be either a complete acquisition name, e.g. '20150910T041537Z_chime_beamformed',
    or a uniquely determining substring, e.g. '41537'.  For a list of all acquisitions, you may find
    the script show-moose-acquisitions.py useful.
    """
    filename_list = moose_filename_list(acq_name)
    return ch_vdif_assembler_cython.make_file_stream(filename_list)
def make_file_stream(filename_list):
    """Returns a stream object from a list of vdif_filenames."""
    return ch_vdif_assembler_cython.make_file_stream(filename_list)
Exemple #4
0
def make_file_stream(filename_list):
    """Returns a stream object from a list of vdif_filenames."""
    return ch_vdif_assembler_cython.make_file_stream(filename_list)