xxxxxxxxxx
22
var url = 'https://api.openweathermap.org/data/2.5/forecast?q=Seoul&APPID=e4d37ccc2c4f3977c2e466fa78b38fcb&units=metric'
function setup() {
createCanvas(400, 400);
loadJSON(url,gotData);
}
function gotData(ok){
background(220);
console.log(ok);
for(i=0;i<ok.cnt;i++){
fill(255,0,0)
ellipse(random(width),random(height),ok.list[i].main.temp,ok.list[i].main.temp_kf);
}
}
function draw() {
}