Questions tagged [google-weather-api]

Google used to have its own weather API. As of August 2012, Google shut it down.

Google used to have a weather API.

In 2012, Google shut it down.


Related tags

67 questions
0
votes
1 answer

rotation function that reacts to wind speed

Need to find a function in javascript flash, or css. that will alow me to rotate an image of a windmill at several different speeds. These speeds need to change with a real world wind speed.
0
votes
2 answers

google weather arabic xml encoding in ios

I tried to retrieve XML Google weather API from this URL: http://www.google.com/ig/api?weather=,,,24467280,39606640&hl=ar It is in Arabic language. I used: NSURLConnection to retrieve this data and then parsed it by NSXMLParser. The received data…
yasserislam
  • 154
  • 1
  • 2
  • 11
0
votes
1 answer

Selecting a particular field from Google's "unofficial" weather API using YQL

According to another question I can select individual XML fields with a YQL query and it works just fine when I test it: SELECT statistics.subscriberCount FROM xml WHERE url='http://gdata.youtube.com/feeds/api/users/{$id}' However when I try to…
hippietrail
  • 15,848
  • 18
  • 99
  • 158
0
votes
1 answer

iPhone: trouble parsing Google weather API

I'm downloading Google weather through the API. I'm having trouble parsing. Using NSXMLParserDelegate, it finds the element "forecast_conditions," but I cannot seem to extract it's content. The parsers seems to think "high" and "low" etc are…
Jeremy
  • 883
  • 1
  • 20
  • 41
0
votes
1 answer

Turning This Weather Data Example Into A Loop?

Good Day, I am a student in a intro to python class who is having a massive brain freeze on a project I'm working on. I've found a tutorial on weather data web scrapping online and have completed it. Although for my personal project with similar…
0
votes
1 answer

How to parse XML data when it returns two different categories depending on data entered?

I am trying to get weather information for an iPhone application. If I enter a 5 digit zipcode, the code is working. However, I want to make sure that if the user does not enter a valid city or zip code, it doesnt crash. The problem is that with…
Prajoth
  • 900
  • 3
  • 12
  • 26
0
votes
1 answer

Core Data Storing Unnecessary Data

I am trying to parse google weather API. I am using nsxml parser to get dates, weather etc from the api and then I store them in Core Data. What I am trying to do is extract dates up from the parser, match them with the current date and then store…
new
  • 1
  • 1
0
votes
3 answers

Simple XMLHttpRequest (Google Weather)

Hello I want to get xml from Google Weather var xmlhttp; if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp= new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new…
user766182
  • 19
  • 1
  • 5
0
votes
1 answer

how to consider latitude and longitude of a location from googleapis

I am using "http://maps.googleapis.com/maps/api/geocode/xml?address="+address+"&sensor=true" to get the latitude and longitude of a location. From this I am getting response like below:
0
votes
1 answer

Google Weather city list

is there a possibility to get a list of all cities preferably by country? I'd like to add some locations I already visited on my homepage but for some cities I get no result because they are obviously not supported by the Google Weather API. So I…
Simon Linder
  • 3,378
  • 4
  • 32
  • 49
0
votes
2 answers

Problem parsing Google weather data only for Paris

I have created an app for weather reports by using this http://www.google.com/ig/api?weather=paris. It works well for all cities except Paris. In my app I have a text field; if I type "Sydney", it will show the weather in Sydney, but if I type…
Aravindhan
  • 15,608
  • 10
  • 56
  • 71
0
votes
1 answer

BigQuery Weather Public Data Sets - Missing Last Few Days Data

I have run some queries against BigQuery public data sets for weather. I have used both GSOD (bigquery-public-data.noaa_gsod.gsod2019)and GHCN (bigquery-public-data.ghcn_d). In both cases, the most recent data I get is from 4 or 5 days ago. Why is…
AIK DO
  • 288
  • 1
  • 4
  • 13
0
votes
1 answer

How do I pass the result from httpget to SAX parser

I'm want to make a request to google API and pass the resulting XML to SAX parser here are both codes... First the request: HttpClient hclient = new DefaultHttpClient(); HttpGet get = new…
Amanni
  • 1,924
  • 6
  • 31
  • 51
0
votes
2 answers

Show Weather in Flash

Problem is simple: I`m looking for tutorials or open source examples, for display weather in my application. As I search I found some Flex (MXML) applications but I want something more clear and easy to go. Do you know any link or any simple code?
0
votes
1 answer

google weather api problems

I am having problems with google weather api I have been using this script http://komunitasweb.com/2009/09/showing-the-weather-with-php-and-google-weather-api/ for sometime now but earlier I got this error: Warning: simplexml_load_file() …
Brian
  • 1
  • 2