-
Notifications
You must be signed in to change notification settings - Fork 313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to accomplish APRS proportional pathing? #395
Comments
The User Guide has an example of how to do proportional pathing. PBEACON DELAY=1 EVERY=30 VIA=WIDE1-1 LAT=42^37.14N LONG=71^20.83W |
That's actually where I started and it got complicated in a hurry with multiple OBEACONs in the mix. In the example you've shared there's a 30 second rotation where the first 10 seconds is a WIDE, the second 10 is a DIRECT, and the last 10 is a DIRECT. That works. 0:31 seconds we do wide1-1. So to accomplish this:
You'd do something like this:
For something like a repeater obeacon with net times and stuff on it this becomes a lot of lines to have to touch when something changes. If there were a way to set and use variables in the config lines that might make things a little easier. If you have multiple objects you want to do this for i assume you should space them out, so you would shift the I don't know how I would construct a "cleaner" way of specifying this while maintaining flexibility, so I guess I'll just leave all this here as a reference for future generations of mankind. |
Now I get a warning about exceeding the maximum number of beacons, when really, these are just three beacons set up to be friendlier to the RF network than is typical around here. |
Your examples have twice the number needed: EVERY=8:00 DELAY=0:01 VIA=DIRECT EVERY=8:00 DELAY=4:01 VIA=DIRECT You could use half as many, with a 4 minute cycle time, and get the same result. It's not as simple as turning on some option, to get some fixed set of paths, but this is very flexible. |
As mentioned here: http://www.aprs.org/newN/ProportionalPathing.txt
It is a good idea for some objects to be beaconed with much shorter paths more frequently, and only going wider paths with less frequency. This allows, for instance, a traveler heading into an area, to have a list of digis in the area they're heading towards, while also ensuring that someone who has just turned on their radio will get
local
info.Configuring this in Direwolf doesn't seem directly possible.... I did something like this with timeslots and
every
:This is a little ugly and tough to manage changes in, and Direwolf complains that there need to be a whole number worth of beacons every hour, and then, if you have a few of these, when the
WIDE2-2
fires, theDIRECT
andWIDE1-1
andWIDE2-1
beacons are also firing.Obviously if every minute we want to go
DIRECT
, and every 3 minutes we want to goWIDE1-1
, I don't want to fire beacons forDIRECT
path andWIDE1-1
path at minute 3...How can this be worked around?
The text was updated successfully, but these errors were encountered: