timetable
Version:
Using GTFS and other sources to produce beautiful and usable timetables for public transport.
89 lines (77 loc) • 2.25 kB
JavaScript
// Generated by CoffeeScript 1.7.1
(function() {
var TRM, badge, data_home, data_info, error, help, njs_path, options, rpr, warn;
njs_path = require('path');
TRM = require('coffeenode-trm');
rpr = TRM.rpr.bind(TRM);
badge = 'timetable/options';
warn = TRM.get_logger('warn', badge);
help = TRM.get_logger('help', badge);
try {
data_info = require('timetable-data');
data_home = (require('path')).dirname(require.resolve('timetable-data'));
} catch (_error) {
error = _error;
warn("unable to `require 'timetable-data'`");
help("please install data package with `npm install 'timetable-data'`");
help("see " + (require('./package.json'))['homepage'] + " for details");
warn("aborting");
process.exit();
}
module.exports = options = {
'parser': {
'delimiter': ',',
'skip_empty_lines': true
},
'levelup': {
'route': njs_path.join(__dirname, './gtfs-db'),
'new': {
'keyEncoding': 'utf-8',
'valueEncoding': 'json'
}
},
'data': {
/* OBS GTFS types MUST be in correct order, as some records (like stop_times) depend on other
records (trips, stops) to be present in registry.
*/
'gtfs-types': "agency calendar_dates calendar routes transfers trips stop_times stops".split(/\s+/),
'node-types': "agency route station course tour halt".split(/\s+/),
'info': data_info,
'home': data_home
}
};
({
'gtfs-name': 'agency',
'singular': 'agency',
'plural': 'agencies',
'x': 'gag',
'gtfs-name': 'calendar_dates',
'singular': 'date',
'plural': 'dates',
'x': 'gda',
'gtfs-name': 'calendar',
'singular': 'calendar',
'plural': 'calendars',
'x': 'gca',
'gtfs-name': 'routes',
'singular': 'route',
'plural': 'routes',
'x': 'grt',
'gtfs-name': 'transfers',
'singular': 'transfer',
'plural': 'transfers',
'x': 'gtn',
'gtfs-name': 'trips',
'singular': 'trip',
'plural': 'trips',
'x': 'gtp',
'gtfs-name': 'stop_times',
'singular': 'stoptime',
'plural': 'stoptimes',
'x': 'gsm',
'gtfs-name': 'stops',
'singular': 'stop',
'plural': 'stops',
'x': 'gst'
});
}).call(this);