distanceToMeters method
Calculates the distance to another Coordinate using Haversine formula
Implementation
Measurement<Distance> distanceToMeters(Coordinate other) {
final geo1 = geographic;
final geo2 = other.geographic;
return geo1.spherical.distanceTo(geo2).meters;
}