Skip to content

Instantly share code, notes, and snippets.

@ptvans
Created July 29, 2013 23:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ptvans/6108928 to your computer and use it in GitHub Desktop.
Save ptvans/6108928 to your computer and use it in GitHub Desktop.
Weather stations pseudo heatmap (color scale, blurry, clipped)
{"description":"Weather stations pseudo heatmap (color scale, blurry, clipped)","endpoint":"","display":"canvas","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"stations.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"countries.json":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"fullscreen":false,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"thumbnail":"http://i.imgur.com/OrUKAkN.png"}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
var r =1.20,
month = 1; // 1 = January, 12 = December
var projection = d3.geo.equirectangular()
.scale(143)
var c = tb.ctx;
var path = d3.geo.path()
.projection(projection)
.context(c);
path.pointRadius(r);
c.fillStyle = '#B9B9B9';
// clipping path
c.beginPath();
_.each(tb['countries'].features, function(d, i) {
path(d);
});
c.closePath();
c.clip();
// background
_.each(tb['countries'].features, function(d, i) {
path(d);
c.fill();
});
//var values = _.map(stations.features
var colorScale = d3.scale.linear()
.domain([-1000, 1500, 3000])
.range(['#2165F7', '#F0F8B3', '#D52323'])
var drawPoint = function(p) {
var coords = d3.geo.centroid(p);
var cs = projection(coords);
var grd = c.createRadialGradient(cs[0], cs[1], 0, cs[0], cs[1], r);
var color = colorScale(p.properties["val" + month]);
var rgbColor = d3.rgb(color);
var colorString = [rgbColor.r, rgbColor.g, rgbColor.b].join();
grd.addColorStop(0, 'rgba(' + colorString +', 0.4)');
// grd.addColorStop(1, 'rgba(' + colorString +', 0)');
c.fillStyle = "#1E2B47"//grd;
c.beginPath();
path(p)
c.closePath();
c.fill();
};
var stations = tb['stations'];
c.save();
_.chain(stations.features)
.filter(function(d, i) { return d.properties["val" + month] > -9999}) // filter out unknown results
.sortBy(function(d, i) { return d.properties["val" + month]} )
.each(drawPoint)
.values();
c.restore();
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment