41 lines
1.9 KiB
Bash
Executable File
41 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Author: Macgregor
|
|
# Liscense: GPLv3
|
|
#
|
|
#trip_id,arrival_time,departure_time,stop_id,stop_sequence -- FOR MUMBAI
|
|
|
|
if [ ${#} -eq 2 ] ; then
|
|
FILE_IN_STOP_TIMES="${1}"
|
|
FILE_OUT_STOP_SEQ="${2}"
|
|
|
|
#print "insert into stops_on_trip (_tripID, _stopID, _stopSeq, _stopDept, _stopDeptOnNextDay, _stopArri, _stopArriOnNextDay) values (" sq trip_id sq "," sq stop_id sq "," stop_seq "," sq dept_time sq "," dept_time_next_day "," sq arri_time sq "," arri_time_next_day ");"
|
|
|
|
#print sq trip_id sq "," sq stop_id sq "," stop_seq "," sq dept_time sq "," dept_time_next_day "," sq arri_time sq "," arri_time_next_day;
|
|
|
|
echo "delete from stops_on_trip;" >"${FILE_OUT_STOP_SEQ}"
|
|
cat "${FILE_IN_STOP_TIMES}" | grep -v "stop_id" | gawk -v sq="'" -F ',' '{
|
|
pickup_type = $7; drop_off_type = $8;
|
|
if( ( ( pickup_type == "" ) &&( drop_off_type == "" ) ) || ( ( pickup_type == 0 ) && ( drop_off_type == 0 ) ) ) {
|
|
trip_id=$1; arri_time=$2; dept_time=$3; stop_id=$4; stop_seq=$5;
|
|
|
|
if( arri_time == "" )
|
|
arri_time = "00:00:00";
|
|
if( dept_time == "" )
|
|
dept_time = "00:00:00";
|
|
|
|
stop_seq = stop_seq;
|
|
|
|
split(dept_time, parts_dept_time, ":"); split(arri_time, parts_arri_time, ":");
|
|
|
|
if( parts_dept_time[1] >= 24 )
|
|
{ dept_time_next_day = "true"; dept_time = (parts_dept_time[1] - 24) ":" parts_dept_time[2] ":" parts_dept_time[3] }
|
|
else { dept_time_next_day = "false"; }
|
|
if( parts_arri_time[1] >= 24 )
|
|
{ arri_time_next_day = "true"; arri_time = (parts_arri_time[1] - 24) ":" parts_arri_time[2] ":" parts_arri_time[3] }
|
|
else { arri_time_next_day = "false"; }
|
|
|
|
print "insert into stops_on_trip (_tripID, _stopID, _stopSeq, _stopDept, _stopDeptOnNextDay, _stopArri, _stopArriOnNextDay) values (" sq trip_id sq "," sq stop_id sq "," stop_seq "," sq dept_time sq "," dept_time_next_day "," sq arri_time sq "," arri_time_next_day ");"
|
|
}
|
|
}' >>"${FILE_OUT_STOP_SEQ}"
|
|
fi |