car_web2 / utils /__init__.py
wesam0099's picture
Deploy CrashLens
8adf0de
raw
history blame contribute delete
841 Bytes
"""
Utils Package
=============
Utility functions for the Traffic Accident Reconstruction System.
"""
from .helpers import (
calculate_distance,
calculate_bearing,
interpolate_path,
estimate_speed_at_point,
find_intersection_point,
calculate_impact_angle,
estimate_stopping_distance,
format_duration,
format_speed,
format_distance,
validate_coordinates,
validate_speed,
generate_unique_id,
get_timestamp
)
__all__ = [
'calculate_distance',
'calculate_bearing',
'interpolate_path',
'estimate_speed_at_point',
'find_intersection_point',
'calculate_impact_angle',
'estimate_stopping_distance',
'format_duration',
'format_speed',
'format_distance',
'validate_coordinates',
'validate_speed',
'generate_unique_id',
'get_timestamp'
]