Skip to content

Commit fdea031

Browse files
committed
update min pynmeagps ver to 1.0.53
1 parent 7b898b9 commit fdea031

33 files changed

+78
-70
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
# -- Project information -----------------------------------------------------
2121

2222
project = "pyubx2"
23-
copyright = "2021, SEMU Consulting"
24-
author = "SEMU Consulting"
23+
copyright = "2021 semuadmin (Steve Smith)"
24+
author = "semuadmin (Steve Smith)"
2525

2626
# The full version, including alpha/beta/rc tags
2727
release = VERSION

docs/pyubx2.rst

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,93 +9,93 @@ pyubx2.exceptions module
99

1010
.. automodule:: pyubx2.exceptions
1111
:members:
12-
:show-inheritance:
1312
:undoc-members:
13+
:show-inheritance:
1414

1515
pyubx2.ubxhelpers module
1616
------------------------
1717

1818
.. automodule:: pyubx2.ubxhelpers
1919
:members:
20-
:show-inheritance:
2120
:undoc-members:
21+
:show-inheritance:
2222

2323
pyubx2.ubxmessage module
2424
------------------------
2525

2626
.. automodule:: pyubx2.ubxmessage
2727
:members:
28-
:show-inheritance:
2928
:undoc-members:
29+
:show-inheritance:
3030

3131
pyubx2.ubxreader module
3232
-----------------------
3333

3434
.. automodule:: pyubx2.ubxreader
3535
:members:
36-
:show-inheritance:
3736
:undoc-members:
37+
:show-inheritance:
3838

3939
pyubx2.ubxtypes\_configdb module
4040
--------------------------------
4141

4242
.. automodule:: pyubx2.ubxtypes_configdb
4343
:members:
44-
:show-inheritance:
4544
:undoc-members:
45+
:show-inheritance:
4646

4747
pyubx2.ubxtypes\_core module
4848
----------------------------
4949

5050
.. automodule:: pyubx2.ubxtypes_core
5151
:members:
52-
:show-inheritance:
5352
:undoc-members:
53+
:show-inheritance:
5454

5555
pyubx2.ubxtypes\_decodes module
5656
-------------------------------
5757

5858
.. automodule:: pyubx2.ubxtypes_decodes
5959
:members:
60-
:show-inheritance:
6160
:undoc-members:
61+
:show-inheritance:
6262

6363
pyubx2.ubxtypes\_get module
6464
---------------------------
6565

6666
.. automodule:: pyubx2.ubxtypes_get
6767
:members:
68-
:show-inheritance:
6968
:undoc-members:
69+
:show-inheritance:
7070

7171
pyubx2.ubxtypes\_poll module
7272
----------------------------
7373

7474
.. automodule:: pyubx2.ubxtypes_poll
7575
:members:
76-
:show-inheritance:
7776
:undoc-members:
77+
:show-inheritance:
7878

7979
pyubx2.ubxtypes\_set module
8080
---------------------------
8181

8282
.. automodule:: pyubx2.ubxtypes_set
8383
:members:
84-
:show-inheritance:
8584
:undoc-members:
85+
:show-inheritance:
8686

8787
pyubx2.ubxvariants module
8888
-------------------------
8989

9090
.. automodule:: pyubx2.ubxvariants
9191
:members:
92-
:show-inheritance:
9392
:undoc-members:
93+
:show-inheritance:
9494

9595
Module contents
9696
---------------
9797

9898
.. automodule:: pyubx2
9999
:members:
100-
:show-inheritance:
101100
:undoc-members:
101+
:show-inheritance:

examples/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Created on 27 Sep 2020
33
4-
:author: semuadmin
5-
:copyright: SEMU Consulting © 2020
4+
:author: semuadmin (Steve Smith)
5+
:copyright: semuadmin © 2020
66
:license: BSD 3-Clause
77
"""

examples/benchmark.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
66
Created on 5 Nov 2021
77
8-
:author: semuadmin
9-
:copyright: SEMU Consulting © 2021
8+
:author: semuadmin (Steve Smith)
9+
:copyright: semuadmin © 2021
1010
:license: BSD 3-Clause
1111
"""
1212

