diff --git a/MapControl/Shared/LocationCollection.cs b/MapControl/Shared/LocationCollection.cs
index 099d0800..3a2f95f2 100644
--- a/MapControl/Shared/LocationCollection.cs
+++ b/MapControl/Shared/LocationCollection.cs
@@ -67,11 +67,11 @@ namespace MapControl
}
///
- /// Calculates a series of Locations on a great circle, or orthodrome, that connects the
- /// two specified Locations, with an optional angular resolution specified in degrees.
+ /// Calculates a series of Locations on a great circle, i.e. a geodesic that connects
+ /// the two specified Locations, with an optional angular resolution specified in degrees.
/// See https://en.wikipedia.org/wiki/Great-circle_navigation.
///
- public static LocationCollection OrthodromeLocations(Location location1, Location location2, double resolution = 1d)
+ public static LocationCollection GeodesicLocations(Location location1, Location location2, double resolution = 1d)
{
if (resolution <= 0d)
{
@@ -132,11 +132,11 @@ namespace MapControl
}
///
- /// Calculates a series of Locations on a rhumb line, or loxodrome, that connects the
- /// two specified Locations, with an optional angular resolution specified in degrees.
+ /// Calculates a series of Locations on a rhumb line that connects the two
+ /// specified Locations, with an optional angular resolution specified in degrees.
/// See https://en.wikipedia.org/wiki/Rhumb_line.
///
- public static LocationCollection LoxodromeLocations(Location location1, Location location2, double resolution = 1d)
+ public static LocationCollection RhumblineLocations(Location location1, Location location2, double resolution = 1d)
{
if (resolution <= 0d)
{