Skip to content

Commit b284c02

Browse files
authored
Merge pull request #116 from Stanford-NavLab/v0.1.11
V0.1.11
2 parents 04b9aff + aaa1611 commit b284c02

28 files changed

Lines changed: 2338 additions & 1794 deletions

.gitignore

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Project specific
1+
########################################
2+
####### Project specific folders #######
3+
########################################
24
data/*
35
# Including small datasets used for unit testing NavData objects
46
!data/unit_test/
@@ -12,6 +14,10 @@ gnss_lib_py_dev/
1214
results/*
1315
!results/.gitkeep
1416

17+
########################################
18+
##### Project specific file types ######
19+
########################################
20+
1521
# ignore downloaded csv files in notebook tutorials
1622
*.csv
1723
!data/unit_test/*/*.csv
@@ -25,6 +31,26 @@ results/*
2531
!data/unit_test/*/*.sp3
2632
!data/unit_test/*/*.clk
2733

34+
# Ignore NMEA files by default
35+
*.nmea
36+
# Include unit test NMEA files
37+
!data/unit_test/*/*.nmea
38+
39+
# Ignore downloaded broadcast ephimerides files by default
40+
*.*n
41+
*.*o
42+
*.*g
43+
*.rnx
44+
# Include unit test files for broadcast ephemerides
45+
!data/unit_test/*/*.*n
46+
!data/unit_test/*/*.*o
47+
!data/unit_test/*/*.*g
48+
!data/unit_test/*/*.rnx
49+
50+
########################################
51+
##### Common Python and IDE files ######
52+
########################################
53+
2854
#Excluding VS Code files
2955
.vscode/*
3056
*/.vscode/

CONTRIBUTORS.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
Ashwin Kanhere
2-
Derek Knowles
3-
Shubh Gupta
4-
Adam Dai
5-
Bradley Collicott
6-
Shivam Soni
1+
Ashwin Kanhere
2+
Derek Knowles
3+
Shubh Gupta
4+
Adam Dai
5+
Bradley Collicott
6+
Shivam Soni
77
Sriramya Bhamidipati
8+
Dalton Vega

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ In the directory organization above:
8282
* [2022 Google Android Derived Dataset](https://www.kaggle.com/competitions/smartphone-decimeter-2022)
8383
* [Precise Ephemeris Data](https://cddis.nasa.gov/Data_and_Derived_Products/GNSS/gnss_mgex.html)
8484
* [TU Chemnitz smartLoc Dataset](https://www.tu-chemnitz.de/projekt/smartLoc/gnss_dataset.html.en#Datasets)
85+
* [NMEA](https://www.sparkfun.com/datasheets/GPS/NMEA%20Reference%20Manual-Rev2.1-Dec07.pdf)
8586

8687
* The `utils` directory contains utilities used to handle
8788
GNSS measurements, time conversions, visualizations, satellite
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
$GPGGA,220134.00,3725.4168121,N,12205.6498009,W,1,14,1.0,2.70,M,-32.64,M,,
2+
$GPRMC,220134.00,A,3725.417,N,12205.650,W,0.0,192.8,140520,,,A
3+
$GPGGA,220134.10,3725.4168119,N,12205.6498010,W,1,14,1.0,2.70,M,-32.64,M,,
4+
$GPRMC,220134.10,A,3725.417,N,12205.650,W,0.0,192.8,140520,,,A
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
$GPGGA,220134.00,3725.4168121,N,12205.6498009,W,1,14,1.0,2.70,M,-32.64,M,,*53
2+
$GPRMC,220134.00,A,3725.417,N,12205.650,W,0.0,192.8,140520,,,A*4C
3+
$GPGGA,220134.10,3725.4168119,N,12205.6498010,W,1,14,1.0,2.70,M,-32.64,M,,*51
4+
$GPRMC,220134.10,A,3725.417,N,12205.650,W,0.0,192.8,140520,,,A*4D
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
$GPGGA,220134.00,3725.4168121,N,12205.6498009,W,1,14,1.0,2.70,M,-32.64,M,,*53
2+
$GPRMC,220134.00,A,3725.417,N,12205.650,W,0.0,192.8,140520,,,A*10
3+
$GPGGA,220134.10,3725.4168119,N,12205.6498010,W,1,14,1.0,2.70,M,-32.64,M,,*51
4+
$GPRMC,220134.10,A,3725.417,N,12205.650,W,0.0,192.8,140520,,,A*11

docs/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ In the directory organization above:
9191
* `2022 Google Android Derived Dataset <https://www.kaggle.com/competitions/smartphone-decimeter-2022>`__
9292
* `Precise Ephemeris Data <https://cddis.nasa.gov/Data_and_Derived_Products/GNSS/gnss_mgex.html>`__
9393
* `TU Chemnitz smartLoc Dataset <https://www.tu-chemnitz.de/projekt/smartLoc/gnss_dataset.html.en#Datasets>`__
94+
* `NMEA <https://www.sparkfun.com/datasheets/GPS/NMEA%20Reference%20Manual-Rev2.1-Dec07.pdf>`__
9495

9596
* The :code:`utils` directory contains utilities used to handle
9697
GNSS measurements, time conversions, visualizations, satellite

docs/source/reference/parsers/modules.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ parsers
77
android
88
ephemeris
99
navdata
10+
nmea
1011
precise_ephemerides
1112
smartloc
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
nmea module
2+
===========
3+
4+
.. automodule:: nmea
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

docs/source/reference/test_parsers/modules.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ parsers
77
test_android
88
test_ephemeris
99
test_navdata
10+
test_nmea
1011
test_precise_ephemerides
1112
test_smartloc

0 commit comments

Comments
 (0)