examples/datums.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@
1111
1212
Created on 16 Jan 2023
1313
14-
:author: semuadmin
14+
:author: semuadmin (Steve Smith)
1515
"""
16+
1617
# pylint: disable=too-many-lines
1718

1819
DATUMS = {

examples/f9p_basestation.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
1313
Created on 26 Apr 2022
1414
15-
:author: semuadmin
16-
:copyright: SEMU Consulting © 2022
15+
:author: semuadmin (Steve Smith)
16+
:copyright: semuadmin © 2022
1717
:license: BSD 3-Clause
1818
"""
1919

@@ -25,6 +25,7 @@
2525
TMODE_FIXED = 2
2626
SHOW_PRESET = True # hide or show PyGPSClient preset string
2727

28+
2829
def send_msg(serial_out: Serial, ubx: UBXMessage):
2930
"""
3031
Send config message to receiver.
@@ -139,7 +140,6 @@ def config_fixed(acc_limit: int, lat: float, lon: float, height: float) -> UBXMe
139140
BAUD = 38400
140141
TIMEOUT = 5
141142

142-
143143
TMODE = TMODE_FIXED # "TMODE_SVIN" or 1 = Survey-In, "TMODE_FIXED" or 2 = Fixed
144144
ACC_LIMIT = 200 # accuracy in mm
145145

examples/gnssapp.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
Optional keyword arguments:
1313
1414
- sendqueue - any data placed on this Queue will be sent to the receiver
15-
(e.g. UBX commands/polls or NTRIP RTCM data). Data must be a tuple of
15+
(e.g. UBX commands/polls or NTRIP RTCM data). Data must be a tuple of
1616
(raw_data, parsed_data).
1717
- idonly - determines whether the app prints out the entire parsed message,
1818
or just the message identity.
@@ -22,10 +22,11 @@
2222
2323
Created on 27 Jul 2023
2424
25-
:author: semuadmin
26-
:copyright: SEMU Consulting © 2023
25+
:author: semuadmin (Steve Smith)
26+
:copyright: semuadmin © 2023
2727
:license: BSD 3-Clause
2828
"""
29+
2930
# pylint: disable=invalid-name, too-many-instance-attributes
3031

3132
from argparse import ArgumentDefaultsHelpFormatter, ArgumentParser

examples/gpxtracker.py

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
1919
Created on 27 Oct 2020
2020
21-
:author: semuadmin
22-
:copyright: SEMU Consulting © 2020
21+
:author: semuadmin (Steve Smith)
22+
:copyright: semuadmin © 2020
2323
:license: BSD 3-Clause
2424
"""
2525

@@ -128,14 +128,16 @@ def run(self):
128128
)
129129
elif isinstance(msg, NMEAMessage):
130130
if msg.msgID in ("GGA",):
131-
self.write_gpx_trkpnt(outfile,
131+
self.write_gpx_trkpnt(
132+
outfile,
132133
msg.lat,
133134
msg.lon,
134135
ele=msg.alt,
135136
time=self.nmeatime2utc(msg.time),
136137
)
137138
elif msg.msgID in ("RMC", "GLL"):
138-
self.write_gpx_trkpnt(outfile,
139+
self.write_gpx_trkpnt(
140+
outfile,
139141
msg.lat,
140142
msg.lon,
141143
time=self.nmeatime2utc(msg.time),
@@ -235,11 +237,14 @@ def main():
235237

236238
ap = ArgumentParser()
237239
ap.add_argument("-I", "--infile", required=True, help="Input gnss file", type=str)
238-
ap.add_argument("-O", "--outpath", required=False, help="Output path",default=".", type=str)
240+
ap.add_argument(
241+
"-O", "--outpath", required=False, help="Output path", default=".", type=str
242+
)
239243
args = ap.parse_args()
240244

241245
UBXTracker(args.infile, args.outpath).run()
242246

247+
243248
if __name__ == "__main__":
244249

245250
main()

examples/mon_span_spectrum.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
1313
Created on 19 Nov 2020
1414
15-
:author: semuadmin
16-
:copyright: SEMU Consulting © 2020
15+
:author: semuadmin (Steve Smith)
16+
:copyright: semuadmin © 2020
1717
:license: BSD 3-Clause
1818
"""
1919

examples/socket_server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
2323
Created on 16 May 2022
2424
25-
:author: semuadmin
26-
:copyright: SEMU Consulting © 2022
25+
:author: semuadmin (Steve Smith)
26+
:copyright: semuadmin © 2022
2727
:license: BSD 3-Clause
2828
"""
2929

0 commit comments

Comments
 (0)