Compare two coordinates for equality.
@override bool operator ==(Object other) { return (other is GeoCoordinate) && (other.x == x) && (other.y == y) && (other.z == z); }