Skip to content

Instantly share code, notes, and snippets.

Timetable Code Timetable Name Trackernet Code Trackernet Name ATCO Code NaPTAN Name
ACT Acton Town ACT Acton Town 9400ZZLUACT Acton Town Underground Station
ACW Acton Works
AGR Arnos Grove (& Sidings) AGR Arnos Grove 9400ZZLUASG Arnos Grove Underground Station
ALC Aldgate (to/from Tower Hill) ALD Aldgate 9400ZZLUALD Aldgate Underground Station
ALD Aldgate (to/from Liverpool Street) ALD Aldgate 9400ZZLUALD Aldgate Underground Station
ALE Aldgate East ALE Aldgate East 9400ZZLUADE Aldgate East Underground Station
ALP Alperton ALP Alperton 9400ZZLUALP Alperton Underground Station
AME Amersham AME Amersham 9400ZZLUAMS Amersham Underground Station
ANG Angel ANG Angel 9400ZZLUAGL Angel Underground Station
@kurtraschke
kurtraschke / parsecallno.py
Created September 1, 2010 03:04
Regular expression and script for parsing and sorting Library of Congress Classification call numbers
import re
myfile = open('list', 'r')
callnos = myfile.readlines()
p = re.compile("""^(?P<aclass>[A-Z]{1,3})
(?P<nclass>\\d{1,4})(\\ ?)
(\\.(?P<dclass>\\d{1,3}))?
(?P<date>\\ [A-Za-z0-9]{1,4}\\ )?
function visibleTilesLoaded(viewer) {
var layer = viewer.scene().layer();
var geometry = layer.geometry();
var visibleTilesForLevel = function(level) {
return geometry.visibleTiles(viewer.view(), level);
};
var tileHasTexture = function(tile) {
var tile = layer.textureStore().query(tile);
@kurtraschke
kurtraschke / sleep.ps1
Last active March 2, 2016 02:48
PowerShell script to summarize a Windows PC's sleep history
$filter = @{LogName='System';
ProviderName='Microsoft-Windows-Power-Troubleshooter';
ID=1}
$namespaces = @{"event"="http://schemas.microsoft.com/win/2004/08/events/event"}
Get-WinEvent -FilterHashtable $filter | % {
$obj = New-Object PSObject
[xml]$_.ToXml() | Select-Xml -Namespace $namespaces "/event:Event/event:EventData/event:Data" | % {
@kurtraschke
kurtraschke / cap.xjb
Created November 11, 2013 01:47
JAXB bindings file for CAP schema to produce enums from anonymous types.
<?xml version="1.0" encoding="UTF-8"?>
<jaxb:bindings xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
jaxb:version="1.0">
<jaxb:bindings schemaLocation="CAP-v1.2.xsd" node="/xsd:schema">
<jaxb:bindings node="//xsd:element[@name='status']">
<jaxb:bindings node="./xsd:simpleType">
<jaxb:typesafeEnumClass name="StatusType" />
Recently (as in, over the past few months) the WMATA BusPosition feed has been behaving anomalously.
There are three observed problems:
1. The feed doesn't include the entire fleet - during the weekday rush hour we'd expect to see close to 900 buses, but this morning the feed returned fewer than 250 vehicles.
2. Bus positions return the wrong trip, or are lagging badly. Look at this example:
<BusPosition>
<DateTime>2013-08-16T07:32:01</DateTime>

This Gist contains a script and supporting files for building a OneBusAway GTFS bundle with data for all agencies in the Baltimore/Washington area that have publicly released their data.

Configuration parameters come from two sheets in a Google Docs document:

https://docs.google.com/spreadsheet/ccc?key=0AvrkbWHnoksNdGdYam4wX214SXpoRmdia0FEalZvUHc&usp=sharing

The dependency on Google Docs could easily be removed by removing that part of download.sh and using a locally-maintained CSV file instead.

@kurtraschke
kurtraschke / area.py
Created December 17, 2012 23:18
Find bounding box and convex hull of agency coverage (as WKT) for a OneBusAway TDS.
from mustaine.client import HessianProxy
from shapely.geometry import box
from shapely.ops import cascaded_union
service = HessianProxy("http://172.16.2.32:8080/onebusaway-transit-data-federation-webapp/remoting/transit-data-service")
agencies = service.getAgenciesWithCoverage()
boxes = []
{
"Routes": [
{
"Name": "10:00:00 AM - 10A HUNT TOWERS-PENT ",
"RouteID": "10A"
},
{
"Name": "10:00:00 AM - 10A HUNT TOWERS-PENT ",
"RouteID": "10Av1"
},
@kurtraschke
kurtraschke / gist:1390328
Created November 24, 2011 00:18
WMATA bus API says there are no buses...
Kurt-Raschke:~ kurt$ curl http://api.wmata.com/Bus.svc/json/JBusPositions?api_key=redacted
{"BusPositions":[]}