Code standards, fix base path at least for php includes and use single quotes more often
[busui.git] / updatedb.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
 
/*
 *    Copyright 2010,2011 Alexander Sadleir 
 
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
 
  http://www.apache.org/licenses/LICENSE-2.0
 
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
 */
if (php_sapi_name() == "cli") {
    include ('include/common.inc.php');
    $pdconn = new PDO("pgsql:dbname=transitdata;user=postgres;password=snmc;host=localhost");
 
    /*
      delete from agency;
      delete from calendar;
      delete from calendar_dates;
      delete from routes;
      delete from shapes;
      delete from stop_times;
      delete from stops;
      delete from trips;
     */
 
// Unzip cbrfeed.zip, import all csv files to database
    $unzip = false;
    $zip = zip_open(dirname(__FILE__) . "/cbrfeed.zip");
    $tmpdir = "c:/tmp/cbrfeed/";
    mkdir($tmpdir);
    if ($unzip) {
        if (is_resource($zip)) {
            while ($zip_entry = zip_read($zip)) {
                $fp = fopen($tmpdir . zip_entry_name($zip_entry), "w");
                if (zip_entry_open($zip, $zip_entry, "r")) {
                    echo "Extracting " . zip_entry_name($zip_entry) . PHP_EOL;
                    $buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
                    fwrite($fp, "$buf");
                    zip_entry_close($zip_entry);
                    fclose($fp);
                }
            }
            zip_close($zip);
        }
    }
 
    foreach (scandir($tmpdir) as $file) {
        $headers = Array();
        if (!strpos($file, ".txt") === false) {
            $fieldseparator = ",";
            $lineseparator = PHP_EOL;
            $tablename = str_replace(".txt", "", $file);
            echo "Opening $file \n";
            $line = 0;
            $handle = fopen($tmpdir . $file, "r");
 
            $distance = 0;
            $lastshape = 0;
            $lastlat = 0;
            $lastlon = 0;
            $stmt = null;
            while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
                if ($line == 0) {
                    $headers = array_values($data);
                    if ($tablename == "stops") {
                        $headers[] = "position";
                    }
                    if ($tablename == "shapes") {
                        $headers[] = "shape_pt";
                    }
                    $query = "insert into $tablename (";
                    $valueCount = 0;
                    foreach ($headers as $value) {
                        $query.=($valueCount > 0 ? "," : "") . pg_escape_string($value);
                        $valueCount++;
                    }
                    $query.= ") values( ";
                    $valueCount = 0;
                    foreach ($data as $value) {
                        $query.=($valueCount > 0 ? "," : "") . '?';
                        $valueCount++;
                    }
                    if ($tablename == "stops") {
                        $query.= ", ST_GeographyFromText(?));";
                    } else if ($tablename == "shapes") {
                        $query.= ", ST_GeographyFromText(?));";
                    } else {
                        $query.= ");";
                    }
 
                    echo $query;
                    $stmt = $pdconn->prepare($query);
                } else {
                    $values = array_values($data);
                    if ($tablename == "stops") {
                        // Coordinate values are out of range [-180 -90, 180 90]
                        $values[] = 'SRID=4326;POINT('.$values[5].' '.$values[4].')';
                    }
                    if ($tablename == "shapes") {
                        if ($data[0] != $lastshape) {
                            $distance = 0;
                            $lastshape = $data[0];
                        } else {
                            $distance += distance($lastlat, $lastlon, $data[1], $data[2]);
                        }
                        $lastlat = $data[1];
                        $lastlon = $data[2];
 
                        $values[4] = $distance;
                        $values[] = 'SRID=4326;POINT('.$values[2].' '.$values[1].')';
                    }
if (substr($values[1],0,2) == '24') $values[1] = "23:59:59";
if (substr($values[2],0,2) == '24') $values[2] = "23:59:59";
                    $stmt->execute($values);
                    $err = $pdconn->errorInfo();
                    if ($err[2] != "" && strpos($err[2], "duplicate key") === false) {
                        print_r($values);
                        print_r($err);
                        die("terminated import due to db error above");
                    }
                }
                $line++;
                if ($line % 10000 == 0)
                    echo "$line records... " . date('c') . PHP_EOL;
            }
            fclose($handle);
            $stmt->closeCursor();
            echo "Found a total of $line records in $file.\n";
        }
    }
}
?>