Skip to content

Commit 2d7ee43

Browse files
authored
fix: correct MAG fine time off-by-one (fixes #2464) (#3113)
Fine clock ticks run 0..65535 then roll over, so each tick is 1/65536th of a second, not 1/65535th. Changing MAX_FINE_TIME to 65536 fixes the existing coarse/fine <-> seconds conversions without further changes, and to_j2000ns now goes through to_seconds() so it also benefits from the corrected sclk-aware met_to_ttj2000ns conversion. Also update MAG L1b validation timestamps for fine-time fix. Regenerated the expected 't' column in T009-T012 mago/magi CSVs by rerunning the exact test setup with the corrected TimeTuple conversion, so the expected times reflect the ~15us/tick fine-time correction rather than the old off-by-one values. No other columns changed.
1 parent bce8141 commit 2d7ee43

11 files changed

Lines changed: 132 additions & 136 deletions

imap_processing/mag/constants.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
from enum import Enum
44

5-
import numpy as np
6-
75

86
class DataMode(Enum):
97
"""
@@ -127,7 +125,7 @@ class ModeFlags(Enum):
127125
165580141,
128126
]
129127

130-
MAX_FINE_TIME = np.iinfo(np.uint16).max # maximum 16 bit unsigned int
128+
MAX_FINE_TIME = 65536 # maximum 16 bit unsigned int
131129
AXIS_COUNT = 3
132130
RANGE_BIT_WIDTH = 2
133131
MAX_COMPRESSED_VECTOR_BITS = 60

imap_processing/mag/l1a/mag_l1a_data.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def __add__(self, seconds: float) -> TimeTuple:
6060
"""
6161
# Add whole seconds to coarse time
6262
coarse = self.coarse_time + floor(seconds)
63-
# fine time is 1/65535th of a second
63+
# fine time is 1/65536th of a second
6464
fine = self.fine_time + round((seconds % 1) * MAX_FINE_TIME)
6565

6666
# If fine is larger than the max, move the excess into coarse time.
@@ -90,9 +90,7 @@ def to_j2000ns(self) -> np.int64:
9090
j2000ns : numpy.int64
9191
Time in nanoseconds since J2000 epoch.
9292
"""
93-
coarse_j2000ns = np.int64(met_to_ttj2000ns(self.coarse_time))
94-
fine_ns = np.int64(self.fine_time / MAX_FINE_TIME * 1e9)
95-
return coarse_j2000ns + fine_ns
93+
return np.int64(met_to_ttj2000ns(self.to_seconds()))
9694

9795

9896
@dataclass

imap_processing/tests/mag/test_mag_l1a.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ def test_time_tuple():
790790

791791
test_add = example_time_tuple + (1000 / MAX_FINE_TIME)
792792

793-
assert test_add == TimeTuple(439067319, 83)
793+
assert test_add == TimeTuple(439067319, 82)
794794

795795

796796
def test_calculate_vector_time():
Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
t,coarse,fine,sequence,x,y,z,range,compression,compression_width
2-
2025-02-04T16:38:24.981979,476383107,64354,15,0.95542504596,-0.94791461247,-0.884626055955,2,1,18
3-
2025-02-04T16:38:25.481979,476383107,64354,15,1.00249031916,-1.30810804533,-0.85028532705,2,1,18
4-
2025-02-04T16:38:25.981979,476383107,64354,15,1.0354360104,-1.50668675937,-0.816826842585,2,1,18
5-
2025-02-04T16:38:26.481979,476383107,64354,15,0.2692989473625,-0.4248742005525,-0.267548787525,3,1,18
6-
2025-02-04T16:38:26.981979,476383107,64354,15,0.1707469921575,-0.4799672700675,-0.3170672152575,3,1,18
7-
2025-02-04T16:38:27.481979,476383107,64354,15,0.11459529675,-0.54869001219,-0.294384937875,3,1,18
8-
2025-02-04T16:38:27.981979,476383107,64354,15,0.1913741455725,-0.5612622219825,-0.31102190421,3,1,18
9-
2025-02-04T16:38:28.481979,476383107,64354,15,0.1592874624825,-0.5194412483925,-0.2977832317575,3,1,18
10-
2025-02-04T16:38:28.981979,476383107,64354,15,35.837166093435,-104.129102911005,-52.11528225921,0,1,18
11-
2025-02-04T16:38:29.481979,476383107,64354,15,-5.68843906245,8.402260826025,13.968622541925,0,1,18
12-
2025-02-04T16:38:29.981979,476383107,64354,15,7.96381468743,-17.358231791085,12.447504304605,0,1,18
13-
2025-02-04T16:38:30.481979,476383107,64354,15,16.496473281105,-22.96778973681,-11.066117873445,0,1,18
14-
2025-02-04T16:38:30.981979,476383107,64354,15,-4.55075124996,-33.56267110866,4.09207388463,0,1,18
15-
2025-02-04T16:38:31.481979,476383107,64354,15,0.165955554,-1.517995728,0.478387692,1,1,18
16-
2025-02-04T16:38:31.981979,476383107,64354,15,0.977293818,-2.133706896,0.609742854,1,1,18
17-
2025-02-04T16:38:32.481979,476383107,64354,15,0.663822216,-2.187369792,0.247695228,1,1,18
2+
2025-02-04T16:38:24.981964,476383107,64354,15,0.95542504596,-0.94791461247,-0.884626055955,2,1,18
3+
2025-02-04T16:38:25.481964,476383107,64354,15,1.00249031916,-1.30810804533,-0.85028532705,2,1,18
4+
2025-02-04T16:38:25.981964,476383107,64354,15,1.0354360104,-1.50668675937,-0.816826842585,2,1,18
5+
2025-02-04T16:38:26.481964,476383107,64354,15,0.2692989473625,-0.4248742005525,-0.267548787525,3,1,18
6+
2025-02-04T16:38:26.981964,476383107,64354,15,0.1707469921575,-0.4799672700675,-0.3170672152575,3,1,18
7+
2025-02-04T16:38:27.481964,476383107,64354,15,0.11459529675,-0.54869001219,-0.294384937875,3,1,18
8+
2025-02-04T16:38:27.981964,476383107,64354,15,0.1913741455725,-0.5612622219825,-0.31102190421,3,1,18
9+
2025-02-04T16:38:28.481964,476383107,64354,15,0.1592874624825,-0.5194412483925,-0.2977832317575,3,1,18
10+
2025-02-04T16:38:28.981964,476383107,64354,15,35.837166093435,-104.129102911005,-52.11528225921,0,1,18
11+
2025-02-04T16:38:29.481964,476383107,64354,15,-5.68843906245,8.402260826025,13.968622541925,0,1,18
12+
2025-02-04T16:38:29.981964,476383107,64354,15,7.96381468743,-17.358231791085,12.447504304605,0,1,18
13+
2025-02-04T16:38:30.481964,476383107,64354,15,16.496473281105,-22.96778973681,-11.066117873445,0,1,18
14+
2025-02-04T16:38:30.981964,476383107,64354,15,-4.55075124996,-33.56267110866,4.09207388463,0,1,18
15+
2025-02-04T16:38:31.481964,476383107,64354,15,0.165955554,-1.517995728,0.478387692,1,1,18
16+
2025-02-04T16:38:31.981964,476383107,64354,15,0.977293818,-2.133706896,0.609742854,1,1,18
17+
2025-02-04T16:38:32.481964,476383107,64354,15,0.663822216,-2.187369792,0.247695228,1,1,18
Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
t,coarse,fine,sequence,x,y,z,range,compression,compression_width
2-
2025-02-04T16:38:24.981948,476383107,64352,15,0.1804626032025,-0.562105854075,-0.3036826507575,3,1,18
3-
2025-02-04T16:38:25.481948,476383107,64352,15,0.17011761321,-0.53281880385,-0.30834684861,3,1,18
4-
2025-02-04T16:38:25.981948,476383107,64352,15,0.112645446585,-0.35145717345,-0.189801018135,3,1,18
5-
2025-02-04T16:38:26.481948,476383107,64352,15,-2.29722020166,2.23454254428,9.55399882842,0,1,18
6-
2025-02-04T16:38:26.981948,476383107,64352,15,4.020135352905,-8.94601423008,17.46477430263,0,1,18
7-
2025-02-04T16:38:27.481948,476383107,64352,15,16.08054141162,-21.79637698257,-8.928932800755,0,1,18
8-
2025-02-04T16:38:27.981948,476383107,64352,15,1.722915151245,-29.65126678371,-1.008913007595,0,1,18
9-
2025-02-04T16:38:28.481948,476383107,64352,15,-3.44583030249,-43.64679077442,12.54925750059,0,1,18
10-
2025-02-04T16:38:28.981948,476383107,64352,15,0.904295196,-1.88049375,0.585438228,1,1,18
11-
2025-02-04T16:38:29.481948,476383107,64352,15,0.664380144,-2.333212128,0.388430856,1,1,18
12-
2025-02-04T16:38:29.981948,476383107,64352,15,1.254940272,-1.8618804,-0.211248648,1,1,18
13-
2025-02-04T16:38:30.481948,476383107,64352,15,2.12232546,-2.43962217,-1.060461756,1,1,18
14-
2025-02-04T16:38:30.981948,476383107,64352,15,2.989710648,-3.849712596,-1.99688544,1,1,18
15-
2025-02-04T16:38:31.481948,476383107,64352,15,0.87643137132,-0.95042434446,-0.769179598785,2,1,18
16-
2025-02-04T16:38:31.981948,476383107,64352,15,0.94711132062,-0.894849188085,-0.903518102745,2,1,18
17-
2025-02-04T16:38:32.481948,476383107,64352,15,0.99894328344,-1.185887030445,-0.879318758475,2,1,18
2+
2025-02-04T16:38:24.981934,476383107,64352,15,0.1804626032025,-0.562105854075,-0.3036826507575,3,1,18
3+
2025-02-04T16:38:25.481934,476383107,64352,15,0.17011761321,-0.53281880385,-0.30834684861,3,1,18
4+
2025-02-04T16:38:25.981934,476383107,64352,15,0.112645446585,-0.35145717345,-0.189801018135,3,1,18
5+
2025-02-04T16:38:26.481934,476383107,64352,15,-2.29722020166,2.23454254428,9.55399882842,0,1,18
6+
2025-02-04T16:38:26.981934,476383107,64352,15,4.020135352905,-8.94601423008,17.46477430263,0,1,18
7+
2025-02-04T16:38:27.481934,476383107,64352,15,16.08054141162,-21.79637698257,-8.928932800755,0,1,18
8+
2025-02-04T16:38:27.981934,476383107,64352,15,1.722915151245,-29.65126678371,-1.008913007595,0,1,18
9+
2025-02-04T16:38:28.481934,476383107,64352,15,-3.44583030249,-43.64679077442,12.54925750059,0,1,18
10+
2025-02-04T16:38:28.981934,476383107,64352,15,0.904295196,-1.88049375,0.585438228,1,1,18
11+
2025-02-04T16:38:29.481934,476383107,64352,15,0.664380144,-2.333212128,0.388430856,1,1,18
12+
2025-02-04T16:38:29.981934,476383107,64352,15,1.254940272,-1.8618804,-0.211248648,1,1,18
13+
2025-02-04T16:38:30.481934,476383107,64352,15,2.12232546,-2.43962217,-1.060461756,1,1,18
14+
2025-02-04T16:38:30.981934,476383107,64352,15,2.989710648,-3.849712596,-1.99688544,1,1,18
15+
2025-02-04T16:38:31.481934,476383107,64352,15,0.87643137132,-0.95042434446,-0.769179598785,2,1,18
16+
2025-02-04T16:38:31.981934,476383107,64352,15,0.94711132062,-0.894849188085,-0.903518102745,2,1,18
17+
2025-02-04T16:38:32.481934,476383107,64352,15,0.99894328344,-1.185887030445,-0.879318758475,2,1,18
Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
t,coarse,fine,sequence,x,y,z,range,compression,compression_width
2-
2025-02-06T11:58:58.985885,476539141,64610,4,0.11001148488,-0.55093754904,-0.29438610888,3,1,16
3-
2025-02-06T11:58:59.485885,476539141,64610,4,0.18793628667,-0.56464063143,-0.31214068737,3,1,16
4-
2025-02-06T11:58:59.985885,476539141,64610,4,0.16043341545,-0.52395763461,-0.29888557215,3,1,16
5-
2025-02-06T11:59:00.485885,476539141,64610,4,36.40600999968,-111.96316228692,-57.68292247884,0,1,16
6-
2025-02-06T11:59:00.985885,476539141,64610,4,-6.82612687494,6.72567301044,13.41408036078,0,1,16
7-
2025-02-06T11:59:01.485885,476539141,64610,4,6.82612687494,-17.91580627974,11.32618443732,0,1,16
8-
2025-02-06T11:59:01.985885,476539141,64610,4,15.92762937486,-24.6453436398,-11.0585445813,0,1,16
9-
2025-02-06T11:59:02.485885,476539141,64610,4,-4.55075124996,-33.56267110866,2.40920730198,0,1,16
10-
2025-02-06T11:59:02.985885,476539141,64610,4,0.073758024,-1.517836608,0.442036152,1,1,16
11-
2025-02-06T11:59:03.485885,476539141,64610,4,0.958854312,-2.097539136,0.591434568,1,1,16
12-
2025-02-06T11:59:03.985885,476539141,64610,4,0.663822216,-2.241573696,0.229889232,1,1,16
13-
2025-02-06T11:59:04.485885,476539141,64610,4,1.47516048,-1.881614592,-0.493822728,1,1,16
14-
2025-02-06T11:59:04.985885,476539141,64610,4,2.360256768,-2.894948352,-1.28264616,1,1,16
15-
2025-02-06T11:59:05.485885,476539141,64610,4,0.77187048048,-1.01689256196,-0.5843507652,2,1,16
16-
2025-02-06T11:59:05.985885,476539141,64610,4,0.90365324544,-0.92475187668,-0.8432787366,2,1,16
17-
2025-02-06T11:59:06.485885,476539141,64610,4,0.941305464,-0.94327639578,-0.89854130394,2,1,16
2+
2025-02-06T11:58:58.985870,476539141,64610,4,0.11001148488,-0.55093754904,-0.29438610888,3,1,16
3+
2025-02-06T11:58:59.485870,476539141,64610,4,0.18793628667,-0.56464063143,-0.31214068737,3,1,16
4+
2025-02-06T11:58:59.985870,476539141,64610,4,0.16043341545,-0.52395763461,-0.29888557215,3,1,16
5+
2025-02-06T11:59:00.485870,476539141,64610,4,36.40600999968,-111.96316228692,-57.68292247884,0,1,16
6+
2025-02-06T11:59:00.985870,476539141,64610,4,-6.82612687494,6.72567301044,13.41408036078,0,1,16
7+
2025-02-06T11:59:01.485870,476539141,64610,4,6.82612687494,-17.91580627974,11.32618443732,0,1,16
8+
2025-02-06T11:59:01.985870,476539141,64610,4,15.92762937486,-24.6453436398,-11.0585445813,0,1,16
9+
2025-02-06T11:59:02.485870,476539141,64610,4,-4.55075124996,-33.56267110866,2.40920730198,0,1,16
10+
2025-02-06T11:59:02.985870,476539141,64610,4,0.073758024,-1.517836608,0.442036152,1,1,16
11+
2025-02-06T11:59:03.485870,476539141,64610,4,0.958854312,-2.097539136,0.591434568,1,1,16
12+
2025-02-06T11:59:03.985870,476539141,64610,4,0.663822216,-2.241573696,0.229889232,1,1,16
13+
2025-02-06T11:59:04.485870,476539141,64610,4,1.47516048,-1.881614592,-0.493822728,1,1,16
14+
2025-02-06T11:59:04.985870,476539141,64610,4,2.360256768,-2.894948352,-1.28264616,1,1,16
15+
2025-02-06T11:59:05.485870,476539141,64610,4,0.77187048048,-1.01689256196,-0.5843507652,2,1,16
16+
2025-02-06T11:59:05.985870,476539141,64610,4,0.90365324544,-0.92475187668,-0.8432787366,2,1,16
17+
2025-02-06T11:59:06.485870,476539141,64610,4,0.941305464,-0.94327639578,-0.89854130394,2,1,16
Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
t,coarse,fine,sequence,x,y,z,range,compression,compression_width
2-
2025-02-06T11:58:58.985854,476539141,64608,4,0.11494433325,-0.5497820457,-0.29476252923,3,1,16
3-
2025-02-06T11:58:59.485854,476539141,64608,4,0.18850870653,-0.5632239147,-0.31269143571,3,1,16
4-
2025-02-06T11:58:59.985854,476539141,64608,4,0.15632429322,-0.5181847068,-0.29941001478,3,1,16
5-
2025-02-06T11:59:00.485854,476539141,64608,4,34.4583030249,-105.13505944548,-53.60805445602,0,1,16
6-
2025-02-06T11:59:00.985854,476539141,64608,4,-6.89166060498,6.70362763284,13.47787096794,0,1,16
7-
2025-02-06T11:59:01.485854,476539141,64608,4,6.89166060498,-17.89377158304,11.3110517382,0,1,16
8-
2025-02-06T11:59:01.985854,476539141,64608,4,16.08054141162,-24.59391297012,-11.16732741162,0,1,16
9-
2025-02-06T11:59:02.485854,476539141,64608,4,-4.59444040332,-33.57740434212,2.38778141658,0,1,16
10-
2025-02-06T11:59:02.985854,476539141,64608,4,0.147640032,-1.519722576,0.44010432,1,1,16
11-
2025-02-06T11:59:03.485854,476539141,64608,4,0.959660208,-2.169924408,0.58651272,1,1,16
12-
2025-02-06T11:59:03.985854,476539141,64608,4,0.664380144,-2.242739448,0.2252124,1,1,16
13-
2025-02-06T11:59:04.485854,476539141,64608,4,1.47640032,-1.879647264,-0.500962176,1,1,16
14-
2025-02-06T11:59:04.985854,476539141,64608,4,2.362240512,-2.964008736,-1.293918624,1,1,16
15-
2025-02-06T11:59:05.485854,476539141,64608,4,0.79161543216,-1.01526610338,-0.60705657342,2,1,16
16-
2025-02-06T11:59:05.985854,476539141,64608,4,0.92355133752,-0.92261638386,-0.84791876094,2,1,16
17-
2025-02-06T11:59:06.485854,476539141,64608,4,0.942399324,-0.9595523466,-0.90325176174,2,1,16
2+
2025-02-06T11:58:58.985840,476539141,64608,4,0.11494433325,-0.5497820457,-0.29476252923,3,1,16
3+
2025-02-06T11:58:59.485840,476539141,64608,4,0.18850870653,-0.5632239147,-0.31269143571,3,1,16
4+
2025-02-06T11:58:59.985840,476539141,64608,4,0.15632429322,-0.5181847068,-0.29941001478,3,1,16
5+
2025-02-06T11:59:00.485840,476539141,64608,4,34.4583030249,-105.13505944548,-53.60805445602,0,1,16
6+
2025-02-06T11:59:00.985840,476539141,64608,4,-6.89166060498,6.70362763284,13.47787096794,0,1,16
7+
2025-02-06T11:59:01.485840,476539141,64608,4,6.89166060498,-17.89377158304,11.3110517382,0,1,16
8+
2025-02-06T11:59:01.985840,476539141,64608,4,16.08054141162,-24.59391297012,-11.16732741162,0,1,16
9+
2025-02-06T11:59:02.485840,476539141,64608,4,-4.59444040332,-33.57740434212,2.38778141658,0,1,16
10+
2025-02-06T11:59:02.985840,476539141,64608,4,0.147640032,-1.519722576,0.44010432,1,1,16
11+
2025-02-06T11:59:03.485840,476539141,64608,4,0.959660208,-2.169924408,0.58651272,1,1,16
12+
2025-02-06T11:59:03.985840,476539141,64608,4,0.664380144,-2.242739448,0.2252124,1,1,16
13+
2025-02-06T11:59:04.485840,476539141,64608,4,1.47640032,-1.879647264,-0.500962176,1,1,16
14+
2025-02-06T11:59:04.985840,476539141,64608,4,2.362240512,-2.964008736,-1.293918624,1,1,16
15+
2025-02-06T11:59:05.485840,476539141,64608,4,0.79161543216,-1.01526610338,-0.60705657342,2,1,16
16+
2025-02-06T11:59:05.985840,476539141,64608,4,0.92355133752,-0.92261638386,-0.84791876094,2,1,16
17+
2025-02-06T11:59:06.485840,476539141,64608,4,0.942399324,-0.9595523466,-0.90325176174,2,1,16
Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
t,coarse,fine,sequence,x,y,z,range,compression,compression_width
2-
2025-02-04T16:06:55.982024,476381218,64357,14,4.55075124996,-11.19786196854,15.77425592322,0,0,16
3-
2025-02-04T16:06:56.482024,476381218,64357,14,15.92762937486,-22.40731698594,-11.07018889848,0,0,16
4-
2025-02-04T16:06:56.982024,476381218,64357,14,0,-31.33237315404,0.16302044052,0,0,16
5-
2025-02-04T16:06:57.482024,476381218,64357,14,-2.27537562498,-44.75666872758,11.44735711164,0,0,16
6-
2025-02-04T16:06:57.982024,476381218,64357,14,0.885096288,-1.952868096,0.590544504,1,0,16
7-
2025-02-04T16:06:58.482024,476381218,64357,14,0.663822216,-2.313845568,0.302605344,1,0,16
8-
2025-02-04T16:06:58.982024,476381218,64357,14,1.253886408,-1.881232704,-0.277225488,1,0,16
9-
2025-02-04T16:06:59.482024,476381218,64357,14,2.138982696,-2.605478976,-1.139884128,1,0,16
10-
2025-02-04T16:06:59.982024,476381218,64357,14,3.024078984,-3.907900224,-2.071901592,1,0,16
11-
2025-02-04T16:07:00.482024,476381218,64357,14,0.88482713616,-0.9431913528,-0.78778074834,2,0,16
12-
2025-02-04T16:07:00.982024,476381218,64357,14,0.941305464,-0.90634074822,-0.89873597394,2,0,16
13-
2025-02-04T16:07:01.482024,476381218,64357,14,0.99778379184,-1.22037879546,-0.87847855812,2,0,16
14-
2025-02-04T16:07:01.982024,476381218,64357,14,1.01660990112,-1.47895667604,-0.80315324496,2,0,16
15-
2025-02-04T16:07:02.482024,476381218,64357,14,1.11074044752,-1.68224447592,-1.02364442208,2,0,16
16-
2025-02-04T16:07:02.982024,476381218,64357,14,0.19710391041,-0.46535117637,-0.31706811786,3,0,16
17-
2025-02-04T16:07:03.482024,476381218,64357,14,0.10542767301,-0.53738602233,-0.29896071126,3,0,16
2+
2025-02-04T16:06:55.982010,476381218,64357,14,4.55075124996,-11.19786196854,15.77425592322,0,0,16
3+
2025-02-04T16:06:56.482010,476381218,64357,14,15.92762937486,-22.40731698594,-11.07018889848,0,0,16
4+
2025-02-04T16:06:56.982010,476381218,64357,14,0,-31.33237315404,0.16302044052,0,0,16
5+
2025-02-04T16:06:57.482010,476381218,64357,14,-2.27537562498,-44.75666872758,11.44735711164,0,0,16
6+
2025-02-04T16:06:57.982010,476381218,64357,14,0.885096288,-1.952868096,0.590544504,1,0,16
7+
2025-02-04T16:06:58.482010,476381218,64357,14,0.663822216,-2.313845568,0.302605344,1,0,16
8+
2025-02-04T16:06:58.982010,476381218,64357,14,1.253886408,-1.881232704,-0.277225488,1,0,16
9+
2025-02-04T16:06:59.482010,476381218,64357,14,2.138982696,-2.605478976,-1.139884128,1,0,16
10+
2025-02-04T16:06:59.982010,476381218,64357,14,3.024078984,-3.907900224,-2.071901592,1,0,16
11+
2025-02-04T16:07:00.482010,476381218,64357,14,0.88482713616,-0.9431913528,-0.78778074834,2,0,16
12+
2025-02-04T16:07:00.982010,476381218,64357,14,0.941305464,-0.90634074822,-0.89873597394,2,0,16
13+
2025-02-04T16:07:01.482010,476381218,64357,14,0.99778379184,-1.22037879546,-0.87847855812,2,0,16
14+
2025-02-04T16:07:01.982010,476381218,64357,14,1.01660990112,-1.47895667604,-0.80315324496,2,0,16
15+
2025-02-04T16:07:02.482010,476381218,64357,14,1.11074044752,-1.68224447592,-1.02364442208,2,0,16
16+
2025-02-04T16:07:02.982010,476381218,64357,14,0.19710391041,-0.46535117637,-0.31706811786,3,0,16
17+
2025-02-04T16:07:03.482010,476381218,64357,14,0.10542767301,-0.53738602233,-0.29896071126,3,0,16

0 commit comments

Comments
 (0)