How to use Google Weather Data in Mobile Application
hamishwillee
(Talk | contribs) m (Hamishwillee - Fix internal links in external format) |
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot update - Add ArticleMetaData) |
||
| Line 1: | Line 1: | ||
| + | {{ArticleMetaData <!-- v1.2 --> | ||
| + | |sourcecode= <!-- Link to example source code e.g. [[Media:The Code Example ZIP.zip]] --> | ||
| + | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
| + | |devices= <!-- Devices tested against - e.g. ''devices=Nokia 6131 NFC, Nokia C7-00'') --> | ||
| + | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Qt SDK 1.1.4]) --> | ||
| + | |platform= <!-- Compatible platforms - e.g. Symbian^1 and later, Qt 4.6 and later --> | ||
| + | |devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | ||
| + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> | ||
| + | |signing= <!-- Signing requirements - empty or one of: Self-Signed, DevCert, Manufacturer --> | ||
| + | |capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | ||
| + | |keywords= <!-- APIs, classes and methods (e.g. QSystemScreenSaver, QList, CBase --> | ||
| + | |language= <!-- Language category code for non-English topics - e.g. Lang-Chinese --> | ||
| + | |translated-by= <!-- [[User:XXXX]] --> | ||
| + | |translated-from-title= <!-- Title only --> | ||
| + | |translated-from-id= <!-- Id of translated revision --> | ||
| + | |review-by= <!-- After re-review: [[User:username]] --> | ||
| + | |review-timestamp= <!-- After re-review: YYYYMMDD --> | ||
| + | |update-by= <!-- After significant update: [[User:username]]--> | ||
| + | |update-timestamp= <!-- After significant update: YYYYMMDD --> | ||
| + | |creationdate= 20080629 | ||
| + | |author= [[User:Kamaljaiswal]] | ||
| + | }} | ||
[[Category:Location]] | [[Category:Location]] | ||
We'll see how to use Google Weather API data within a mobile application.<br/> | We'll see how to use Google Weather API data within a mobile application.<br/> | ||
| Line 12: | Line 34: | ||
http://www.google.com/ig/api?weather=Mumbai,India | http://www.google.com/ig/api?weather=Mumbai,India | ||
| − | In response it gives | + | In response it gives data in XML format which could be easily parsed.Many Valuable information are available .Like |
* Temperature. | * Temperature. | ||
* Forecast of Today ,Tomorrow. | * Forecast of Today ,Tomorrow. | ||
Latest revision as of 08:25, 27 July 2012
Article Metadata
We'll see how to use Google Weather API data within a mobile application.
Google Weather API URL
URL contains:
- City Name
- Country Name
Example: http://www.google.com/ig/api?weather=Mumbai,India
In response it gives data in XML format which could be easily parsed.Many Valuable information are available .Like
- Temperature.
- Forecast of Today ,Tomorrow.
- Wind Condition.
- Humidity
- etc
Images should in the response xml could also be used.
Exmaple http://www.google.com/images/weather/mostly_cloudy.gif

