Version 3.0.255

This commit is contained in:
Oliver Hauff 2021-11-07 19:42:59 +01:00
parent db9c288584
commit 5a26bf273b
1495 changed files with 159465 additions and 5060 deletions

View file

@ -6,14 +6,14 @@ namespace TINK.Model.Station
{
private const double PRECISSION_LATITUDE_LONGITUDE = 0.000000000000001;
public Position()
public Position()
{
}
public Position(double p_dLatitude, double p_dLongitude)
public Position(double latitude, double longitude)
{
Latitude = p_dLatitude;
Longitude = p_dLongitude;
Latitude = latitude;
Longitude = longitude;
}
public double Latitude { get; private set; }
@ -35,7 +35,6 @@ namespace TINK.Model.Station
return Math.Abs(Latitude - l_oTarget.Latitude) < PRECISSION_LATITUDE_LONGITUDE
&& Math.Abs(Longitude - l_oTarget.Longitude) < PRECISSION_LATITUDE_LONGITUDE;
}
public override int GetHashCode()