ctddump 0.25.0

Convert oceanographic CTD (Conductivity, Temperature, Depth) data from NetCDF to Parquet or YAML
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
use clap::{Parser, Subcommand};
use std::path::PathBuf;

use crate::convert::cora_config::{CoraConfig, QcType};
use crate::convert::nrt_config::NrtConfig;
use crate::dupkey::RoundMode;

#[derive(Parser, Debug)]
#[command(name = "ctddump", version, about = "Convert CTD data from NetCDF to Parquet or YAML")]
pub struct Cli {
    #[command(subcommand)]
    pub command: Commands,
}

#[derive(Subcommand, Debug)]
pub enum Commands {
    /// Convert a single NetCDF file to Parquet
    #[command(name = "convert")]
    Convert {
        #[command(subcommand)]
        format: ConvertFormat,
    },
    /// Batch-process all NetCDF files in a directory tree
    #[command(name = "batch")]
    Batch {
        #[command(subcommand)]
        subcommand: BatchSubcommand,
    },
    /// Extract metadata from a single NetCDF file to YAML
    #[command(name = "header")]
    Header {
        #[command(subcommand)]
        format: HeaderFormat,
    },
    /// Concatenate files from a directory tree into a single file
    #[command(name = "concat")]
    Concat {
        #[command(subcommand)]
        subcommand: ConcatSubcommand,
    },
    /// Summarise a Parquet or YAML file as a text report
    #[command(name = "report")]
    Report {
        #[command(subcommand)]
        subcommand: ReportSubcommand,
    },
    /// Filter a Parquet file's profiles by a geographic bounding box
    #[command(name = "filter")]
    Filter {
        /// Keep (include) or drop (exclude) profiles inside the box
        #[arg(long, value_enum, default_value_t = FilterMode::Include)]
        mode: FilterMode,
        /// Western bound: minimum longitude
        #[arg(long, allow_hyphen_values = true)]
        min_lon: f64,
        /// Eastern bound: maximum longitude
        #[arg(long, allow_hyphen_values = true)]
        max_lon: f64,
        /// Southern bound: minimum latitude
        #[arg(long, allow_hyphen_values = true)]
        min_lat: f64,
        /// Northern bound: maximum latitude
        #[arg(long, allow_hyphen_values = true)]
        max_lat: f64,
        /// Source Parquet file
        src: PathBuf,
        /// Output Parquet file
        dest: PathBuf,
    },
    /// Drop profiles that are entirely NA in any of temp/psal/pres
    #[command(name = "dropna")]
    Dropna {
        /// Source Parquet file
        src: PathBuf,
        /// Output Parquet file
        dest: PathBuf,
    },
    /// Drop profiles whose time_qc or position_qc is a present, non-OK flag
    #[command(name = "dropqc")]
    Dropqc {
        /// Source Parquet file
        src: PathBuf,
        /// Output Parquet file
        dest: PathBuf,
    },
    /// Mark duplicate profiles (by timestamp/longitude/latitude) with an is_dup column
    #[command(name = "markdup")]
    Markdup {
        /// strftime format applied to profile_timestamp for the key (default: date only)
        #[arg(long, default_value = "%Y-%m-%d")]
        time_format: String,
        /// Decimal places longitude/latitude are rounded to for the key
        #[arg(long, default_value_t = 3)]
        decimals: u32,
        /// How coordinates are rounded for the key
        #[arg(long, value_enum, default_value_t = RoundMode::Round)]
        round_mode: RoundMode,
        /// Source Parquet file
        src: PathBuf,
        /// Output Parquet file (adds the is_dup column)
        dest: PathBuf,
        /// Output TSV listing the duplicated profiles
        dups: PathBuf,
    },
    /// Remove duplicate profiles, keeping the one with the most observations
    #[command(name = "dedup")]
    Dedup {
        /// strftime format applied to profile_timestamp for the key (default: date only)
        #[arg(long, default_value = "%Y-%m-%d")]
        time_format: String,
        /// Decimal places longitude/latitude are rounded to for the key
        #[arg(long, default_value_t = 3)]
        decimals: u32,
        /// How coordinates are rounded for the key
        #[arg(long, value_enum, default_value_t = RoundMode::Round)]
        round_mode: RoundMode,
        /// Source Parquet file
        src: PathBuf,
        /// Output Parquet file
        dest: PathBuf,
    },
}

