D3 Albers Projection Demo

Projection Parameters:

Center

Longitude: 0

Latitude: 33.6

Rotate

Longitude: 81

Latitude: 0

Standard Parallels

Parallel 1: 29.5

Parallel 2: 45.5

Scale

200

Projection block

var projection = d3.geo.albers()

.center([0, 33.6])

.rotate([81, 0, 0])

.parallels([29.5, 45.5])

.scale(200)

.translate(width / 2, height / 2]);