You've already forked wakapi-readme-stats
Bar graph added.
This commit is contained in:
17
node_modules/d3-geo/src/projection/azimuthalEquidistant.js
generated
vendored
Normal file
17
node_modules/d3-geo/src/projection/azimuthalEquidistant.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
import {acos, sin} from "../math.js";
|
||||
import {azimuthalRaw, azimuthalInvert} from "./azimuthal.js";
|
||||
import projection from "./index.js";
|
||||
|
||||
export var azimuthalEquidistantRaw = azimuthalRaw(function(c) {
|
||||
return (c = acos(c)) && c / sin(c);
|
||||
});
|
||||
|
||||
azimuthalEquidistantRaw.invert = azimuthalInvert(function(z) {
|
||||
return z;
|
||||
});
|
||||
|
||||
export default function() {
|
||||
return projection(azimuthalEquidistantRaw)
|
||||
.scale(79.4188)
|
||||
.clipAngle(180 - 1e-3);
|
||||
}
|
||||
Reference in New Issue
Block a user