AIMS_BD_IATI.Library.Parser.ParserIATIv2.locationPoint.GetLongitude C# (CSharp) Method

GetLongitude() public method

public GetLongitude ( ) : double
return double
        public double GetLongitude()
        {
            double lon = 0;
            double.TryParse(pos.Substring(pos.IndexOf(' ') + 1), out lon);
            return lon;
        }