Skip to content

Commit 1dfdc64

Browse files
committed
Minor docstring update in plot_skyplot
1 parent c2f12da commit 1dfdc64

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

docs/source/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
alabaster==0.7.13 ; python_version >= "3.8" and python_version < "3.12"
22
anyio==4.0.0 ; python_version >= "3.8" and python_version < "3.12"
3-
appnope==0.1.3 ; python_version >= "3.8" and python_version < "3.12" and (platform_system == "Darwin" or sys_platform == "darwin")
3+
appnope==0.1.3 ; python_version >= "3.8" and python_version < "3.12" and platform_system == "Darwin" or python_version >= "3.8" and python_version < "3.12" and sys_platform == "darwin"
44
argon2-cffi-bindings==21.2.0 ; python_version >= "3.8" and python_version < "3.12"
55
argon2-cffi==23.1.0 ; python_version >= "3.8" and python_version < "3.12"
66
arrow==1.2.3 ; python_version >= "3.8" and python_version < "3.12"
@@ -15,7 +15,7 @@ bleach==6.0.0 ; python_version >= "3.8" and python_version < "3.12"
1515
certifi==2023.7.22 ; python_version >= "3.8" and python_version < "3.12"
1616
cffi==1.15.1 ; python_version >= "3.8" and python_version < "3.12"
1717
charset-normalizer==3.2.0 ; python_version >= "3.8" and python_version < "3.12"
18-
colorama==0.4.6 ; python_version >= "3.8" and python_version < "3.12" and (sys_platform == "win32" or platform_system == "Windows")
18+
colorama==0.4.6 ; python_version >= "3.8" and python_version < "3.12" and sys_platform == "win32" or python_version >= "3.8" and python_version < "3.12" and platform_system == "Windows"
1919
comm==0.1.4 ; python_version >= "3.8" and python_version < "3.12"
2020
contourpy==1.1.1 ; python_version >= "3.8" and python_version < "3.12"
2121
coverage[toml]==7.3.1 ; python_version >= "3.8" and python_version < "3.12"
@@ -96,7 +96,7 @@ pockets==0.9.1 ; python_version >= "3.8" and python_version < "3.12"
9696
prometheus-client==0.17.1 ; python_version >= "3.8" and python_version < "3.12"
9797
prompt-toolkit==3.0.39 ; python_version >= "3.8" and python_version < "3.12"
9898
psutil==5.9.5 ; python_version >= "3.8" and python_version < "3.12"
99-
ptyprocess==0.7.0 ; python_version >= "3.8" and python_version < "3.12" and (os_name != "nt" or sys_platform != "win32")
99+
ptyprocess==0.7.0 ; python_version >= "3.8" and python_version < "3.12" and os_name != "nt" or python_version >= "3.8" and python_version < "3.12" and sys_platform != "win32"
100100
pure-eval==0.2.2 ; python_version >= "3.8" and python_version < "3.12"
101101
pycparser==2.21 ; python_version >= "3.8" and python_version < "3.12"
102102
pygments==2.16.1 ; python_version >= "3.8" and python_version < "3.12"

gnss_lib_py/utils/visualizations.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,8 @@ def plot_skyplot(navdata, receiver_state,
323323
trimmed if the milliseconds between the two points is larger
324324
than the gps_millis_limit. This option only works if the
325325
gps_millis row is included in the ``navdata`` variable input.
326+
Default options for the trim options are :code:`"az_and_el" : (15.,30.)`
327+
and :code:`"gps_millis" : 3.6E6`.
326328
327329
Returns
328330
-------

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
anyio==4.0.0 ; python_version >= "3.8" and python_version < "3.12"
2-
appnope==0.1.3 ; python_version >= "3.8" and python_version < "3.12" and (platform_system == "Darwin" or sys_platform == "darwin")
2+
appnope==0.1.3 ; python_version >= "3.8" and python_version < "3.12" and platform_system == "Darwin" or python_version >= "3.8" and python_version < "3.12" and sys_platform == "darwin"
33
argon2-cffi-bindings==21.2.0 ; python_version >= "3.8" and python_version < "3.12"
44
argon2-cffi==23.1.0 ; python_version >= "3.8" and python_version < "3.12"
55
arrow==1.2.3 ; python_version >= "3.8" and python_version < "3.12"
@@ -84,7 +84,7 @@ pluggy==1.3.0 ; python_version >= "3.8" and python_version < "3.12"
8484
prometheus-client==0.17.1 ; python_version >= "3.8" and python_version < "3.12"
8585
prompt-toolkit==3.0.39 ; python_version >= "3.8" and python_version < "3.12"
8686
psutil==5.9.5 ; python_version >= "3.8" and python_version < "3.12"
87-
ptyprocess==0.7.0 ; python_version >= "3.8" and python_version < "3.12" and (os_name != "nt" or sys_platform != "win32")
87+
ptyprocess==0.7.0 ; python_version >= "3.8" and python_version < "3.12" and os_name != "nt" or python_version >= "3.8" and python_version < "3.12" and sys_platform != "win32"
8888
pure-eval==0.2.2 ; python_version >= "3.8" and python_version < "3.12"
8989
pycparser==2.21 ; python_version >= "3.8" and python_version < "3.12"
9090
pygments==2.16.1 ; python_version >= "3.8" and python_version < "3.12"

0 commit comments

Comments
 (0)