in mapillary_tools/geo.py [0:0]
def get_max_distance_from_start(latlons: List[Tuple[float, float]]) -> float:
"""
Returns the radius of an entire GPS track. Used to calculate whether or not the entire sequence was just stationary video
Takes a sequence of points as input
"""
if not latlons:
return 0
start = latlons[0]
return max(gps_distance(start, latlon) for latlon in latlons)