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
// SPDX-License-Identifier: AGPL-3.0-only
// Copyright (C) 2026 Vallés Puig, Ramon
//! Integrated stellar surface-brightness map construction.
//!
//! This module builds Galactic HEALPix maps from stellar catalogue records. The
//! v1 model bins catalogue-star flux into B- and V-band tenth-magnitude-star
//! (`S10`) surface-brightness diagnostics, then scales V-band S10 to an
//! integrated photon radiance using a caller-provided calibration factor.
//!
//! The implementation is intended for reproducible data-asset generation. It is
//! not a full spectral synthesis or passband integration model.
//!
//! # References
//!
//! - Leinert, C. et al. (1998), "The 1997 reference of diffuse night sky
//! brightness", Astronomy and Astrophysics Supplement Series, 127, 1.
//! - Gorski, K. M. et al. (2005), "HEALPix: A Framework for High-Resolution
//! Discretization and Fast Analysis of Data Distributed on the Sphere",
//! Astrophysical Journal, 622, 759.
pub use StellarSurfaceBrightness;
pub use StellarSurfaceBrightnessMapBuilder;
pub use ;
pub use ApparentMagnitude;
pub use StellarSurfaceBrightnessMap;
pub use flux_10mag_units;
pub use StellarMapProvenance;
pub use StellarCatalogueRecord;
pub use ;