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
10
votes
4 answers

Scraping wunderground without API, using python

I'm not very experienced in the world of scraping data, so the problem here may be obvious to some. What I want is to scrape historical daily weather data from wunderground.com, without paying the API. Maybe it's not possible at all. My method is…
Juan
  • 1,351
  • 1
  • 14
  • 28
8
votes
1 answer

How to get direct link of remote video from embedded url within a url in Android using JSoup?

I had asked the question previously about how to retrieve the embedded url for a video file and have successfully done so. Now I have a different issue. The json response for a WUnderground API webcam response gives the following…
Steve C.
  • 1,333
  • 3
  • 19
  • 50
5
votes
2 answers

Using pandas to get cumulative sum of data by days

Python I've got weather data for 122 days from Wunderground that doesn't have equal time sampling intervals. Here's a sample of my data: Bangor Weather Data from Wunderground Datetime,Temp(F),Precip(in.),Snow (in.),PET(in./day),Baro(mBar) …
Strak
  • 145
  • 1
  • 12
4
votes
1 answer

Using devbridge autocomplete and wunderground autocomplete API

I'm attempting to use the devbridge jquery autocomplete lib to pull wunderground.com's autocomplete API, and I keep getting held up. Whether I attach a cb to the serviceUrl or not, it can't parse the returned json. The response is prefixed with…
Bazar6
  • 78
  • 1
  • 7
3
votes
3 answers

Weather Underground API to get historical data in Python

I am trying to pull historical data from the Weather Underground API. I adapted their Python example code (see below). When I run this I get an exception "TypeError: list indices must be integers, not str" The JSON stream includes a bunch of…
user2719147
  • 51
  • 2
  • 3
2
votes
1 answer

How to extract data from weather underground (wunderground) into csv files

I am trying to download historical data from weather underground into csv format by running a for loop with iterations [i] for each date. In order to speed up the run time I am running the code from the 1st of September 2019 to today's date (I will…
EllisR8
  • 169
  • 2
  • 10
2
votes
3 answers

Why does beautifulsoup return nothing for this table?

I'm trying to pull a specific table from this Wunderground page: https://www.wunderground.com/history/daily/us/ma/nantucket/KACK/date/2018-7-29 In plain english, the table is called "Daily Observations". From inspecting the page, it looks like the…
bearcub
  • 313
  • 4
  • 11
2
votes
0 answers

Error: data.forecast.txt_forecast.forecastday[i] is undefined in angular

Good day ,I am building a weather app using ionic angular , I am having problem with the weather array in JSON data . my code (function() { var app = angular.module('starter.wund', []); app.controller('ForecastController', function($scope,…
ALI GHASSAN
  • 221
  • 1
  • 4
  • 13
2
votes
2 answers

English/metric fields for snow and qpf in hourly forecast - WUnderground API

I use WUnderground API to retrieve hourly forecast. Here is a part of the json, returned by WUndergound API: "qpf":{ "english":"0.02", "metric":"1" }, "snow":{ "english":"0.0", "metric":"0" } And I don't know how to understand…
popov895
  • 61
  • 8
2
votes
1 answer

I have a difficulty uploading data to weather underground from my python program

I was using a python program to upload data to weather underground and then for no clear reason it stopped working one day. I created the following smaller version to try to trouble shoot it. This program returns "upload not…
2
votes
1 answer

hourly_forecast from Wunderground API

I'm trying to get the hourly forecast temperature for a specific hour of the day from the Wunderground API for a research project: This is an example of the…
2
votes
2 answers

Trying to search wunderground locations with javascript, jquery, and html

The code below doesn't work. Trying to search weather locations. When I search nothing happens.
sears
  • 79
  • 1
  • 1
  • 8
2
votes
1 answer

Pulling XML Elements in C# Via an API Feed

I'm attempting to pull certain elements from a Weather API to display weather conditions. First, I'm trying to grab the Weather Station name, which is the < icao > element in the feed inside the < station>. Here is the feed XML file I'm trying to…
LoganFrederick
  • 317
  • 2
  • 8
  • 19
1
vote
2 answers

Ajax not working with wunderground API (A Weather service to get information and display)

Hello there!. I am trying to use a public api from wunderground (more info in [http://wiki.wunderground.com/index.php/API_-_XML][1]) on a web page (in fact in a widget for a phone, but for testing purposes, but is the same technically speaking and…
Victor
  • 3,841
  • 2
  • 37
  • 63
1
vote
1 answer

BeautifulSoup can't find my table because of some weird string

Hi I have been trying to get a table from wunderground using BeautifulSoup but it just doesn't work. I think it could be for the starnge string next to the table header but i can´t fix it. Here is my code: from bs4 import BeautifulSoup import…
1
2 3 4 5 6 7