--- a/labs/myway_timeliness_calculate.php +++ b/labs/myway_timeliness_calculate.php @@ -1,1 +1,131 @@ +prepare($query); +$query->execute(); +if (!$query) { + databaseError($conn->errorInfo()); + return Array(); +} +$uncalcdObservations = $query->fetchAll(); +//Display count +echo "

" . sizeof($uncalcdObservations) . " observations not yet processed

"; +//foreach observation not in delta +foreach ($uncalcdObservations as $obsv) { + //var_dump($obsv); + echo "

Observation {$obsv['observation_id']}:

+{$obsv['myway_stop']} @ {$obsv['time']} on {$obsv['myway_route']}
"; + if ($obsv["stop_code"] == "") { + echo "error, stop '{$obsv['myway_stop']}' unknown"; + continue; + } + if ($obsv["route_full_name"] == "") { + echo "error, route '{$obsv['myway_route']}' unknown"; + continue; + } + // :convert timestamp into time of day and date + $time = date("H:i:s", strtotime($obsv['time'])); + $date = date("c", strtotime($obsv['time'])); + $timing_period = service_period(strtotime($date)); + $potentialStops = getStopsByStopCode($obsv["stop_code"], $obsv["stop_street"]); + //:get myway_stops records + //:search by starts with stopcode and starts with street if street is not null + //no result, skip and display error + if (sizeof($potentialStops) < 1) { + echo "error, potential stops for stopcode {$obsv["stop_code"]} street {$obsv["stop_street"]} unknown"; + continue; + } + //print out stops + echo "Matched stops: "; + foreach ($potentialStops as $potentialStop) echo $potentialStop['stop_code'] . " "; + echo "
"; + //:get myway_route record + //no result, skip and display error + //print out route + $potentialRoute = getRouteByFullName($obsv["route_full_name"]); + if ($potentialRoute["route_short_name"] == "") { + echo "error, route '{$obsv["route_full_name"]}' unknown"; + continue; + } + echo "Matched route: {$potentialRoute['route_short_name']}{$potentialRoute['route_long_name']}
"; + $timeDeltas = Array(); + foreach ($potentialStops as $potentialStop) { + $stopRoutes = getStopRoutes($potentialStop['stop_id'], $timing_period); + $foundRoute = Array(); + foreach ($stopRoutes as $stopRoute) { + //Check if this route stops at each stop + if ($stopRoute['route_short_name'] . $stopRoute['route_long_name'] == $obsv["route_full_name"]) { + echo "Matching route found at {$potentialStop['stop_code']}
"; + $foundRoute = $stopRoute; + //if does get tripstoptimes for this route + $trips = getStopTrips($potentialStop['stop_id'], $timing_period, $time); + foreach ($trips as $trip) { + //echo $trip['route_id']." ".$stopRoute['route_id'].";"; + if ($trip['route_id'] == $stopRoute['route_id']) { + $timedTrip = getTimeInterpolatedTripAtStop($trip['trip_id'], $trip['stop_sequence']); + $actual_time = strtotime($time); + $trip_time = strtotime($timedTrip['arrival_time']); + $timeDiff = $actual_time - $trip_time; + //work out time delta, put into array with index of delta + $timeDeltas[] = Array( + "timeDiff" => $timeDiff, + "stop_code" => $potentialStop['stop_code'] + ); + echo "Found trip at {$timedTrip['arrival_time']}, difference of " . round($timeDiff / 60, 2) . " minutes
"; + } + } + break; // because have found route + + } + } + if (sizeof($foundRoute) < 1) { + //print out that stops/does not stop + echo "No matching routes found at {$potentialStop['stop_code']}
"; + } + } + // lowest delta is recorded delta + usort($timeDeltas, "abssort"); + $lowestDelta = $timeDeltas[0]["timeDiff"]; + if (sizeof($timeDeltas) != 0) { + echo "Lowest difference of " . round($lowestDelta / 60, 2) . " minutes will be recorded for this observation
"; + $observation_id = $obsv['observation_id']; + $route_full_name = $obsv['route_full_name']; + $myway_route = $obsv['myway_stop']; + $stop_code = $timeDeltas[0]["stop_code"]; + $stmt = $conn->prepare("insert into myway_timingdeltas (observation_id, route_full_name, myway_route, stop_code, timing_delta, time, date, timing_period) + values (:observation_id, :route_full_name, :myway_route, :stop_code, :timing_delta, :time, :date, :timing_period)"); + $stmt->bindParam(':observation_id', $observation_id); + $stmt->bindParam(':route_full_name', $route_full_name); + $stmt->bindParam(':myway_route', $myway_route); + $stmt->bindParam(':stop_code', $stop_code); + $stmt->bindParam(':timing_delta', $lowestDelta); + $stmt->bindParam(':time', $time); + $stmt->bindParam(':date', $date); + $stmt->bindParam(':timing_period', $timing_period); + // insert a record + $stmt->execute(); + if ($stmt->rowCount() > 0) { + echo "Recorded.
"; + } + var_dump($conn->errorInfo()); + } + flush(); +}