Do you like to categorize things? Do you like recognizing patterns in your daily life? Well then
P5 sketch 1 - https://editor.p5js.org/iguannalin/sketches/ai0UcYCbY
function preload() {
loadJSON(apiurl + `?lat=${latitude}&lon=${longitude}&key=${apikey}`, parseData);
function parseData(d) {
if (!d) return;
data = d.data;
}
}
P5 sketch 2 - https://editor.p5js.org/iguannalin/sketches/fBUbh-Xw6
GET vs POST calls
Using the Network tab in a Chrome browser can give you a lot of information about what APIs a website is using and how they are using it