1313
1414from gnss_lib_py .parsers .navdata import NavData
1515from gnss_lib_py .utils .constants import CONSTELLATION_CHARS
16- from gnss_lib_py .utils .time_conversions import gps_to_unix_millis
1716from gnss_lib_py .utils .time_conversions import gps_datetime_to_gps_millis
1817
1918
@@ -82,7 +81,6 @@ def __init__(self, input_paths):
8281 int (temp [5 ]),int (float (temp [6 ])),\
8382 tzinfo = timezone .utc )
8483 gps_millis_timestep = gps_datetime_to_gps_millis (curr_time )
85- unix_millis_timestep = gps_to_unix_millis (gps_millis_timestep )
8684
8785 if 'P' in dval [0 ]:
8886 # A satellite record. Get the satellite number, and coordinate (X,Y,Z) info
@@ -91,7 +89,6 @@ def __init__(self, input_paths):
9189 gnss_sv_id = temp [0 ][1 :]
9290
9391 gps_millis .append (gps_millis_timestep )
94- unix_millis .append (unix_millis_timestep )
9592 gnss_sv_ids .append (gnss_sv_id )
9693 gnss_id .append (CONSTELLATION_CHARS [gnss_sv_id [0 ]])
9794 sv_id .append (int (gnss_sv_id [1 :]))
@@ -100,7 +97,6 @@ def __init__(self, input_paths):
10097 z_sv_m .append (float (temp [3 ])* 1e3 )
10198
10299 self ["gps_millis" ] = gps_millis
103- self ["unix_millis" ] = unix_millis
104100 self ["gnss_sv_id" ] = np .array (gnss_sv_ids ,dtype = object )
105101 self ["gnss_id" ] = np .array (gnss_id , dtype = object )
106102 self ["sv_id" ] = sv_id
0 commit comments