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 to upload data from my personal weather station?

How can I contribute and UPLOAD PWS data to wunderground.com? Is there an API documentation available out there? I found an API showing how to RETRIEVE data from the PWSs: https://weather.com/swagger-docs/call-for-code curl -X GET…
Florian
  • 11
  • 4
1
vote
1 answer

json.decoder.JSONDecodeError: Expecting value: line 2 column 1 (char 1) error

f = urlopen('http://api.wunderground.com/api/API_KEY_HERE/geolookup/conditions/q/CA/LosAngeles.json') str_response = f.readline().decode('utf-8') parsed_json = json.loads(str_response) location =…
Human
  • 442
  • 1
  • 6
  • 15
1
vote
2 answers

Python error in parsing JSON

i am developing a machine learning algorithm to predict temperature in my city. I am using wunderground API in order to obtain the data. So, in this piece of code where I execute a request to the API: def extract_weather_data(url, api_key,…
user3836982
  • 148
  • 1
  • 13
1
vote
0 answers

Failure using wunderground historical API

I am trying to use the wunderground api to have historical weather data by latitude and longitude. Here is my python code: import requests import pprint data =…
Rostan
  • 809
  • 9
  • 25
1
vote
1 answer

Get Average Precipitation of a City using the Wunderground API + PHP

I am currently trying to output to the user the probability of precipitation (POP) in their given city using the Wunderground API and PHP. The Wunderground API returns its requests in JSON format. Yet I am currently getting nothing back and I don't…
EDCisBack
  • 41
  • 2
  • 11
1
vote
1 answer

C# & XAML - Display JSON in ListView from Wunderground API

I am new to C# and XAML and am working on a simple Weather App that lets you search for city and state and returns a formatted 10-day forecast list. I'm having problems displaying data retrieved from the Wunderground Weather API using a ListView.…
Erik Gomez
  • 26
  • 4
1
vote
0 answers

change from auto detected to autocomplete wunderground

this is my code blow wunderground weather , and he all ready working fine , but i want to make change , this change well be from auto detected to autocomplete api , and i make try but get error , i just some one edit my code change to autocomplete…
aligassan
  • 59
  • 1
  • 10
1
vote
2 answers

Extract value from Json using Gson

I am trying to extract values from JSON from the URL provided below using GSON java library: http://api.wunderground.com/api/b28d047ca410515a/forecast/q/-33.912,151.013.json I have successfully used the code provided below to extract data from URL…
Ossama
  • 2,401
  • 7
  • 46
  • 83
1
vote
2 answers

Search a key in a Json (nested array) PHP

I use WU api to get some hourly weather data. The API returns a Json with multiple hourly values and I want to query the one that I need: Json: { "response": { "version":"0.1", …
Casper
  • 1,663
  • 7
  • 35
  • 62
1
vote
1 answer

Access A Value in Wunderground API

I am trying to incorporate Wunderground into my current project. I have looked at several api tutorials, but I can't seem to figure out how to access a certain part of the API. For example, this is sort of what the API looks like: { "response":…
ButtonMasterBot
  • 317
  • 2
  • 5
  • 14
1
vote
1 answer

Something wrong with API request inside a loop

I'm in big trouble,I can't understand why this thing does not work.I need to make an API request for each value of an array,and if I look in my console javascript,the request are served but I need latitude and longitude value inside the request.The…
Mirko
  • 137
  • 1
  • 2
  • 14
1
vote
2 answers

Parse JSON forecast data from Wunderground

I am querying Wunderground service for a 10 day forecast and I need to parse the data. The approach by using class creator like Json2Sharp and then accessing the RootObject works but is not preferable. What I need is a simple token parse, however, I…
eYe
  • 1,695
  • 2
  • 29
  • 54
1
vote
1 answer

forecast wunderground api in Swift with json

I'm trying to get the hourly forecast from the Wunderground API but my code returns this error. I am interested in the forecast humidity for a specific hour of the day from the Wunderground API for a research project. let currenttt =…
RenzoG
  • 31
  • 5
1
vote
2 answers

How to use beautifulsoup when HTML element doesn't have a class name?

I am using the following code (slightly modified from Nathan Yau's "Visualize This" early example) to scrape weather data from WUnderGround's site. As you can see, python is grabbing the numeric data from the element with class name "wx-data". …
d8aninja
  • 3,233
  • 4
  • 36
  • 60
1
vote
1 answer

Wunderground and UTC Offset

I am consuming the international weather forecasts via Wunderground's XML API: http://wiki.wunderground.com/index.php/API_-_XML Looking at an output for Kabul, Afghanistan for…
Brandon
  • 10,744
  • 18
  • 64
  • 97