From 6bc752094abc9fe6fc26fe7f6e7cbe278fb60bd7 Mon Sep 17 00:00:00 2001 From: Quarto GHA Workflow Runner Date: Thu, 27 Jun 2024 11:45:04 +0000 Subject: [PATCH] Built site for gh-pages --- .nojekyll | 2 +- docs/tutorials/index.html | 240 +++++++++++++++++++------------------- search.json | 14 +-- sitemap.xml | 30 ++--- 4 files changed, 143 insertions(+), 143 deletions(-) diff --git a/.nojekyll b/.nojekyll index c21527e..b9a4fbe 100644 --- a/.nojekyll +++ b/.nojekyll @@ -1 +1 @@ -c95898e9 \ No newline at end of file +ed30e594 \ No newline at end of file diff --git a/docs/tutorials/index.html b/docs/tutorials/index.html index a5dae07..d88cb36 100644 --- a/docs/tutorials/index.html +++ b/docs/tutorials/index.html @@ -291,7 +291,7 @@

Requirements

Working With GTFS

Let’s import the necessary dependencies:

-
+
import datetime
 import os
 import pathlib
@@ -313,7 +313,7 @@ 

Working With GTFS

You may wish to manually download at least one GTFS feed and store somewhere in your file system. Alternatively you may programmatically download the data, as in the solution here.

-
+
BUS_URL = "<INSERT_SOME_URL_TO_BUS_GTFS>"
 RAIL_URL = "<INSERT_SOME_URL_TO_RAIL_GTFS>"
 
@@ -325,7 +325,7 @@ 

Working With GTFS

-
+
BUS_URL = "https://tsvc.pilote4.cityway.fr/api/Export/v1/GetExportedDataFile?ExportFormat=Gtfs&OperatorCode=RTM"
 RAIL_URL = "https://eu.ftp.opendatasoft.com/sncf/gtfs/export-intercites-gtfs-last.zip"
 # using tmp for tutorial but not necessary
@@ -337,13 +337,13 @@ 

Working With GTFS

  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                  Dload  Upload   Total   Spent    Left  Speed
-  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0  0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0  4 4611k    4  194k    0     0    98k      0  0:00:46  0:00:01  0:00:45   98k100 4611k  100 4611k    0     0  1749k      0  0:00:02  0:00:02 --:--:-- 1749k
+  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0  0 4611k    0 35879    0     0  29721      0  0:02:38  0:00:01  0:02:37 29725100 4611k  100 4611k    0     0  2365k      0  0:00:01  0:00:01 --:--:-- 2365k
   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                  Dload  Upload   Total   Spent    Left  Speed
-  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0100 85958  100 85958    0     0   107k      0 --:--:-- --:--:-- --:--:--  107k
+ 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0100 85958 100 85958 0 0 154k 0 --:--:-- --:--:-- --:--:-- 154k
-
CompletedProcess(args=['curl', 'https://eu.ftp.opendatasoft.com/sncf/gtfs/export-intercites-gtfs-last.zip', '-o', '/tmp/tmpkstcer2v/intercity_rail_gtfs.zip'], returncode=0)
+
CompletedProcess(args=['curl', 'https://eu.ftp.opendatasoft.com/sncf/gtfs/export-intercites-gtfs-last.zip', '-o', '/tmp/tmp306adada/intercity_rail_gtfs.zip'], returncode=0)
@@ -359,14 +359,14 @@

Working With GTFS

Instantiate a feed object by pointing the MultiGtfsInstance class at a path to the GTFS feed(s) that you have downloaded. Once you have successfully instantiated feed, inspect the correct attribute in order to confirm the number of separate feeds instances contained within it.

-
+
gtfs_pth = "<INSERT_PATH_TO_GTFS>"
 feed = MultiGtfsInstance(path=gtfs_pth)
 print(len(feed.<INSERT_CORRECT_ATTRIBUTE>))
-
+
gtfs_pth = pathlib.Path(tmp_path.name) # need to use pathlib for tmp_path
 feed = MultiGtfsInstance(path=gtfs_pth)
 print(f"There are {len(feed.instances)} feed instances")
@@ -385,14 +385,14 @@

Working With GTFS

By accessing the appropriate attribute, print out the first 5 stops of the first instance within the feed object.

-
+
feed.<INSERT_CORRECT_ATTR>[0].feed.stops.<INSERT_CORRECT_METHOD>(5)

These records will match the contents of the stops.txt file within the feed that you downloaded.


-
+
feed.instances[0].feed.stops.head(5)
@@ -487,7 +487,7 @@

Working With GTFS

Checking Validity

Transport routing operations require services that run upon a specified date. It is a useful sanity check to confirm that the dates that you expect to perform routing on exist within the GTFS feed. To do this, we can use the get_dates() method to print out the first and last date in the available date range, as below.

-
+
s0, e0 = feed.get_dates()
 print(f"Feed starts at: {s0}\nFeed ends at: {e0}")
@@ -506,7 +506,7 @@

Checking Validity

