This commit is contained in:
eneller
2025-11-07 13:11:59 +01:00
parent 96f536b613
commit 2e41e46fb1
2 changed files with 31 additions and 0 deletions

2
.gitignore vendored
View File

@@ -59,3 +59,5 @@ rsconnect/
# End of https://www.toptal.com/developers/gitignore/api/R
*.pdf
*.html
bib

29
lec01.md Normal file
View File

@@ -0,0 +1,29 @@
# Code-Based Positioning
Code Based Positioning is based on solving the geometric problem of using at least 4 pseudorange measurements from satellites,
resulting in
$$
R^j - D^j \simeq \sqrt{(x^j-x)^2 + (y^j-y)^2 + (z^j-z)^2} + c\delta t
$$
$$
j = 1,2,...,n (n\geq 4)
$$
It uses the continuosly broadcast signals by satellites to calculate time-of-flight to the receiver's position,
and then estimating the distance to each of them.
It is implemented as the standard positioning service.
# Phase-Based Positioning
If higher accuracy is needed, phase-based positioning is used, which is implemented in Precise Point Positioning (PPP).
It provides a significantly higher accuracy with centimetre-level positioning but incurs higher computational costs
as more corrections have to be applied
and requires tracking continuity.
As the name suggests, both code and phase observations are used.
Code and carrier measuremens are modeled as:
$$
R^j_C = \rho^j + c(\delta t - \delta t^j) + Tr^j + M^j_C + \epsilon^j_C
$$
$$
\Phi^j_C = \rho^j + c(\delta t - \delta t^j) + Tr^j + \lambda^j_C + B^j_C + m^j_C +\epsilon^j_C
$$
Where $R^j$ is the unsmoothed pseudorange measurment for the $j$th satellite and $\Phi^j$ is the corresponding carrier measurement.