1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
//! Birli is a library of common preprocessing tasks performed in the data pipeline of the Murchison
//! Widefield Array (MWA) Telescope.
//!
//! # Examples
//!
//! Here's an example of how to flag some visibility files
//!
//! ```rust
//! use birli::{
//! write_flags,
//! mwalib::CorrelatorContext,
//! get_weight_factor, flag_to_weight_array,
//! FlagContext, VisSelection, io::{read_mwalib, write_uvfits}
//! };
//! use tempfile::tempdir;
//!
//! // define our input files
//! let metafits_path = "tests/data/1297526432_mwax/1297526432.metafits";
//! let gpufits_paths = vec![
//! "tests/data/1297526432_mwax/1297526432_20210216160014_ch117_000.fits",
//! "tests/data/1297526432_mwax/1297526432_20210216160014_ch117_001.fits",
//! "tests/data/1297526432_mwax/1297526432_20210216160014_ch118_000.fits",
//! "tests/data/1297526432_mwax/1297526432_20210216160014_ch118_001.fits",
//! ];
//!
//! // define a temporary directory for output files
//! let tmp_dir = tempdir().unwrap();
//!
//! // define our output paths
//! let flag_template = tmp_dir.path().join("Flagfile%%%.mwaf");
//! let uvfits_out = tmp_dir.path().join("1297526432.uvfits");
//!
//! // Create an mwalib::CorrelatorContext for accessing visibilities.
//! let corr_ctx = CorrelatorContext::new(metafits_path, &gpufits_paths).unwrap();
//!
//! // Determine which timesteps and coarse channels we want to use
//! let vis_sel = VisSelection::from_mwalib(&corr_ctx).unwrap();
//!
//! // Prepare our flagmasks with known bad antennae
//! let flag_ctx = FlagContext::from_mwalib(&corr_ctx);
//!
//! // Create a blank array to store flags and visibilities
//! let fine_chans_per_coarse = corr_ctx.metafits_context.num_corr_fine_chans_per_coarse;
//! let mut flag_array = vis_sel.allocate_flags(fine_chans_per_coarse).unwrap();
//! flag_ctx.set_flags(
//! flag_array.view_mut(),
//! &vis_sel.timestep_range,
//! &vis_sel.coarse_chan_range,
//! &vis_sel.get_ant_pairs(&corr_ctx.metafits_context)
//! );
//! let mut jones_array = vis_sel.allocate_jones(fine_chans_per_coarse).unwrap();
//!
//! // read visibilities out of the gpubox files
//! read_mwalib(&vis_sel, &corr_ctx, jones_array.view_mut(), flag_array.view_mut(), false)
//! .unwrap();
//!
//! // write the flags to disk as .mwaf
//! write_flags(flag_template.to_str().unwrap(),
//! &corr_ctx,
//! &vis_sel,
//! flag_array.view(),
//! true,
//! None,
//! None,
//! ).unwrap();
//!
//! // write the visibilities to disk as .uvfits
//! let num_pols = corr_ctx.metafits_context.num_visibility_pols;
//! let weight_factor = get_weight_factor(&corr_ctx);
//! let weight_array = flag_to_weight_array(flag_array.view(), weight_factor);
//! write_uvfits(
//! uvfits_out.as_path(),
//! &corr_ctx,
//! jones_array.view(),
//! weight_array.view(),
//! &vis_sel.timestep_range,
//! &vis_sel.coarse_chan_range,
//! &vis_sel.baseline_idxs,
//! None,
//! None,
//! 1,
//! 1,
//! ).unwrap();
//! ```
//!
//! # Details
//!
//! Birli reads visibilities with [`MWALib`] and uses CXX to bind to the [`AOFlagger`] C++ library.
//! For more details its interface, check out the [`aoflagger::AOFlagger`]
//! documentation
//!
//! [`MWALib`]: https://github.com/MWATelescope/mwalib
//! [`AOFlagger`]: https://gitlab.com/aroffringa/aoflagger
//! [`aoflagger::AOFlagger`]: http://www.andreoffringa.org/aoflagger/doxygen/classaoflagger_1_1AOFlagger.html
// //////// //
// pedantic //
// //////// //
// #![warn(clippy::pedantic)]
// useful:
// TODO: Look at these later:
// #![allow(clippy::too_many_lines)]
// #![allow(clippy::missing_panics_doc)]
// #![allow(clippy::must_use_candidate)]
// won't fix:
// #![allow(clippy::module_name_repetitions)]
// #![allow(clippy::cast_precision_loss)]
// #![allow(clippy::cast_sign_loss)]
// #![allow(clippy::cast_possible_truncation)]
// #![allow(clippy::cast_lossless)]
// #![allow(clippy::unreadable_literal)]
// #![allow(clippy::similar_names)]
// #![allow(clippy::struct_excessive_bools)]
// #![allow(clippy::range_plus_one)]
// #![allow(clippy::cast_possible_wrap)]
// /////// //
// nursery //
// /////// //
// #![warn(clippy::nursery)]
// useful:
// whiltelist:
// TODO: Look at these later:
// won't fix:
// ///// //
// cargo //
// ///// //
// #![warn(clippy::cargo)]
use cfg_if;
use warn;
pub use FlagFileSet;
pub use ;
pub use approx;
pub use ;
pub use ;
pub use marlu;
pub use ;
pub use BirliError;
pub use PreprocessContext;
pub use ;
cfg_if!
cfg_if!
use HashMap;
use Mutex;
use Duration;
lazy_static!
/// Time a statement and increment the timer given by name in the hashmap of durations
/// Get the hashmap of durations used internally by Birli for timing functions with
/// [`with_increment_duration!`]