AIMS_BD_IATI.Library.Parser.ParserIATIv2.locationPoint.GetLatitude C# (CSharp) 메소드

GetLatitude() 공개 메소드

public GetLatitude ( ) : double
리턴 double
        public double GetLatitude()
        {
            double lat = 0;
            double.TryParse(pos.Substring(0, pos.IndexOf(' ')), out lat);
            return lat;
        }
        public double GetLongitude()