Skip to content

Commit 39a9156

Browse files
committed
improve urbanaccess cli help message
1 parent 3ba53de commit 39a9156

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

stride/urbanaccess/cli.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@ def create_fake_gtfs(**kwargs):
3434
'For example: "34.8, 31.96, 34.81, 31.97". '
3535
'Can get it from https://boundingbox.klokantech.com/ - csv export')
3636
def create_network(**kwargs):
37-
"""Create UrbanAccess accessibility network from the fake gtfs data"""
37+
"""Create UrbanAccess accessibility network from the fake gtfs data
38+
39+
The resulting network can then be loaded from Python code:
40+
41+
import stride.urbanaccess.helpers;
42+
urbanaccess_net = stride.urbanaccess.helpers.load_network(network_path)
43+
44+
See https://github.com/UDST/urbanaccess documentation for details on how to do analysis on this network.
45+
"""
3846
from .create_network import main
3947
main(**kwargs)

0 commit comments

Comments
 (0)