Skip to content

Instantly share code, notes, and snippets.

@yesoreyeram
Created May 17, 2016 04:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yesoreyeram/4004400c783fd2045c166d243ff8efd7 to your computer and use it in GitHub Desktop.
Save yesoreyeram/4004400c783fd2045c166d243ff8efd7 to your computer and use it in GitHub Desktop.
Fetching CSV
license: gpl-3.0
<!DOCTYPE html>
<meta charset="utf-8">
<style>
h1 {
text-align: center;
font-family: "Helvetica Neue";
font-size: 96px;
line-height: 350px;
}
</style>
<h1>1 + 2 + 3 = <span id="result">?</span></h1>
<script src="https://d3js.org/d3-dsv.v0.3.min.js"></script>
<script>
Promise.all([
"one.csv",
"two.csv",
"three.csv"
].map(function(url) {
return fetch(url).then(function(response) {
return response.ok ? response.text() : Promise.reject(response.status);
}).then(function(text) {
return d3_dsv.csvParse(text);
});
})).then(function(value) {
var one = +value[0][0].number,
two = +value[1][0].number,
three = +value[2][0].number;
document.querySelector("#result").textContent = one + two + three;
});
</script>
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
number
1
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
number
3
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
number
2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment