/rust/registry/src/index.crates.io-1949cf8c6b5b557f/sofars-0.6.1/src/cal/epb.rs
Line
Count
Source
1
use crate::consts::{D1900, DJ00, DTY};
2
3
/// Julian Date to Besselian Epoch
4
0
pub fn epb(dj1: f64, dj2: f64) -> f64 {
5
1900.0 + ((dj1 - DJ00) + (dj2 + D1900)) / DTY
6
}