Skip to content

Commit 7ea4c05

Browse files
committed
Merge branch 'derek/traj-map' into derek/python3.7
2 parents ab533bc + 6f7f92f commit 7ea4c05

39 files changed

Lines changed: 2638 additions & 8851 deletions

README.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -76,22 +76,11 @@ In the directory organization above:
7676
Currently, the following datasets and types are supported:
7777

7878
* [2021 Google Android Derived Dataset](https://www.kaggle.com/c/google-smartphone-decimeter-challenge)
79+
* [2022 Google Android Derived Dataset](https://www.kaggle.com/competitions/smartphone-decimeter-2022)
7980

8081
* The `utils` directory contains utilities used to handle
8182
GNSS measurements, time conversions, visualizations, satellite
8283
simulation, file operations, etc.
83-
* Currently, the following data visualization tools are available in the
84-
`utils` directory:
85-
86-
* Skyplot: showing the movement of GNSS satellites during the
87-
elapsed time of the provided `NavData` class.
88-
* Metric plotting: allows you to plot a specific array of data
89-
from the `NavData` class
90-
* Metric plotting by constellation: allows you to plot a specific
91-
array of data but broken up by individual constellations and
92-
signal types.
93-
* Residual plotting: specifically optimized for plotting residuals.
94-
9584

9685
Installation
9786
------------

data/unit_test/android_2021/Pixel4_ground_truth.csv

Lines changed: 199 additions & 199 deletions
Large diffs are not rendered by default.

data/unit_test/android_2022/device_gnss.csv

Lines changed: 0 additions & 7671 deletions
Large diffs are not rendered by default.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
names,integers,floats,strings
22
ab,10,0.5,NaN
3-
cde,2,nan,glonass
3+
cde,nan,nan,glonass
44
alpha,45,0.3,galileo
5-
epsilon,67,0.99,gps
6-
nan,nan,0.45,gps
5+
epsilon,nan,0.99,gps
6+
nan,nan,0.45,nan
77
xyzuvw,300,0.74,galileo

docs/source/img/skyplot.png

-168 KB
Loading

docs/source/index.rst

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -79,22 +79,11 @@ In the directory organization above:
7979
Currently, the following datasets and types are supported:
8080

8181
* `2021 Google Android Derived Dataset <https://www.kaggle.com/c/google-smartphone-decimeter-challenge>`__
82+
* `2022 Google Android Derived Dataset <https://www.kaggle.com/competitions/smartphone-decimeter-2022>`__
8283

8384
* The :code:`utils` directory contains utilities used to handle
8485
GNSS measurements, time conversions, visualizations, satellite
8586
simulation, file operations, etc.
86-
* Currently, the following data visualization tools are available in the
87-
:code:`utils` directory:
88-
89-
* Skyplot: showing the movement of GNSS satellites during the
90-
elapsed time of the provided :code:`NavData` class.
91-
* Metric plotting: allows you to plot a specific array of data
92-
from the :code:`NavData` class
93-
* Metric plotting by constellation: allows you to plot a specific
94-
array of data but broken up by individual constellations and
95-
signal types.
96-
* Residual plotting: specifically optimized for plotting residuals.
97-
9887

9988
Installation
10089
------------

docs/source/reference/reference.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,10 @@ GNSS measurement naming conventions are as follows:
109109
estimated true signal transmission time.
110110
* :code:`z_sv_m` : (float) satellite ECEF z position in meters at best
111111
estimated true signal transmission time.
112+
* :code:`el_sv_deg` : (float) Elevation of satellite in degrees in
113+
relation to the receiver's position.
114+
* :code:`az_sv_deg` : (float) Azimuth of satellite in degrees in
115+
relation to the receiver's position.
112116
* :code:`vx_sv_mps` : (float) satellite ECEF x velocity in meters per
113117
second at estimated true signal transmission time.
114118
* :code:`vy_sv_mps` : (float) satellite ECEF y velocity in meters per

docs/source/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jupyter-core==4.11.1; python_version >= "3.7"
4545
jupyter==1.0.0
4646
jupyterlab-pygments==0.2.2; python_version >= "3.7"
4747
jupyterlab-widgets==3.0.2; python_version >= "3.7"
48+
kaleido==0.2.1
4849
kiwisolver==1.4.4; python_version >= "3.7"
4950
lazy-object-proxy==1.7.1; python_version >= "3.6" and python_full_version >= "3.6.2"
5051
lxml==4.9.1; python_version >= "3.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.7"

docs/source/tutorials/tutorials.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ This tutorial illustrates a few of the most common utility functions
5252
available in the :code:`utils` directory.
5353

5454
.. toctree::
55-
:maxdepth: 1
55+
:maxdepth: 2
5656

57+
tutorials_visualizations_notebook
58+
tutorials_coordinates_notebook
5759
tutorials_utilities_notebook
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"path": "../../../notebooks/tutorials/coordinates.ipynb"
3+
}

0 commit comments

Comments
 (0)