Questions tagged [wunderground]

Weather Underground is a commercial weather service that provides real-time weather information via the Internet. Weather Underground provides weather reports for most major cities across the world on its Web site, as well as local weather reports for newspapers and Web sites.

Weather Underground is a commercial weather service that provides real-time weather information via the Internet. Weather Underground provides weather reports for most major cities across the world on its Web site, as well as local weather reports for newspapers and Web sites.

A public API is available to developers to make use of.


Useful links


Related tags

92 questions
1
vote
1 answer

How do I get data from the wunderground API and display it on the screen in Android?

Currently I have a picture of a map in Android Studio, and I was wondering how I'd be able to pull information from wunderground and display it on top of the map in each location. This is the website with some sample code.
Lufval
  • 41
  • 3
1
vote
1 answer

How to get element in Json for wunderground API in Android/Java

I am using the Wunderground api to get hourly weather forecast for an android app. I want to receive information like Temp and day. An example of the Json is: "hourly_forecast": [ { "FCTTIME": { "hour": "11","hour_padded": "11","min":…
steveS
  • 13
  • 7
1
vote
1 answer

php json not showing Wunderground station list

I'm trying to show a list of all nearby weather stations. I have the code: $json_string = file_get_contents("http://api.wunderground.com/api/8b19ccf6a06c0826/geolookup/conditions/q/Netherlands/Rotterdam.json"); $parsed_json =…
Dilan
  • 91
  • 1
  • 10
1
vote
2 answers

Fetching weather data using java and the wunderground api

I'm trying to fetch some weather data using java. I am using the following java api for fetching the data from wunderground.com https://code.google.com/p/wunderground-core/ The example code they give on their website works okay for (Dortmund in…
Ammar
  • 37
  • 1
  • 6
1
vote
1 answer

How to get a value from wunderground .json

I'm working on json source from wunderground.com. As the example code displayed in the document. I can adjust and work out for some simple format. But I'm stuck with this one. I tried to googled every where but there's no solution. Here's the…
Wilf
  • 2,297
  • 5
  • 38
  • 82
1
vote
3 answers

Java JSON with GSON

Here's the problem, I'm using a weather APi from Wunderground and am having trouble using GSON to fetch the weather. import java.net.*; import java.io.*; import com.google.gson.*; public class URLReader { public static URL link; public…
Arc
  • 441
  • 1
  • 9
  • 26
1
vote
0 answers

Searching API for a specific Json key, value

I'm using the wunderground api to get weather conditions from a specific city. They have various ways to query the data here ---> http://www.wunderground.com/weather/api/d/docs?d=data/index. The response is in JSON. Is there a possible way to GET…
ono
  • 2,984
  • 9
  • 43
  • 85
1
vote
3 answers

Error "Message: Trying to get property of non-object" when trying to retrieve an array

I am trying to request some data using json and the wunderground API. When I use this code it returns the error "Message: Trying to get property of non-object".
ServerSideSkittles
  • 2,713
  • 10
  • 34
  • 60
1
vote
2 answers

Reading JSON from Url java

I am having trouble with parson the JSON from a URL. Below, is the code. import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.io.InputStreamReader; import…
Jeel Shah
  • 3,274
  • 17
  • 47
  • 68
1
vote
1 answer

Trying to receive and save image from an HTTP request on Android (Wunderground)

first let me say that I am new to Android, and specifically to http-related things. This question is pertaining to development on the Android platform. Ok, here is what I am trying to do. Wunderground has an "api" that lets me send a request to a…
Sentenial
  • 61
  • 1
  • 10
0
votes
0 answers

Extracting weather data from local weather stations package

I have been trying to extract weather data from local weather stations close to the locations I am interested in. Although when using the "weatherData" package with an API key from their website…
ASHooper93
  • 27
  • 3
0
votes
0 answers

Struggling with the wunderground api and node

So I had been stuck on this exercise in Treehouse some time ago and just moved on. I came back to it now that I understand things better and I'm still fighting with the wunderground api. I've read through the json data and documentation, updated a…
chauxvive
  • 238
  • 4
  • 16
0
votes
2 answers

How to use Python to submit form within Wunderground History page

I would like to do the following. 1) Goto https://www.wunderground.com/history 2) Submit the form with the following values: Location = 'Los Angeles, CA' Month = 'November' Day = '02' Year = '2017' 3) Retrieve the response and save to a file Here…
Le Vu
  • 3
  • 2
0
votes
1 answer

Get specific observations from api.wunderground.com/api/history

I'm trying to grab a few values from the observation array within the In the history api from api.wunderground.com/api. http://api.wunderground.com/weather/api/d/docs?d=data/history I'm a novice with JavaScript but attempting to pull this data into…
p0werenner
  • 224
  • 1
  • 2
  • 10
0
votes
0 answers

Loop only running once

I want to call the wunderground api for each date in an array. Then loop through the results and build an object. The first loop is working correctly (I think), but the second one only runs for the first observation out of 23. var dateArray =…
Travis Heeter
  • 13,002
  • 13
  • 87
  • 129