-
+
feed.get_dates(return_range=False)
['20240626',
@@ -619,10 +619,10 @@ 

Checking Validity

-
+
feed.is_valid()
-
  0%|          | 0/2 [00:00<?, ?it/s]Validating GTFS from path /tmp/tmpkstcer2v/intercity_rail_gtfs.zip:   0%|          | 0/2 [00:00<?, ?it/s]Validating GTFS from path /tmp/tmpkstcer2v/intercity_rail_gtfs.zip:  50%|█████     | 1/2 [00:00<00:00,  5.10it/s]Validating GTFS from path /tmp/tmpkstcer2v/rtm_gtfs.zip:  50%|█████     | 1/2 [00:00<00:00,  5.10it/s]           Validating GTFS from path /tmp/tmpkstcer2v/rtm_gtfs.zip: 100%|██████████| 2/2 [00:03<00:00,  1.96s/it]Validating GTFS from path /tmp/tmpkstcer2v/rtm_gtfs.zip: 100%|██████████| 2/2 [00:03<00:00,  1.70s/it]
+
  0%|          | 0/2 [00:00<?, ?it/s]Validating GTFS from path /tmp/tmp306adada/intercity_rail_gtfs.zip:   0%|          | 0/2 [00:00<?, ?it/s]Validating GTFS from path /tmp/tmp306adada/intercity_rail_gtfs.zip:  50%|█████     | 1/2 [00:00<00:00,  5.43it/s]Validating GTFS from path /tmp/tmp306adada/rtm_gtfs.zip:  50%|█████     | 1/2 [00:00<00:00,  5.43it/s]           Validating GTFS from path /tmp/tmp306adada/rtm_gtfs.zip: 100%|██████████| 2/2 [00:03<00:00,  1.96s/it]Validating GTFS from path /tmp/tmp306adada/rtm_gtfs.zip: 100%|██████████| 2/2 [00:03<00:00,  1.69s/it]
@@ -646,7 +646,7 @@

Checking Validity

Unrecognized column feed_id feed_info [] -/tmp/tmpkstcer2v/intercity_rail_gtfs.zip +/tmp/tmp306adada/intercity_rail_gtfs.zip 1 @@ -654,7 +654,7 @@

Checking Validity

Unrecognized column conv_rev feed_info [] -/tmp/tmpkstcer2v/intercity_rail_gtfs.zip +/tmp/tmp306adada/intercity_rail_gtfs.zip 2 @@ -662,7 +662,7 @@

Checking Validity

Unrecognized column plan_rev feed_info [] -/tmp/tmpkstcer2v/intercity_rail_gtfs.zip +/tmp/tmp306adada/intercity_rail_gtfs.zip 3 @@ -670,7 +670,7 @@

Checking Validity

Repeated pair (trip_id, departure_time) stop_times [236, 239, 241, 243, 245, 248, 251, 253, 254, ... -/tmp/tmpkstcer2v/rtm_gtfs.zip +/tmp/tmp306adada/rtm_gtfs.zip 4 @@ -678,7 +678,7 @@

Checking Validity

Stop has no stop times stops [2135] -/tmp/tmpkstcer2v/rtm_gtfs.zip +/tmp/tmp306adada/rtm_gtfs.zip @@ -704,12 +704,12 @@

Viz Stops

Inspect the MultiGtfsInstance api reference for the appropriate method.

-
+
feed.viz_...()
-
+
feed.viz_stops()
Make this Notebook Trusted to load map: File -> Trust Notebook
@@ -1051,10 +1051,10 @@

By Bounding Box

Pass the BBOX list in [xmin, ymin, xmax, ymax] order to the filter_to_bbox() method.

-
+
feed.filter_to_bbox(BBOX)
-
  0%|          | 0/2 [00:00<?, ?it/s]Filtering GTFS from path /tmp/tmpkstcer2v/intercity_rail_gtfs.zip:   0%|          | 0/2 [00:00<?, ?it/s]Filtering GTFS from path /tmp/tmpkstcer2v/rtm_gtfs.zip:   0%|          | 0/2 [00:00<?, ?it/s]           Filtering GTFS from path /tmp/tmpkstcer2v/rtm_gtfs.zip: 100%|██████████| 2/2 [00:00<00:00,  7.14it/s]Filtering GTFS from path /tmp/tmpkstcer2v/rtm_gtfs.zip: 100%|██████████| 2/2 [00:00<00:00,  7.12it/s]
+
  0%|          | 0/2 [00:00<?, ?it/s]Filtering GTFS from path /tmp/tmp306adada/intercity_rail_gtfs.zip:   0%|          | 0/2 [00:00<?, ?it/s]Filtering GTFS from path /tmp/tmp306adada/rtm_gtfs.zip:   0%|          | 0/2 [00:00<?, ?it/s]           Filtering GTFS from path /tmp/tmp306adada/rtm_gtfs.zip: 100%|██████████| 2/2 [00:00<00:00,  6.72it/s]Filtering GTFS from path /tmp/tmp306adada/rtm_gtfs.zip: 100%|██████████| 2/2 [00:00<00:00,  6.70it/s]
@@ -1062,7 +1062,7 @@

By Bounding Box

Notice that a progress bar confirms the number of successful filter operations performed depending on the number of separate GTFS zip files passed to MultiGtfsInstance.

Below I plot the filtered feed stop locations in relation to the bounding box used to restrict the feed’s extent.

-
+
imap = feed.viz_stops()
 poly_gdf.explore(m=imap)
@@ -1093,7 +1093,7 @@

By Bounding Box