This commit is contained in:
Timur A. Fatkhullin
2025-09-21 23:16:03 +03:00
parent 0f955b3c91
commit 1a4d998141
3 changed files with 52 additions and 1 deletions

View File

@@ -140,5 +140,14 @@ int main()
erfa.refractionCorrection(cp, &dZ);
std::cout << "dZ(" << mcc::MccAngle(cp.Y).degrees() << ") = " << mcc::MccAngle(dZ).arcsecs() << "\n";
std::cout << "\n\n";
std::string sc2{" 11:34:21.21 , 104.4567892"};
auto p2 = mcc::utils::parseAnglePair(sc2);
std::cout << p2.first << ", " << p2.second << "\n";
return 0;
}