mod antenna;
mod baseline;
mod calibration_fit;
mod coarse_channel;
mod convert;
mod correlator_context;
mod error;
pub mod ffi;
pub mod fits_read;
mod gpubox_files;
mod metafits_context;
pub mod misc;
mod rfinput;
mod signal_chain_correction;
mod timestep;
mod types;
mod voltage_beam;
mod voltage_context;
mod voltage_files;
pub const MWALIB_MWA_LATITUDE_RADIANS: f64 = -0.4660608448386394;
pub const MWALIB_MWA_LONGITUDE_RADIANS: f64 = 2.0362898668561042;
pub const MWALIB_MWA_ALTITUDE_METRES: f64 = 377.827;
pub const MWALIB_SPEED_OF_LIGHT_IN_VACUUM_M_PER_S: f64 = 299792458.0;
pub const MWALIB_MWA_COAX_V_FACTOR: f64 = 1.204;
pub(crate) const MWA_VCS_LEGACY_RECOMBINED_FILE_SECONDS: u64 = 1;
pub(crate) const MWA_VCS_MWAXV2_SUBFILE_SECONDS: u64 = 8;
pub(crate) const MAX_RECEIVER_CHANNELS: usize = 256;
pub(crate) const MAX_ANTENNAS: usize = 256;
pub mod built_info {
include!(concat!(env!("OUT_DIR"), "/built.rs"));
}
pub use antenna::Antenna;
pub use baseline::Baseline;
pub use calibration_fit::error::CalibrationFitError;
pub use calibration_fit::CalibrationFit;
pub use coarse_channel::error::CoarseChannelError;
pub use coarse_channel::CoarseChannel;
pub use correlator_context::CorrelatorContext;
pub use error::MwalibError;
pub use fits_read::*;
pub use gpubox_files::GpuboxError;
pub use metafits_context::error::MetafitsError;
pub use metafits_context::MetafitsContext;
pub use misc::*;
pub use rfinput::{error::RfinputError, Rfinput};
pub use signal_chain_correction::*;
pub use timestep::TimeStep;
pub use types::{
CableDelaysApplied, GeometricDelaysApplied, MWAMode, MWAVersion, Pol, ReceiverType, VisPol,
};
pub use voltage_beam::VoltageBeam;
pub use voltage_context::VoltageContext;
pub use voltage_files::error::VoltageFileError;
pub use fitsio;
pub use fitsio_sys;
#[cfg(any(feature = "python", feature = "python-stubgen"))]
pub mod python;