CUTR-at-USF / ontime-performance-calculator

An application to calculate on-time performance using archived GTFS-realtime data
Other
4 stars 2 forks source link

Fix #6 - Populating schedule_deviation and time_point values in database #16

Closed mohangandhiGH closed 7 years ago

mohangandhiGH commented 7 years ago

Modified FeedProcessor.java to update schedule_deviation and timepoint values. SELECT query is very fast now as oid column is made primary key. So, included '.... ORDER BY [oid] DESC 'in SELECT query.

barbeau commented 7 years ago

A heads up that this branch now has conflicts you'll need to resolve. So, you will need to do the Git rebase I talked about in last meeting, rehashing sched_deviation on master. See: https://help.github.com/articles/resolving-merge-conflicts-after-a-git-rebase/

barbeau commented 7 years ago

I'd suggest checking out the Git UI within NetBeans, IDEs make this a lot easier. For example see: https://blogs.oracle.com/geertjan/entry/git_in_netbeans_ide_7

mohangandhiGH commented 7 years ago

@barbeau I have rebased sched_deviation branch on top of master and pushed the modified changes to sched_deviation branch. If everything seems good, we can merge this PR :).

barbeau commented 7 years ago

Looks good @mohangandhiGH, thanks! I went ahead and merged this to get the master branch updated. Could you also please add documentation on the new command line parameter for "number of records" to the README?

mohangandhiGH commented 7 years ago

@barbeau I have added changes to README file in the PR #22 :)

barbeau commented 7 years ago

Thanks @mohangandhiGH!