// ── Report subcommands ────────────────────────────────────────────────────────

/// Aggregation level for a Parquet report.
#[derive(Copy, Clone, Debug, PartialEq, Eq, clap::ValueEnum)]
pub enum ReportLevel {
    /// One summary row for the whole file
    Global,
    /// One row per platform_code
    Platform,
    /// One row per (platform_code, profile_no)
    Profile,
}

/// Output text format for a report.
#[derive(Copy, Clone, Debug, PartialEq, Eq, clap::ValueEnum)]
pub enum ReportFormat {
    /// Tab-separated values (header + rows)
    Tsv,
    /// Human-readable aligned text
    Text,
    /// JSON array of records
    Json,
}

/// Output format for a `report summary` page.
#[derive(Copy, Clone, Debug, PartialEq, Eq, clap::ValueEnum)]
pub enum SummaryFormat {
    /// Markdown page
    Md,
    /// Self-contained HTML page
    Html,
}

#[derive(Subcommand, Debug)]
pub enum ReportSubcommand {
    /// Summarise a Parquet data file
    #[command(name = "parquet")]
    Parquet {
        /// Aggregation level
        #[arg(long, value_enum, default_value_t = ReportLevel::Platform)]
        level: ReportLevel,
        /// Output format
        #[arg(long, value_enum, default_value_t = ReportFormat::Tsv)]
        format: ReportFormat,
        /// Source Parquet file
        src: PathBuf,
        /// Output file (default: stdout)
        dest: Option<PathBuf>,
    },
    /// Summarise a YAML header file
    #[command(name = "yaml")]
    Yaml {
        /// Output format
        #[arg(long, value_enum, default_value_t = ReportFormat::Tsv)]
        format: ReportFormat,
        /// Source YAML file
        src: PathBuf,
        /// Output file (default: stdout)
        dest: Option<PathBuf>,
    },
    /// Assemble a multi-section summary page for one file stem from the pipeline's
    /// TSV reports. Section source files are auto-located under `--report-dir` (and
    /// the markdup duplicates TSV under `--out-dir`); any section whose file is
    /// absent is skipped.
    #[command(name = "summary")]
    Summary {
        /// File stem whose reports to summarise, e.g. `nrt_ar_ar`
        stem: String,
        /// Root of the report/ TSV tree
        #[arg(long, default_value = "report")]
        report_dir: PathBuf,
        /// Root of the output/ data tree (holds the markdup `.dups.tsv`)
        #[arg(long, default_value = "output")]
        out_dir: PathBuf,
        /// Page format
        #[arg(long, value_enum, default_value_t = SummaryFormat::Md)]
        format: SummaryFormat,
        /// Page title (default: `Summary: <stem>`)
        #[arg(long)]
        title: Option<String>,
        /// Note shown under the page title; repeat for several notes
        #[arg(long, value_name = "TEXT")]
        note: Vec<String>,
        /// Output file (default: stdout)
        #[arg(short = 'o', long)]
        output: Option<PathBuf>,
    },
}

// ── Filter mode ───────────────────────────────────────────────────────────────

/// Whether profiles inside the box are kept or dropped.
#[derive(Copy, Clone, Debug, PartialEq, Eq, clap::ValueEnum)]
pub enum FilterMode {
    /// Keep only profiles inside the box (drop everything else)
    Include,
    /// Drop profiles inside the box (keep everything else)
    Exclude,
}

// ── Concat subcommands ────────────────────────────────────────────────────────

