Replies: 1 comment
-
|
I thought about this as well since geopulse works better with more data - i am for sure simplifying. Anyway .....in the past I used gpslogger on android and typically logged every 30 seconds but only uploaded via Wifi. I recently switched to colota which is very efficient when it comes to battery usage. I am still logging every 30 seconds but since most of the time colota uses less than 1 percent of my battery I am even thinking about logging every 20 seconds but so far i did not change the default settings (= every 30 seconds). I am still only uploading only via wifi. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
This isn’t about choosing a specific GPS tracker, but rather about the methodology for logging and submitting GPS data efficiently.
I decided that logging directly to Geopulse in real time would use too much battery, and I don’t actually need real-time updates. My current tool can log to CSV and batch-submit, but it doesn’t keep a queue, so it repeatedly uploads all points, leaving Geopulse to handle duplicates.
For example:
If I rotate CSV files daily and submit hourly, the submissions effectively send:
1/24 + 2/24 + 3/24 … + 24/24 of the day’s data.
Total after 24 hours: 300 “hours” of data, i.e., 12.5× more than necessary.
I reduced submission to every 4 hours, which still results in 3.5× overhead.
I then switched from CSV to GPX 1.1, hoping to submit data retroactively, since CSV files require manual upload via my GPS logger. GPX files can be imported directly into Geopulse, but unfortunately they don’t contain the accuracy of each point.
So I’m weighing my options:
Also Owntracks mentions that:
This makes it sound like it does support batch sending and even offline mode?
Additional question:
Do you use different logging profiles for walking vs. driving?
What intervals or distance thresholds do you use to log or retain points for each mode?
Beta Was this translation helpful? Give feedback.
All reactions