gtfs2gmns


Namegtfs2gmns JSON
Version 0.2.0 PyPI version JSON
download
home_pagehttps://github.com/xyluo25/gtfs2gmns
SummaryA class-based instance designed for reading, converting, analyzing, and visualizing GTFS data
upload_time2024-03-02 21:55:58
maintainer
docs_urlNone
authorMr. Xiangyong Luo, Mrs. Fang Tang, Dr. Xuesong Simon Zhou
requires_python>=3.10
licenseMIT License
keywords gtfs gmns public transportation equity
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ## GTFS2GMNS

The open-source Python codes (GTFS2GMNS) is released to facilitate researchers and planners to construct the multi-modal transit networks easily from generic [General Transit Feed Specification (GTFS)](https://gtfs.org/) to the network modeling format in [General Modeling Network Specification (GMNS)](https://github.com/zephyr-data-specs/GMNS). The converted physical and service networks in GMNS format are more convenient for network modeling tasks such as transit network routing, traffic flow assignment, simulation and service network optimization.

Your comments will be valuable for code review and improvement. Please feel free to add your comments to our Google document of [GTFS2GMNS Users' Guide](https://docs.google.com/document/d/1-A2g4ZjJu-gzusEKcSoOXzr95S3tv7sj/edit?usp=sharing&ouid=112385243549486266715&rtpof=true&sd=true).

## Getting Started

### *Download GTFS Data*

On TransitFeed [homepage](https://transitfeeds.com/), users can browse and download official GTFS  feeds from around the world. Make sure that the following files are present, so that we can proceed.

* stop.txt
* route.txt
* trip.txt
* stop_times.txt
* agency.txt

GTFS2GMNS can handle the transit data from several agencies. Users need to configure different sub-files in the same directory. Under the `test/GTFS` folder, a subfolder `Pheonix` with its owm GTFS data is set up.

### *Convert GTFS Data into GMNS Format*

```python
if __name__ == '__main__':
    global period_start_time
    global period_end_time
    input_gtfs_path = 'GTFS'
    output_gmns_path = '.'
    time_period_id = 1
    time_period = '1200_1300'
    period_start_time, period_end_time = _hhmm_to_minutes(time_period)

    gtfs2gmns(input_gtfs_path, output_gmns_path)
```

The input parameter  `input_gtfs_path` is the path of GTFS data, and the parameter  `output_gmns_path` is the path of output GMNS files. Users can customize the parameter  `time_period`, such as 12:00 to 13:00.

The output files include node.csv and link.csv.

## Main Steps

### *Read GTFS data*

**Step 1.1: Read routes.txt**

- route_id, route_long_name, route_short_name, route_url, route_type

**Step 1.2: Read stop.txt**

- stop_id, stop_lat, stop_lon, direction, location_type, position, stop_code, stop_name, zone_id

**Step 1.3: Read trips.txt**

- trip_id, route_id, service_id, block_id, direction_id, shape_id, trip_type
- and create the directed_route_id by combining route_id and direction_id

**Step 1.4: Read stop_times.txt**

- trip_id, stop_id, arrival_time, deaprture_time, stop_sequence
- create directed_route_stop_id by combining directed_route_id and stop_id through the trip_id

  > Note: the function needs to skip this record if trip_id is not defined, and link the virtual stop id with corresponding physical stop id.
  >
- fetch the geometry of the direction_route_stop_id
- return the arrival_time for every stop

### *Building service network*

**Step 2.1 Create physical nodes**

- physical node is the original stop in standard GTFS

**Step 2.2 Create directed route stop vertexes**

- add route stop vertexes. the node_id of route stop nodes starts from 100001

  > Note: the route stop vertex the programing create nearby the corresponding physical node, to make some offset.
  >
- add entrance link from physical node to route stop node
- add exit link from route stop node to physical node. As they both connect to the physical nodes, the in-station transfer process can be also implemented

**Step 2.3 Create physical arcs**

- add physical links between each physical node pair of each trip

**Step 2.4 Create service arcs**

- add service links between each route stop pair of each trip

## Visualization

You can visualize generated networks using [NeXTA](https://github.com/xzhou99/NeXTA-GMNS) or [QGIS](https://qgis.org/).

## Quick Tutorial

### Introducing Functional Tools within GTFS2GMNS

GTFS2GMNS is a Python package that serves as a class-based instance, specifically designed for reading, converting, analyzing, and visualizing GTFS data. The converted physical and service networks in GMNS format offer enhanced convenience for a variety of networkAg modeling tasks, including transit network routing, traffic flow assignment, simulation, and service network optimization.

### Input for class GTFS2GMNS

- **gtfs_input_dir** :  str, the dir store GTFS data. **GTFS2GMNS is capable of reading multiple GTFS data sets.**
- **time_period**: str, the time period sprcified (for data selection), default is "07:00:00_08:00:00"
- **date_period**: list, user can specified exact data or dates for selection
- **gtfs_output_dir**: str, the output folder to save data. defalut is ""
- **isSaveToCSV**: bool, whether to save gmns node and link to local machine, default is True

### *Code Example*

#### Loading gtfs data

```python
from gtfs2gmns import GTFS2GMNS

if __name__ == "__main__":
    gtfs_input_dir = r"Your-Path-Folder-To-GTFS-Data"

    # Explain: GMNS2GMNS is capable of reading multiple GTFS data sets
    """
	--root folder
	    -- subfolder (GTFS data of agency 1)
	    -- subfolder (GTFS data of agency 2)
	    -- subfolder (GTFS data of agency 3)
	    -- ...
	then, assign gtfs_input_foler = root folder
    """

    time_period = "00:00:00_23:59:59"
    date_period = []

    gg = GTFS2GMNS(gtfs_input_dir, time_period, date_period, gtfs_output_dir="", isSaveToCSV=False)

```

#### Generate access line between zones to nodes

```python

import gtfs2gmns as gg

path_zone = "Path to zone.csv"    # please make sure you have zone_id, x_coord, y_coord in columns
path_node = "Path to node.csv"    # please make sure you have node_id, x_coord, y_coord in columns

radius = 100 # unit in meters
k_closest = 0 # if 0, generate all accessible links within radius. if 1, closest link within the radius...

access_links = gg.generate_access_links(path_zone, path_node, radius, k_closest)

access_links.to_csv("access_link.csv", index=False)

```

### Functions and Attributes


| func_type     | func_name                    | Python example | Input | Output    | Remark                                                        |
| :------------ | :--------------------------- | :------------- | ----- | --------- | ------------------------------------------------------------- |
| read-show     | agency                       | `gg.agency`    | NA    | DataFrame | This attribute load and return agency data from source folder |
|               | calendar                     | `gg.calendar`  |       |           |                                                               |
|               | calendar_dates               |                |       |           |                                                               |
|               | fare_attributes              |                |       |           |                                                               |
|               | fare_rules                   |                |       |           |                                                               |
|               | feed_info                    |                |       |           |                                                               |
|               | frequencies                  |                |       |           |                                                               |
|               | routes                       |                |       |           |                                                               |
|               | shapes                       |                |       |           |                                                               |
|               | stops                        |                |       |           |                                                               |
|               | stop_times                   |                |       |           |                                                               |
|               | trips                        |                |       |           |                                                               |
|               | transfers                    |                |       |           |                                                               |
|               | timepoints                   |                |       |           |                                                               |
|               | timepoint_times              |                |       |           |                                                               |
|               | trip_routes                  |                |       |           |                                                               |
|               | stops_freq                   |                |       |           |                                                               |
|               | routes_freq                  |                |       |           |                                                               |
|               | rute_segments                |                |       |           |                                                               |
|               | route_segment_speed          |                |       |           |                                                               |
|               | vis_stops_freq               |                |       |           |                                                               |
| analysis      | vis_routes_fres              |                |       |           |                                                               |
|               | vis_route_segment_speed      |                |       |           |                                                               |
|               | vis_route_segment_runtime    |                |       |           |                                                               |
|               | vis_route_stop_speed_heatmap |                |       |           |                                                               |
|               | vis_spacetime_trajectory     |                |       |           |                                                               |
|               | equity_alanysis              |                |       |           |                                                               |
|               | accessibility_analysis       |                |       |           |                                                               |
|               | load_gtfs                    |                |       |           |                                                               |
|               | gen_gmns_node_link           |                |       |           |                                                               |
|               |                              |                |       |           |                                                               |
|               |                              |                |       |           |                                                               |
| visualization |                              |                |       |           |                                                               |
|               |                              |                |       |           |                                                               |
|               |                              |                |       |           |                                                               |
|               |                              |                |       |           |                                                               |
|               |                              |                |       |           |                                                               |
|               |                              |                |       |           |                                                               |
|               |                              |                |       |           |                                                               |
|               |                              |                |       |           |                                                               |




## Upcoming Features

- [ ] Output service and trace files.
- [ ] Set the time period and add vdf_fftt and vdf_freq fields in link files.
- [ ] Add Visualization functions
  - [ ] Stops
  - [ ] Routes
  - [ ] ...

## Citing gtfs2gmns

If you use gtfs2gmns in your research please use the following BibTeX entry:

```
@misc{gtfs2gmns,
  author =       {Fang Tang, Xiangyong Luo, Han Wang, Xuesong Zhou},
  title =        {Connecting Oasis for Transit Deserts: Mathematical Model and Reformulation for Equity-oriented Network Design},
  howpublished = {Github},
  year =         {2023},
  url =          {https://github.com/xyluo25/gtfs2gmns}
}
```


```
@misc{gtfs2gmns,
  author =       {Xiangyong Luo, Fang Tang, Han Wang, Xuesong Zhou},
  title =        {gtfs2gmns - A class-based instance designed for reading, converting, analyzing, and visualizing GTFS data.},
  howpublished = {Github},
  year =         {2023},
  url =          {https://github.com/xyluo25/gtfs2gmns}
}
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/xyluo25/gtfs2gmns",
    "name": "gtfs2gmns",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "GTFS,GMNS,Public Transportation,Equity",
    "author": "Mr. Xiangyong Luo, Mrs. Fang Tang,  Dr. Xuesong Simon Zhou",
    "author_email": "luoxiangyong01@gmail.com,fangt@asu.edu, xzhou74@asu.edu",
    "download_url": "https://files.pythonhosted.org/packages/be/45/7b348b46b41d6004482d3c84d1b44ff2202450f85332d1281e8221df19e1/gtfs2gmns-0.2.0.tar.gz",
    "platform": "all",
    "description": "## GTFS2GMNS\r\n\r\nThe open-source Python codes (GTFS2GMNS) is released to facilitate researchers and planners to construct the multi-modal transit networks easily from generic [General Transit Feed Specification (GTFS)](https://gtfs.org/) to the network modeling format in [General Modeling Network Specification (GMNS)](https://github.com/zephyr-data-specs/GMNS). The converted physical and service networks in GMNS format are more convenient for network modeling tasks such as transit network routing, traffic flow assignment, simulation and service network optimization.\r\n\r\nYour comments will be valuable for code review and improvement. Please feel free to add your comments to our Google document of [GTFS2GMNS Users' Guide](https://docs.google.com/document/d/1-A2g4ZjJu-gzusEKcSoOXzr95S3tv7sj/edit?usp=sharing&ouid=112385243549486266715&rtpof=true&sd=true).\r\n\r\n## Getting Started\r\n\r\n### *Download GTFS Data*\r\n\r\nOn TransitFeed [homepage](https://transitfeeds.com/), users can browse and download official GTFS  feeds from around the world. Make sure that the following files are present, so that we can proceed.\r\n\r\n* stop.txt\r\n* route.txt\r\n* trip.txt\r\n* stop_times.txt\r\n* agency.txt\r\n\r\nGTFS2GMNS can handle the transit data from several agencies. Users need to configure different sub-files in the same directory. Under the `test/GTFS` folder, a subfolder `Pheonix` with its owm GTFS data is set up.\r\n\r\n### *Convert GTFS Data into GMNS Format*\r\n\r\n```python\r\nif __name__ == '__main__':\r\n    global period_start_time\r\n    global period_end_time\r\n    input_gtfs_path = 'GTFS'\r\n    output_gmns_path = '.'\r\n    time_period_id = 1\r\n    time_period = '1200_1300'\r\n    period_start_time, period_end_time = _hhmm_to_minutes(time_period)\r\n\r\n    gtfs2gmns(input_gtfs_path, output_gmns_path)\r\n```\r\n\r\nThe input parameter  `input_gtfs_path` is the path of GTFS data, and the parameter  `output_gmns_path` is the path of output GMNS files. Users can customize the parameter  `time_period`, such as 12:00 to 13:00.\r\n\r\nThe output files include node.csv and link.csv.\r\n\r\n## Main Steps\r\n\r\n### *Read GTFS data*\r\n\r\n**Step 1.1: Read routes.txt**\r\n\r\n- route_id, route_long_name, route_short_name, route_url, route_type\r\n\r\n**Step 1.2: Read stop.txt**\r\n\r\n- stop_id, stop_lat, stop_lon, direction, location_type, position, stop_code, stop_name, zone_id\r\n\r\n**Step 1.3: Read trips.txt**\r\n\r\n- trip_id, route_id, service_id, block_id, direction_id, shape_id, trip_type\r\n- and create the directed_route_id by combining route_id and direction_id\r\n\r\n**Step 1.4: Read stop_times.txt**\r\n\r\n- trip_id, stop_id, arrival_time, deaprture_time, stop_sequence\r\n- create directed_route_stop_id by combining directed_route_id and stop_id through the trip_id\r\n\r\n  > Note: the function needs to skip this record if trip_id is not defined, and link the virtual stop id with corresponding physical stop id.\r\n  >\r\n- fetch the geometry of the direction_route_stop_id\r\n- return the arrival_time for every stop\r\n\r\n### *Building service network*\r\n\r\n**Step 2.1 Create physical nodes**\r\n\r\n- physical node is the original stop in standard GTFS\r\n\r\n**Step 2.2 Create directed route stop vertexes**\r\n\r\n- add route stop vertexes. the node_id of route stop nodes starts from 100001\r\n\r\n  > Note: the route stop vertex the programing create nearby the corresponding physical node, to make some offset.\r\n  >\r\n- add entrance link from physical node to route stop node\r\n- add exit link from route stop node to physical node. As they both connect to the physical nodes, the in-station transfer process can be also implemented\r\n\r\n**Step 2.3 Create physical arcs**\r\n\r\n- add physical links between each physical node pair of each trip\r\n\r\n**Step 2.4 Create service arcs**\r\n\r\n- add service links between each route stop pair of each trip\r\n\r\n## Visualization\r\n\r\nYou can visualize generated networks using [NeXTA](https://github.com/xzhou99/NeXTA-GMNS) or [QGIS](https://qgis.org/).\r\n\r\n## Quick Tutorial\r\n\r\n### Introducing Functional Tools within GTFS2GMNS\r\n\r\nGTFS2GMNS is a Python package that serves as a class-based instance, specifically designed for reading, converting, analyzing, and visualizing GTFS data. The converted physical and service networks in GMNS format offer enhanced convenience for a variety of networkAg modeling tasks, including transit network routing, traffic flow assignment, simulation, and service network optimization.\r\n\r\n### Input for class GTFS2GMNS\r\n\r\n- **gtfs_input_dir** :  str, the dir store GTFS data. **GTFS2GMNS is capable of reading multiple GTFS data sets.**\r\n- **time_period**: str, the time period sprcified (for data selection), default is \"07:00:00_08:00:00\"\r\n- **date_period**: list, user can specified exact data or dates for selection\r\n- **gtfs_output_dir**: str, the output folder to save data. defalut is \"\"\r\n- **isSaveToCSV**: bool, whether to save gmns node and link to local machine, default is True\r\n\r\n### *Code Example*\r\n\r\n#### Loading gtfs data\r\n\r\n```python\r\nfrom gtfs2gmns import GTFS2GMNS\r\n\r\nif __name__ == \"__main__\":\r\n    gtfs_input_dir = r\"Your-Path-Folder-To-GTFS-Data\"\r\n\r\n    # Explain: GMNS2GMNS is capable of reading multiple GTFS data sets\r\n    \"\"\"\r\n\t--root folder\r\n\t    -- subfolder (GTFS data of agency 1)\r\n\t    -- subfolder (GTFS data of agency 2)\r\n\t    -- subfolder (GTFS data of agency 3)\r\n\t    -- ...\r\n\tthen, assign gtfs_input_foler = root folder\r\n    \"\"\"\r\n\r\n    time_period = \"00:00:00_23:59:59\"\r\n    date_period = []\r\n\r\n    gg = GTFS2GMNS(gtfs_input_dir, time_period, date_period, gtfs_output_dir=\"\", isSaveToCSV=False)\r\n\r\n```\r\n\r\n#### Generate access line between zones to nodes\r\n\r\n```python\r\n\r\nimport gtfs2gmns as gg\r\n\r\npath_zone = \"Path to zone.csv\"    # please make sure you have zone_id, x_coord, y_coord in columns\r\npath_node = \"Path to node.csv\"    # please make sure you have node_id, x_coord, y_coord in columns\r\n\r\nradius = 100 # unit in meters\r\nk_closest = 0 # if 0, generate all accessible links within radius. if 1, closest link within the radius...\r\n\r\naccess_links = gg.generate_access_links(path_zone, path_node, radius, k_closest)\r\n\r\naccess_links.to_csv(\"access_link.csv\", index=False)\r\n\r\n```\r\n\r\n### Functions and Attributes\r\n\r\n\r\n| func_type     | func_name                    | Python example | Input | Output    | Remark                                                        |\r\n| :------------ | :--------------------------- | :------------- | ----- | --------- | ------------------------------------------------------------- |\r\n| read-show     | agency                       | `gg.agency`    | NA    | DataFrame | This attribute load and return agency data from source folder |\r\n|               | calendar                     | `gg.calendar`  |       |           |                                                               |\r\n|               | calendar_dates               |                |       |           |                                                               |\r\n|               | fare_attributes              |                |       |           |                                                               |\r\n|               | fare_rules                   |                |       |           |                                                               |\r\n|               | feed_info                    |                |       |           |                                                               |\r\n|               | frequencies                  |                |       |           |                                                               |\r\n|               | routes                       |                |       |           |                                                               |\r\n|               | shapes                       |                |       |           |                                                               |\r\n|               | stops                        |                |       |           |                                                               |\r\n|               | stop_times                   |                |       |           |                                                               |\r\n|               | trips                        |                |       |           |                                                               |\r\n|               | transfers                    |                |       |           |                                                               |\r\n|               | timepoints                   |                |       |           |                                                               |\r\n|               | timepoint_times              |                |       |           |                                                               |\r\n|               | trip_routes                  |                |       |           |                                                               |\r\n|               | stops_freq                   |                |       |           |                                                               |\r\n|               | routes_freq                  |                |       |           |                                                               |\r\n|               | rute_segments                |                |       |           |                                                               |\r\n|               | route_segment_speed          |                |       |           |                                                               |\r\n|               | vis_stops_freq               |                |       |           |                                                               |\r\n| analysis      | vis_routes_fres              |                |       |           |                                                               |\r\n|               | vis_route_segment_speed      |                |       |           |                                                               |\r\n|               | vis_route_segment_runtime    |                |       |           |                                                               |\r\n|               | vis_route_stop_speed_heatmap |                |       |           |                                                               |\r\n|               | vis_spacetime_trajectory     |                |       |           |                                                               |\r\n|               | equity_alanysis              |                |       |           |                                                               |\r\n|               | accessibility_analysis       |                |       |           |                                                               |\r\n|               | load_gtfs                    |                |       |           |                                                               |\r\n|               | gen_gmns_node_link           |                |       |           |                                                               |\r\n|               |                              |                |       |           |                                                               |\r\n|               |                              |                |       |           |                                                               |\r\n| visualization |                              |                |       |           |                                                               |\r\n|               |                              |                |       |           |                                                               |\r\n|               |                              |                |       |           |                                                               |\r\n|               |                              |                |       |           |                                                               |\r\n|               |                              |                |       |           |                                                               |\r\n|               |                              |                |       |           |                                                               |\r\n|               |                              |                |       |           |                                                               |\r\n|               |                              |                |       |           |                                                               |\r\n\r\n\r\n\r\n\r\n## Upcoming Features\r\n\r\n- [ ] Output service and trace files.\r\n- [ ] Set the time period and add vdf_fftt and vdf_freq fields in link files.\r\n- [ ] Add Visualization functions\r\n  - [ ] Stops\r\n  - [ ] Routes\r\n  - [ ] ...\r\n\r\n## Citing gtfs2gmns\r\n\r\nIf you use gtfs2gmns in your research please use the following BibTeX entry:\r\n\r\n```\r\n@misc{gtfs2gmns,\r\n  author =       {Fang Tang, Xiangyong Luo, Han Wang, Xuesong Zhou},\r\n  title =        {Connecting Oasis for Transit Deserts: Mathematical Model and Reformulation for Equity-oriented Network Design},\r\n  howpublished = {Github},\r\n  year =         {2023},\r\n  url =          {https://github.com/xyluo25/gtfs2gmns}\r\n}\r\n```\r\n\r\n\r\n```\r\n@misc{gtfs2gmns,\r\n  author =       {Xiangyong Luo, Fang Tang, Han Wang, Xuesong Zhou},\r\n  title =        {gtfs2gmns - A class-based instance designed for reading, converting, analyzing, and visualizing GTFS data.},\r\n  howpublished = {Github},\r\n  year =         {2023},\r\n  url =          {https://github.com/xyluo25/gtfs2gmns}\r\n}\r\n```\r\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "A class-based instance designed for reading, converting, analyzing, and visualizing GTFS data",
    "version": "0.2.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/xyluo25/gtfs2gmns/issues",
        "Contact": "https://github.com/xyluo25",
        "Homepage": "https://github.com/xyluo25/gtfs2gmns",
        "License": "https://github.com/xyluo25/gtfs2gmns/blob/main/LICENSE"
    },
    "split_keywords": [
        "gtfs",
        "gmns",
        "public transportation",
        "equity"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e554d78753cdfe9366d92a5cc1edf507aa6437b18e020e632beb39d9aa16ef89",
                "md5": "4bd58cbeb02090a005cfaef690422974",
                "sha256": "143cc13b55bf7bc83ef74b0c6506d0c0e83decdf5112aaefee6e3869b1d32c46"
            },
            "downloads": -1,
            "filename": "gtfs2gmns-0.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4bd58cbeb02090a005cfaef690422974",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 20220,
            "upload_time": "2024-03-02T21:55:56",
            "upload_time_iso_8601": "2024-03-02T21:55:56.775989Z",
            "url": "https://files.pythonhosted.org/packages/e5/54/d78753cdfe9366d92a5cc1edf507aa6437b18e020e632beb39d9aa16ef89/gtfs2gmns-0.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be457b348b46b41d6004482d3c84d1b44ff2202450f85332d1281e8221df19e1",
                "md5": "7717d77d2fff9edc7bd1def98ac8561c",
                "sha256": "721276f8d986b457375a2442079f5923b447f7c5687192ce90d34c45738d89c3"
            },
            "downloads": -1,
            "filename": "gtfs2gmns-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "7717d77d2fff9edc7bd1def98ac8561c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 21146,
            "upload_time": "2024-03-02T21:55:58",
            "upload_time_iso_8601": "2024-03-02T21:55:58.939873Z",
            "url": "https://files.pythonhosted.org/packages/be/45/7b348b46b41d6004482d3c84d1b44ff2202450f85332d1281e8221df19e1/gtfs2gmns-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-02 21:55:58",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "xyluo25",
    "github_project": "gtfs2gmns",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "gtfs2gmns"
}
        
Elapsed time: 0.24760s