#[derive(Subcommand, Debug)]
pub enum ConcatSubcommand {
    /// Merge Parquet files into a single Parquet file
    #[command(name = "convert")]
    Convert {
        /// Source directory to search for Parquet files
        src_dir: PathBuf,
        /// Output Parquet file
        output: PathBuf,
        /// Glob pattern to match filenames (default: *.parquet)
        #[arg(long, value_name = "GLOB")]
        pattern: Option<String>,
        /// Do not re-assign profile_no and observation_no after merging
        #[arg(long = "no-renumber")]
        no_renumber: bool,
        /// Sort without `pres`: keep observations in their original per-profile
        /// order instead of reordering by pressure (ignored with --no-renumber)
        #[arg(long = "no-pres-sort")]
        no_pres_sort: bool,
        /// Keep rows with missing (null/NaN) `pres`. By default such rows are
        /// dropped before merging so observation_no stays contiguous
        #[arg(long = "keep-na-pres")]
        keep_na_pres: bool,
        /// Number of threads for parallel renumbering via temporary files in the
        /// output folder (defaults to all CPU cores; use 1 for the sequential,
        /// lowest-memory path; ignored with --no-renumber)
        #[arg(short, long)]
        threads: Option<usize>,
    },
    /// Merge header YAML files into a single YAML file
    #[command(name = "header")]
    Header {
        /// Source directory to search for YAML files
        src_dir: PathBuf,
        /// Output YAML file
        output: PathBuf,
        /// Glob pattern to match filenames (default: *.yaml)
        #[arg(long, value_name = "GLOB")]
        pattern: Option<String>,
    },
}

// ── NRT config overrides ──────────────────────────────────────────────────────

/// Per-field overrides for NRT configuration.
/// Applied on top of `--config` (or the built-in default) in priority order:
/// built-in default < `--config` file < individual flags.
#[derive(clap::Args, Debug, Clone)]
pub struct NrtArgs {
    /// Source contains a DEPH variable
    #[arg(long = "deph-source", overrides_with = "no_deph_source")]
    pub deph_source: bool,
    /// Source has no DEPH variable
    #[arg(long = "no-deph-source", overrides_with = "deph_source")]
    pub no_deph_source: bool,
    /// Derive profile_longitude/profile_latitude from PRECISE_* or DEPLOY_* coords
    #[arg(long = "profile-coords", overrides_with = "no_profile_coords")]
    pub profile_coords: bool,
    /// Do not derive profile coordinate columns
    #[arg(long = "no-profile-coords", overrides_with = "profile_coords")]
    pub no_profile_coords: bool,
    /// Glob pattern matched against filenames for batch file selection (e.g. "AR_PR_CT_*.nc")
    #[arg(long = "pattern", value_name = "GLOB")]
    pub pattern: Option<String>,
}

impl NrtArgs {
    /// Overwrite the fields of `config` for each flag that was explicitly set.
    /// Fields whose flag was not supplied are left unchanged.
    pub fn apply_to(&self, config: &mut NrtConfig) {
        if self.deph_source         { config.has_deph_source = true; }
        else if self.no_deph_source { config.has_deph_source = false; }
        if self.profile_coords         { config.has_profile_coords = true; }
        else if self.no_profile_coords { config.has_profile_coords = false; }
        if let Some(ref p) = self.pattern { config.pattern = Some(p.clone()); }
    }
}

// ── CORA config overrides ─────────────────────────────────────────────────────

/// Per-field overrides for CORA configuration.
/// Applied on top of `--config` (or the built-in default) in priority order:
/// built-in default < `--config` file < individual flags.
#[derive(clap::Args, Debug, Clone)]
pub struct CoraArgs {
    /// Time variable name in the source file (e.g. TIME, JULD)
    #[arg(long = "time-var", value_name = "VAR")]
    pub time_var: Option<String>,
    /// QC flag storage type in the source file
    #[arg(long = "qc-type")]
    pub qc_type: Option<QcType>,
    /// Source has TIME_QC/POSITION_QC variables
    #[arg(long = "time-qc", overrides_with = "no_time_qc")]
    pub time_qc: bool,
    /// Source has no TIME_QC/POSITION_QC variables
    #[arg(long = "no-time-qc", overrides_with = "time_qc")]
    pub no_time_qc: bool,
    /// Source contains a DEPH variable
    #[arg(long = "deph-source", overrides_with = "no_deph_source")]
    pub deph_source: bool,
    /// Source has no DEPH variable
    #[arg(long = "no-deph-source", overrides_with = "deph_source")]
    pub no_deph_source: bool,
    /// Glob pattern matched against filenames for batch file selection (e.g. "CO_*.nc")
    #[arg(long = "pattern", value_name = "GLOB")]
    pub pattern: Option<String>,
}

