Created
October 20, 2015 14:35
-
-
Save claytical/6a004ac9a2bd27b0d872 to your computer and use it in GitHub Desktop.
Looping through Weather Forecast
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var canvas; | |
| var base_url = "http://api.openweathermap.org/data/2.5/forecast"; | |
| var city_url = "?q=Miami"; | |
| var app_id = "&appid=bd82977b86bf27fb59a04b61b657fb6f"; | |
| var units = "&units=imperial"; | |
| var temp = []; | |
| var temp_min = []; | |
| var temp_max = []; | |
| var xCursor; | |
| var yCursor; | |
| function setup() { | |
| canvas = createCanvas(windowWidth, windowHeight); | |
| // Request the data from openweathermap | |
| var url = base_url + city_url + app_id + units; | |
| loadJSON(url, gotWeather); | |
| } | |
| function draw() { | |
| xCursor = 50; | |
| yCursor = 50; | |
| background(0); | |
| for (var i = 0; i < temp.length; i++) { | |
| noStroke(); | |
| fill(255,0,0); | |
| ellipse(xCursor,yCursor,temp_max[i],temp_max[i]); | |
| fill(0,0,255); | |
| ellipse(xCursor,yCursor,temp_min[i],temp_min[i]); | |
| fill(255); | |
| textSize(20); | |
| textAlign(CENTER, CENTER); | |
| if (temp[i]) { | |
| text(temp[i],xCursor,yCursor); | |
| } | |
| //add the maximum temperature plus 20 padding | |
| xCursor += temp_max[i] + 20; | |
| //reset the cursor if we go past the width of the canvas | |
| //move the y cursor down | |
| if (xCursor > width) { | |
| xCursor = 50; | |
| yCursor += temp_max[i] + 20; | |
| } | |
| } | |
| } | |
| function gotWeather(weather) { | |
| //Position 0 is the first item in the list | |
| //each one is 3 hours apart | |
| for (var i = 0; i < weather.list.length; i++) { | |
| temp.push(weather.list[i].main.temp); | |
| temp_min.push(weather.list[i].main.temp_min); | |
| temp_max.push(weather.list[i].main.temp_max); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment