summaryrefslogtreecommitdiff
path: root/src/projection/albers.js
blob: 180425dc3fd4cb6c78c59b6b3d6941ad0f6a3e97 (plain)
1
2
3
4
5
6
7
8
9
10
import conicEqualArea from "./conicEqualArea.js";

export default function() {
  return conicEqualArea()
      .parallels([29.5, 45.5])
      .scale(1070)
      .translate([480, 250])
      .rotate([96, 0])
      .center([-0.6, 38.7]);
}