impl CoraArgs {
    /// Overwrite the fields of `config` for each flag that was explicitly set.
    /// Fields whose flag was not supplied are left unchanged.
    pub fn apply_to(&self, config: &mut CoraConfig) {
        if let Some(ref tv) = self.time_var  { config.time_var  = tv.clone(); }
        if let Some(ref qt) = self.qc_type   { config.qc_type   = qt.clone(); }
        if self.time_qc         { config.has_time_qc = true; }
        else if self.no_time_qc { config.has_time_qc = false; }
        if self.deph_source         { config.has_deph_source = true; }
        else if self.no_deph_source { config.has_deph_source = false; }
        if let Some(ref p) = self.pattern { config.pattern = Some(p.clone()); }
    }
}

// ── convert ──────────────────────────────────────────────────────────────────

#[derive(Subcommand, Debug)]
pub enum ConvertFormat {
    /// NRT Arctic Sea (.nc -> .parquet)
    #[command(name = "nrt_ar")]
    NrtAr {
        #[arg(short, long)] config: Option<PathBuf>,
        #[command(flatten)] nrt_args: NrtArgs,
        src: PathBuf,
        dest: PathBuf,
    },
    /// NRT Baltic Sea (.nc -> .parquet)
    #[command(name = "nrt_bo")]
    NrtBo {
        #[arg(short, long)] config: Option<PathBuf>,
        #[command(flatten)] nrt_args: NrtArgs,
        src: PathBuf,
        dest: PathBuf,
    },
    /// NRT Mediterranean Sea (.nc -> .parquet)
    #[command(name = "nrt_mo")]
    NrtMo {
        #[arg(short, long)] config: Option<PathBuf>,
        #[command(flatten)] nrt_args: NrtArgs,
        src: PathBuf,
        dest: PathBuf,
    },
    /// NRT Global (.nc -> .parquet)
    #[command(name = "nrt_gl")]
    NrtGl {
        #[arg(short, long)] config: Option<PathBuf>,
        #[command(flatten)] nrt_args: NrtArgs,
        src: PathBuf,
        dest: PathBuf,
    },
    /// CORA current format (.nc -> .parquet)
    #[command(name = "cora")]
    Cora {
        #[arg(short, long)] config: Option<PathBuf>,
        #[command(flatten)] cora_args: CoraArgs,
        src: PathBuf,
        dest: PathBuf,
    },
    /// CORA legacy format (.nc -> .parquet)
    #[command(name = "cora_legacy")]
    CoraLegacy {
        #[arg(short, long)] config: Option<PathBuf>,
        #[command(flatten)] cora_args: CoraArgs,
        src: PathBuf,
        dest: PathBuf,
    },
}

// ── batch ─────────────────────────────────────────────────────────────────────

#[derive(Subcommand, Debug)]
pub enum BatchSubcommand {
    /// Batch-convert .nc → .parquet for all files in a directory tree
    #[command(name = "convert")]
    Convert {
        #[command(subcommand)]
        format: BatchConvertFormat,
    },
    /// Batch-extract .nc → .yaml metadata for all files in a directory tree
    #[command(name = "header")]
    Header {
        #[command(subcommand)]
        format: BatchHeaderFormat,
    },
}

#[derive(Subcommand, Debug)]
pub enum BatchConvertFormat {
    /// NRT Arctic Sea: batch convert .nc → .parquet
    #[command(name = "nrt_ar")]
    NrtAr {
        #[arg(short, long)] config: Option<PathBuf>,
        #[command(flatten)] nrt_args: NrtArgs,
        /// Output directory (flat). Defaults to same directory as each input file.
        #[arg(short, long)] output: Option<PathBuf>,
        /// Number of threads (defaults to all available CPU cores)
        #[arg(short, long)] threads: Option<usize>,
        /// Source directory to search recursively for .nc files
        src_dir: PathBuf,
    },
    /// NRT Baltic Sea: batch convert .nc → .parquet
    #[command(name = "nrt_bo")]
    NrtBo {
        #[arg(short, long)] config: Option<PathBuf>,
        #[command(flatten)] nrt_args: NrtArgs,
        #[arg(short, long)] output: Option<PathBuf>,
        #[arg(short, long)] threads: Option<usize>,
        src_dir: PathBuf,
    },
    /// NRT Mediterranean Sea: batch convert .nc → .parquet
    #[command(name = "nrt_mo")]
    NrtMo {
        #[arg(short, long)] config: Option<PathBuf>,
        #[command(flatten)] nrt_args: NrtArgs,
        #[arg(short, long)] output: Option<PathBuf>,
        #[arg(short, long)] threads: Option<usize>,
        src_dir: PathBuf,
    },
    /// NRT Global: batch convert .nc → .parquet
    #[command(name = "nrt_gl")]
    NrtGl {
        #[arg(short, long)] config: Option<PathBuf>,
        #[command(flatten)] nrt_args: NrtArgs,
        #[arg(short, long)] output: Option<PathBuf>,
        #[arg(short, long)] threads: Option<usize>,
        src_dir: PathBuf,
    },
    /// CORA current format: batch convert .nc → .parquet
    #[command(name = "cora")]
    Cora {
        #[arg(short, long)] config: Option<PathBuf>,
        #[command(flatten)] cora_args: CoraArgs,
        #[arg(short, long)] output: Option<PathBuf>,
        #[arg(short, long)] threads: Option<usize>,
        src_dir: PathBuf,
    },
    /// CORA legacy format: batch convert .nc → .parquet
    #[command(name = "cora_legacy")]
    CoraLegacy {
        #[arg(short, long)] config: Option<PathBuf>,
        #[command(flatten)] cora_args: CoraArgs,
        #[arg(short, long)] output: Option<PathBuf>,
        #[arg(short, long)] threads: Option<usize>,
        src_dir: PathBuf,
    },
}

