We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ba53de commit 39a9156Copy full SHA for 39a9156
stride/urbanaccess/cli.py
@@ -34,6 +34,14 @@ def create_fake_gtfs(**kwargs):
34
'For example: "34.8, 31.96, 34.81, 31.97". '
35
'Can get it from https://boundingbox.klokantech.com/ - csv export')
36
def create_network(**kwargs):
37
- """Create UrbanAccess accessibility network from the fake gtfs data"""
+ """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
+ """
46
from .create_network import main
47
main(**kwargs)
0 commit comments