Skip to content

Commit 25e97f8

Browse files
committed
Merge branch 'ashwin+daniel/dop' of https://github.com/Stanford-NavLab/gnss_lib_py into ashwin+daniel/dop
2 parents 287a99c + ae8b591 commit 25e97f8

22 files changed

Lines changed: 195 additions & 25 deletions

build_docs.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,24 @@ cd docs
88
echo "Rebuilding References"
99
rm -r ./source/reference/algorithms/*
1010
poetry run sphinx-apidoc -f -M -q -o ./source/reference/algorithms/ ./../gnss_lib_py/algorithms/
11+
rm -r ./source/reference/navdata/*
12+
poetry run sphinx-apidoc -f -M -q -o ./source/reference/navdata/ ./../gnss_lib_py/navdata/
1113
rm -r ./source/reference/parsers/*
1214
poetry run sphinx-apidoc -f -M -q -o ./source/reference/parsers/ ./../gnss_lib_py/parsers/
1315
rm -r ./source/reference/utils/*
1416
poetry run sphinx-apidoc -f -M -q -o ./source/reference/utils/ ./../gnss_lib_py/utils/
17+
rm -r ./source/reference/visualizations/*
18+
poetry run sphinx-apidoc -f -M -q -o ./source/reference/visualizations/ ./../gnss_lib_py/visualizations/
1519
rm -r ./source/reference/test_algorithms/*
1620
poetry run sphinx-apidoc -f -M -q -o ./source/reference/test_algorithms/ ./../tests/algorithms/
21+
rm -r ./source/reference/test_navdata/*
22+
poetry run sphinx-apidoc -f -M -q -o ./source/reference/test_navdata/ ./../tests/navdata/
1723
rm -r ./source/reference/test_parsers/*
1824
poetry run sphinx-apidoc -f -M -q -o ./source/reference/test_parsers/ ./../tests/parsers/
1925
rm -r ./source/reference/test_utils/*
2026
poetry run sphinx-apidoc -f -M -q -o ./source/reference/test_utils/ ./../tests/utils/
27+
rm -r ./source/reference/test_visualizations/*
28+
poetry run sphinx-apidoc -f -M -q -o ./source/reference/test_visualizations/ ./../tests/visualizations/
2129

2230
# remove previously downloaded .csv files if they exist
2331
rm ./source/*/*.csv

docs/source/conf.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,16 @@
2222
sys.path.insert(0, os.path.abspath('../../'))
2323
sys.path.insert(0, os.path.abspath('../../gnss_lib_py/'))
2424
sys.path.insert(0, os.path.abspath('../../gnss_lib_py/algorithms/'))
25+
sys.path.insert(0, os.path.abspath('../../gnss_lib_py/navdata/'))
2526
sys.path.insert(0, os.path.abspath('../../gnss_lib_py/parsers/'))
2627
sys.path.insert(0, os.path.abspath('../../gnss_lib_py/utils/'))
28+
sys.path.insert(0, os.path.abspath('../../gnss_lib_py/visualizations/'))
2729
sys.path.insert(0, os.path.abspath('../../tests/'))
2830
sys.path.insert(0, os.path.abspath('../../tests/algorithms'))
31+
sys.path.insert(0, os.path.abspath('../../tests/navdata'))
2932
sys.path.insert(0, os.path.abspath('../../tests/parsers'))
3033
sys.path.insert(0, os.path.abspath('../../tests/utils'))
34+
sys.path.insert(0, os.path.abspath('../../tests/visualizations'))
3135

3236

3337
# -- Project information -----------------------------------------------------
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
navdata
2+
=======
3+
4+
.. toctree::
5+
:maxdepth: 4
6+
7+
navdata
8+
operations
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
navdata module
2+
==============
3+
4+
.. automodule:: navdata
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
operations module
2+
=================
3+
4+
.. automodule:: operations
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

docs/source/reference/reference.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,8 +290,10 @@ documentation below.
290290
:maxdepth: 2
291291

292292
algorithms/modules
293+
navdata/modules
293294
parsers/modules
294295
utils/modules
296+
visualizations/modules
295297

296298
Testing References
297299
--------------------------------
@@ -302,8 +304,10 @@ documentation below.
302304
:maxdepth: 2
303305

304306
test_algorithms/modules
307+
test_navdata/modules
305308
test_parsers/modules
306309
test_utils/modules
310+
test_visualizations/modules
307311

308312

309313
Additional Indices
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
conftest module
2+
===============
3+
4+
.. automodule:: conftest
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
navdata
2+
=======
3+
4+
.. toctree::
5+
:maxdepth: 4
6+
7+
conftest
8+
test_navdata
9+
test_operations
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
test\_navdata module
2+
====================
3+
4+
.. automodule:: test_navdata
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
test\_operations module
2+
=======================
3+
4+
.. automodule:: test_operations
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

0 commit comments

Comments
 (0)