mwalib 2.0.3

A library to simplify reading Murchison Widefield Array (MWA) raw visibilities, voltages and metadata.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

//! Errors associated with reading in metafits files.

use crate::MWAMode;
use thiserror::Error;

/// Metafits error subtypes - used by MetafitsContext
#[derive(Error, Debug)]
pub enum MetafitsError {
    #[error("Unable to determine MWA Version from MODE keyword {0} from metafits")]
    UnableToDetermineMWAVersionFromMode(MWAMode),
}