You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: notebooks/tutorials/algorithms.ipynb
+19-4Lines changed: 19 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,12 @@
35
35
"id": "3bc6b5dd",
36
36
"metadata": {},
37
37
"source": [
38
-
"Solve for the Weighted Least Squares position estimate simply by passing the measurement data."
38
+
"Solve for the Weighted Least Squares position estimate simply by passing the measurement data.\n",
39
+
"\n",
40
+
"When obtaining WLS estimates for real measurements, the rotation of the Earth between the signal transmission and reception has to be accounted for.\n",
41
+
"`solve_wls` accounts for this by default and rotates the given SV positions into the ECEF frame of reference when the signals were received rather using the ECEF frame of reference of when the signals were transmitted.\n",
42
+
"\n",
43
+
"If you assume that the satellite positions are given in the ECEF frame of reference when the signals were received (and not transmitted), set the parameter `sv_rx_time = True` in the function call."
39
44
]
40
45
},
41
46
{
@@ -45,7 +50,9 @@
45
50
"metadata": {},
46
51
"outputs": [],
47
52
"source": [
48
-
"state_wls = glp.solve_wls(derived_data)"
53
+
"state_wls = glp.solve_wls(derived_data)\n",
54
+
"# When assuming that SV positions are given in the ECEF frame when signals are received use\n",
0 commit comments