Skip to contents

NOTE: this article was a draft of the now published data paper: Soukhov and Páez (2023). It discusses how {TTS2016R} can be used and expands on concepts not included in Soukhov and Páez (2023), such as the impedance function and accessibility calculation. These concepts were not covered in the data paper due to brevity requirements.

Home-to-work commute data

#plot 
ggplot() +
  geom_sf(data = TTS2016R::ggh_pd,
          fill = "gainsboro", color = "darkgray") +
  geom_sf(data = group_ggh_pd_poly, 
          color = "steelblue", fill = NA, size = 0.7) +
  annotation_north_arrow(location = "tl", # north arrow for both the main plot and inset
                         height = unit(0.8, "cm"), 
                         width = unit(0.8, "cm"),
                         style = north_arrow_orienteering(line_width = 0.25,
                                                          line_col = "dimgrey", 
                                                          fill = c("white","dimgrey"))) +
  annotation_scale(bar_cols = c("dimgrey", "white"), # scale bar for both the main plot and inset
                   height = unit(0.15, "cm")) + 
  geom_shadowtext(data = group_ggh_pd,
                  aes(x = X, y = Y, label = REGION_name),
                  size = 2.5,
                  nudge_y = 3000,
                  nudge_x = 2000) +
  theme_minimal() +
  theme(legend.position = "none",
        axis.title = element_blank()) 

Figure 1. The TTS 2016 study area within the Greater Golden Horseshoe in Ontario, Canada.

Trips
Car Travel Time
Area
Workers
Jobs
No.  (min) (km^2) No.  No. 
Min. 1 0 0 0 0
1st Qu. 14 12 1 25 64
Median 22 20 1 464 244
Mean 33 23 7 916 819
3rd Qu. 38 30 3 1378 700
Max. 1129 179 879 8491 41821
NA’s NA 3507 NA NA NA

Table 1. Descriptive statistics of the Persons, workers, and jobs for the traffic analysis zones (TAZ) from the TTS 2016 data set along with estimated car origin-destination travel times.

In terms of commute data, this data package includes data related to the full-time employed population by place of residence (origin), full-time usual place of work (destination), and the number of trips to work by mode and the calculated potential travel time of the trips in the Greater Golden Horseshoe (GGH) area.

This data is aggregated and available at the level of TAZ: TAZ are a spatial unit of analysis typically used to estimate the number of trips produced and attracted to each zone. They are thus defined by transportation planners for a region based on intra-similarity and inter-dissimilarity between land-use and population demographics.

Within the TTS, there are 3,764 TAZ. For each TAZ there is a unique identifier that corresponds to the GTA06 Zoning System. The survey boundaries are discussed in the 2016 TTS methodology and defined by the TTS (Data Management Group 2018). The TAZ range between \(\ge\) 0.019 km2 in spatial area to a maximum of 879 km2 (median: 1.3 km2 and 3rd quantile: 2.8 km2).

The number of jobs (3,081,900) and workers (3,446,957) are organized in the form of an origin-destination (OD) table. These data were retrieved from the Transportation Tomorrow Survey Data Retrieval System on October 28, 2021 and reflect the potential interaction of full-time employed people and jobs within the GGH survey boundaries shown in Figure 1.

Also included in {TTS2016R} are travel times and cost of travel from origin to destination by car; travel times are calculated using the {r5r} package (Pereira et al. 2021). These travel times are useful to estimate the cost of travel and to calculate impedance functions, among other possible uses. It is important to note that for simplicity, all interactions within {TTS2016R} are assumed to be taken by car, and the travel time is calculated from an origin TAZ centroid to a destination TAZ centroid. The centroid is snapped to the nearest street line by {r5r} and the travel time is calculated for all trips assuming a car travel mode. Additionally, only travel times less than or equal to 180 mins (3 hrs) are calculated; this threshold represents 99% of trip’s travel times which are summarized in the descriptive statistics in Table 1.

Full-time employed people and associated places of employment

The origin-destination information consists of a cross-tabulation of people who are employed full-time by place of residence (origin) and places of employment in the GGH (destination) using the GTA06 zoning system. The number of workers and jobs is not equal; the boundaries of the survey are permeable, so workers who reside within the boundaries but travel outside of the boundaries are counted as workers within an origin TAZ, while jobs in TAZ that are filled by workers who reside outside the GGH boundaries are unknown since they were not surveyed. This mismatch results in the total number of workers being 1.12 times larger than the total number of jobs (i.e., 3,446,957 workers to 3,081,900 jobs). The TTS is a proportionally representative survey; hence, the values included in {TTS2016R} are adjusted to reflect the GGH working population and their home-based trips to places of GGH employment.

