-
Notifications
You must be signed in to change notification settings - Fork 28
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
Simulate with custom OD data? #31
Comments
Check out the repo as of 1.0, when it was hardcoded to work with a simple OD file from NYC taxis. I would love to support custom OD data going forward, but this may be a helpful starting point to get an idea for how it worked. https://github.com/sharedstreets/trip-simulator/tree/f9abdd0a2119668407c23f881917c77b054fcb66 |
Thanks for the info. I checked the code and learned it uses osrm data to route between real OD pair. If only the path is "faked" but the OD are still the original ones, does this mean the simulated paths are still quite sensitive? Reason is I think how a person get from A to B is not that important compare to where do they start a trip and more importantly where are they going. I'm thinking another way to make the simulation more realistic by utilising existing OD data. |
The purpose of using custom OD data is to compare the result with
I've implemented this feature (with custom OD distribution) and started testing it with some data. |
Ah, I see what you mean here. Yes, the original implementation had no modeling for the ODs at all. Using it as an input to the probability grid could be a good option. Another way I could see this working is using measurements from the OD dataset to guide the vehicle profile. Using the grid directly has some problems, particularly if your data is incomplete or insufficiently representative. I think you would ideally want a hybrid of OD density and the existing urban density model. |
Trying to use the tool to simulate trajectories with a dataset of real OD data.
Is it possible with the current command line arguments?
If yes how should I prepare my OD data?
The text was updated successfully, but these errors were encountered: