Note
Go to the end to download the full example code.
Creating Delaunay Lines#
In this example, we show how to create AequilibraE’s famous Delaunay Lines, but in Python.
For more on this topic, see its first publication.
We use the Sioux Falls example once again.
See also
Several functions, methods, classes and modules are used in this example:
# Imports
import pandas as pd
from uuid import uuid4
from os.path import join
import sqlite3
from tempfile import gettempdir
from geopandas import read_postgis
from aequilibrae.utils.create_example import create_example
from aequilibrae.utils.create_delaunay_network import DelaunayAnalysis
# We create an empty project on an arbitrary folder
fldr = join(gettempdir(), uuid4().hex)
project = create_example(fldr)
Environment variable 'AEQ_SPATIALITE_DIR' was provided (C:\path\to\existing\download), but mod_spatialite could not be loaded from this directory. Trying system path
Environment variable 'AEQ_SPATIALITE_DIR' was provided (C:\path\to\existing\download), but mod_spatialite could not be loaded from this directory. Trying system path
Environment variable 'AEQ_SPATIALITE_DIR' was provided (C:\path\to\existing\download), but mod_spatialite could not be loaded from this directory. Trying system path
Environment variable 'AEQ_SPATIALITE_DIR' was provided (C:\path\to\existing\download), but mod_spatialite could not be loaded from this directory. Trying system path
Get the Delaunay Lines generation class
da = DelaunayAnalysis(project)
# Let's create the triangulation based on the zones, but we could create based on the network (centroids) too
da.create_network("zones")
Environment variable 'AEQ_SPATIALITE_DIR' was provided (C:\path\to\existing\download), but mod_spatialite could not be loaded from this directory. Trying system path
Now we get the matrix we want and create the Delaunay Lines
demand = project.matrices.get_matrix("demand_omx")
demand.computational_view(["matrix"])
And we will call it ‘delaunay_test’./ It will also be saved in the results_database.sqlite
da.assign_matrix(demand, "delaunay_test")
Environment variable 'AEQ_SPATIALITE_DIR' was provided (C:\path\to\existing\download), but mod_spatialite could not be loaded from this directory. Trying system path
delaunay : 0%| | 0/24 [00:00<?, ?it/s]
Equilibrium Assignment : 0%| | 0/250 [00:00<?, ?it/s]
All-or-Nothing - Traffic Class: delaunay : 0%| | 1/250 [00:00<00:00, 40721.40it/s]
All-or-Nothing - Traffic Class: delaunay : 0%| | 1/250 [00:00<00:00, 7256.58it/s]
All-or-Nothing - Traffic Class: delaunay : 0%| | 0/250 [00:00<?, ?it/s]
All-or-Nothing - Traffic Class: delaunay - Zones: 0/24: 0%| | 0/250 [00:00<?, ?it/s]
All-or-Nothing - Traffic Class: delaunay - Zones: 10/24: 0%| | 0/250 [00:00<?, ?it/s]
All-or-Nothing - Traffic Class: delaunay - Zones: 20/24: 0%| | 0/250 [00:00<?, ?it/s]
All-or-Nothing - Traffic Class: delaunay - Zones: 24/24: 0%| | 0/250 [00:00<?, ?it/s]
we retrieve the results
results = project.results.get_results("delaunay_test").set_index("link_id")
Now we get the matrix we want and create the Delaunay Lines
with project.db_connection_spatial as conn:
links = read_postgis(
"Select link_id, st_asBinary(geometry) geometry from delaunay_network",
conn,
geom_col="geometry",
crs=4326
)
links.set_index("link_id", inplace=True)
df = links.join(results)
max_vol = df.matrix_tot.max()
df.plot(linewidth=4 * df["matrix_tot"] / max_vol, color="blue")

Environment variable 'AEQ_SPATIALITE_DIR' was provided (C:\path\to\existing\download), but mod_spatialite could not be loaded from this directory. Trying system path
<Axes: >
Close the project
project.close()
Total running time of the script: (0 minutes 0.582 seconds)