You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, the process of getting weather info into my posts involves an extra step I would like to avoid. I would also like if my GPS logs contained weather info themselves, to avoid having to link up an external dataset to correlate that info.
It might make sense to add the weather info at the time the location records are created. If you add a DarkSky API key to Overland, then it could periodically fetch the weather info and add the data to the location records.
Here's an example weather record from my current weather DB:
Keep a cached copy of the latest weather info on the phone
If more than 5 minutes has elapsed since the weather was last updated, fetch new weather info
If the distance from the last weather update changes by more than 5km, fetch new weather info
For every location point recorded, add the weather info from the cache
Include the timestamp of the weather info so consumers will know how old the weather info is
Since the properties object in GeoJSON can include full JSON (not limited to key/value pairs), we can store the weather info in a new nested object weather containing these properties.
The text was updated successfully, but these errors were encountered:
Right now, the process of getting weather info into my posts involves an extra step I would like to avoid. I would also like if my GPS logs contained weather info themselves, to avoid having to link up an external dataset to correlate that info.
It might make sense to add the weather info at the time the location records are created. If you add a DarkSky API key to Overland, then it could periodically fetch the weather info and add the data to the location records.
Here's an example weather record from my current weather DB:
Some notes about how this could work:
Since the
properties
object in GeoJSON can include full JSON (not limited to key/value pairs), we can store the weather info in a new nested objectweather
containing these properties.The text was updated successfully, but these errors were encountered: