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
// SPDX-License-Identifier: AGPL-3.0-or-later
// Copyright (C) 2026 Vallés Puig, Ramon
//! # Search Options and Constants
//!
//! Configuration for altitude search algorithms including tolerances,
//! scan steps, and target-specific defaults.
use *;
// ---------------------------------------------------------------------------
// Search Options
// ---------------------------------------------------------------------------
/// Options for controlling search precision and strategy.
// ---------------------------------------------------------------------------
// Constants
// ---------------------------------------------------------------------------
/// Default scan step: 10 minutes in days.
pub const DEFAULT_SCAN_STEP: Days = new.;
/// Extrema scan step: 20 minutes in days (for culmination detection).
pub const EXTREMA_SCAN_STEP: Days = new.;