Published
Edited
Apr 25, 2019
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
map = {

const context = this ? this.getContext("2d") : DOM.context2d(size, size);
const render = function() {
const path = d3.geoPath(projection, context);
const rotate = projection.rotate();
const backpath = d3.geoPath(backprojection, context);
const frontColor = d3.hcl('#a9c681');
const backColor = d3.hcl(frontColor);
backColor.l += 15;
backColor.c -= 30;
context.clearRect(0, 0, width, width);

context.beginPath(), path({type:"Sphere"}),
context.fillStyle = '#fcfcfc', context.fill();

context.beginPath(), backpath(countries),
context.fillStyle = backColor, context.fill();

context.beginPath(), backpath(d3.geoGraticule()()),
context.lineWidth = .1, context.strokeStyle = '#aaa', context.stroke();

context.beginPath(), path(d3.geoGraticule()()),
context.lineWidth = .1, context.strokeStyle = '#111', context.stroke();

context.beginPath(), path(countries),
context.globalAlpha = 0.9,
context.lineWidth = 1, context.strokeStyle = frontColor.darker(1), context.stroke(),
context.fillStyle = frontColor, context.fill(),
context.globalAlpha = 1;

context.beginPath(), path({type: "Sphere"}),
context.lineWidth = .1, context.strokeStyle = '#111', context.stroke();

context.beginPath(), path(selectedData);
context.lineWidth = 1, context.strokeStyle = selectedColor, context.stroke()
context.beginPath(), path({type: 'Point', coordinates: selectedPlace});
context.fillStyle = "red", context.fill()

}
// no need to specify render() here, it's taken care of by the loop below.
context.canvas.inertia = d3.geoInertiaDrag(d3.select(context.canvas), null, projection);

const timer = d3.timer(function() {
var rotate = projection.rotate();
rotate[0] += velocity * 20;
projection.rotate(rotate);
backprojection.rotate(rotate);
render();
});
invalidation.then(() => (timer.stop(), timer = null, d3.select(context.canvas).on(".drag", null)));

return context.canvas;

}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Url="https://gist.githubusercontent.com/zhengyunhan/6bae5a5d7872ea314ca155281865fcc3/raw/820ee002c06751c4689e6f7a64318446cdd54fae/select_inflow.csv"
Insert cell
Url2="https://gist.githubusercontent.com/zhengyunhan/ec0cba9408754fc0b38ae90b4dd65a10/raw/3ff848f89d4ebd2ded2c698f1697e18c9a4c3afa/select_outflow.csv"
Insert cell
Inflow=d3.csv(Url)
Insert cell
Outflow=d3.csv(Url2)
Insert cell
arc_inflow={
let features=[]
for (let i=0; i<selected_inflow.length; i++){
features.push({type: "Feature", geometry: {type:"LineString",coordinates:[[parseFloat(selected_inflow[i].lng), parseFloat(selected_inflow[i].lat)], [parseFloat(selected_inflow[i].des_lng), parseFloat(selected_inflow[i].des_lat)]]}},)
}
return {
type: "FeatureCollection",
features: features
}
}
Insert cell
arc_outflow={
let features=[]
for (let i=0; i<selected_outflow.length; i++){
features.push({type: "Feature", geometry: {type:"LineString",coordinates:[[parseFloat(selected_outflow[i].lng), parseFloat(selected_outflow[i].lat)], [parseFloat(selected_outflow[i].des_lng), parseFloat(selected_outflow[i].des_lat)]]}},)
}
return {
type: "FeatureCollection",
features: features
}
}
Insert cell
selectedData = {
switch (selected_inoutflow) {
case "Inflow": return arc_inflow
case "Outflow": return arc_outflow
}
}
Insert cell
selectedColor = {
switch (selected_inoutflow) {
case "Inflow": return "rgba(0,100,0,.4)"
case "Outflow": return "rgba(100,0,0,.4)"
}
}
Insert cell
selectedPlace = {
switch (selected_inoutflow) {
case "Inflow": return [selected_inflow[0].des_lng,selected_inflow[0].des_lat]
case "Outflow": return [selected_outflow[0].lng,selected_outflow[0].lat]
}
}
Insert cell
selected_inflow=z.filter(r => r[selected_institution] == 1, Inflow)
Insert cell
selected_outflow=z.filter(r => r[selected_institution] == 1, Outflow)
Insert cell
institutions=Object.keys(Inflow[0]).slice(14)
Insert cell
Insert cell
Insert cell
land = topojson.feature(world, world.objects.land)
Insert cell
countries = topojson.feature(world, world.objects.countries)
Insert cell
Insert cell
Insert cell
Insert cell
z = require('https://bundle.run/zebras@0.0.11')
Insert cell
versor = require("versor@0.0.3")
Insert cell
import {select} from "@jashkenas/inputs"
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more