Skip to content

Commit 12a575d

Browse files
Improve GTFS chapter
1 parent b10b2b0 commit 12a575d

File tree

1 file changed

+21
-34
lines changed

1 file changed

+21
-34
lines changed

docs/GTFS.xml

+21-34
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@
2525
<para><varname>calendar_dates.txt</varname> define exceptions to the default service patterns defined in <varname>calendar.txt</varname>. There are two types of exceptions: 1 means that the service has been added for the specified date, and 2 means that the service has been removed for the specified date.</para>
2626
</listitem>
2727

28-
<listitem>
29-
<para><varname>route_types.txt</varname> contains transportation types used on routes, such as bus, metro, tramway, etc.</para>
30-
</listitem>
31-
3228
<listitem>
3329
<para><varname>routes.txt</varname> contains transit routes. A route is a group of trips that are displayed to riders as a single service.</para>
3430
</listitem>
@@ -85,7 +81,6 @@ CREATE TABLE calendar (
8581
end_date date NOT NULL,
8682
CONSTRAINT calendar_pkey PRIMARY KEY (service_id)
8783
);
88-
CREATE INDEX calendar_service_id ON calendar (service_id);
8984

9085
CREATE TABLE exception_types (
9186
exception_type int PRIMARY KEY,
@@ -97,19 +92,14 @@ CREATE TABLE calendar_dates (
9792
date date NOT NULL,
9893
exception_type int REFERENCES exception_types(exception_type)
9994
);
100-
CREATE INDEX calendar_dates_dateidx ON calendar_dates (date);
101-
102-
CREATE TABLE route_types (
103-
route_type int PRIMARY KEY,
104-
description text
105-
);
95+
CREATE INDEX calendar_dates_date_idx ON calendar_dates (date);
10696

10797
CREATE TABLE routes (
10898
route_id text,
10999
route_short_name text DEFAULT '',
110100
route_long_name text DEFAULT '',
111101
route_desc text DEFAULT '',
112-
route_type int REFERENCES route_types(route_type),
102+
route_type int,
113103
route_url text,
114104
route_color text,
115105
route_text_color text,
@@ -122,15 +112,14 @@ CREATE TABLE shapes (
122112
shape_pt_lon double precision NOT NULL,
123113
shape_pt_sequence int NOT NULL
124114
);
125-
CREATE INDEX shapes_shape_key ON shapes (shape_id);
115+
CREATE INDEX shapes_shape_id_idx ON shapes (shape_id);
126116

127117
-- Create a table to store the shape geometries
128118
CREATE TABLE shape_geoms (
129119
shape_id text NOT NULL,
130-
shape_geom geometry('LINESTRING', 4326),
120+
shape_geom geometry('LINESTRING', 3857),
131121
CONSTRAINT shape_geom_pkey PRIMARY KEY (shape_id)
132122
);
133-
CREATE INDEX shape_geoms_key ON shapes (shape_id);
134123

135124
CREATE TABLE location_types (
136125
location_type int PRIMARY KEY,
@@ -146,9 +135,9 @@ CREATE TABLE stops (
146135
stop_lon double precision,
147136
zone_id text,
148137
stop_url text,
149-
location_type integer REFERENCES location_types(location_type),
138+
location_type integer REFERENCES location_types(location_type),
150139
parent_station integer,
151-
stop_geom geometry('POINT', 4326),
140+
stop_geom geometry('POINT', 3857),
152141
platform_code text DEFAULT NULL,
153142
CONSTRAINT stops_pkey PRIMARY KEY (stop_id)
154143
);
@@ -160,7 +149,7 @@ CREATE TABLE pickup_dropoff_types (
160149

161150
CREATE TABLE stop_times (
162151
trip_id text NOT NULL,
163-
-- Check that casting to time interval works.
152+
-- Check that casting to time interval works
164153
arrival_time interval CHECK (arrival_time::interval = arrival_time::interval),
165154
departure_time interval CHECK (departure_time::interval = departure_time::interval),
166155
stop_id text,
@@ -183,7 +172,6 @@ CREATE TABLE trips (
183172
shape_id text,
184173
CONSTRAINT trips_pkey PRIMARY KEY (trip_id)
185174
);
186-
CREATE INDEX trips_trip_id ON trips (trip_id);
187175

188176
INSERT INTO exception_types (exception_type, description) VALUES
189177
(1, 'service has been added'),
@@ -218,8 +206,6 @@ COPY trips(route_id,service_id,trip_id,trip_headsign,direction_id,block_id,shape
218206
FROM '/home/gtfs_tutorial/trips.txt' DELIMITER ',' CSV HEADER;
219207
COPY agency(agency_id,agency_name,agency_url,agency_timezone,agency_lang,agency_phone)
220208
FROM '/home/gtfs_tutorial/agency.txt' DELIMITER ',' CSV HEADER;
221-
COPY route_types(route_type,description)
222-
FROM '/home/gtfs_tutorial/route_types.txt' DELIMITER ',' CSV HEADER;
223209
COPY routes(route_id,route_short_name,route_long_name,route_desc,route_type,route_url,
224210
route_color,route_text_color) FROM '/home/gtfs_tutorial/routes.txt' DELIMITER ','
225211
CSV HEADER;
@@ -233,12 +219,12 @@ CSV HEADER;
233219
<programlisting language="sql">
234220
INSERT INTO shape_geoms
235221
SELECT shape_id, ST_MakeLine(array_agg(
236-
ST_SetSRID(ST_MakePoint(shape_pt_lon, shape_pt_lat),4326) ORDER BY shape_pt_sequence))
222+
ST_Transform(ST_Point(shape_pt_lon, shape_pt_lat, 4326), 3857) ORDER BY shape_pt_sequence))
237223
FROM shapes
238224
GROUP BY shape_id;
239225

240226
UPDATE stops
241-
SET stop_geom = ST_SetSRID(ST_MakePoint(stop_lon, stop_lat),4326);
227+
SET stop_geom = ST_Transform(ST_Point(stop_lon, stop_lat, 4326), 3857);
242228
</programlisting>
243229
The visualization of the routes and stops in QGIS is given in <xref linkend="stib" />. In the figure, red lines correspond to the trajectories of vehicles, while orange points correspond to the location of stops.
244230
</para>
@@ -253,20 +239,20 @@ SET stop_geom = ST_SetSRID(ST_MakePoint(stop_lon, stop_lat),4326);
253239
<sect1>
254240
<title>Transforming GTFS Data for MobilityDB</title>
255241
<para>
256-
We start by creating a table that contains couples of <varname>service_id</varname> and <varname>date</varname> defining the dates at which a service is provided.
242+
We start by creating a table that contains couples of <varname>service_id</varname> and <varname>date</varname> defining the dates at which a service is provided.
257243
<programlisting language="sql">
258244
DROP TABLE IF EXISTS service_dates;
259245
CREATE TABLE service_dates AS (
260246
SELECT service_id, date_trunc('day', d)::date AS date
261247
FROM calendar c, generate_series(start_date, end_date, '1 day'::interval) AS d
262248
WHERE (
263-
(monday = 1 AND extract(isodow FROM d) = 1) OR
264-
(tuesday = 1 AND extract(isodow FROM d) = 2) OR
265-
(wednesday = 1 AND extract(isodow FROM d) = 3) OR
266-
(thursday = 1 AND extract(isodow FROM d) = 4) OR
267-
(friday = 1 AND extract(isodow FROM d) = 5) OR
268-
(saturday = 1 AND extract(isodow FROM d) = 6) OR
269-
(sunday = 1 AND extract(isodow FROM d) = 7)
249+
(monday = 1 AND extract(isodow FROM d) = 1) OR
250+
(tuesday = 1 AND extract(isodow FROM d) = 2) OR
251+
(wednesday = 1 AND extract(isodow FROM d) = 3) OR
252+
(thursday = 1 AND extract(isodow FROM d) = 4) OR
253+
(friday = 1 AND extract(isodow FROM d) = 5) OR
254+
(saturday = 1 AND extract(isodow FROM d) = 6) OR
255+
(sunday = 1 AND extract(isodow FROM d) = 7)
270256
)
271257
EXCEPT
272258
SELECT service_id, date
@@ -304,8 +290,8 @@ FROM trips t JOIN stop_times s ON t.trip_id = s.trip_id;
304290

305291
UPDATE trip_stops t
306292
SET perc = CASE
307-
WHEN stop_sequence = 1 then 0.0
308-
WHEN stop_sequence = no_stops then 1.0
293+
WHEN stop_sequence = 1 THEN 0.0
294+
WHEN stop_sequence = no_stops THEN 1.0
309295
ELSE ST_LineLocatePoint(g.shape_geom, s.stop_geom)
310296
END
311297
FROM shape_geoms g, stops s
@@ -441,7 +427,8 @@ CREATE TABLE trips_mdb (
441427
);
442428

443429
INSERT INTO trips_mdb(trip_id, service_id, route_id, date, trip)
444-
SELECT trip_id, service_id, route_id, date, tgeompoint_seq(array_agg(tgeompoint_inst(point_geom, t) ORDER BY T))
430+
SELECT trip_id, service_id, route_id, date, tgeompointSeq(array_agg(
431+
tgeompoint(point_geom, t) ORDER BY T))
445432
FROM trips_input
446433
GROUP BY trip_id, service_id, route_id, date;
447434

0 commit comments

Comments
 (0)