You can set these up with your browser's built-in (Firefox bookmark keywords) or third party (SafariKeywordSearch extension) browser shortcuts feature, then jump to places by typing "ha PKG" and such in the address bar.
| license: gpl-3.0 |
This example shows how to use the conicConformalEurope projection from d3-composite-projections.
In the example we're looking at historical weather data for New York provided by intellicast.com and wunderground.com. Inspired by weather-radicals.com.
This example uses scales to roll your own radial projection by mapping out the x, y, and r positions. If you are creating a line or an area you can use d3's convenience functions d3.svg.line.radial and d3.svg.area.radial but this is a method you can use if you want to use different graphical elements in a circular layout.
| var cradle = require('cradle'); | |
| var connection = new cradle.Connection( | |
| 'https://user:password@host', | |
| 443 | |
| ); | |
| var db = connection.database('database') | |
| db.all({include_docs: true}, function(err, allDocs) { | |
| if (err) { |
| from Eve import Eve | |
| import superdesk | |
| import superdesk.users | |
| import superdesk.auth | |
| app = Eve() | |
| superdesk.init_app(app) | |
| app.run() |
| from Eve import Eve | |
| import superdesk.users | |
| import superdesk.auth | |
| app = Eve(auth=superdesk.auth.SuperdeskTokenAuth) | |
| superdesk.users.register(app) | |
| superdesk.auth.register(app) | |
| app.run() |
Building on this - experimenting with fake 3d svg arcs using two nested orthographic projections and cardinal line interpolation.
| var s=document.createElement('script'); s.type='text/javascript'; s.src='http://d3js.org/d3.v3.min.js'; document.head.appendChild(s); |
This variation of a simple bar chart adds sorting with staggered delay and translucency to improve readability during the transition. This technique is recommended by Heer & Robertson. Use the checkbox in the top right to turn sorting on or off.