Your IP : 216.73.216.86


Current Path : /home/emeraadmin/public_html/node_modules/d3-geo/src/projection/
Upload File :
Current File : /home/emeraadmin/public_html/node_modules/d3-geo/src/projection/cylindricalEqualArea.js

import {asin, cos, sin} from "../math";

export function cylindricalEqualAreaRaw(phi0) {
  var cosPhi0 = cos(phi0);

  function forward(lambda, phi) {
    return [lambda * cosPhi0, sin(phi) / cosPhi0];
  }

  forward.invert = function(x, y) {
    return [x / cosPhi0, asin(y * cosPhi0)];
  };

  return forward;
}