-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprepare_exid_data.py
26 lines (25 loc) · 1010 Bytes
/
prepare_exid_data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from tools.exid import ExiDSampleReader
import pandas
from tools.exid import OSMReader
from tools.exid import load_trajectories2
from shapely.geometry import Point, LineString
import glob, os, pandas
import tools
DATA_DIR = tools.store["DATA_DIR"]
MAPS_DIR = tools.store["MAPS_DIR"]
nums = [item.split("/")[-1].split("_")[0] \
for item in glob.glob(DATA_DIR+"*_tracks.csv")]
for num in nums[:5]:
t = DATA_DIR + num + "_tracks.csv"
tm = DATA_DIR + num + "_tracksMeta.csv"
rm = DATA_DIR + num + "_recordingMeta.csv"
rmf = pandas.read_csv(rm)
mapid = "%d" % int(rmf["locationId"])
osmf = glob.glob(MAPS_DIR + mapid + "*.osm")[0]
utmx, utmy = float(rmf["xUtmOrigin"]), float(rmf["yUtmOrigin"])
osm = OSMReader(osmf, utmx, utmy)
er = ExiDSampleReader(files = {"t": t, "tm": tm, "rm": rm})
er.read_data(lonlat=True)
lane_change_data = load_trajectories2(er, osm, "tools/assets/exiD/%s.pt" % num, \
cond1 = lambda x, y: True,
cond2 = lambda x, y: True)