Do you like to categorize things? Do you like recognizing patterns in your daily life? Well then

Data visualization examples

Components of parsing a URL

Screen Shot 2022-11-30 at 16.39.31.png

Live Demo

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

Network tab, debugging, and data hacking/scraping

Here are some APIs