diff options
author | Alex Auvolat <alex.auvolat@ens.fr> | 2015-05-21 17:05:07 -0400 |
---|---|---|
committer | Alex Auvolat <alex.auvolat@ens.fr> | 2015-05-21 17:05:07 -0400 |
commit | 222971123f2741ee3689092fb4396dac83a13338 (patch) | |
tree | 59acaae81aaf6f57474be05fb93de1eb00061689 /data/make_time_index.py | |
parent | f6d2c6fc47f93b158b70b5c0c9a45324041ca4d5 (diff) | |
download | taxi-222971123f2741ee3689092fb4396dac83a13338.tar.gz taxi-222971123f2741ee3689092fb4396dac83a13338.zip |
Implement cut-based iteration scheme (SLOW!!!)
Diffstat (limited to 'data/make_time_index.py')
-rwxr-xr-x | data/make_time_index.py | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/data/make_time_index.py b/data/make_time_index.py new file mode 100755 index 0000000..c51d075 --- /dev/null +++ b/data/make_time_index.py @@ -0,0 +1,50 @@ +#!/usr/bin/env python +# Make a valid dataset by cutting the training set at specified timestamps + +import os +import sys +import importlib + +import h5py +import numpy + +import data +from data.hdf5 import taxi_it + +import sqlite3 + +def make_valid(outpath): + times = [] + for i, line in enumerate(taxi_it('train')): + time = line['timestamp'] + latitude = line['latitude'] + + if len(latitude) == 0: + continue + + duration = 15 * (len(latitude) - 1) + + times.append((i, int(time), int(time + duration))) + if i % 1000 == 0: + print times[-1] + + + with sqlite3.connect(outpath) as timedb: + c = timedb.cursor() + c.execute(''' + CREATE TABLE trip_times + (trip INTEGER, begin INTEGER, end INTEGER) + ''') + print "Adding data..." + c.executemany('INSERT INTO trip_times(trip, begin, end) VALUES(?, ?, ?)', times) + timedb.commit() + print "Creating index..." + c.execute('''CREATE INDEX trip_time_index ON trip_times (begin, end)''') + + +if __name__ == '__main__': + if len(sys.argv) < 1 or len(sys.argv) > 2: + print >> sys.stderr, 'Usage: %s [outfile]' % sys.argv[0] + sys.exit(1) + outpath = os.path.join(data.path, 'time_index.db') if len(sys.argv) < 2 else sys.argv[1] + make_valid(outpath) |