#pragma once /********************************* * MOUNT CONTROL COMPONENTS * * * * astrometry functions * *********************************/ #include #include #include #include "mcc_traits.h" #include "mount_astrom_default.h" #include "utils.h" namespace mcc::traits { template concept mcc_scalar_or_simd_c = xsimd::is_batch::value || std::is_arithmetic_v; template concept mcc_real_scalar_or_real_range_c = std::floating_point || std::ranges::output_range || std::ranges::output_range; template concept mcc_real_or_char_range = std::floating_point || (std::ranges::contiguous_range && std::same_as>>); } // namespace mcc::traits namespace mcc::astrom { // modified Julian date (based on ERFA eraCal2jd) template static int mcc_julday(const std::chrono::system_clock::time_point& start_time, ResT& mjd, const std::chrono::system_clock::duration& step = std::chrono::milliseconds(100)) { size_t mjd_size = 0; if constexpr (std::ranges::range) { mjd_size = std::ranges::distance(mjd.begin(), mjd.end()); if (!mjd_size) { return -100; } } using namespace std::literals::chrono_literals; auto dd = std::chrono::floor(start_time); std::chrono::year_month_day ymd{dd}; static constexpr std::chrono::year MIN_YEAR = -4799y; if (ymd.year() < MIN_YEAR) { return -1; } if (!ymd.month().ok()) { return -2; } int64_t im = (unsigned)ymd.month(); int64_t id = (unsigned)ymd.day(); int64_t iy = (int)ymd.year(); // my = (im - 14) / 12; // iypmy = (long) (iy + my); int64_t my = (im - 14LL) / 12LL; int64_t iypmy = iy + my; // (1461L * (iypmy + 4800L)) / 4L // + (367L * (long) (im - 2 - 12 * my)) / 12L // - (3L * ((iypmy + 4900L) / 100L)) / 4L // + (long) id - 2432076L // integer part of result MJD int64_t mjd_int = (1461LL * (iypmy + 4800LL)) / 4LL + (367LL * (im - 2LL - 12LL * my)) / 12LL - (3LL * ((iypmy + 4900LL) / 100LL)) / 4LL + id - 2432076LL; using fd_t = std::chrono::duration>; // fraction of day double mjd_float = static_cast(mjd_int) + std::chrono::duration_cast(start_time - dd).count(); if constexpr (std::ranges::range) { double d_step = std::chrono::duration_cast(step).count(); size_t i = 0; #ifdef VEC_XSIMD constexpr size_t reg_size = xsimd::batch::size; size_t vec_size = mjd_size - mjd_size % reg_size; xsimd::batch res_reg{mjd_float}; xsimd::batch step_reg = [d_step](std::index_sequence) { return xsimd::batch{(Is * d_step)...}; }(std::make_index_sequence{}); alignas(xsimd::batch::arch_type::alignment()) double arr[reg_size]; auto ptr = mjd.begin(); // vectorized part for (; i < vec_size; i += vec_size) { res_reg += step_reg; if constexpr (std::ranges::contiguous_range) { res_reg.store_unaligned(mjd.data() + i); // res_reg.store_aligned(mjd.data() + i); } else { res_reg.store_aligned(arr); std::ranges::copy(arr, ptr); if constexpr (std::ranges::random_access_range) { ptr += reg_size; } else { for (int k = 0; k < reg_size; ++k) { ++ptr; } } } } #endif // scalar part for (size_t j = i; j < mjd_size; ++j, ++ptr) { *ptr = mjd_float + j * d_step; } } else { // result is scalar mjd = mjd_float; } return 0; } /* * angles are in degrees or sexagimal string form * * returns * NaN if object is non-rising or "alt_limit" < 0, Inf is circumpolar */ template double mcc_time_to_alt_limit(const AT& alt_limit, const RT& RA, const DT& DEC, const LT& LAT, const std::chrono::system_clock::time_point& now) { // sin(alt) = sin(DEC)*sin(phi) + cos(DEC)*cos(phi)*cos(HA) // HA = LST - RA double ra, dec, lat, alt; if constexpr (std::floating_point) { alt = alt_limit * utils::deg2radCoeff; } else { alt = utils::parsAngleString(alt_limit); alt *= utils::deg2radCoeff; } if (alt < 0.0) { return std::numeric_limits::quiet_NaN(); } if constexpr (std::floating_point) { ra = RA * utils::deg2radCoeff; } else { ra = utils::parsAngleString(RA, true); ra *= utils::deg2radCoeff; } if constexpr (std::floating_point
) { dec = DEC * utils::deg2radCoeff; } else { dec = utils::parsAngleString(DEC); dec *= utils::deg2radCoeff; } if constexpr (std::floating_point) { lat = LAT * utils::deg2radCoeff; } else { lat = utils::parsAngleString(LAT); lat *= utils::deg2radCoeff; } if (lat >= 0.0) { // north hemisphere if (dec < (lat - std::numbers::pi / 2.0)) { // never rises above horizont return std::numeric_limits::quiet_NaN(); } } else { // south hemisphere if (dec > (lat + std::numbers::pi / 2.0)) { // never rises above horizont return std::numeric_limits::quiet_NaN(); } } double cos_ha = (std::sin(alt) - std::sin(dec) * std::sin(lat)) / std::cos(dec) / std::cos(lat); if (std::abs(cos_ha) > 1.0) { // circumpolar (it never sets below horizon) return std::numeric_limits::infinity(); } double lst = std::acos(cos_ha) + ra; return 0.0; } /* Classes to represent IERS bulletins * * BULLETIN A: https://datacenter.iers.org/data/latestVersion/bulletinA.txt * leapseconds: https://hpiers.obspm.fr/iers/bul/bulc/Leap_Second.dat * */ class MccLeapSeconds final { public: typedef std::chrono::system_clock::time_point time_point_t; MccLeapSeconds() { // create default values std::istringstream ist(defaults::MCC_DEFAULT_LEAP_SECONDS_FILE); load(ist); } ~MccLeapSeconds() = default; time_point_t expireDate() const { return _expireDate; } // load from stream bool load(std::derived_from> auto& stream, char comment_sym = '#') { std::istringstream is; double mjd; unsigned day, month; int year; double tai_utc; decltype(_expireDate) edate; std::vector db; for (std::string line; std::getline(stream, line);) { auto sv = utils::trimSpaces(line, utils::TrimType::TRIM_LEFT); if (sv.size()) { if (sv[0] == comment_sym) { // comment string if (std::regex_match(line, expr_date_rx)) { auto pos = line.find("on"); sv = utils::trimSpaces(std::string_view{line.begin() + pos + 2, line.end()}, utils::TrimType::TRIM_LEFT); is.str({sv.begin(), sv.end()}); is >> std::chrono::parse("%d %B %Y", edate); is.clear(); } continue; } } else { continue; } if (std::regex_match(line, data_rx)) { is.str(line); is >> mjd >> day >> month >> year >> tai_utc; db.emplace_back(mjd, std::chrono::year_month_day{std::chrono::year{year} / month / day}, tai_utc); // db.emplace_back(mjd, // std::chrono::year_month_day{std::chrono::year{year}, std::chrono::month{month}, // std::chrono::day{day}}, // tai_utc); is.clear(); continue; } } if (db.empty()) { // keep previous data return false; } _expireDate = std::move(edate); _db = std::move(db); return true; } bool load(traits::mcc_input_char_range auto const& filename, char comment_sym = '#') { std::ifstream fst(filename); bool ok = fst.is_open(); if (!ok) { return false; } ok = load(fst, comment_sym); fst.close(); return ok; } std::optional operator[](const time_point_t& tp) const { if (tp > _expireDate) { // ???????!!!!!!!!!!! return std::nullopt; // return _db.back().tai_utc; } std::chrono::year_month_day ymd{std::chrono::floor(tp)}; for (auto const& el : _db | std::views::reverse) { if (ymd >= el.ymd) { return el.tai_utc; } } return std::nullopt; } std::optional operator[](const double& mjd) const { double e_mjd; astrom::mcc_julday(_expireDate, e_mjd); if (mjd > e_mjd) { // ???????!!!!!!!!!!! return std::nullopt; // return _db.back().tai_utc; } for (auto const& el : _db | std::views::reverse) { if (mjd >= el.mjd) { return el.tai_utc; } } return std::nullopt; } void dump(std::derived_from> auto& stream) const { stream << std::format("Leap seconds database expire date: {}", _expireDate) << '\n'; for (auto const& el : _db) { stream << std::format("{} {} {}", el.mjd, el.ymd, el.tai_utc) << '\n'; } } private: inline static const std::regex expr_date_rx{ "^ *# *File +expires +on +[0-8]{1,2} " "+(January|February|March|April|May|June|July|August|September|October|November|December) +[0-9]{4} *$"}; inline static const std::regex data_rx{"^ *[0-9]{5,}(\\.?[0-9]+) +[0-9]{1,2} +[0-9]{1,2} +[0-9]{4} +[0-9]{1,} *$"}; time_point_t _expireDate{}; struct leapsecond_db_elem_t { double mjd; std::chrono::year_month_day ymd; double tai_utc; // TAI-UTC in seconds }; std::vector _db{}; }; class MccIersBulletinA final { public: typedef std::chrono::system_clock::time_point time_point_t; struct pole_pos_t { double x, y; }; struct date_range_t { std::chrono::year_month_day begin; std::chrono::year_month_day end; }; struct date_range_mjd_t { double begin; double end; }; MccIersBulletinA() { // create pre-defined (default-state) database std::istringstream ist(defaults::MCC_DEFAULT_IERS_BULLETIN_A_FILE); load(ist); } ~MccIersBulletinA() = default; std::chrono::system_clock::time_point bulletinDate() const { return _date; } date_range_t dateRange() const { return {_db.front().ymd, _db.back().ymd}; } date_range_mjd_t dateRangeMJD() const { return {_db.front().mjd, _db.back().mjd}; } double TT_TAI() const { return _tt_tai; } // DUT1 = UT1 - UTC std::optional DUT1(const time_point_t& tp) const { // use of the closest date std::chrono::year_month_day ymd{std::chrono::round(tp)}; if (ymd < _db.front().ymd) { return std::nullopt; } if (ymd > _db.back().ymd) { return std::nullopt; } auto el_prev = _db.front(); for (auto const& el : _db) { if (ymd <= el.ymd) { return el.dut1; } } return std::nullopt; } std::optional DUT1(double mjd) const { mjd = std::round(mjd); // round to closest integer MJD if (mjd < _db.front().mjd) { return std::nullopt; } if (mjd > _db.back().mjd) { return std::nullopt; } for (auto const& el : _db) { if (mjd <= el.mjd) { return el.dut1; } } return std::nullopt; } std::optional polarCoords(const time_point_t& tp) const { std::chrono::year_month_day ymd{std::chrono::round(tp)}; if (ymd < _db.front().ymd) { return std::nullopt; } if (ymd > _db.back().ymd) { return std::nullopt; } for (auto const& el : _db) { if (ymd <= el.ymd) { return pole_pos_t{el.x, el.y}; } } return std::nullopt; } std::optional polarCoords(double mjd) const { mjd = std::round(mjd); // round to closest integer MJD if (mjd < _db.front().mjd) { return std::nullopt; } if (mjd > _db.back().mjd) { return std::nullopt; } for (auto const& el : _db) { if (mjd <= el.mjd) { return pole_pos_t{el.x, el.y}; } } return std::nullopt; } bool load(std::derived_from> auto& stream, char comment_sym = '*') { std::vector db; enum { TAB_STATE_SEEK, TAB_STATE_START }; int tab_state = TAB_STATE_SEEK; int year; unsigned month, day; double mjd, x, y, dut1; std::istringstream is; decltype(_date) bdate; double tt_tai; for (std::string line; std::getline(stream, line);) { if (line.empty()) { continue; } auto sv = utils::trimSpaces(line, utils::TrimType::TRIM_LEFT); if (sv.size()) { if (sv[0] == comment_sym) { // comment string continue; } if (tab_state == TAB_STATE_START) { if (std::regex_match(sv.begin(), sv.end(), bull_tab_vals_rx)) { // is.str({sv.begin(), sv.end()}); is.str(line); is >> year >> month >> day >> mjd >> x >> y >> dut1; db.emplace_back(mjd, std::chrono::year_month_day{std::chrono::year{year} / month / day}, x, y, dut1); is.clear(); } else { // end of the table - just stop parsing break; } continue; } if (std::regex_match(sv.begin(), sv.end(), bull_date_rx)) { is.str({sv.begin(), sv.end()}); is >> std::chrono::parse("%d %B %Y", bdate); continue; } if (std::regex_match(sv.begin(), sv.end(), bull_tt_tai_rx)) { is.str({sv.begin(), sv.end()}); std::string dummy; is >> dummy >> dummy >> dummy >> dummy >> tt_tai; continue; } if (std::regex_match(sv.begin(), sv.end(), bull_tab_title_rx)) { tab_state = TAB_STATE_START; continue; } } else { // empty string (only spaces) continue; } } if (db.empty()) { return false; } _date = std::move(bdate); _tt_tai = tt_tai; _db = std::move(db); return true; } bool load(traits::mcc_input_char_range auto const& filename, char comment_sym = '*') { std::ifstream fst(filename); bool ok = fst.is_open(); if (!ok) { return false; } ok = load(fst, comment_sym); fst.close(); return ok; } void dump(std::derived_from> auto& stream) const { stream << std::format("Bulletin A issue date: {}", _date) << '\n'; stream << std::format("TT-TAI: {}", _tt_tai) << '\n'; for (auto const& el : _db) { stream << std::format("{} {} {:6.4f} {:6.4f} {:7.5f}", el.mjd, el.ymd, el.x, el.y, el.dut1) << '\n'; } } private: inline static const std::regex bull_date_rx{ "^ *[0-9]{1,2} +(January|February|March|April|May|June|July|August|September|October|November|December) " "+[0-9]{4,} +Vol\\. +[XMLCDVI]+ +No\\. +[0-9]+ *$"}; inline static const std::regex bull_tt_tai_rx{"^ *TT += +TAI +\\+ +[0-9]+\\.[0-9]+ +seconds *$"}; inline static const std::regex bull_tab_title_rx{"^ *MJD +x\\(arcsec\\) +y\\(arcsec\\) +UT1-UTC\\(sec\\) *$"}; inline static const std::regex bull_tab_vals_rx{ "^ *[0-9]{4,} +[0-9]{1,2} +[0-9]{1,2} +[0-9]{5,} +[0-9]+\\.[0-9]+ +[0-9]+\\.[0-9]+ +[0-9]+\\.[0-9]+ *$"}; time_point_t _date; double _tt_tai; struct earth_orient_db_elem_t { double mjd; std::chrono::year_month_day ymd; double x, y; // Polar coordinates in arcsecs double dut1; // UT1-UTC in seconds }; std::vector _db; }; } // namespace mcc::astrom