You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/GTFS.xml
+21-34
Original file line number
Diff line number
Diff line change
@@ -25,10 +25,6 @@
25
25
<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>
26
26
</listitem>
27
27
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
-
32
28
<listitem>
33
29
<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>
34
30
</listitem>
@@ -85,7 +81,6 @@ CREATE TABLE calendar (
85
81
end_date date NOT NULL,
86
82
CONSTRAINT calendar_pkey PRIMARY KEY (service_id)
87
83
);
88
-
CREATE INDEX calendar_service_id ON calendar (service_id);
89
84
90
85
CREATE TABLE exception_types (
91
86
exception_type int PRIMARY KEY,
@@ -97,19 +92,14 @@ CREATE TABLE calendar_dates (
97
92
date date NOT NULL,
98
93
exception_type int REFERENCES exception_types(exception_type)
99
94
);
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);
106
96
107
97
CREATE TABLE routes (
108
98
route_id text,
109
99
route_short_name text DEFAULT '',
110
100
route_long_name text DEFAULT '',
111
101
route_desc text DEFAULT '',
112
-
route_type int REFERENCES route_types(route_type),
102
+
route_type int,
113
103
route_url text,
114
104
route_color text,
115
105
route_text_color text,
@@ -122,15 +112,14 @@ CREATE TABLE shapes (
122
112
shape_pt_lon double precision NOT NULL,
123
113
shape_pt_sequence int NOT NULL
124
114
);
125
-
CREATE INDEX shapes_shape_key ON shapes (shape_id);
115
+
CREATE INDEX shapes_shape_id_idx ON shapes (shape_id);
126
116
127
117
-- Create a table to store the shape geometries
128
118
CREATE TABLE shape_geoms (
129
119
shape_id text NOT NULL,
130
-
shape_geom geometry('LINESTRING', 4326),
120
+
shape_geom geometry('LINESTRING', 3857),
131
121
CONSTRAINT shape_geom_pkey PRIMARY KEY (shape_id)
132
122
);
133
-
CREATE INDEX shape_geoms_key ON shapes (shape_id);
route_color,route_text_color) FROM '/home/gtfs_tutorial/routes.txt' DELIMITER ','
225
211
CSV HEADER;
@@ -233,12 +219,12 @@ CSV HEADER;
233
219
<programlistinglanguage="sql">
234
220
INSERT INTO shape_geoms
235
221
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))
237
223
FROM shapes
238
224
GROUP BY shape_id;
239
225
240
226
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);
242
228
</programlisting>
243
229
The visualization of the routes and stops in QGIS is given in <xreflinkend="stib" />. In the figure, red lines correspond to the trajectories of vehicles, while orange points correspond to the location of stops.
244
230
</para>
@@ -253,20 +239,20 @@ SET stop_geom = ST_SetSRID(ST_MakePoint(stop_lon, stop_lat),4326);
253
239
<sect1>
254
240
<title>Transforming GTFS Data for MobilityDB</title>
255
241
<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.
257
243
<programlistinglanguage="sql">
258
244
DROP TABLE IF EXISTS service_dates;
259
245
CREATE TABLE service_dates AS (
260
246
SELECT service_id, date_trunc('day', d)::date AS date
261
247
FROM calendar c, generate_series(start_date, end_date, '1 day'::interval) AS d
262
248
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)
270
256
)
271
257
EXCEPT
272
258
SELECT service_id, date
@@ -304,8 +290,8 @@ FROM trips t JOIN stop_times s ON t.trip_id = s.trip_id;
0 commit comments