I used OpenStreetMap to generate data with the following command
1. netconvert --osm-files osm_bbox.osm.xml -o map.net.xml
2. polyconvert --net-file map.net.xml --osm-files osm_bbox.osm.xml --type-file typemap.xml -o map.poly.xml
3. python ../randomTrips.py -n map.net.xml -r map.rou.xml -e 100 -l
4. sumo-gui test.sumo.cfg
My configuration file is ready.
To generate FCD
1. sumo -c osm.sumocfg --fcd-output.geo --fcd-output tmm1Trace.xml
2. Both
python ..//traceExporter.py -i tmm1Trace.xml --gpx-output=tmmgpx1
and
python ..//traceExporter.py -i tmm1Trace.xml --gpsdat-output = tmmgps1
gives no output.
Forcibly, when I quit the program, it gives tmmgpx1 or tmmgps1 ( an empty file with 0 byte size)
My Queries,
A. Whether
sumo -c osm.sumocfg --fcd-output.geo --fcd-output tmm1Trace.xml
generates a XML file of 480 MB ( I am attaching the screenshot of my folder showing sizes of my project files) ?
B. For applying predictive algorithms, I need lat,long, speed, vehicle ID, type of vehicle (bus/bicycle/heavy vehicle),etc, as features.
Am I following correct procedure?
Kindly help me