From cffa56f03278058eed6afed861862065ca2c3297 Mon Sep 17 00:00:00 2001 From: "Timur A. Fatkhullin" Date: Thu, 6 Mar 2025 21:55:30 +0300 Subject: [PATCH] ... --- cxx/mount_astrom.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/cxx/mount_astrom.h b/cxx/mount_astrom.h index d6016a2..7a93ac3 100644 --- a/cxx/mount_astrom.h +++ b/cxx/mount_astrom.h @@ -96,6 +96,16 @@ static int mcc_julday(const std::chrono::system_clock::time_point& start_time, template T mcc_time_to_alt_limit(const T& alt_limit, const T& RA, const T& DEC, const std::chrono::time_point& now) { + // sin(alt) = sin(DEC)*sin(phi) + cos(DEC)*cos(phi)*cos(HA) + // HA = LST - RA } + +/* IERS bulletines + * + * BULLETIN A: https://datacenter.iers.org/data/latestVersion/bulletinA.txt + * leapseconds: https://hpiers.obspm.fr/iers/bul/bulc/Leap_Second.dat + * + */ + } // namespace mcc::astro