#[derive(Subcommand, Debug)]
pub enum BatchHeaderFormat {
    /// NRT: batch extract .nc → .yaml metadata
    #[command(name = "nrt")]
    Nrt {
        /// Output directory (flat). Defaults to same directory as each input file.
        #[arg(short, long)] output: Option<PathBuf>,
        /// Number of threads (defaults to all available CPU cores)
        #[arg(short, long)] threads: Option<usize>,
        /// Glob pattern matched against filenames [default: "*.nc"]
        #[arg(long = "pattern", value_name = "GLOB")] pattern: Option<String>,
        /// Source directory to search recursively for .nc files
        src_dir: PathBuf,
    },
    /// CORA: batch extract .nc → .yaml metadata
    #[command(name = "cora")]
    Cora {
        #[arg(short, long)] output: Option<PathBuf>,
        #[arg(short, long)] threads: Option<usize>,
        /// Glob pattern matched against filenames [default: "*.nc"]
        #[arg(long = "pattern", value_name = "GLOB")] pattern: Option<String>,
        src_dir: PathBuf,
    },
}

// ── header ────────────────────────────────────────────────────────────────────

#[derive(Subcommand, Debug)]
pub enum HeaderFormat {
    /// NRT metadata (.nc -> .yaml)
    #[command(name = "nrt")]
    Nrt {
        src: PathBuf,
        dest: PathBuf,
    },
    /// CORA metadata (.nc -> .yaml)
    #[command(name = "cora")]
    Cora {
        src: PathBuf,
        dest: PathBuf,
    },
}

#[cfg(test)]
mod tests {
    use super::{CoraArgs, NrtArgs};
    use crate::convert::cora_config::{CoraConfig, QcType};
    use crate::convert::nrt_config::NrtConfig;

    fn nrt_args(
        deph_source: bool, no_deph_source: bool,
        profile_coords: bool, no_profile_coords: bool,
        pattern: Option<&str>,
    ) -> NrtArgs {
        NrtArgs { deph_source, no_deph_source, profile_coords, no_profile_coords,
                  pattern: pattern.map(str::to_string) }
    }

    fn cora_args(
        time_var: Option<&str>, qc_type: Option<QcType>,
        time_qc: bool, no_time_qc: bool,
        deph_source: bool, no_deph_source: bool,
        pattern: Option<&str>,
    ) -> CoraArgs {
        CoraArgs { time_var: time_var.map(str::to_string), qc_type,
                   time_qc, no_time_qc, deph_source, no_deph_source,
                   pattern: pattern.map(str::to_string) }
    }

    // ── NrtArgs::apply_to ────────────────────────────────────────────────────

    #[test]
    fn test_nrt_no_flags_leaves_config_unchanged() {
        let mut cfg = NrtConfig::nrt_bo(); // deph=true, profile=true
        nrt_args(false, false, false, false, None).apply_to(&mut cfg);
        assert!(cfg.has_deph_source);
        assert!(cfg.has_profile_coords);
        assert!(cfg.pattern.is_none());
    }

