(self, vid: str, vtag: str, veh: Vehicle)
| 198 | self.createTimer() |
| 199 | |
| 200 | def putFrameInfo(self, vid: str, vtag: str, veh: Vehicle): |
| 201 | self.dataQue.put( |
| 202 | ('frameINFO', |
| 203 | (self.timeStep, vid, vtag, veh.x, veh.y, veh.yaw, veh.speed, |
| 204 | veh.accel, veh.laneID, veh.lanePos, veh.routeIdxQ[-1]))) |
| 205 | |
| 206 | def getAllvType(self): |
| 207 | conn = sqlite3.connect(self.dataBase) |
nothing calls this directly
no outgoing calls
no test coverage detected