I've been programming PHP for a couple of years, and I'm looking at tackling the GTFS real time feeds. I've downloaded the GTFS files for a specific agency and am parsing them with PHP using the fgetcsv function.
What I'm stuck on right now is, how the HECK do I use this information to find service delays etc. I'm used to parsing information through XML apis etc, but have not dealt with anything like this before. It seems that it requires some python knowledge which I do not know, but am willing to learn.
If anyone can provide me with proper guidance, I'd GREATLY appreciate it. I can get it to store the records into MySQL, but am not sure if I just need to create queries against the current timestamp vs. the expected timestamp to see if there is a delay. I'm having a hard time trying to figure out what to do next.
Any guidance would be greatly appreciated.