This directory includes Python support for the Point One FusionEngine message protocol, along with analysis tools, data extraction utilities, and example usage scripts.
See https://github.com/PointOneNav/fusion-engine-client for full details. See Point One FusionEngine Message Specification for the latest FusionEngine message specification.
- Requirements
- Applications
- Directory Structure
- Usage Instructions
- Examples
- Using A Python Virtual Environment
- Python 3.6 or later
- p1_capture - Connect to a FusionEngine device in real time over serial, TCP, UDP, or UNIX domain socket, and display incoming FusionEngine contents and/or log the incoming data to disk
- p1_display - Generate plots of vehicle trajectory, GNSS signal status, wheel speed measurements, etc. from a file of logged FusionEngine messages
- p1_extract - Extract FusionEngine messages from a binary file containing multiple data streams (e.g., interleaved RTCM and FusionEngine messages)
- p1_filter - Filter an incoming FusionEngine data stream, outputting a new FusionEngine stream containing only the requested messages
- p1_lband_extract - Extract L-band data bits contained from a
log of FusionEngine
LBandFrameMessage
messages - p1_print - Print the contents of FusionEngine messages found in a binary file to the console
python/
- Python source filesexamples/
- Examples of how to use the FusionEngine client library to load and parse FusionEngine messages, perform analysis on recorded data, generate FusionEngine commands, communicate with a FusionEngine device, etc.- analyze_data.py - Calculate the average LLA position from a data log
- binary_message_decode.py - Decode and print FusionEngine messages contained in a hex byte string
- encode_data.py - Construct and serialize FusionEngine messages, and save them in a
*.p1log
file that can be used with the other example utilities - encode_message.py - Construct and serialize a single FusionEngine message, and print the result to the console as a hex byte string
- extract_imu_data.py - Generate a CSV file containing recorded IMU measurements
- extract_position_data.py - Generate CSV and KML files detailing the vehicle
position over time
- This script also includes an example of time-aligning multiple message types
- extract_satellite_info.py - Generate a CSV file containing satellite azimuth/elevation and C/N0 information over time
- extract_vehicle_speed_data.py - Generate CSV files containing recorded wheel and vehicle speed measurements
- manual_message_decode.py - Read a
.p1log
binary file and decode the message headers and payloads explicitly (without the using theFusionEngineDecoder
helper class) - manual_tcp_client.py - Connect to a device over TCP and decode/display messages
in real time, decoding message headers and payloads manually (without the using the
FusionEngineDecoder
helper class) - message_decode.py - Read a
.p1log
binary file containing FusionEngine messages, optionally mixed with other binary data, and decode the contents using theFusionEngineDecoder
helper class - send_command.py - Send a command to a device over serial or TCP, and wait for a response
- send_vehicle_speed.py - Send example vehicle/wheel speed input to a device over serial or TCP
- serial_client.py - Connect to a device over a local serial port and decode/print incoming FusionEngine messages
- tcp_client.py - Connect to a device over TCP and decode messages in real time and decode/print incoming FusionEngine messages
- udp_client.py - Connect to a device over UDP and decode/display messages in real time and decode/print incoming FusionEngine messages
fusion_engine_client
- Top-level Python package directoryanalysis
- analyzer.py -
Analyzer
class, used by p1_display to plot data from a recorded file of FusionEngine messages (vehicle trajectory map, navigation engine state information, etc.) - file_reader.py -
FileReader
class, capable of loading and time-aligning FusionEngine data captured in a*.p1log
file
- analyzer.py -
applications
- Applications and processing tools -- see Applications for detailed descriptions of each of these tools- The applications in this directory will be installed on your system by
pip install
, along with the rest of the library code, so that they can be called directly from the command line (e.g.,p1_display.py
can be run on the command line asp1_display
)
- The applications in this directory will be installed on your system by
messages
- Python message definitionsparsers
- Message encoding and decoding support- decoder.py -
FusionEngineDecoder
class, used to frame and parse incoming streaming data (e.g., received over TCP or serial) - encoder.py -
FusionEngineEncoder
class, used when serializing messages to be sent to a connected device
- decoder.py -
utils
- Various utility functions used by the other files (e.g., log search support)
Note for Windows users: You must install Python using an installer from https://www.python.org/downloads/windows/ and select "Add python.exe to PATH". (Do not install Python using Microsoft Store.)
-
Install Python (3.6 or later) and pip.
-
Install the
fusione-engine-client
module, including all analysis and data processing tools:python3 -m pip install fusion-engine-client
- This will install the library code, and will also the applications in
fusion_engine_client/applications/
onto your systemPATH
so you can run them at the command line (e.g.,p1_display.py
will be available on the command line asp1_display
).
- This will install the library code, and will also the applications in
-
Run any of the applications described in Applications. For example, to plot results from a
*.p1log
file from a Point One device:p1_display /path/to/log/file_or_directory
You can also run any of the scripts in the
examples/
directory as follows:python3 examples/extract_position_data.py /path/to/log/file_or_directory
-
Install Python (3.6 or later) and pip.
-
Clone a copy of this repository:
git clone https://github.com/PointOneNav/fusion-engine-client.git
-
Install the
fusione-engine-client
module, including all analysis and data processing tools:python3 -m pip install -e /path/to/fusion-engine-client
- This will install the library code, and will also all of the applications in
fusion_engine_client/applications/
onto your systemPATH
so you can run them at the command line (e.g.,p1_display.py
will be available on the command line asp1_display
). - Note the additional
-e
argument (optional), which tellspip
to installfusion-engine-client
as editable. This means that it will reference the local directory instead of copying the source code. That way, if you update the code (git pull
), your Python installation will automatically use the new version.
- This will install the library code, and will also all of the applications in
-
Run any of the applications described in Applications. For example, to plot results from a
*.p1log
file from a Point One device:p1_display /path/to/log/file_or_directory
You can also run any of the scripts in the
examples/
directory as follows:python3 examples/extract_position_data.py /path/to/log/file_or_directory
-
Install Python (3.6 or later) and pip.
-
Clone a copy of this repository:
git clone https://github.com/PointOneNav/fusion-engine-client.git
-
Install the Python requirements:
python3 -m pip install -r requirements.txt
-
Run any of the applications described in Applications. For example, to plot results from a
*.p1log
file from a Point One device:p1_display /path/to/log/file_or_directory
You can also run any of the scripts in the
examples/
directory as follows:python3 examples/extract_position_data.py /path/to/log/file_or_directory
Whenever possible, we strongly encourage the use of a Python virtual environment.
Note:
p1_display
will generate a map showing the vehicle trajectory. By default, the map will be displayed using freely available Open Street Map street data. In order to display satellite imagery, please request a free access token from https://account.mapbox.com/access-tokens, then provide that token by specifying the--mapbox-token
argument, or by setting either theMAPBOX_ACCESS_TOKEN
orMapboxAccessToken
environment variables.
The following will generate plots for a log with ID c25445f4e60d441dbf4af8a3571352fa
.
> p1_display --mapbox-token MY_MAPBOX_TOKEN /path/to/c25445f4e60d441dbf4af8a3571352fa
Alternatively, you can search for a log by entering the first few characters of the ID. By default, logs are assumed to
be stored in the directory ~/logs
on Linux or MacOS, or %HOME%/Documents/logs
on Windows.
> p1_display c2544
Use the --logs-base-dir
argument to search a directory other than the default log directory:
> p1_display --logs-base-dir /my/log/directory c2544
The examples/tcp_client.py script can be used to record data to a .p1log
file for post-processing by specifying
the --output
argument. Note that we are also setting --no-display
here, since we only want to record the data and
are not interested in printing the contents to the console.
> python3 examples/tcp_client.py --no-display --output my_data.p1log 192.168.1.2
from fusion_engine_client.analysis.file_reader import FileReader
from fusion_engine_client.messages.core import *
reader = FileReader(input_path)
result = reader.read(message_types=[PoseMessage])
for message in result[PoseMessage.MESSAGE_TYPE].messages:
print("LLA: %.6f, %.6f, %.3f" % message.lla_deg)
The FileReader
class has built-in support for aligning multiple message types based on their P1 timestamps. When
INSERT
mode is enabled, the FileReader
will create messages automatically for any times when they are not present
(dropped due to invalid CRC, etc.). The created message objects will be set to their default values.
from fusion_engine_client.analysis.file_reader import FileReader, TimeAlignmentMode
from fusion_engine_client.messages.core import *
reader = FileReader(input_path)
result = reader.read(message_types=[PoseMessage, GNSSSatelliteMessage], time_align=TimeAlignmentMode.INSERT)
for pose, gnss in zip(result[PoseMessage.MESSAGE_TYPE].messages, result[GNSSSatelliteMessage.MESSAGE_TYPE].messages):
print("LLA: %.6f, %.6f, %.3f, # satellites: %d" % (pose.lla_deg, len(gnss.svs)))
Note that some message types are not synchronous. For example, raw sensor measurements (IMU data, etc.) are not guaranteed to occur at the same time as the generated position solutions. Attempting to time-align asynchronous message types may result in unexpected behavior.
See extract_position_data.py for an example of time-aligning multiple message types.
from fusion_engine_client.messages.core import *
from fusion_engine_client.parsers import FusionEngineDecoder
decoder = FusionEngineDecoder()
results = decoder.on_data(received_bytes)
for (header, message) in results:
if isinstance(message, PoseMessage):
print("LLA: %.6f, %.6f, %.3f" % message.lla_deg)
See examples/tcp_client.py for an example use of the decoder class.
from fusion_engine_client.messages.core import *
from fusion_engine_client.parsers import FusionEngineEncoder
encoder = FusionEngineEncoder()
message = PoseMessage()
message.p1_time = Timestamp(1.0)
message.solution_type = SolutionType.DGPS
message.lla_deg = np.array([37.776417, -122.417711, 0.0])
message.ypr_deg = np.array([45.0, 0.0, 0.0])
data = encoder.encode_message(message)
> python3 examples/extract_position_data.py /path/to/c25445f4e60d441dbf4af8a3571352fa
This will produce the file /path/to/c25445f4e60d441dbf4af8a3571352fa/position.csv
.
Requires GNSSSatelliteMessage
to be enabled on the device.
> python3 examples/extract_position_data.py /path/to/c25445f4e60d441dbf4af8a3571352fa
This will produce the file /path/to/c25445f4e60d441dbf4af8a3571352fa/position.csv
.
See examples/encode_data.py for an example of data serialization.
Whenever possible, we strongly encourage the use of a Python virtual environment. To use the FusionEngine client within a virtual environment:
- Create a virtual environment:
python3 -m venv venv
- Activate the virtual environment:
or in Windows:
source venv/bin/activate
venv\Scripts\activate.bat
- Install the library
or install the pip requirements if using a local copy of the repository:
pip install fusion-engine-client
pip install -r requirements.txt
- Run any of the FusionEngine applications/scripts normally:
p1_display /path/to/log/directory