We are performing a forecast weather lookup
http://api.wunderground.com/api//fore...,
The JSON reply will include location, and simple forecast
"location": {
"type":"CITY",
"country":"US",
"country_iso3166":"US",
"country_name":"USA",
"state":"CO",
"city":"Erie",
"tz_short":"MST",
"tz_long":"America/Denver",
"lat":"39.996734",
"lon":"-105.056461",
"zip":"80026",
"magic":"13",
....
}
"forecast" : {
"simpleforecast" : {
"forecastday" : [ { weather for today }, { weather for tomorrow }, .... ]
{ .... another day ... }
],
},
}
In some cases, the location city will not be a city, like "San Francisco", but
a strange name, like:
"Airport Mail Center"
"Permanente"
Any idea why?
Thx.
http://api.wunderground.com/api//fore...,
The JSON reply will include location, and simple forecast
"location": {
"type":"CITY",
"country":"US",
"country_iso3166":"US",
"country_name":"USA",
"state":"CO",
"city":"Erie",
"tz_short":"MST",
"tz_long":"America/Denver",
"lat":"39.996734",
"lon":"-105.056461",
"zip":"80026",
"magic":"13",
....
}
"forecast" : {
"simpleforecast" : {
"forecastday" : [ { weather for today }, { weather for tomorrow }, .... ]
{ .... another day ... }
],
},
}
In some cases, the location city will not be a city, like "San Francisco", but
a strange name, like:
"Airport Mail Center"
"Permanente"
Any idea why?
Thx.