This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Install Postgres 9.1, PostGIS 2.0 and pgRouting on a clean Ubuntu 12.04 install (64 bit) | |
# updated to PostGIS 2.0.1 | |
# basics | |
apt-get install python-software-properties | |
apt-add-repository ppa:sharpie/for-science # To get GEOS 3.3.3 | |
# install the following pacakages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Stop number | Name without locality | Locality | Locality number | Code | Name | NaPTAN stop class | NaPTANId | Easting | Northing | |
---|---|---|---|---|---|---|---|---|---|---|
1 | Pearse Street (Pearse Avenue) | Sallynoggin | E0825024 | ->NE2 | Stop No. 3234 | BCT | 8250DB003234 | 724091 | 726427 | |
1 | Pearse Street (Pearse Avenue) | Sallynoggin | E0825024 | ->SW1 | Stop No. 3210 | BCT | 8250DB003210 | 724087 | 726412 | |
2 | Lr. Drumcondra Road | Drumcondra (Dublin) | E0822021 | 1 | Drumcondra Road Lower | BCT | 825000101 | 715947 | 736197 | |
2 | Lr. Drumcondra Road | Drumcondra (Dublin) | E0822021 | 2 | Drumcondra Road Lower | BCT | 8250B1001201 | 715929 | 736199 | |
3 | Clontarf Road Junction Strandville Avenu | Clontarf | E0822038 | 1 | Stop No. 1741 | BCT | 8220DB001741 | 718428 | 736222 | |
4 | College Green | Dublin City South | E0822091 | 1 | Taxi Rank | TXR | 8220TR000078 | 715797 | 734107 | |
4 | College Green | Dublin City South | E0822091 | 2 | Stop No. 1359 | BCT | 8220DB001359 | 715770 | 734095 | |
4 | College Green | Dublin City South | E0822091 | 3 | College Green | BCT | 825000157 | 715769 | 734095 | |
4 | College Green | Dublin City South | E0822091 | 4 | Stop No. 4522 | BCT | 8220DB004522 | 715821 | 734081 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
<title>Testing Pie Chart</title> | |
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.js?2.4.5"></script> | |
<!-- Source for example located at: http://bl.ocks.org/1203641 --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"AWSTemplateFormatVersion" : "2010-09-09", | |
"Description" : "AWS CloudFormation Template: This template installs a single-instance with dev environment for elastic beanstalk as well as Jenkins server. This template creates an Amazon EC2 instance. You will be billed for the AWS resources used if you create a stack from this template.", | |
"Parameters" : { | |
"EC2Tag" : { | |
"Description" : "EC2 tag name", | |
"Type" : "String" | |
}, |