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
+44-59
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,
@@ -120,17 +110,17 @@ CREATE TABLE shapes (
120
110
shape_id text NOT NULL,
121
111
shape_pt_lat double precision NOT NULL,
122
112
shape_pt_lon double precision NOT NULL,
123
-
shape_pt_sequence int NOT NULL
113
+
shape_pt_sequence int NOT NULL,
114
+
shape_dist_traveled float NOT NULL
124
115
);
125
-
CREATE INDEX shapes_shape_key ON shapes (shape_id);
116
+
CREATE INDEX shapes_shape_id_idx ON shapes (shape_id);
126
117
127
118
-- Create a table to store the shape geometries
128
119
CREATE TABLE shape_geoms (
129
120
shape_id text NOT NULL,
130
-
shape_geom geometry('LINESTRING', 4326),
121
+
shape_geom geometry('LINESTRING', 3857),
131
122
CONSTRAINT shape_geom_pkey PRIMARY KEY (shape_id)
132
123
);
133
-
CREATE INDEX shape_geoms_key ON shapes (shape_id);
route_color,route_text_color) FROM '/home/gtfs_tutorial/routes.txt' DELIMITER ','
225
212
CSV HEADER;
@@ -233,12 +220,12 @@ CSV HEADER;
233
220
<programlistinglanguage="sql">
234
221
INSERT INTO shape_geoms
235
222
SELECT shape_id, ST_MakeLine(array_agg(
236
-
ST_SetSRID(ST_MakePoint(shape_pt_lon, shape_pt_lat),4326) ORDER BY shape_pt_sequence))
223
+
ST_Transform(ST_Point(shape_pt_lon, shape_pt_lat, 4326), 3857) ORDER BY shape_pt_sequence))
237
224
FROM shapes
238
225
GROUP BY shape_id;
239
226
240
227
UPDATE stops
241
-
SET stop_geom = ST_SetSRID(ST_MakePoint(stop_lon, stop_lat),4326);
228
+
SET stop_geom = ST_Transform(ST_Point(stop_lon, stop_lat, 4326), 3857);
242
229
</programlisting>
243
230
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
231
</para>
@@ -253,21 +240,21 @@ SET stop_geom = ST_SetSRID(ST_MakePoint(stop_lon, stop_lat),4326);
253
240
<sect1>
254
241
<title>Transforming GTFS Data for MobilityDB</title>
255
242
<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.
243
+
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
244
<programlistinglanguage="sql">
258
245
DROP TABLE IF EXISTS service_dates;
259
246
CREATE TABLE service_dates AS (
260
247
SELECT service_id, date_trunc('day', d)::date AS date
261
248
FROM calendar c, generate_series(start_date, end_date, '1 day'::interval) AS d
262
249
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)
270
-
)
250
+
(monday = 1 AND extract(isodow FROM d) = 1) OR
251
+
(tuesday = 1 AND extract(isodow FROM d) = 2) OR
252
+
(wednesday = 1 AND extract(isodow FROM d) = 3) OR
253
+
(thursday = 1 AND extract(isodow FROM d) = 4) OR
254
+
(friday = 1 AND extract(isodow FROM d) = 5) OR
255
+
(saturday = 1 AND extract(isodow FROM d) = 6) OR
256
+
(sunday = 1 AND extract(isodow FROM d) = 7)
257
+
)
271
258
EXCEPT
272
259
SELECT service_id, date
273
260
FROM calendar_dates WHERE exception_type = 2
@@ -304,8 +291,8 @@ FROM trips t JOIN stop_times s ON t.trip_id = s.trip_id;
The geometry of a segment is a linestring containing multiple points. From the previous table we know at which time the trip arrived at the first point and at the last point of the segment. To determine at which time the trip arrived at the intermediate points of the segments, we create a table <varname>trip_points</varname> that contains all the points composing the geometry of a segment.
349
+
The geometry of a segment is a linestring containing multiple points. From table <varname>trip_stops</varname> we know at which time the trip arrived at the first point and at the last point of the segment. To determine at which time the trip arrived at the intermediate points of the segments, we create a table <varname>trip_points</varname> that contains all the points composing the geometry of a segment.
In the temporary table <varname>temp1</varname> we use the function <varname>ST_DumpPoints</varname> to obtain the points composing the geometry of a segment. Nevertheless, this table contains duplicate points, that is, the last point of a segment is equal to the first point of the next one. In the temporary table <varname>temp2</varname> we filter out the last point of a segment unless it is the last segment of the trip. In the temporary table <varname>temp3</varname> we compute in the attribute <varname>perc</varname> the relative position of a point within a trip segment with window functions. For this we use the function <varname>ST_MakeLine</varname> to construct the subsegment from the first point of the segment to the current one, determine the length of the subsegment with function <varname>ST_Length</varname> and divide this length by the overall segment length. Finally, in the outer query we use the computed percentage to determine the arrival time to that point.
@@ -441,14 +425,15 @@ CREATE TABLE trips_mdb (
441
425
);
442
426
443
427
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))
FROM trips_mdb t JOIN service_dates d ON t.service_id = d.service_id AND t.date != d.date;
452
437
</programlisting>
453
438
In the first <varname>INSERT</varname> statement we group the rows in the <varname>trips_input</varname> table by <varname>trip_id</varname> and <varname>date</varname> while keeping the <varname>route_id</varname> atribute, use the <varname>array_agg</varname> function to construct an array containing the temporal points composing the trip ordered by time, and compute the trip from this array using the function <varname>tgeompointseq</varname>. As explained above, table <varname>trips_input</varname> only contains the first date of a trip. In the second <varname>INSERT</varname> statement we add the trips for all the other dates with the function <varname>shift</varname>.
0 commit comments