From 39a915622da79928e678b44135e97a13a3d32b34 Mon Sep 17 00:00:00 2001 From: Ori Hoch Date: Thu, 23 Jun 2022 22:07:59 +0300 Subject: [PATCH] improve urbanaccess cli help message --- stride/urbanaccess/cli.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/stride/urbanaccess/cli.py b/stride/urbanaccess/cli.py index 75a048f..d70cc87 100644 --- a/stride/urbanaccess/cli.py +++ b/stride/urbanaccess/cli.py @@ -34,6 +34,14 @@ def create_fake_gtfs(**kwargs): 'For example: "34.8, 31.96, 34.81, 31.97". ' 'Can get it from https://boundingbox.klokantech.com/ - csv export') def create_network(**kwargs): - """Create UrbanAccess accessibility network from the fake gtfs data""" + """Create UrbanAccess accessibility network from the fake gtfs data + + The resulting network can then be loaded from Python code: + + import stride.urbanaccess.helpers; + urbanaccess_net = stride.urbanaccess.helpers.load_network(network_path) + + See https://github.com/UDST/urbanaccess documentation for details on how to do analysis on this network. + """ from .create_network import main main(**kwargs)