Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brandonwillard/open-tracking-tools
Open source Java library for on-line vehicle tracking, path estimation and parameter learning.
https://github.com/brandonwillard/open-tracking-tools
Last synced: 10 days ago
JSON representation
Open source Java library for on-line vehicle tracking, path estimation and parameter learning.
- Host: GitHub
- URL: https://github.com/brandonwillard/open-tracking-tools
- Owner: brandonwillard
- Created: 2012-05-02T14:10:35.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2022-03-29T15:47:15.000Z (over 2 years ago)
- Last Synced: 2024-10-12T16:44:00.518Z (25 days ago)
- Language: Java
- Homepage:
- Size: 204 MB
- Stars: 32
- Watchers: 9
- Forks: 20
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This library contains a set of tools for tracking objects through GPS data real-time.
Specifically, it contains implementations of Bayesian particle filters for on-road and off-road 2D
motion and state-parameter estimation.The generic api uses a graph and some observations to produce sequential filtered results, which infer the
true location, velocity, their variances, the street it's on/the path it took. Extensions in this library include
the ability to estimate parameters, like GPS and acceleration errors.
See https://github.com/openplans/open-tracking-tools/wiki for a better description.To get started, you can build an OpenTripPlanner graph by specifying coordinate boundaries for OpenStreetMap data, then
running the TraceRunner in open-tracking-tools-otp over a CSV file. (See https://github.com/openplans/OpenTripPlanner/wiki/GraphBuilder for more
information about OTP graph building.) An example xml build file for an OTP graph can be found in the
open-tracking-tools-otp project, as well as an example TraceRunner config file.Another example of a graph is GenericJTSGraph.java, which takes simple JTS geometry objects.
There is also a simulator that will produce observations for testing. See RoadTrackingGraphFilterTest.java for
a complete example of graph construction, simulation and filtering.