tts_workers <- tm_shape(ggh_taz) +
  tm_fill(col = "workers", title = "Full-time employed people", palette = "-Spectral", style = "jenks") +
  tm_compass(type = "arrow", position = c("left", "top"), size = 2) +
  tm_scale_bar(breaks = c(0, 30, 60), text.size = 0.5, position = c("left", "bottom")) +
  tm_layout(legend.position = c("right", "bottom"))

tts_jobs <- tm_shape(ggh_taz) +
  tm_fill(col = "jobs", title = "Full-time jobs", palette = "-Spectral", style = "jenks") +
  tm_compass(type = "arrow", position = c("left", "top"), size = 2) +
  tm_scale_bar(breaks = c(0, 30, 60), text.size = 0.5, position = c("left", "bottom")) +
  tm_layout(legend.position = c("right", "bottom"))

tmap_arrange(tts_workers, tts_jobs)

Figure 2. Number of workers (top) and jobs (bottom) in each TAZ in the GGH area as specified in the 2016 TTS.

Number <- rbind(ggh_taz$jobs %>% data.frame(),
                 ggh_taz$workers %>% data.frame())
Group <- rbind(rep("Jobs", each=length(ggh_taz$jobs)) %>% data.frame(),
                rep("Workers", each=length(ggh_taz$workers))%>% data.frame())

ecdf_data <- cbind(Number, Group)
colnames(ecdf_data) <- c("Number", "Group")

rect1 <- data.frame(xmin=115, xmax=3055, ymin=-Inf, ymax=Inf)
  
ggplot(ecdf_data , aes(x=Number, col=Group)) + 
  # geom_segment(aes(x = 115, y = 0, xend = 115, yend = 0.34), col = "blue", linetype=2) +
  # geom_segment(aes(x = 3055, y = 0, xend = 3055, yend = 0.94), col = "blue", linetype=2) +
  geom_rect(data = rect1, aes(xmin=xmin, xmax=xmax, ymin=ymin, ymax=ymax), fill="lightblue", alpha=0.2, inherit.aes = FALSE) +
  stat_ecdf() + 
  scale_x_continuous(trans='sqrt', breaks=c(115, 3055, 10000, 20000, 30000, 40000)) + 
  scale_y_continuous(breaks=c(0, 0.25,0.34, .50, .75,0.94, 1.00)) +
  labs(x = "Opportunities per TAZ",
       y = "Cumulative probability") + 
      scale_color_manual("Opportunities", 
                         values = c("Jobs" = "Black",
                                    "Workers" = "Red"))+
  scale_linetype_manual("Opportunities",values=c(0,1)) +
  geom_point(aes(x = 115, y = 0.34), col = "blue")+
  geom_point(aes(x=3055, y=0.94), col = "blue") +
  theme_minimal() +
  theme(plot.title = element_text(hjust=0.5),
        legend.position = c(0.90,0.75),
        axis.line = element_line(colour = "black"),
        panel.border = element_blank()) 

Figure 3. The cumulative distribution of the number of jobs and workers per TAZ from the 2016 TTS data set. Light blue shaded ranges correspond to all cumulative probabilities where the number of workers per TAZ are larger than jobs per TAZ.

Figure 2 presents the number of workers and jobs per TAZ. It can be observed that the spatial distribution of jobs and workers is unequal. This could indicate a jobs-housing imbalance which can impact accessibility in a region (Levine 1998). Workers are concentrated in TAZ within the center of the GGH and along the south-east and northern boarder of the GGH. The center of the GGH corresponds to the Greater Toronto Area (GTA), the most densely populated area in southern Ontario (Statistics Canada 2022). The south east border of the GGH neighbours Lake Ontario and is delineated by the urban built boundary of the Ontario Growth Plan being home to the highest density of working population in the GGH (Ontario 2019; Auditor General of Ontario 2021). The northern GGH border corresponds to the Simcoe, Dufferin, Kawartha Lake, and Peterborough regions which are home to lower density of worker population density population (Auditor General of Ontario 2021). Conversely, the spread of jobs in the GGH is lower than the number of workers indicating population may be more spatially dispersed than jobs.

