-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
30 lines (28 loc) · 930 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
const output = require('d3node-output')
const worldMap = require('../')
const fs = require('fs')
const data = fs.readFileSync('data/world-pop.tsv').toString()
const d3 = require('d3')
const populationsByCountry = d3.tsvParse(data)
// create output files
const optionsList = [
{ projectionKey: 'Albers' },
{ projectionKey: 'Boggs' },
{ projectionKey: 'Collignon' },
{ projectionKey: 'CylindricalEqualArea' },
{ projectionKey: 'Eckert4' },
{ projectionKey: 'Hammer' },
{ projectionKey: 'Hill' },
{ projectionKey: 'Hammer' },
{ projectionKey: 'Homolosine' },
{ projectionKey: 'Kavrayskiy7' },
{ projectionKey: 'Lagrange' },
{ projectionKey: 'Mollweide' },
{ projectionKey: 'Mercator' },
{ projectionKey: 'Miller' },
{ projectionKey: 'NaturalEarth' }
]
// use defaults
optionsList.forEach((options) => {
output(`./example/output-${options.projectionKey}`, worldMap(populationsByCountry, options))
})