13 lines
250 B
Python
13 lines
250 B
Python
from dataclasses import dataclass
|
|
from datetime import datetime
|
|
import geopy.distance
|
|
|
|
|
|
@dataclass
|
|
class DAF:
|
|
vehicle_identification_number: str
|
|
gps_location: geopy.Point
|
|
velocity: float
|
|
near_crash_event: bool
|
|
timestamp: datetime
|