GPS Client Example
Before diving into this code, here's a quick heads-up on what you'll need to be familiar with:
- Python Programming: It's important to have a good grasp of Python, especially with concepts
like
functions
,loops
, andclasses
, since the example utilizes these fundamentals. - Asynchronous Programming with asyncio: Familiarity with Python's asyncio for writing concurrent
code using the
async/await
syntax. - farm-ng GPS Service Overview: This overview provides a base understanding of the gRPC service the client you create will connect to. This includes GPS (as PVT) & RTK (as RELPOSNED) messages.
The GPS Client example
operates as a standalone Python script,
in which an EventClient
to the farm-ng GPS service running on an Amiga brain is created.
The script processes two types of GPS messages: relposned
and pvt
.
The user specifies which GPS message topics to subscribe to in the service configuration.
The script subscribes to the corresponding data streams and prints the output to the console.
You can either run this example directly on a brain by ssh
'ing in, or use your local PC.
If using your local PC, it should be either connected to the same local network as the brain
or linked to it through tailscale.
Ensure that a farm-ng brain, with a GPS receiver, is actively running the GPS service.
For relposned
messages, a connection to an RTK base station is also required.
There are two types of GPS messages: PVT and RELPOSNED.
PVT (Position, Velocity, and Time) messages provide the all-in-one solution: position, velocity, and time. It contains details like longitude, latitude, altitude, speed, and UTC time.
RELPOSNED (Relative Positioning) messages provide relative position information in a North, East, Down (N-E-D) frame. It's mainly used for applications requiring relative positioning between two receivers, often as a part of Real Time Kinematics (RTK) solutions. It shows the difference in position between a "moving" receiver and a "fixed" reference receiver.
1. Install the farm-ng Brain ADK package
2. Install the example's dependencies
It is recommended to also install these dependencies and run the example in the brain ADK virtual environment.
Setup
Create a virtual environment
python3 -m venv venv
source venv/bin/activate
Install
cd py/examples/gps_client
pip install -r requirements.txt
3. Execute the Python script
To run this script from your PC, you need to update the service_config.json
by modifying the host
field with your Amiga brain name.
Please check out Amiga Development 101 for more details.
python main.py --service-config service_config.json
4. Customize the run
Moreover, you can also specify a gps interface (/relposned
or /pvt
) to read by
modifying the uri.path
in the service_config.json
file.
The default value ('*') will stream all messages published by the service.
For example:
{
"name": "gps",
"port": 3001,
"host": "localhost",
"log_level": "INFO",
"subscriptions": [
{
"uri": {
"path": "/relposned",
"query": "service_name=gps"
},
"every_n": 1
}
]
}
If everything worked correctly you should now see a large stream of text come up in your terminal!
The output should look something like this:
Message stamp: 913.417056353
GPS time: 1696009971.6
Latitude: 36.9293043
Longitude: -121.7903499
Altitude: 35.574
Ground speed: 0.78
Speed accuracy: 0.06199999898672104
Horizontal accuracy: 0.014999999664723873
Vertical accuracy: 0.017000000923871994
P DOP: 0.0179
--------------------------------------------------
Congrats you are done!
We highly recommend to have some basic knowledge about
asyncio
.