Function read_multiple_fits

Source
pub fn read_multiple_fits(
    file_paths: Vec<PathBuf>,
    header_items: &Vec<String>,
) -> Result<DataFrame, FitsLoaderError>
Expand description

Reads multiple specific FITS files and combines them into a single DataFrame.

§Arguments

  • file_paths - Vector of paths to the FITS files to read
  • header_items - List of header values to extract

§Returns

A Result containing either the combined DataFrame or a FitsLoaderError.