Sha256: 32d0fa8cfd7072dea2ee54a52a62d49736c630c231c4f415a9f465930cd66f8d
Contents?: true
Size: 307 Bytes
Versions: 4
Compression:
Stored size: 307 Bytes
Contents
import "projection"; function wagner6(λ, φ) { return [ λ * Math.sqrt(1 - 3 * φ * φ / (π * π)), φ ]; } wagner6.invert = function(x, y) { return [ x / Math.sqrt(1 - 3 * y * y / (π * π)), y ]; }; (d3.geo.wagner6 = function() { return projection(wagner6); }).raw = wagner6;
Version data entries
4 entries across 4 versions & 1 rubygems