Spin up a new container named my_mongo from image mongo Mapping and exposing ports 27017-27019 from the container to the host OS:
docker run -d -p 27017-27019:27017-27019 --name my_mongo mongo
Get an interactive shell in the container: docker exec -it my_mongo bash
A modification of Susie Lu's radial weather plot. This one shows periods of cloudiness, precipitation and freezing temperatures via the bars around the border. It also includes a circular brush that lets you select a band on the radial chart. The selected band is then displayed in a more traditional linear way on the bottom left.
The original readme explains what's going on with the radial chart:
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 m