The Van der Grinten IV projection is available as d3.geo.vanDerGrinten4
in the geo.projection D3 plugin.
Zoomable Sunburst with Labels
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
################################################################## | |
# Licensed under GNU GPL v3 # | |
# [email protected] # | |
# # | |
# DNS replacement scrpit in SQL dumps containing (also) PHP # | |
# serialized strings. # | |
# This script use bash and perl' perl is used to increment # | |
# serialized string length while performing DNS replacement # | |
# It also use sed for other basic DNS replacements # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
var canvas = document.getElementById('hexmap'); | |
var hexHeight, | |
hexRadius, | |
hexRectangleHeight, | |
hexRectangleWidth, | |
hexagonAngle = 0.523598776, // 30 degrees in radians | |
sideLength = 10, | |
boardWidth = 100, |