(in progress)
- GTFS Schedule data
- Open Trip Planner
- Application Programming Interfaces (APIs)
- Mapbox map tiles
- Database
- Backend framework
/*global module, require, console*/ | |
/*jslint nomen: false*/ | |
var properties = { | |
// global properties go here | |
appName: "tidalwavez", | |
logs : { | |
folder : './log', |
'use strict'; | |
// Load Dependencies | |
var $ = require('jquery'); | |
require('jquery-guillotine'); | |
var angular = require('angular'); | |
var _ = require('lodash'); | |
var app = angular.module('pageApp', []); |
HASTUS_ID, Station title ////// Title of GTFS Stop linked | |
15432 Canoga Station ///////// Canoga Station | |
5030 Figueroa Wy/Adams ///////// Figueroa / Adams | |
5019 Figueroa/7th ///////// Figueroa / 7th | |
13489 Flower/7th ///////// Flower / 7th | |
80123 23rd St Station ///////// LATTC / Ortho Institute Station | |
1813 Flower/23rd ///////// Flower / 23rd | |
80127 Expo/Western Station ///////// Expo / Western Station | |
15535 Sepulveda Station ///////// Sepulveda Station | |
5040 Figueroa/Olympic ///////// Figueroa / Olympic |
import math | |
import re | |
import time | |
from django.conf import settings | |
import requests | |
# used to remove stop id from stop names included into pattern description | |
regex_stop_id = re.compile('(\(\w+:\d+\))') |
import math | |
import re | |
import time | |
from django.conf import settings | |
import requests | |
# used to remove stop id from stop names included into pattern description | |
regex_stop_id = re.compile('(\(\w+:\d+\))') |