API Quick Start Guide
The python API provides with user with the tools necessary to programmatically interact with the LUPTAI Toolbox using Python 3. With this API the user can run models and analyse the results using python workflows such as scripts and notebooks.
This quick start guide walks the user through the steps necessary performing a model on run on a scenario using the API. Many of these steps are also followed in the Sample Notebook.
Question: How do we install it? Question: How does the user start a notebook?
Assign Parameter Values
The following imports provide the necessary tools for setting and generating the parameters that will be passed to the model.
from luptai.model.parameters import BatchSettings, InputParameters, MajorMode, PTMode
from luptai.database.scenario_data import ScenarioDataConnection
from luptai.model.model_data.export_data import export_model_data
LUPTAI model runs are best performed as batches. This allows the user to define multiple modes and time periods which all use the same underlying parameter set, and to then compare results. For this reason in this guide we use the BatchSettings
object which allows for this. Alternatively, a user may use the RunSettings
object that is best used for a single model run.
We instantiate an empty BatchSettings
object:
settings = BatchSettings()
First let’s define some basic meta data about the model run, the project ID and the scenario ID:
settings.project_id = "MyProjectID"
settings.scenario_id = "Scenario1"
Now that we’ve decided what scenario we want to run our model on, let’s connect to the scenario’s SpatiaLite Database using ScenarioDataConnection
. The Scenario database contains the network maps and activity locations that we need for the model run.
sdc = ScenarioDataConnection("/path/to/scenario.spatialite")
Next we’ll choose our model parameters, these parameters define things such as walk speed, default costs, and purpose weights. They are defined in a JSON file (see the Sample Parameters) and the values are best modified by directly altering the JSON file. To load the parameters from a JSON, we instantiate an object of InputParameters
with the path to the JSON file and attach it to our batch settings.
settings.input_parameters = InputParameters("/path/to/parameters.json")
Now we’ve done the basic setup, lets start defining what we want this accessibility model run to be all about.
First, assign modes for the model run. We assign them using values of the MajorMode
enumeration. If a public transport mode is selected, then we need to also set which public transport modes to use using the PTMode
enumeration.
settings.major_modes = [MajorMode.WALK_ONLY, MajorMode.PT_AND_WALK]
settings.pt_modes = [PTMode.BUS, PTMode.TRAIN, PTMode.BUSWAY, PTMode.FERRY, PTMode.LIGHT_RAIL]
Next set the purposes/activities to perform accessibility analysis on. Because the activities are dynamic in LUPTAI it is easiest to denote them using strings, and then build them as PyPurpose
from the purpose specs, which are defined in parameters JSON. This process can be seen here:
purposes = ["DENTIST", "GP", "HOSPITAL", "PHARMACY", "HEALTH SERVICES"]
settings.purposes = [PyPurpose.from_name_and_params_spec(p, settings.input_parameters) for p in purposes]
During the run the API will import and export data from a directory. As well as acting as a temporary store for the model run, this directory also provides location where all previous model results and parameters are saved. So, before our model runs we need to define its path, and while we are here let’s export the necessary data from our scenario (note that this last process can take a few minutes).
settings.scenario_model_data_root = "/path/to/data/directory/"
export_model_data(sdc, settings.scenario_model_data_root)
Now our model is set up and read to run.
Run a Model
Once we have the parameters for a model run set up, running the model is a piece of cake. But first we will should have imported the class we use to run the model:
from luptai.model import ModelRunner
Now all we have to do is instantiate a ModelRunner
object and perform a batch settings run by passing in a BatchSettings
object, such as the one we made earlier:
runner = ModelRunner()
runner.do_batch_settings_run(settings)
After running this command, a familiar LUPTAI model running dialog should pop-up and display the progress of the model run.
Retrieving Model Results
Following the completion of a model run we can retrieve the results as geopandas GeoDataFrames and also save them back to the scenario database. First let’s make sure we have the necessary functions imported:
from luptai.model.model_data.import_data results_batch_import
Now let’s save the results of the model run back to the scenario database. For this we use an object of ModelRunner
, which keeps are record of model runs it has performed, and an object of ScenarioDataConnection
; such as the ones we made previously. Now we save the results thusly:
results_batch_import(runner.completed_runs, sdc)
We can take a look at the results using the get_results function from a ModelRunner
object. This function returns a dictionary of the form {‘name_of_results_run’: GeoDataFrame
}. Here’s an example of its use:
results = runner.get_results()
With the results in GeoDataFrames you analyse them using any of the typical analysis techniques for geopandas or pandas. Alternatively, you could perform your analysis in Excel (or similar software) by first exporting the results as CSVs using:
for result_name, result_gdf in results.items():
result_gdf.drop(['shape'], axis=1).to_csv('/dir/to/save/csv/'+result_name+'.csv', index=False)
This concludes the quick start guide, for more information on the available modules for the API, have a look at the API Reference