Skip to content

Commit

Permalink
remove excess logging
Browse files Browse the repository at this point in the history
  • Loading branch information
harborlighttech authored Oct 23, 2024
1 parent d74a463 commit 6e08d02
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions county.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@

sortedFips.push(key);
});
//console.log('Sorted: ', sortedFips);
return sortedFips;
}
function drawChart(myData, label){
Expand Down Expand Up @@ -323,7 +322,6 @@
let geojson = fetch(countyReq)
.then((response) => response.json())
.then((data) => {
console.log(data['impacts'])
sorted = sortObjectByValues(data['impacts'])
for (const idx in sorted) {
fips = sorted[idx]
Expand All @@ -333,8 +331,8 @@
}
}

console.log('map: ', myData)
console.log('chart: ', chartData)
//console.log('map: ', myData)
//console.log('chart: ', chartData)

drawChart(chartData, DATE_LABEL)

Expand Down

0 comments on commit 6e08d02

Please sign in to comment.