Distance and Bearing: Difference between revisions

m
Improved comments.
(New post)
m (Improved comments.)
Line 40:
#include <vector>
 
constexpr double RADIUS = 6'371 / 1.852; // Mean radius of the Earth in nautical miles
constexpr double RADIAN_TO_DEGREE = 180.0 / std::numbers::pi;
 
Line 55:
};
 
// Convert the given string to a double, which represents an angle,
// and then convert the angle from degrees to radians
double to_double_radians(const std::string& text) {
908

edits