在c#中解析天气预报数据(来自NDFD)

时间:2011-06-07 10:58:39

标签: c# xml weather-api

我正在使用> http://www.weather.gov/forecasts/xml/DWMLgen/wsdl/ndfdXML.wsdl webservice通过调用GmlTimeSeries webmethod获取天气detials。现在我只想阅读xml中的temparature,天气图标链接详细信息。 xml拥有庞大的数据。任何人都可以提出从xml中获取所需数据的想法吗?

NDFD HOme Page

XML看起来如下所示:Full XML File is Here

我想从xml数据下面获取Temparature:

 <gml:featureMember>
          <app:Forecast_Gml2Point>
             <gml:position>
                <gml:Point srsName="EPSG:4326">
                   <gml:coordinates>-87.8859170,41.7450495</gml:coordinates>
                </gml:Point>
             </gml:position>
             <app:validTime>2011-06-07T12:00:00</app:validTime>
             <app:temperature>77.0</app:temperature>
          </app:Forecast_Gml2Point>
       </gml:featureMember>

       <gml:featureMember>
          <app:Forecast_Gml2Point>
             <gml:position>
                <gml:Point srsName="EPSG:4326">
                   <gml:coordinates>-87.8859170,41.7450495</gml:coordinates>
                </gml:Point>
             </gml:position>
             <app:validTime>2011-06-07T15:00:00</app:validTime>
             <app:temperature>90.0</app:temperature>
          </app:Forecast_Gml2Point>
       </gml:featureMember>

来自下方的天气短语:

 <gml:featureMember>
      <app:Forecast_Gml2Point>
         <gml:position>
            <gml:Point srsName="EPSG:4326">
               <gml:coordinates>-87.8859170,41.7450495</gml:coordinates>
            </gml:Point>
         </gml:position>
         <app:validTime>2011-06-08T03:00:00</app:validTime>
         <app:weatherPhrase>Mostly Clear</app:weatherPhrase>
      </app:Forecast_Gml2Point>
   </gml:featureMember>

   <gml:featureMember>
      <app:Forecast_Gml2Point>
         <gml:position>
            <gml:Point srsName="EPSG:4326">
               <gml:coordinates>-87.8859170,41.7450495</gml:coordinates>
            </gml:Point>
         </gml:position>
         <app:validTime>2011-06-08T06:00:00</app:validTime>
         <app:weatherPhrase>Mostly Clear</app:weatherPhrase>
      </app:Forecast_Gml2Point>
   </gml:featureMember>

以上是一段xml文件。像这样我拥有7天天气详情的大量数据。我需要从xml以上读取温度和天气情况。

Full XML File is Here

2 个答案:

答案 0 :(得分:3)

我想您会找到答案here

编辑: 您需要使用命名空间,例如:

XNamespace app = "http://www.weather.gov/forecasts/xml/OGC_services";
var result = from i in doc.Descendants(app+"Forecast_Gml2Point")
                  select new 
                  {
                      temperature = i.Element(app + "temperature"), 
                      icon = i.Element(app+"weatherIcon")
                  };

编辑2: 如果你需要使用其他命名空间获取Element,这是另一个例子:

XNamespace gml ="http://www.opengis.net/gml"
i.Element(gml+"coordinates" )

答案 1 :(得分:1)

如果使用Visual Studio的“添加Web引用”功能,会更容易。通过这种方式,Visual Studio基于WSDL为您生成所有(代理)类,然后您可以针对类进行编程,就像您将如何正常工作一样。换句话说,不需要解析XML。

正如this link所述:

  

Visual Studio.Net Web引用是在客户端上创建的代理类,用于连接到服务器上运行的Web Service。在IDE Web引用内部自动生成代码并将隐藏文件插入到项目中。这是必需的,因为.Net是类型安全的,并且为了编译使用Web服务的代码,客户端必须知道被调用的每个方法的方法签名。

您可能希望详细了解有关使用WSDL的the above link