It can also be seen that from the bottom plot in Figure 2 that high to medium-low concentrations of jobs are often present in the same areas as workers but only when the scale is transformed. In other words, though there is a higher number of TAZ with no workers than zones with no jobs (i.e., 791 TAZ with no workers : 396 TAZ with no jobs) and the mean of workers per TAZ is higher than the mean of jobs (i.e., 916 workers : 819 jobs) the number TAZ with an extreme number of jobs at the highest and lowest percentiles is higher than the number of workers; see the following cumulative probability distribution in Figure 3, the 94th to 100th percentile and the 0th to 34th percentile of jobs in TAZ is higher than the number of workers in TAZ. This means that between these ranges, TAZ have a higher number of workers than they do jobs, echoing the more unique spatial distribution trend of workers observed in Figure 2.

Calculated travel time

{TTS2016R} also includes travel time data for each home-to-work trip as displayed in Figure 4. This travel time corresponds to a car commute calculated using the R package {r5r} and could be interpreted as the network distance travel time for a full-time work commute in the GGH. The travel times were calculated assuming the following input parameters: a maximum travel time less than or equal to 180 mins (3 hrs) and a street network retrieved from OpenStreetMaps for the GGH area. The 3 hr threshold was selected as it captures 99% of the trip taken (see the travel times summarized in Table 1.

It is important to note that the travel times within this data set reflect car travel, centroids of origins to destinations, and an uncongested street network. These assumptions are not completely realistic, but are done for generalization and due to data limitations. The car mode for commuting is still critically important, as 79% of the work trips are made this way. Additionally, a finer resolutions of data nor average departure times are publicly available through the TTS Data Retrieval System. As such, we include the number of mode-specific trips from each OD pair so the user can make their own mode- and associated travel time/cost specific assumptions.

# remove all NA trips from dataset and set all 0min travel times to 0.1 min
od  <- TTS2016R::od %>%
  filter( !is.na(travel_time)) %>%
  mutate(travel_time = ifelse(travel_time == 0, 0.1, travel_time))

all_tt <- od  %>%
  dplyr::select(Persons, travel_time)

all_tt <- all_tt[rep(seq_len(dim(all_tt)[1]), all_tt$Persons), 2]

#fitting impedance function
gamma_ <- fitdistrplus::fitdist(data=all_tt, "gamma", method="mle", optim.method="Nelder-Mead")
# transfer calibrated impedance function values to OD matrix
od <- od %>%
  mutate(f = dgamma(travel_time, gamma_$estimate["shape"], gamma_$estimate["rate"]))

#add the number of jobs and workers to the od matrix
od_ft <- od %>% merge(ggh_taz %>% dplyr::select(GTA06, workers) %>% st_drop_geometry(),
                   by.x = "Origin", by.y="GTA06", all.x = TRUE)

od_ft <- od_ft %>% merge(ggh_taz %>% dplyr::select(GTA06, jobs) %>% st_drop_geometry(),
                   by.x = "Destination", by.y="GTA06", all.x = TRUE)

#calculate accessibility for workers from any origin to jobs in Toronto 
GGH_c_accessibility <- od_ft %>% 
  mutate(GGH_A_ij = f * jobs) %>%
  group_by(Origin) %>%
  summarise(GGH_A_i = sum(GGH_A_ij, na.rm = T),
            GGH_sum_tt_i = sum(travel_time),
            GGH_tt_trips_i = mean(travel_time),
            GGH_sum_f_i = sum(f),
            GGH_f_trips_i = mean(f))

#Merge TO accessibly calculation to the ggh_taz:
GGH_taz_acc <- ggh_taz %>% merge(GGH_c_accessibility, by.x=c("GTA06"), by.y=c("Origin"), all.x=T) 
tts_total_tt <- tm_shape(GGH_taz_acc) +
  tm_fill(col = "GGH_sum_tt_i", title = "Total travel time\n per TAZ (min)", palette = "-Spectral", style = "jenks") +
  tm_compass(type = "arrow", position = c("left", "top"), size = 2) +
  tm_scale_bar(breaks = c(0, 30, 60), text.size = 0.5, position = c("left", "bottom")) +
  tm_layout(legend.position = c("right", "bottom"))

tts_tt_per_trip <- tm_shape(GGH_taz_acc) +
  tm_fill(col = "GGH_tt_trips_i", title = "Avg. travel time\n per TAZ (min)", palette = "-Spectral", style = "jenks") +
  tm_compass(type = "arrow", position = c("left", "top"), size = 2) +
  tm_scale_bar(breaks = c(0, 30, 60), text.size = 0.5, position = c("left", "bottom")) +
  tm_layout(legend.position = c("right", "bottom"))

tmap_arrange(tts_total_tt, tts_tt_per_trip)

Figure 4. Estimated total worker travel time (top) and average worker travel time (bottom) for each TAZ in the GGH. Travel times reflect uncongested car travel from origin centroid to destination centroid.

As can be observed in Figure 4, the total travel time (min) resembles the spatial trend distribution in the number of employed people in the previous plot (Figure 2). However, when the average travel time per trip in each TAZ is presented, the spatial distribution is distinct from all other plots presented so far. We can see that in areas around the south-eastern border that make up the Greater Toronto and Hamilton Area (GTHA) (e.g., Hamilton, Halton, Peel, Toronto, York, Durham) and Niagara and Waterloo, the average travel times are moderately low. Further from these areas, travel times are higher. Interestingly, even in eastern areas (e.g., Peterborough) with high employment and high job concentration, average travel time is higher than within the GTHA.

Calibrating an impedance function

Impedance functions are useful to understand mobility behavior and are part, for instance, of gravity models of spatial interaction (Wilson 1971; Haynes and Fotheringham 1985) and accessibility analysis in many applications (Hansen 1959; Levinson 1998; Talen and Anselin 1998; Reggiani, Bucci, and Russo 2011; Páez et al. 2013; Kuai and Zhao 2017; Barboza et al. 2021). An OD matrix and a cost matrix (i.e., with travel times) can be used in combination to estimate impedance functions. An impedance function \(f(\cdot)\) depends on the cost of travel between locations \(i\) and \(j\) \(c_{ij}\); it usually is a monotonically decreasing function, although sometimes the function can increase to reflect patterns of separation between activities; for instance, separation of land uses means that very short commuting trips are relatively rare. There can also be fluctuations due to hierarchical patterns, where travelers bypass opportunities in favor of more distant destinations that offer economies of agglomeration.

A useful technique to calibrate an impedance function is to use the trip length distribution (TLD) as measured from origin-destination data (Horbachov and Svichynskyi 2018; Batista, Leclercq, and Geroliminis 2019). The TLD is the representation of the likelihood that a proportion of trips are taken at a specific travel cost. In our data set, where we assume cost is travel time, the impedance function maps low travel times to higher proportions of trips, and high travel times are mapped to low proportion of trips.

plot(gamma_)

Figure 5. Empirical TTS 2016 home-based car trip length distribution (black) and calibrated gamma distribution impedance function (red) with associated Q-Q and P-P plots.

Figure 6. Cullen and frey graph for the 2016 TTS calculated travel times.

In the GGH data presented, the empirical TLD (i.e., proportion of trips taken vs. travel time in minutes) is fitted to a density distribution using maximum likelihood techniques and the Nelder-Mead method for direct optimization available within the fitdistrplus package (Delignette-Muller and Dutang 2015). Based on goodness-of-fit criteria and diagnostics seen in Figure 5 and Figure 6, the gamma distribution is selected for the presented data.

The resulting calibrated impedance function is given in the following general form where the estimated ‘shape’ is \(\alpha\) = 0.831, the estimated ‘rate’ is \(\beta\) = 0.044 , and \(\Gamma(\alpha)\) is defined in Equation (1).

\[\begin{equation} \begin{array}{l}\ f(x, \alpha, \beta) = \frac {x^{\alpha-1}e^{-\frac{x}{\beta}}}{ \beta^{\alpha}\Gamma(\alpha)} \quad \text{for } 0 \leq x \leq \infty\\ \Gamma(\alpha) = \int_{0}^{\infty} x^{\alpha-1}e^{-x} \,dx\\ \end{array} \end{equation}\]\end{equation}

Accessibility to employment

As noted above, impedance functions are an essential component of accessibility analysis. Equation (2) shows that accessibility \(A_i\) is the weighted sum of opportunities that can be reached from location \(i\), given the cost of travel \(c_{ij}\). Summing the opportunities in the neighborhood of \(i\) as defined by the impedance function \(f(\cdot)\), provides estimates of the number of opportunities that can be reached from \(i\) at a certain cost.

\[\begin{equation} A_i = \sum_{j=1}^JO_jf(c_{ij}) \end{equation}\]

where:

  • \(A\) is accessibility.
  • \(i\) is a set of origin locations.
  • \(j\) is a set of destination locations.
  • \(O_j\) is the number of opportunities at location \(j\). These are opportunities for activity and add some sort of supply to the area;
  • \(c_{ij}\) is a measure of the cost of moving between \(i\) and \(j\)
  • \(f(\cdot)\) is an impedance function of \(c_{ij}\).
GGH_taz_acc <- GGH_taz_acc %>%
  mutate(avg_A_per_W = GGH_A_i/workers)
## accessibility
access_TTS_GGH <- tm_shape(GGH_taz_acc) +
  tm_fill(col = "GGH_A_i", title = "Accessibility \n(A_i)", palette = "-Spectral", style = "jenks") +
  tm_compass(type = "arrow", position = c("left", "top"), size = 2) +
  tm_scale_bar(breaks = c(0, 30, 60), text.size = 0.5, position = c("left", "bottom")) +
  tm_layout(legend.position = c("right", "bottom"))

access_normalized_TTS_GGH <- tm_shape(GGH_taz_acc) +
  tm_fill(col = "avg_A_per_W", title = "Average accessibility \nper worker", palette = "-Spectral", style = "jenks") +
  tm_compass(type = "arrow", position = c("left", "top"), size = 2) +
  tm_scale_bar(breaks = c(0, 30, 60), text.size = 0.5, position = c("left", "bottom")) +
  tm_layout(legend.position = c("right", "bottom"))

tmap_arrange(access_TTS_GGH, access_normalized_TTS_GGH)

Figure 7. Accessibility (top) and normalized accessibility (bottom) to employment in the GGH area.

Accessibility is a property of the origin (i.e., origin TAZ in our data), the landscape of opportunities (i.e., the TAZ destinations in our data), and transportation infrastructure (i.e., the travel time table). Figure 7 presents the accessibility estimates that result from the impedance function calibrated in the preceding section. The top plot, that of the raw accessibility values, presents a distinct radial trend where the majority of TAZ in and around Toronto have high accessibility values and values gradually decrease in TAZ which are further from Toronto’s boundary. Alternatively, the bottom plot in Figure 7 presents the worker-normalized accessibility values. In other words, the accessibility value for each TAZ is divided by the number of workers in each TAZ. The patterns in this plot are similar to the Greater Toronto Area radial trend observed in the top plot but are less extreme (i.e., smaller spread).

Concluding remarks

The open data product introduced in this paper shares tables for worker-to-employment data from the 2016 TTS aggregated by TAZ. In addition, inter-centroid travel time tables are calculated, and the planning/municipality boundaries are included to compliment the 2016 TTS data. This open data product, {TTS2016R}, is freely available to explore in an R environment. One possible use of these data, as showcased in this paper, is the calibration of impedance functions which in turn can be used for accessibility analysis.

New digital formats are increasingly complex and the explanation of the methods often do not concisely and intelligibly fit within the confines of a traditional article. With this motivation, we invite all who are interested to use {TTS2016R} to explore the worker-employment patterns contained in the {TTS2016R} package. In the spirit of novel and original research, we hope readers value the efforts made to detail the data in order to improve transparency in our work and encourage others to replicate and, hopefully, inspire research of their own. We see this product as providing open infrastructure for additional TTS or complimentary data sets to be amended by the authors or wider open-source community in the future.

References

Auditor General of Ontario. 2021. “Value for Money Audit: Land-Use Planning in the Greater Golden Horseshoe.” https://www.auditor.on.ca/en/content/annualreports/arreports/en21/AR_LandUse_en21.pdf.
Barboza, Matheus H. C., Mariana S. Carneiro, Claudio Falavigna, Gregório Luz, and Romulo Orrico. 2021. “Balancing Time: Using a New Accessibility Measure in Rio de Janeiro.” Journal of Transport Geography 90 (January): 102924. https://doi.org/10.1016/j.jtrangeo.2020.102924.
Batista, S. F. A., Ludovic Leclercq, and Nikolas Geroliminis. 2019. “Estimation of Regional Trip Length Distributions for the Calibration of the Aggregated Network Traffic Models.” Transportation Research Part B: Methodological 122 (April): 192–217. https://doi.org/10.1016/j.trb.2019.02.009.
Data Management Group. 2018. TTS - Transportation Tomorrow Survey 2016.” http://dmg.utoronto.ca/transportation-tomorrow-survey/tts-introduction.
Delignette-Muller, Marie Laure, and Christophe Dutang. 2015. fitdistrplus: An R Package for Fitting Distributions.” Journal of Statistical Software 64 (4): 1–34. https://www.jstatsoft.org/article/view/v064i04.
Hansen, Walter G. 1959. “How Accessibility Shapes Land Use.” Journal of the American Institute of Planners 25 (2): 73–76. https://doi.org/10.1080/01944365908978307.
Haynes, Kingsley E, and A Stewart Fotheringham. 1985. Gravity and Spatial Interaction Models. Reprint. WVU Research Repository. https://researchrepository.wvu.edu/cgi/viewcontent.cgi?article=1010&context=rri-web-book.
Horbachov, Peter, and Stanislav Svichynskyi. 2018. “Theoretical Substantiation of Trip Length Distribution for Home-Based Work Trips in Urban Transit Systems.” Journal of Transport and Land Use 11 (1): 593–632. https://www.jstor.org/stable/26622420.
Kuai, Xuan, and Qunshan Zhao. 2017. “Examining Healthy Food Accessibility and Disparity in Baton Rouge, Louisiana.” Annals of GIS 23 (2): 103–16. https://doi.org/10.1080/19475683.2017.1304448.
Levine, J. 1998. “Rethinking Accessibility and Jobs-Housing Balance.” Journal Article. Journal of the American Planning Association 64 (2): 133–49. ISI:000073499600007.
Levinson, David M. 1998. “Accessibility and the Journey to Work.” Journal of Transport Geography 6 (1): 11–21. https://doi.org/10.1016/S0966-6923(97)00036-7.
Ontario. 2019. “Built Boundary for the Growth Plan for the Greater Golden Horseshoe, 2006.” Built Boundary Maps. https://www.ontario.ca/document/built-boundary-growth-plan-greater-golden-horseshoe-2006/built-boundary-maps.
Páez, Antonio, Steven Farber, Ruben Mercado, Matthew Roorda, and Catherine Morency. 2013. “Jobs and the Single Parent: An Analysis of Accessibility to Employment in Toronto.” Urban Geography 34 (6): 815–42. https://doi.org/10.1080/02723638.2013.778600.
Pereira, Rafael H. M., Marcus Saraiva, Daniel Herszenhut, Carlos Kaue Vieira Braga, and Matthew Wigginton Conway. 2021. “R5r: Rapid Realistic Routing on Multimodal Transport Networks with r5 in r.” Findings, March. https://doi.org/10.32866/001c.21262.
Reggiani, Aura, Pietro Bucci, and Giovanni Russo. 2011. “Accessibility and Impedance Forms: Empirical Applications to the German Commuting Network.” International Regional Science Review 34 (2): 230–52. https://doi.org/10.1177/0160017610387296.
Soukhov, Anastasia, and Antonio Páez. 2023. TTS2016R: A Data Set to Study Population and Employment Patterns from the 2016 Transportation Tomorrow Survey in the Greater Golden Horseshoe Area, Ontario, Canada.” Environment and Planning B: Urban Analytics and City Science, January, 23998083221146781. https://doi.org/10.1177/23998083221146781.
Statistics Canada. 2022. “The DailyCanada’s Large Urban Centres Continue to Grow and Spread.” Government of Canada. https://www150.statcan.gc.ca/n1/daily-quotidien/220209/dq220209b-eng.htm.
Talen, E, and L Anselin. 1998. “Assessing Spatial Equity: An Evaluation of Measures of Accessibility to Public Playgrounds.” Environment and Planning A: Economy and Space 30 (4): 595–613. https://doi.org/10.1068/a300595.
Wilson, A G. 1971. “A Family of Spatial Interaction Models, and Associated Developments.” Environment and Planning A: Economy and Space 3 (1): 1–32. https://doi.org/10.1068/a030001.