xxxxxxxxxx
99
let populations;
let objArray = [];
function preload() {
populations = loadTable("/simpleData_noRegions.csv", "csv", "header");
}
function setup() {
createCanvas(1000, 2800)
for (let i = 0; i < populations.getRowCount(); i++) {
let oldObj = populations.getRow(i).obj;
let newObj = {};
newObj.country = oldObj.country;
newObj.estimate = parseInt(oldObj.estimate);
newObj.error = parseInt(oldObj.marginOfError);
objArray.push(newObj);
}
}
let country
let countryTitle
let countryEstimate
let countryEstimateAdjPreFixed
let countryEstimateAdj
let countryError
let countryErrorAdj
let multiplier = 0.00002
let yposPrev = 0
let xpos = 0
let ypos = 0
function draw() {
for (let i = 0; i < objArray.length; i++) {
noStroke();
country = objArray[i]
countryTitle = country.country;
countryEstimate = country.estimate;
countryEstimateAdjPreFixed = countryEstimate * multiplier
countryEstimateAdj = countryEstimateAdjPreFixed.toFixed(2);
countryEstimateAdjStroke = int(countryEstimate * multiplier )
countryError = country.error;
countryErrorAdj = int(countryError * multiplier /10)
xpos = 30
yPos = i *20 + 20
strokeWeight(countryEstimateAdjStroke)
//color
stroke(i, i+50, i *2, 30)
line(xpos+40, yPos-5, 700, 700)
fill(0)
noStroke()
if (countryEstimateAdjStroke < 12) {
countryEstimateAdjStroke = 12
} else if (countryEstimateAdjStroke > 24) {
countryEstimateAdjStroke = 24
} else {
countryEstimateAdjStroke = countryEstimateAdjStroke
}
if (i <= 37 ) {
fill(100,80,100)
} else if ( i > 37 && i <=63){
fill(80,130,80)
} else if(i>74 && i <= 94){
fill(140,40,120)
} else if (i > 94 && i <= 97){
fill(20,100,40)
} else if (i > 97 && i < 131){
fill(60,90,90)
}
textSize(countryEstimateAdjStroke)
text(countryEstimateAdj + " - " + countryTitle, xpos, yPos)
console.log(countryTitle + " - " + i)
}
textSize(26)
text("Immigrants to New York * 20,000", 220, 80)
fill(255)
textSize(30)
textAlign(CENTER)
text("NEW YORK", 700, 720)
noLoop()
}