I am using Forecast_Gml2Point function of National Digital Forecast Database webservice to get temparature, weatherphrase, weatherIcon and DateTime. Actually I got the details of temparature, weather Icon and weather temparature tie up with the time but not all together.
Code sample to invoke GmlTime Series function:
string strResult = objNDFD.GmlTimeSeries(latlng, startTime, endTime, NDFDWeatherForecast.compTypeType.Between, NDFDWeatherForecast.featureTypeType.Forecast_Gml2Point, "temp,wx,icons");
Piece of XML Response I got :
<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>
note: Like this i have the data for weather phrase and weather Icons of the same date in the response but not all together
I want the response like below: all the data for at perticular time. I need the weather details for next 10 days also.
<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:weatherPhrase>Mostly Sunny</app:weatherPhrase>
<app:weatherIcon>http://forecast.weather.gov/images/wtf/nfew.jpg</app:weatherIcon>
</app:Forecast_Gml2Point>
</gml:featureMember>
Is there any possibility of getting the response like above? I mean what kind of parameters I have to send to the function. Is this the right function to get the response like above or do I have to use other methods of webservice?