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
0
votes
0 answers

How can I use my latitude and longitude variables inside of my Jquery?

So I'm attempting to make a little app right now that displays weather information based on a user's location. I can easily pass in values to my latitude and longitude to make it work properly, but I can't seem to get coordinates and assign them to…
0
votes
1 answer

Issues Accessing "dailysummary" section of Wunderground API

I have a group of functions that are created to retrieve data from the Wunderground API. However, because of the fact that the "dailysummary" section is enclosed in an array somehow, I cannot figure out how to access it. This is the part that I…
ButtonMasterBot
  • 317
  • 2
  • 5
  • 14
0
votes
1 answer

Parts of Wunderground API Inaccessible In Swift

I am using the Wunderground API in my project, and the part of the API I want to use looks like this: "history": { "dailysummary": [ { "date": { "pretty": "12:00 PM PDT on August 12, 2015", "year": "2015", "mon": "08", …
ButtonMasterBot
  • 317
  • 2
  • 5
  • 14
0
votes
1 answer

Using Wunderground API in Swift

My current project needs to be able to display weather forecasts, and I have decided to use Wunderground. Because using an API is completely uncharted territory for me, I have a two-part question. What is the best way to retrieve data from it, and…
ButtonMasterBot
  • 317
  • 2
  • 5
  • 14
0
votes
1 answer

How to interpret duplicate hourly records - Wunderground API

For a specific historical query: http://api.wunderground.com/api/MY_API_KEY/history_20131231/geolookup/q/Beijing/Beijing.json I get periodic, duplicate data for a given hour. For example, On January 1st, 2014 at 2:00 pm there will be two rows with…
compguy24
  • 937
  • 16
  • 33
0
votes
2 answers

Ruby on Rails: Getting Form Input to Model

I'm still learning more about Rails and I'm starting to play around with APIs, but I can't seem to figure out how to get an input from a form to the Model. I want to take the User input (in the form of a zip code) and have it spit out the weather…
huihuihui
  • 189
  • 4
  • 13
0
votes
2 answers

Wunderground API - Historical Forecasts?

Is there a way to get historical forecasts from the wunderground API? For instance, find out the predicted high temperature 5 days from an arbitrary date in the past?
Matt M
  • 86
  • 9
0
votes
1 answer

Wordpress short code to display in template

I would like to hardcode this WordPress short code in my template file. Is there a way to do it? [wunderground location="Philadelphia, PA" numdays="3" layout="simple"] Currently only works if i add into Page WTSIWYG
Steve
  • 8,153
  • 9
  • 44
  • 91
0
votes
1 answer

How to get weather data for specific date using wunderground

This is the first time I am using this wunderground.I want to get weather data as per following cases Note : Today Date :2014-02-03 I want to get weather data from 2014-01-21 to 2014-01-31 so it's comes to history data. I want to get weather data…
Hanumath
  • 1,117
  • 9
  • 23
  • 41
0
votes
1 answer

Web Crawler Java

... public static void download() { try { URL oracle = new URL("http://api.wunderground.com/api/54f05b23fd8fd4b0/geolookup/conditions/forecast/q/US/CO/Denver.json"); BufferedReader in = new…
Arc
  • 441
  • 1
  • 9
  • 26
0
votes
1 answer

Downloading web-source Java

import java.io.*; import java.util.*; import java.net.*; import org.json.simple.JSONArray; import org.json.simple.JSONObject; import org.json.simple.parser.JSONParser; import org.json.simple.parser.ParseException; public class URLReader { …
Arc
  • 441
  • 1
  • 9
  • 26
0
votes
2 answers

Retrieving values of fields in a list

I have the class "Alerts", which contains some returned information from Wunderground's API. I then have another class inside "Alerts", "Alert". My code looks like this: public class Alerts { public class Features { public int alerts…
Bailey Stein
  • 331
  • 2
  • 12
0
votes
1 answer

Possible to use alternate weather api with Google Maps v3?

The Weather.com data in the weather layer is aggregated temps from the region and NOT direct weather station data. The meteorologist where I work is complaining about how inaccurate the data is on our web site. We're already using a paid Weather…
0
votes
1 answer

Python to get single day weather forecast from wunderground json api

This question concerns returning a single piece of data from a json file using python's json module My json request returns: { "response":{ "version":"0.1", "termsofService":"http://www.wunderground.com/weather/api/d/terms.html", …
user2815865
  • 21
  • 1
  • 2
0
votes
1 answer

How to get weather data from a weather station?

I've been looking around how to get a historical data for a weather station. There are two ID's for a station : - ISD (ex 074969) see http://www.ncdc.noaa.gov/oa/climate/isd/ - PWS (ex IFRANCEC5) see…
user777466
  • 991
  • 2
  • 13
  • 21