14 releases (7 breaking)
0.8.0 | Aug 13, 2024 |
---|---|
0.7.0 | Jan 23, 2023 |
0.6.0 | Nov 16, 2021 |
0.3.1 | Apr 1, 2021 |
0.1.0 | Dec 20, 2017 |
#92 in Science
425 downloads per month
Used in marlu
3MB
81K
SLoC
rubbl_casatables
A Rust interface to the CASA table format.
See the rubbl_core
README on Crates.io for a discussion of crate
duplication issues that may arise with key dependencies such as ndarray
.
lib.rs
:
I/O on CASA table data sets.
This crate provides I/O access to the CASA table data format. This format is commonly used for storing radio astronomical visibility data in the Measurement Set data model, but is not limited to that particular application — it is a generic data format for tabular scientific data. This crate provides only lower-level I/O interfaces and not higher-level abstractions for dealing with the specific semantics of Measurement Set data.
Because the on-disk representation of the CASA table format is quite complex and essentially undocumented, this crate’s implementation relies on wrapping a substantial quantity of C++ code from the casacore project. The goal is to provide access to the data format in a way that is completely safe and as idiomatic as possible, given the limitations imposed by the architecture of the underlying C++ code.
The entry point to this crate is typically the Table
struct that
represents a handle to a CASA table data set.