Skip to content

Instantly share code, notes, and snippets.

View bumbeishvili's full-sized avatar
🏠
Working from home

David Bumbeishvili bumbeishvili

🏠
Working from home
View GitHub Profile
@bumbeishvili
bumbeishvili / airlines.xml
Created November 8, 2019 11:48 — forked from upphiminn/airlines.xml
Example of d3-ForceEdgeBundling on US airline routes graph.
<?xml version="1.0" encoding="UTF-8"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns
http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
<key id="x" for="node" attr.name="x" attr.type="double"/>
<key id="tooltip" for="node" attr.name="tooltip" attr.type="string"/>
<key id="y" for="node" attr.name="y" attr.type="double"/>
@bumbeishvili
bumbeishvili / README.md
Created February 22, 2019 12:39 — forked from tnightingale/README.md
Leaflet + D3js: Hexbin

This hexbin map shows the proximity of earthquakes (magnitude 3.0 or greater) in the Canterbury region of New Zealand during the month of September, 2010.

The map is created using Leaflet. The hexbin layer is a custom Leaflet layer which uses d3js to generate a svg hexbin overlay. The source for the custom leaflet layer is viewable here.

Earthquake data sourced from GeoNet.

@bumbeishvili
bumbeishvili / .block
Created February 1, 2019 11:41 — forked from HarryStevens/.block
Rotate a Polygon
license: gpl-3.0
@bumbeishvili
bumbeishvili / chevronArc.js
Created September 16, 2018 05:29 — forked from Andrew-Reid/chevronArc.js
Lichen.js Pattern Showcase
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('d3-path')) :
typeof define === 'function' && define.amd ? define(['exports', 'd3-path'], factory) :
(factory((global.d3 = global.d3 || {}),global.d3));
}(this, (function (exports,d3Path) { 'use strict';
var constant$1 = function(x) {
return function constant() {
return x;
};
@bumbeishvili
bumbeishvili / .block
Created July 29, 2018 16:03 — forked from larsvers/.block
Farmers Markets II - with d3-hexgrid
license: mit
height: 500
border: no
@bumbeishvili
bumbeishvili / .gitignore
Created July 24, 2018 06:40 — forked from mukhtyar/.gitignore
d3-annotation: Thresholds & Annotation Colors
.DS_Store
@bumbeishvili
bumbeishvili / README.md
Created July 24, 2018 06:38 — forked from 1wheel/README.md
regl-circles

hello webgl circles

@bumbeishvili
bumbeishvili / .block
Created July 24, 2018 06:36 — forked from djamshed/.block
Variable Offset Animated Links
license: mit
@bumbeishvili
bumbeishvili / d3.sankey.js
Created July 24, 2018 06:35 — forked from emeeks/d3.sankey.js
Sankey Particles IV
d3.sankey = function() {
var sankey = {},
nodeWidth = 24,
nodePadding = 8,
size = [1, 1],
nodes = [],
links = [];
sankey.nodeWidth = function(_) {
if (!arguments.length) return nodeWidth;
@bumbeishvili
bumbeishvili / .block
Created July 24, 2018 06:34 — forked from Kcnarf/.block
Scrolytelling the Penrose triangle
license: mit