コード例 #1
0
        /// <summary>
        /// Converts the pre-formatted string into the one or more StationInfo objects
        /// objects
        /// </summary>
        /// <param name="data"></param>
        /// <param name="icaos"></param>
        /// <returns></returns>
        private List <StationInfoDto> ConvertToDTO(string data,
                                                   IList <string> icaos = null)
        {
            if (icaos == null)
            {
                icaos = new List <string>();
            }

            IParser <StationInfoDto> parser = null;

            if (_parserType == ParserType.XML)
            {
                parser = new ParseStationInfoXML();
            }
            else
            {
                parser = new ParseStationInfoCSV();
            }

            return(parser.Parse(data, icaos));
        }
コード例 #2
0
        public void Parse_MultipleStations()
        {
            var parser   = new ParseStationInfoCSV();
            var stations = parser.Parse(Resource.KDEN_KSEA_PHNL_StationInfo_CSV, new[] { "KDEN", "KSEA", "PHNL" });

            stations.Count.Should().Be(3);
            stations[0].ICAO.Should().Be("KDEN");
            stations[1].ICAO.Should().Be("KSEA");
            stations[2].ICAO.Should().Be("PHNL");

            var station = stations[0];

            station.Country.Should().Be("US");
            station.State.Should().Be("CO");
            station.WMOID.Should().Be(72565);
            station.Name.Should().Be("DENVER(DIA)");
            station.SiteType.Count.Should().Be(2);
            station.SiteType.Should().Contain(SiteType.METAR);
            station.SiteType.Should().Contain(SiteType.TAF);
            station.GeographicData.Latitude.Should().Be(39.85f);
            station.GeographicData.Longitude.Should().Be(-104.65f);
            station.GeographicData.Elevation.Should().Be(1640.0f);
        }