(φ)
| 4687 | }).raw = d3_geo_azimuthalEquidistant; |
| 4688 | function d3_geo_conicConformal(φ0, φ1) { |
| 4689 | var cosφ0 = Math.cos(φ0), t = function(φ) { |
| 4690 | return Math.tan(π / 4 + φ / 2); |
| 4691 | }, n = φ0 === φ1 ? Math.sin(φ0) : Math.log(cosφ0 / Math.cos(φ1)) / Math.log(t(φ1) / t(φ0)), F = cosφ0 * Math.pow(t(φ0), n) / n; |
| 4692 | if (!n) return d3_geo_mercator; |
| 4693 | function forward(λ, φ) { |
| 4694 | if (F > 0) { |
no outgoing calls
no test coverage detected