source:
node_modules/d3-geo/src/projection/equirectangular.js
| Last change on this file was e4c61dd, checked in by , 6 months ago | |
|---|---|
|
|
| File size: 256 bytes | |
| Line | |
|---|---|
| 1 | import projection from "./index.js"; |
| 2 | |
| 3 | export function equirectangularRaw(lambda, phi) { |
| 4 | return [lambda, phi]; |
| 5 | } |
| 6 | |
| 7 | equirectangularRaw.invert = equirectangularRaw; |
| 8 | |
| 9 | export default function() { |
| 10 | return projection(equirectangularRaw) |
| 11 | .scale(152.63); |
| 12 | } |
Note:
See TracBrowser
for help on using the repository browser.
