Searched refs:true_position (Results 1 – 1 of 1) sorted by relevance
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/gnss/ |
D | gnss_test_utils.py | 935 def parse_gtw_gpstool_log(ad, true_position, type="gnss"): argument 992 pe = calculate_position_error(track_lat, track_long, true_position) 1021 def process_ttff_by_gtw_gpstool(ad, begin_time, true_position, type="gnss"): argument 1092 ttff_lat, ttff_lon, true_position) 1201 def calculate_position_error(latitude, longitude, true_position): argument 1214 dlat = math.radians(latitude - true_position[0]) 1215 dlon = math.radians(longitude - true_position[1]) 1217 math.cos(math.radians(true_position[0])) * \
|