Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# pyubx2 Release Notes

### RELEASE 1.2.52

CHANGES:

1. Inherit SocketWrapper from pynmeagps.
1. Update minimum pynmeagps version to 1.0.50 (adds GPFMI support).
1. Add status decodes for ESF-ALG.

### RELEASE 1.2.51

CHANGES:
Expand Down
8 changes: 0 additions & 8 deletions docs/pyubx2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,6 @@ pyubx2.exceptions module
:show-inheritance:
:undoc-members:

pyubx2.socket\_wrapper module
-----------------------------

.. automodule:: pyubx2.socket_wrapper
:members:
:show-inheritance:
:undoc-members:

pyubx2.ubxhelpers module
------------------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: GIS",
]

dependencies = ["pynmeagps >= 1.0.49", "pyrtcm >= 1.1.6"]
dependencies = ["pynmeagps >= 1.0.50", "pyrtcm >= 1.1.6"]

[project.urls]
homepage = "https://github.com/semuconsulting/pyubx2"
Expand Down
4 changes: 2 additions & 2 deletions src/pyubx2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
:license: BSD 3-Clause
"""

from pynmeagps.nmeahelpers import (
from pynmeagps import (
SocketWrapper,
bearing,
ecef2llh,
haversine,
Expand All @@ -26,7 +27,6 @@
UBXStreamError,
UBXTypeError,
)
from pyubx2.socket_wrapper import SocketWrapper
from pyubx2.ubxhelpers import *
from pyubx2.ubxmessage import UBXMessage
from pyubx2.ubxreader import UBXReader
Expand Down
2 changes: 1 addition & 1 deletion src/pyubx2/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
:license: BSD 3-Clause
"""

__version__ = "1.2.51"
__version__ = "1.2.52"
116 changes: 0 additions & 116 deletions src/pyubx2/socket_wrapper.py

This file was deleted.

3 changes: 1 addition & 2 deletions src/pyubx2/ubxreader.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import pynmeagps.exceptions as nme
import pyrtcm.exceptions as rte
from pynmeagps import NMEA_HDR, NMEAReader
from pynmeagps import NMEA_HDR, NMEAReader, SocketWrapper
from pyrtcm import RTCMReader

from pyubx2.exceptions import (
Expand All @@ -33,7 +33,6 @@
UBXStreamError,
UBXTypeError,
)
from pyubx2.socket_wrapper import SocketWrapper
from pyubx2.ubxhelpers import bytes2val, calc_checksum, getinputmode, val2bytes
from pyubx2.ubxmessage import UBXMessage
from pyubx2.ubxtypes_core import (
Expand Down
15 changes: 15 additions & 0 deletions src/pyubx2/ubxtypes_decodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -528,3 +528,18 @@
7: "NavIC",
}
"""Information source for the future leap second event, from UBX-NAV-TIMELS"""

ESFALG_AUTOMNTALGON = {
0: ("AUTOOFF", "automatic alignment is not running"),
1: ("AUTOON", "automatic alignment is running"),
}
"""autoMntAlgOn from ESF-ALG"""

ESFALG_STATUS = {
0: ("FIXEDUSED", "user-defined/fixed angles are used"),
1: ("ALIGNINGRP", "IMU-mount roll/pitch angles alignment is ongoing"),
2: ("ALIGNINGRPW", "IMU-mount roll/pitch/yaw angles alignment is ongoing"),
3: ("COARSEUSED", "coarse IMU-mount alignment are used"),
4: ("FINEUSED", "fine IMU-mount alignment are used"),
}
"""status from ESF-ALG"""