in LocationHelper/LocationData.cs [243:255]
public override string ToString() => String.IsNullOrEmpty(this.Name) ?
$"{this.Position.Latitude}, {this.Position.Longitude}" : this.Name;
/// <summary>
/// Return a new LocationData with the same property values as the current one.
/// </summary>
/// <returns>The new LocationData instance.</returns>
public LocationData Clone()
{
var location = new LocationData();
location.Copy(this);
return location;
}