I'm working on a project that screen scrapes a list of departure times from a train schedule posted on the web. I realize this would be a lot easier if I wasn't using such a crude method to access the data but there's no API available, and it's more of a learning project than the kind of thing I expect to release publicly.
Anyhow, the schedule I'm reading from displays times in 12-hour format but without AM/PM (so for example, just 9:43). I'm storing the time in a database as an approximate unix timestamp, which means I need my script to be able to figure out if a time is AM or PM.
The data I'm scraping from lists times that are, potentially, between two hours ago and six hours in the future. So at 9am when the script runs, an upcoming 2pm train could be listed, and a 7am train could still be on the board if it didn't leave on time.
I wrote a function that takes two parameters -- the hour to be evaluated, and the current system hour to base the "guess" on (I realize I could have the function get the time itself, but I was trying to write a unit test that failed horribly, that's why I did that). I'd post it here but it doesn't really work, and I'd like to start fresh with some guidance or tips from you fine folks.
Can anyone help me out? What a good way to approach this?