Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
97 views

Replace given <img> source

I made a plugin with Google Weather API and I am currently pulling the images from Google's API. For a sunny day I'm pulling http://www.google.com//ig/images/weather/sunny.gif. I am looking for a ...
3
votes
3answers
6k views

Using Google Weather API with Lat and Lon - how to format?

I am wanting to use the Google Weather API - by passing lat and long values. However it seems Google is needing these formatted differently to the values I have stored. i.e. For the town of McTavish ...
2
votes
1answer
140 views

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 ...
2
votes
5answers
11k views

PHP / SimpleXML - Why does Simplexml_load_string() fail to parse Google Weather API xml in Chinese (zh-CN)

I'm trying to load parse a Google Weather API response (chinese response). Here is the API call.. http://www.google.com/ig/api?weather=11791&hl=zh-CN // This code fails with the following error ...
1
vote
1answer
207 views

change default images of google weather api

I found 2 posts in stackoverflow Changing weather icon on google weather api , Google Weather API and Using Custom image. I tried the first one with str_replace() but it's not working.here is the code ...
1
vote
1answer
88 views

Google Weather API temperature conversion

Google weather API shows temperature in Fahrenheit. After watching this post, I was able to convert temperature from F to C. However, it shows like 17.222222222222° C - 28.888888888889° C, Clear. ...
1
vote
1answer
149 views

Strange Characters In XML Response From Google Weather API Error

I've just launched a small application i've been working on. Nothing major, but something I would like to get properly working. It's at www.wedrapp.com. Most of the time it works perfectly fine. ...
1
vote
1answer
60 views

Set SimpleXML path from a searchbox/input

I am retrieving Google Weather XML as such: <?php $xml = simplexml_load_file('http://www.google.com/ig/api?weather=LONDON&hl=en-GB'); ?> Is it possible to set the city from an input? As a ...
1
vote
1answer
115 views

Weather for date and lat/lng

I am browsing through a bunch of weather-forecast APIs and none of them seem to do something which I think is pretty necessary. Is there a way for me to just send an address, or lat/lng coordinates, ...
0
votes
0answers
36 views

How can i fix google api weather icon?

Here is my sources (void)viewDidLoad { self.receiveData = [[NSMutableData alloc] init]; NSMutableString *str = [NSMutableString ...
0
votes
1answer
75 views

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 ...
0
votes
2answers
47 views

Taking input in link

This is an api:=> http://www.google.com/ig/api?weather=[city name] When i manually put [city name] like http://www.google.com/ig/api?weather=dhakaThen,It's works perfectly.Is there any way to take ...
0
votes
1answer
142 views

Google weather API change from F to C

Im having a bit of trouble changing the the weather degrees from fahrenheit to celcius. Its working correct only when I change the current weather degree but not when Im changen the forecast. Any ...
0
votes
0answers
94 views

How to use Google weather API to get Chinese language weather infomation

I used the below method to get weather information but the feed words are in English. I want the information returned as Chinese words so I can easily use them! NSData *data = [NSData ...
0
votes
1answer
135 views

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 ...
0
votes
1answer
42 views

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 ...
0
votes
0answers
215 views

Android Weather Forecast -Error

I have done weather forecast using this link http://www.anddev.org/android_weather_forecast_-_google_weather_api_-_full_source-t361.html. I got following error : 08-09 10:57:45.737: ...
0
votes
2answers
154 views

How to get Hight/Low tem from web Java Android [closed]

How to get Hight/Low temperture and city name then show it in textview package com.ParseXML; import java.net.MalformedURLException; import java.net.URL; import javax.xml.parsers.SAXParser; import ...
0
votes
3answers
624 views

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, ...
0
votes
1answer
130 views

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
0answers
644 views

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 ...
0
votes
2answers
360 views

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 ...
0
votes
1answer
202 views

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 ...
0
votes
1answer
255 views

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 ...
0
votes
3answers
701 views

XML to HTML (PHP) [closed]

I have an XML output code for Google's weather API and I'd like to know how to output it into HTML. I know that there must be some PHP involved, but I'm very limited in PHP. Here's the code: ...
0
votes
1answer
510 views

google map with weather information

Consider the requirement to integrate the road direction between two stations, along with the weather information of the starting, middle, and destination stations. I looked at the Google help, but I ...
0
votes
1answer
618 views

it's a google weather api?how to parse such kind of data using NSXML?

i want to parse google weather API using NSXML so please give me some Guidance for this.My url is: http://www.google.com/ig/api?weather=Ahemdabad and i have taken such kind of steps: NSURL *url = ...
0
votes
4answers
807 views

Problem on Google weather report calcuation

This is about the Google Weather Report XML. What is the calculation Google is doing? When I google with weather=London,UK keyword, it's showing something like this screen shot, In my XML there ...
-1
votes
1answer
64 views

php google weather api query

I'm having trouble retrieving data from the google api. When I run the code, it only returns a blank page and not a printout of the xml array. Here is the code: $url="http://www.google.com/ig/api"; ...
-1
votes
2answers
326 views

How to get Weather info using google weather api when I have longitude and latitude co-ordinates?

I have found the longitude and latitude of my current location, now how to get Weather info from google api. Please help!
-2
votes
1answer
232 views

Get Weather forecast temperature by search android [closed]

I use google api service,for get weather forecast How can i implement for search city name then can show temperature of that city. Thank you in advance