A D3 V5 implementation of a shaded globe mimic the 3d effect. Drag to rotate and middle wheel to zoom. The flyer arcs are interpolated from 2 control points.
You can modify the dataset (Topojson format) to change landmarks.
const PIE = 3.14; | |
function f() { | |
console.log('function f inside module a'); | |
} | |
function f123() { | |
//not accessible | |
} |
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8"> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script> | |
<style> | |
body { | |
background: black; | |
} | |
Pokie machies by location (Dec 2018), CC-BY DIA NZ from: | |
https://www.dia.govt.nz/diawebsite.nsf/wpg_URL/Resource-material-Information-We-Provide-All-Venues-and-Numbers-by-Territorial-AuthorityDistrict | |
Geocoded with addy.co.nz 13th March 2019 by Hamish Campbell | |
There are a few unfound addresses and no manual checking of other results has been done. |
# -*- coding: utf-8 -*- | |
# | |
# Author: Vegard Nossum <[email protected]> | |
import math | |
import os | |
import sys | |
import cairo |
A D3 V5 implementation of a shaded globe mimic the 3d effect. Drag to rotate and middle wheel to zoom. The flyer arcs are interpolated from 2 control points.
You can modify the dataset (Topojson format) to change landmarks.
Notes for software engineering meeting presentation
license: gpl-3.0 |
#If you would like to contribute or modify the content's | |
#of this script, please consider contribution to the original | |
#repository - https://github.com/deanhu2/Perlin-Noise-Godot | |
tool | |
extends ImageTexture | |
export(int,1,100) var octave= 5 setget set_octave, get_octave | |
export(int,1,512) var width= 256 setget set_width, get_width | |
export(int,1,512) var height= 256 setget set_height, get_height |
Early/simplifed version of You Draw It: What Got Better or Worse During Obama’s Presidency
d3.drag is pretty great!