    #[test]
    fn test_nrt_deph_source_enables() {
        let mut cfg = NrtConfig::nrt_ar(); // deph=false
        nrt_args(true, false, false, false, None).apply_to(&mut cfg);
        assert!(cfg.has_deph_source);
    }

    #[test]
    fn test_nrt_no_deph_source_disables() {
        let mut cfg = NrtConfig::nrt_bo(); // deph=true
        nrt_args(false, true, false, false, None).apply_to(&mut cfg);
        assert!(!cfg.has_deph_source);
    }

    #[test]
    fn test_nrt_profile_coords_enables() {
        let mut cfg = NrtConfig::nrt_ar(); // profile=false
        nrt_args(false, false, true, false, None).apply_to(&mut cfg);
        assert!(cfg.has_profile_coords);
    }

    #[test]
    fn test_nrt_no_profile_coords_disables() {
        let mut cfg = NrtConfig::nrt_bo(); // profile=true
        nrt_args(false, false, false, true, None).apply_to(&mut cfg);
        assert!(!cfg.has_profile_coords);
    }

    #[test]
    fn test_nrt_pattern_sets_pattern() {
        let mut cfg = NrtConfig::nrt_ar();
        nrt_args(false, false, false, false, Some("MY_*.nc")).apply_to(&mut cfg);
        assert_eq!(cfg.pattern.as_deref(), Some("MY_*.nc"));
    }

    #[test]
    fn test_nrt_none_pattern_does_not_clear_existing() {
        let mut cfg = NrtConfig::nrt_ar();
        cfg.pattern = Some("OLD_*.nc".to_string());
        nrt_args(false, false, false, false, None).apply_to(&mut cfg);
        assert_eq!(cfg.pattern.as_deref(), Some("OLD_*.nc")); // unchanged
    }

    // ── CoraArgs::apply_to ───────────────────────────────────────────────────

    #[test]
    fn test_cora_no_flags_leaves_config_unchanged() {
        let mut cfg = CoraConfig::cora(); // time_var=TIME, qc=Int, time_qc=true, deph=true
        cora_args(None, None, false, false, false, false, None).apply_to(&mut cfg);
        assert_eq!(cfg.time_var, "TIME");
        assert_eq!(cfg.qc_type, QcType::Int);
        assert!(cfg.has_time_qc);
        assert!(cfg.has_deph_source);
    }

    #[test]
    fn test_cora_time_var_override() {
        let mut cfg = CoraConfig::cora(); // time_var=TIME
        cora_args(Some("JULD"), None, false, false, false, false, None).apply_to(&mut cfg);
        assert_eq!(cfg.time_var, "JULD");
    }

    #[test]
    fn test_cora_qc_type_override_to_char() {
        let mut cfg = CoraConfig::cora(); // qc_type=Int
        cora_args(None, Some(QcType::Char), false, false, false, false, None).apply_to(&mut cfg);
        assert_eq!(cfg.qc_type, QcType::Char);
    }

    #[test]
    fn test_cora_no_time_qc_disables() {
        let mut cfg = CoraConfig::cora(); // has_time_qc=true
        cora_args(None, None, false, true, false, false, None).apply_to(&mut cfg);
        assert!(!cfg.has_time_qc);
    }

    #[test]
    fn test_cora_time_qc_enables() {
        let mut cfg = CoraConfig::cora_legacy(); // has_time_qc=false
        cora_args(None, None, true, false, false, false, None).apply_to(&mut cfg);
        assert!(cfg.has_time_qc);
    }

    #[test]
    fn test_cora_deph_source_enables() {
        let mut cfg = CoraConfig::cora_legacy(); // has_deph_source=false
        cora_args(None, None, false, false, true, false, None).apply_to(&mut cfg);
        assert!(cfg.has_deph_source);
    }

    #[test]
    fn test_cora_no_deph_source_disables() {
        let mut cfg = CoraConfig::cora(); // has_deph_source=true
        cora_args(None, None, false, false, false, true, None).apply_to(&mut cfg);
        assert!(!cfg.has_deph_source);
    }

    #[test]
    fn test_cora_pattern_sets_pattern() {
        let mut cfg = CoraConfig::cora();
        cora_args(None, None, false, false, false, false, Some("CO_*.nc")).apply_to(&mut cfg);
        assert_eq!(cfg.pattern.as_deref(), Some("CO_*.nc"));
    }
}