View .block
license: gpl-3.0
height: 960
border: no
View README.md

A geographic bounding box for each country from Natural Earth’s 1:110m Cultural Vectors (Admin 0 - Countries).

A minimum bounding box in geographic coordinates is an area defined by minimum and maximum longitudes and latitudes.

# d3.geo.bounds(feature) -- (source)

Returns the spherical bounding box for the specified feature. The bounding box is represented by a two-dimensional array: [​[left, bottom], [right, top]​], where left is the minimum longitude, bottom is the minimum latitude, right is maximum longitude, and top is the maximum latitude.

Data: see console of full windows view, with data such :

View README.md

Experiment with dc.js

This is just an experiment to see how dc.js would do for PRU data.

View README.md

TODOs:

  • position labels for negative bars on the right side, see this SO post
  • highlight relevant underlying bar when hovering on y-axis label, see commented out stroke styling on bars

Data about percent change of flights movement by entity (Jan - Feb 2016 vs Jan - Feb 2015) from [PRU website][2].

Inspired by Mike's [Bar Chart with Negative Values][1].

View README.md
View README.md
View README.md
View install_tesseract.sh
#!/usr/bin/env bash
# courtesy of : <https://ryanfb.github.io/etc/2014/11/13/command_line_ocr_on_mac_os_x.html>
# Check for Homebrew,
# Install if we don't have it
if test ! $(which brew); then
echo "Installing homebrew..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
# Ensure `homebrew` is up-to-date and ready