Hi everyone, so I’ve just changed my JSON data so that I can link it my “date” as well as the “hours”. So I wrote out this section two lines to get the data working, but so far no luck. Was wondering if anyone can help?
for (SundayHours=0; SundayHours<data.Sunday.length; SundayHours++){
for (whichHour=0; whichHour<data.hours.length; whichHour++){
CODE:
var data;
var instagram, snapchat, messenger, facebook, email, instagramCol, snapchatCol, messengerCol, facebookCol, emailCol;
var whichHour=0;
var sizeMultiplier = 10;
var time, size;
var daycounter= 1;
var SundayHours=0;
function preload (){
data =loadJSON("Sunday.json");
}
function setup() {
createCanvas (windowWidth, windowHeight);
background (255);
instagramCol = color (142, 68, 173, 90);
messengerCol = color (133, 193, 233, 90);
snapchatCol = color (247, 220, 111, 90);
facebookCol = color (231, 76, 60, 90);
emailCol = color (0);
frameRate(0.5);
}
function draw () {
for (SundayHours=0; SundayHours<data.Sunday.hours.length; whichHour++){
for (whichHour=0; whichHour<data.SundayHours.hours.length; whichHour++){
fill (instagramCol);
size = data.Sunday[SundayHours].hours[whichHour].instagram*sizeMultiplier
ellipse (random(600, 800), random (150, 300), size, size);
}
}
}
JSON FILE:
{
"Sunday": {
"hours": [
{
"time": "12:00 am",
"instagram": 0,
"messenger": 0,
"snapchat": 0,
"email": 0,
"facebook": 0,
"totalNotification": 0
},
{
"time": "1:00 am",
"instagram": 1,
"messenger": 2,
"snapchat": 0,
"email": 0,
"facebook": 0,
"totalNotification": 3
},
{
"time": "2:00 am",
"instagram": 0,
"messenger": 0,
"snapchat": 0,
"email": 0,
"facebook": 0,
"totalNotification": 0
},
{
"time": "3:00 am",
"instagram": 0,
"messenger": 0,
"snapchat": 0,
"email": 0,
"facebook": 0,
"totalNotification": 0
},
{
"time": "4:00 am",
"instagram": 0,
"messenger": 0,
"snapchat": 0,
"email": 0,
"facebook": 0,
"totalNotification": 0
},
{
"time": "5:00 am",
"instagram": 0,
"messenger": 0,
"snapchat": 0,
"email": 0,
"facebook": 0,
"totalNotification": 0
},
{
"time": "6:00 am",
"instagram": 0,
"messenger": 0,
"snapchat": 0,
"email": 0,
"facebook": 0,
"totalNotification": 0
},
{
"time": "7:00 am",
"instagram": 0,
"messenger": 0,
"snapchat": 0,
"email": 0,
"facebook": 0,
"totalNotification": 0
},
{
"time": "8:00 am",
"instagram": 2,
"messenger": 2,
"snapchat": 0,
"email": 1,
"facebook": 0,
"totalNotification": 5
},
{
"time": "9:00 am",
"instagram": 2,
"messenger": 0,
"snapchat": 0,
"email": 1,
"facebook": 0,
"totalNotification": 3
},
{
"time": "10:00 am",
"instagram": 1,
"messenger": 2,
"snapchat": 3,
"email": 0,
"facebook": 2,
"totalNotification": 8
},
{
"time": "11:00 am",
"instagram": 0,
"messenger": 2,
"snapchat": 7,
"email": 2,
"facebook": 0,
"totalNotification": 11
},
{
"time": "12:00 pm",
"instagram": 0,
"messenger": 1,
"snapchat": 2,
"email": 0,
"facebook": 0,
"totalNotification": 3
},
{
"time": "1:00 pm",
"instagram": 4,
"messenger": 0,
"snapchat": 0,
"email": 1,
"facebook": 0,
"totalNotification": 5
},
{
"time": "2:00 pm",
"instagram": 2,
"messenger": 0,
"snapchat": 0,
"email": 0,
"facebook": 0,
"totalNotification": 2
},
{
"time": "3:00 pm",
"instagram": 0,
"messenger": 2,
"snapchat": 4,
"email": 0,
"facebook": 0,
"totalNotification": 6
},
{
"time": "4:00 pm",
"instagram": 5,
"messenger": 0,
"snapchat": 3,
"email": 0,
"facebook": 0,
"totalNotification": 8
},
{
"time": "5:00 pm",
"instagram": 1,
"messenger": 0,
"snapchat": 4,
"email": 0,
"facebook": 0,
"totalNotification": 5
},
{
"time": "6:00 pm",
"instagram": 0,
"messenger": 0,
"snapchat": 0,
"email": 0,
"facebook": 0,
"totalNotification": 0
},
{
"time": "7:00 pm",
"instagram": 1,
"messenger": 11,
"snapchat": 0,
"email": 0,
"facebook": 0,
"totalNotification": 12
},
{
"time": "8:00 pm",
"instagram": 0,
"messenger": 2,
"snapchat": 0,
"email": 0,
"facebook": 0,
"totalNotification": 2
},
{
"time": "9:00 pm",
"instagram": 0,
"messenger": 1,
"snapchat": 0,
"email": 0,
"facebook": 0,
"totalNotification": 1
},
{
"time": "10:00 pm",
"instagram": 7,
"messenger": 1,
"snapchat": 21,
"email": 0,
"facebook": 0,
"totalNotification": 29
},
{
"time": "11:00 pm",
"instagram": 0,
"messenger": 0,
"snapchat": 3,
"email": 0,
"facebook": 0,
"totalNotification": 3
}
]
}