Questions tagged [yahoo-weather-api]

Yahoo! Weather RSS Feed enables you to get up-to-date weather information for your location.

Yahoo! Weather RSS Feed enables you to get up-to-date weather information for your location. You can use the data into your own web site or client application. The Weather RSS feed is a dynamically-generated feed based on WOEID.

Provides options to choose between Fahrenheit or Celsius degrees units and option to get up to 10 days forecasts in the feed.

Useful links

Related tags

164 questions
18
votes
5 answers

Yahoo weather-api response as json

I am using yahoo weather api to get weather information This is returning an xml output. I want to get it in JSON format. How can i get this as JSON?
Muhammad Zeeshan
  • 8,722
  • 10
  • 45
  • 55
12
votes
7 answers

How to get weather at current location

Possible duplicate: Get weather update of current location? How can I get the weather in current location from Latitude and Longitude? I'm developing an app, it can update weather at current location. I have googled and found how to use Google API.…
Tuan Vu
  • 6,397
  • 2
  • 14
  • 22
10
votes
2 answers

Yahoo Weather Query by Latitude and Longitude

I want to fetch some weather data via latitude and longitude using yahoo query. but it seems this query is not available now. the query is below: select * from weather.forecast where woeid in (SELECT woeid FROM geo.placefinder WHERE…
squall leonhart
  • 301
  • 1
  • 5
  • 16
10
votes
3 answers

Yahoo weather API, randomly returns old data?

I started using Yahoo's free weather API to get the weather data I need, but it seems each time I request a city weather data there is a chance that either I get updated data or old data from back to 1 to 8 days. Here is a simple URL which I make my…
Night2
  • 1,168
  • 9
  • 18
6
votes
4 answers

Get WOEID from city name?

I was using Google Weather API to fetch weather info, but apparently Google had stopped its service. And I am trying to switch to Yahoo Weather API now. var WOEID = 2502265; //random WOEID $.ajax({ url:…
5
votes
1 answer

Get local weather with only client-side script

I am making a JavaScript app which shows the weather of several places. Using the Yahoo Weather API, I easily get the data for several locations by manually giving WOEID. However I also want to get the weather of the current location of the user.…
5
votes
1 answer

Arduino Reading from a constantly updating file

I was wondering if you could help some of the high school students I am teaching by solving this problem that I have no idea how to fix. This is also helping them see what a wonderful resource Stackoverflow can be. My students are trying to create…
Lindsiria
  • 187
  • 1
  • 4
  • 16
4
votes
2 answers

Yahoo weather api, how to fetch condition icons by condition code?

I'm trying to find links to weather condition images for Yahoo weather api. I get condition codes in JSON response, guess images are based on them. Like for OpenWeatherMap you add condition code to main URL…
Jim H.
  • 285
  • 1
  • 2
  • 15
4
votes
0 answers

YQL weather result is null in half the time

Yahoo data sometimes fails to get data, "query.results is null or not an object" . This is happening to me to on Chrome 55.0.2883.87 and fierfox 50.1.0. This is the YQL i'm Using: http://query.yahooapis.com/v1/public/yql?q=select *…
Me hdi
  • 1,832
  • 6
  • 24
  • 35
4
votes
0 answers

How can I get rainfall probability from yahoo API?

I need to get rainfall detail in my case , It's there mostly weather information in Yahoo API but rainfall, how can I get rainfall probability from yahoo API ? in the api response I don't get any detail about rainfall. It's example response from…
Nick
  • 41
  • 2
4
votes
1 answer

Yahoo Weather API Key Usage?

I am planning to develop an iOS weather application that is non-commercial which retrieves JSON feed from Yahoo's Weather API. Documentation: https://developer.yahoo.com/weather/ However, I don't understand the purpose of needing an API-Key? I am…
Miket25
  • 1,895
  • 3
  • 15
  • 29
4
votes
0 answers

How can i get WOEID by location?

I want to write a module in php for weather that catches the city name and return weather of today.I have searched about it and i find that yahoo have such service but it worked with WOEID .so now i have this problem:how can i get WOEID by…
amin gholami
  • 453
  • 3
  • 10
4
votes
6 answers

How can i find APIs for a weather forcast websites?

I making a java application that give the user notification with the weather conditions. i used the yahoo weather API provided by yahoo like that link : http://weather.yahooapis.com/forecastrss?w=2502265 and all i have to do is to change the eight…
Muhammed Refaat
  • 8,914
  • 14
  • 83
  • 118
3
votes
1 answer

Parse Yahoo Weather RSS Feed

I need to parse the Yahoo Weather RSS feed for a place, like http://weather.yahooapis.com/forecastrss?w=44418&u=c for example, to get the high, low, current temperature and the weather image eg. sun and clouds image, for the current day. I'd like to…
Seb Jachec
  • 3,003
  • 2
  • 30
  • 56
3
votes
5 answers

Weather Forcasts from yahoo weather api

How to get 3,5 or 7 day forecasts from Yahoo Weather API instead of just today and tomorrow? http://weather.yahooapis.com/forecastrss?w=location gives response which has weather forecast of just today and tomorrow. In what way we can have more…
Gaurav Navgire
  • 780
  • 5
  • 17
  • 29
1
2 3
10 11