Next Article in Journal
An Effective NoSQL-Based Vector Map Tile Management Approach
Previous Article in Journal
Morphological PDEs on Graphs for Image Processing on Surfaces and Point Clouds
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Efficient Geo-Computational Algorithms for Constructing Space-Time Prisms in Road Networks

1
State Key Laboratory of Information Engineering in Surveying, Mapping and Remote Sensing, Wuhan University, Wuhan 430079, China
2
Shenzhen Key Laboratory of Spatial Smart Sensing and Services, Shenzhen University, Shenzhen 518060, China
*
Author to whom correspondence should be addressed.
ISPRS Int. J. Geo-Inf. 2016, 5(11), 214; https://0-doi-org.brum.beds.ac.uk/10.3390/ijgi5110214
Submission received: 13 September 2016 / Revised: 9 November 2016 / Accepted: 10 November 2016 / Published: 12 November 2016

Abstract

:
The Space-time prism (STP) is a key concept in time geography for analyzing human activity-travel behavior under various Space-time constraints. Most existing time-geographic studies use a straightforward algorithm to construct STPs in road networks by using two one-to-all shortest path searches. However, this straightforward algorithm can introduce considerable computational overhead, given the fact that accessible links in a STP are generally a small portion of the whole network. To address this issue, an efficient geo-computational algorithm, called NTP-A*, is proposed. The proposed NTP-A* algorithm employs the A* and branch-and-bound techniques to discard inaccessible links during two shortest path searches, and thereby improves the STP construction performance. Comprehensive computational experiments are carried out to demonstrate the computational advantage of the proposed algorithm. Several implementation techniques, including the label-correcting technique and the hybrid link-node labeling technique, are discussed and analyzed. Experimental results show that the proposed NTP-A* algorithm can significantly improve STP construction performance in large-scale road networks by a factor of 100, compared with existing algorithms.

1. Introduction

Time geography is powerful for analyzing human movements and activities through space and time [1]. Rather than predicting activity-travel behavior directly, time geography mainly focuses on the feasibility for an individual to participate in activities under various Space-time constraints [2]. At the core of time geography is the Space-time prism (STP) model, which depicts Space-time extents that can be physically reached by the individual from specified locations within a given time budget. This STP model has been widely used for various applications, such as measuring individual accessibility to urban services [3,4,5,6,7], and formulating activity-based models of travel demand [8,9,10,11].
Time geography was first introduced by Torsten Hägerstrand in the 1970s [1]. In the decades after its introduction, time geography faded somewhat into the background [12], mainly due to the lack of geo-computational algorithms and individual-level movement data. With the advances in geographical information science (GIS) technologies in the 1990s, the last two decades have witnessed a resurgence of time geography in the literature. Substantial research efforts have been made to improving STP models to represent individuals’ accessible Space-time extents in complex urban areas. Recognizing that human movements in urban areas are usually constrained by road networks, Miller [13] proposed a network-based STP (or called network-time prism, NTP) model. Other researchers further improved this NTP model by considering travel environment complexities, including turn restrictions [14], dynamic and heterogeneous traffic conditions [15,16] and travel time uncertainties [17,18]. Chen et al. [19] extend the NTP model into public transit networks. A geo-computational algorithm was developed to efficiently construct STPs in public transit networks using the A* and branch-and-bound techniques. Several useful tools also have been developed for visually analyzing NTPs in real road networks [20,21,22].
In recent years, there has been a wider resurgence of time-geographic studies due to the emerging spatiotemporal big data, collected by a variety of geospatial technologies, including human and vehicle trajectories collected by GPS (Global Positioning System) devices, mobile phone records, smart card data, social media check-ins, etc. These spatiotemporal big data provide an unprecedented opportunity for time-geographic studies to uncover people’s mobility patterns and their interactions with the urban environment [23,24,25,26,27,28,29,30]. To support such time-geographic studies in the era of spatiotemporal big data, efficient geo-computational algorithms for constructing NTPs in large-scale road networks are sorely needed.
In most previous time-geographic studies, NTPs are constructed by a straightforward algorithm [31], which utilizes two one-to-all shortest path searches, based on the Dijkstra’s algorithm. This straightforward algorithm is hereafter referred to as the NTP-Dij algorithm for convenience. In the NTP-Dij algorithm, a forward shortest path search is firstly carried out from the origin to determine the earliest arrival time at every node. Then, a backward shortest path search is performed from the destination to obtain the latest departure time at every node. Finally, the accessible nodes (and links) can be determined by checking whether their earliest arrival time is larger than the latest departure time. Such a NTP-Dij algorithm is easy to implement by directly using the classical shortest path algorithm (i.e., Dijkstra’s algorithm). However, it requires exploration of the whole network twice, and leads to considerable computational overheads, given the fact that accessible nodes in the NTP are generally only a small portion of the entire network. To reduce the number of explored nodes, Kuijpers and Othman [28,29] proposed an algorithm (called NTP-SN in this study) to construct the NTP in a sub-network instead of the whole network. The sub-network is generated by selecting nodes and links within the STP in the planar space. Nevertheless, the computational advantage of this NTP-SN algorithm is marginal, because the STP in the planar space is generally quite large compared with the actual NTP [28,29]. Further, although several NTP construction algorithms have been developed, there is a lack of numerical experiments in the literature to systematically investigate the computational performance of existing NTP construction algorithms in real road networks.
To fill this gap, this study investigates models and geo-computational algorithms for efficiently constructing NTPs in real road networks. This study contributes to time-geography literature in the following aspects:
Firstly, an improved NTP model is proposed by considering the complexities of road networks, including turn restrictions and divided/undivided roads. The proposed NTP model differentiates divided and undivided roads, and allows for individuals to make U-turns and access partial links on undivided roads. The proposed model, thus, enhances the realistic representation of NTPs in road networks.
Secondly, an efficient geo-computational algorithm, called NTP-A*, is developed to construct NTPs in large-scale road networks. In the proposed NTP-A* algorithm, turn restrictions and partially accessible links on undivided roads are explicitly considered. The A* and branch-and-bound techniques are employed to improve the NTP construction performance by discarding inaccessible links during shortest path searches. The label-correcting and hybrid link-node labeling techniques are also introduced in order to improve the NTP construction performance. The proposed NTP-A* algorithm, therefore, significantly improves the NTP construction performance in large-scale road networks.
Thirdly, a comprehensive case study using several real road networks is carried out to examine the computational performance of the proposed NTP-A* algorithm. Two existing NTP construction algorithms, NTP-Dij and NTP-SN, are also implemented for comparison purposes. Several implantation techniques (including the A* technique, branch-and-bound technique, label-correcting technique and hybrid link-node labeling technique) in the NTP construction are examined and discussed. The results of the case study indicate that the proposed NTP-A* algorithm can significantly improve the existing NTP-Dij and NTP-SN algorithms by a factor of 100 in large-scale road networks.
The remainder of this paper is structured as follows. In the next section, the classical STP model in the planar space is briefly introduced to provide a necessary background. The improved NTP model is introduced in Section 3. The proposed NTP-A* algorithm is presented in Section 4. Computational experiments using real-world road networks are reported in Section 5. Finally, the conclusions and future research recommendations are given in Section 6.

2. The Classical Space-Time Prism Model in the Planar Space

This section briefly introduces the classical Space-time prism (STP) model in the planar space. Figure 1 illustrates this prism model in a three-dimensional (3D) space, where the x and y axes represent two-dimensional (2D) geographic space and the t axis represents time. Suppose an individual planning to conduct two fixed activities at origin o = ( x o , y o ) and time instance t o , and destination d = ( x d , y d ) and time instance t d , respectively. The STP delimits Space-time extents for the individual to schedule another flexible activity between these two fixed activities. Analytically, the STP can be constructed by the intersection of a forward cone, a backward cone, and a cylinder. The forward cone, FC ( t ) , consists of all locations that can be reached from the origin at time t ; the backward cone, BC ( t ) , comprises all locations that can arrive at the destination given the remaining time t s t ; and the cylinder, CY ( t ) , delimits all geographic locations within the potential path area (PPA). According to Reference [2], the STP in the planar space can be formally expressed as
STP ( t ) = FC ( t ) BC ( t ) CY ( t )
FC ( t ) = { w | t t o + t E o w , t t d }
BC ( t ) = { w | t t d t E w d , t t o }
CY ( t ) = { w | t E o w + t E w d t d t o c min , t o t < t d }
where c min is the minimum duration for flexible activity participations, t E o w is the Euclidean travel time from the origin to a location w = ( x w , y w ) , and t E w d is the Euclidean travel time from the location w to the destination. In the planar space, the Euclidean travel times (i.e., t E o w and t E w d ) can be calculated simply as Euclidean distances (denoted by d E o w and d E w d ) between these two locations divided by the maximum travel speed v max .
Projecting the STP onto the 2D geographical space forms a PPA that includes all accessible locations for flexible activity participations in the 2D geographic space as:
P P A = { w | t E o w + t E w d b }
where b = t d t o c min is the maximum time budget for traveling. The height of the Space-time prism at location w represents the maximum activity duration, c w , at the location as:
c w = t w + t w = ( t d t E w d ) ( t o + t E o w )
where t w = t o + t E o w is the earliest arrival time at the location, and t w + = t d t E w d is the latest departure time from the location.
The above classical STP model in the planar space can be easily constructed and have rigorous formalization. However, this model builds on an unrealistic assumption that movements occur at a constant speed everywhere in the planar space [2,12,13,15]. In reality, people in urban areas do not move freely in the planar space, but, rather, within spatially embedded road networks. The classical STP model, thus, oversimplifies real travel environment complexities, and is inadequate for an individual’s activity-travel scheduling.

3. Constructing Space-Time Prisms in Road Networks

This section formulates a network-time prism (NTP) model, considering the complexities of road networks, including turn restrictions and divided/undivided roads. A road network can be represented as a directed graph G ( N , A , Ψ ) , comprising a set of nodes N , a set of links A , and a set of allowed turns Ψ . Each directed link a i j A has a tail node i , a head node j , and a link travel time t i j . A turn ψ i j k Ψ , passing through links a i j and a j k , represents an allowed movement at node j (e.g., right turn or U-turn). Further, ψ i j k Ψ means that the movement from link a i j to link a j k is restricted at node j (e.g., left turn ψ 125 in Figure 2). In addition to making turns at nodes, U-turns are allowed at any location on an undivided link (e.g., a minor road), but restricted on a divided link (e.g., an arterial road). For example, a 12 and a 21 in Figure 2 are two opposite links of an undivided road, and travelers can freely make U-turns between these two links. It should be noted that a two-way road, regardless of whether it is divided or undivided, is represented by two opposite directed links, while a one-way road is represented by only one directed link.
Any location w = ( x w , y w ) in the network can be represented as ( a i j , θ w ) using the linear reference technique [23,32], where θ w [ 0 , 1 ] is the relative position on the link a i j A . For example, location w = ( a 23 , 0.5 ) in Figure 2 indicates the middle of link a 23 . The travel times of partial links a i w and a w j are assumed to be proportional to their distance as:
t i w = θ w t i j
t w j = ( 1 θ w ) t i j
Let p R w l be the least time path between two locations, w = ( x w , y w ) and l = ( x l , y l ) . The path travel time, t R w l , can be calculated by summing the corresponding link travel times along the path:
t R w l = a i j t i j δ i j w l
where δ i j w l is the link-path incidence relationship, δ i j w l = 1 means that (partial) link a i j is on path p R w l , and otherwise δ i j w l = 0 . In the road network with turn restrictions, the least time path can be determined by shortest path algorithm using a link-based labeling technique [33]. It should be noted that the classical node-based Dijkstra’s algorithm [34] ignores turn restrictions and may lead to infeasible paths.
Let t R o w be the least travel time from the origin to location w , and let t R w d be the least travel time from location w to the destination. By replacing t R o w and t R w d with t E o w and t E w d in Equations (1)–(4), the NTP in the road network can be expressed as
NTP ( t ) = FC ( t ) BC ( t ) CY ( t )
FC ( t ) = { w | t t o + t R o w , t t d }
BC ( t ) = { w | t t d t R w d , t t o }
CY ( t ) = { w | t R o w + t R w d t d t o c min , t o t < t d }
This NTP delimits an individual’s accessible Space-time locations in the road network between origin o = ( a o , θ o ) and destination d = ( a d , θ d ) during the time period of t o to t d . The height of the NTP at location w represents the maximum activity duration c w at the location as:
c w = t w + t w = ( t d t R w d ) ( t o + t R o w )
where t w = t o + t R o w and t w + = t d t R w d , respectively, are the earliest arrival time and the latest departure time from the location.
Figure 3 illustrates a simple NTP in a road network. As can be seen in the figure, the NTP comprises a set of 2D Space-time polygons { , Q i j } on network links. Each Space-time polygon Q i j = { ( x i , y i , t i + ) , , ( x j , y j , t j + ) , ( x j , y j , t j ) , , ( x i , y i , t i ) } represents all accessible Space-time locations along network link a i j [23]. The projection of the NTP onto the 2D geographic space is the potential network area (PNA), comprising a set of accessible (partial) links { , a i j } . Let p R o j be the least time path from origin o to node j passing through link a i j , and let p R i d be the least time path from node i to destination d passing through link a i j . Their path travel times are t R o j and t R i d , respectively. Accessible link a i j P N A should satisfy following travel time budget constraint:
t R o j + t R i d t i j b = t d t o c min
It can be observed from Figure 3 that divided and undivided links could have significant differences in their 2D polygons. Firstly, identical Space-time polygons can be generated on two opposite links of an undivided road, but not a divided road. For example, origin o = ( a 12 , 0.5 ) in the figure is located on undivided link a 12 . Since travelers can make U-turns freely on the undivided road, identical Space-time polygons (i.e., Q o 2 = Q 2 o and Q o 1 = Q 1 o ) are generated on opposite links a 12 to a 21 . The situation is, however, different for destination d = ( a 36 , 0.5 ) , located on divided link a 36 . As travelers cannot make U-turns at divided links, different shapes of Space-time polygons (i.e., Q 63 Q 3 d and Q 63 Q d 6 ) are generated on opposite links a 36 to a 63 . Secondly, partial links within the NTP can be observed only on undivided roads and not on divided roads. For example, it can be seen from the figure that Node 1 is within the PNA, but Node 4 is not. As link a 14 is undivided, travelers can access part of the locations on the link and turn back to Node 1; and, thus, partial links a 1 e and a e 1 are accessible with Space-time polygons Q 1 e and Q e 1 . It can also be seen from the figure that partial links are not accessible for divided links a 56 and a 65 . Although Node 6 is accessible within the PNA, travelers cannot reach other locations at the link and return to Node 6 by making U-turns on the divided link. Therefore, divided and undivided links can have significantly different Space-time polygons and should be explicitly considered in the NTP model.

4. Geo-Computational Algorithms for Constructing Network-Time Prisms

Similar to the existing NTP-Dij algorithm [6,31], a straightforward algorithm for constructing a NTP is to apply two shortest path searches using the link-based one-all Dijkstra’s algorithm [33]. The forward search is used to calculate the least travel time t R o j from origin o to every link a i j (i.e., head node j ). The backward search is to calculate the least travel time t R i d from every link a i j (i.e., tail node i ) to destination d . Then, accessible links a i j P N A satisfying t R o j + t R i d t i j b can be identified. This straightforward algorithm is easy to implement by directly using the existing link-based Dijkstra’s algorithm. However, it can lead to considerable computational overheads by exploring all network links twice, given the fact that accessible links in the NTP are generally a small portion of the entire network.
In this study, an efficient algorithm (called the NTP-A* algorithm) is proposed by using A* and branch-and-bound techniques. The A* technique, utilizing a heuristic evaluation function, is proved to be effective in improving shortest path search performance. The branch-and-bound technique tries to discard inaccessible links a i j P N A (i.e., t R o j + t R i d t i j > b = t d t o c min ) during forward and backward shortest path searches, rather than after the shortest path searches. Using these two techniques, the proposed NTP-A* algorithm can significantly reduce the number of explored links by the two shortest path searches and can thereby improve the NTP construction performance. The detailed steps of the NTP-A* algorithm are described below.
Step 1. Road network modification. In classical shortest path algorithms, the origin and destination should be located at network nodes. This step is to address the situation of the origin at link a i j (destination at link a u v ) by adding temporary node o ( d ) and links a i o and a o j ( a u d and a d v ) into network G . If link a i j ( a u v ) is an undivided link, additional temporary links a o i and a j o ( a d u and a v d ) are also added in the opposite direction.
Step 2. Forward shortest path search. This step is to determine the least travel time t R o j from the origin to each network link a i j by using the following R-FSP procedure (Road–Forward Search Procedure). Using the A* technique, a heuristic evaluation function F ( j ) = t R o j + h ( j ) is used as heuristic cost for the forward shortest path p R o j from the origin to link a i j , where h ( j ) is the estimated lower bound of t R i d t i j . Since the Euclidean travel time t E j d from node j to the destination always satisfies t E j d t R i d t i j , this study adopts t E j d as the admissible h ( j ) value. The t E j d in the planar space can be calculated by d E j d / v R max , where v R max is the maximum travel speed in the road network. Using the A* technique, the information of each link to the destination can be fully utilized to guide the forward shortest path search. The branch-and-bound technique is further incorporated in the forward search to discard all paths p R o j , a i j A satisfying F ( j ) = t R o j + t E j d > b . Because t R o j + t R i d t i j F ( j ) = t R o j + t E j d always holds, all paths satisfying F ( j ) > b can be identified as inaccessible links outside the NTP, and thus can be eliminated during the forward search. In this way, the forward search explores only a part of links p R o j ϕ , a i j A ; other links p R o j = ϕ , a i j A outside the NTP are not explored.
R-FSP Procedure
Inputs: origin o and destination d , travel time budget b
Outputs: the least travel times at accessible links
Step 1. Initialization:
01: For each link a i j A
02:    Set forward path p R o j : = ϕ , its travel time t R o j : = and heuristic cost F ( j ) : = .
03: End For
04: For each link a o j emanating from origin o
05:    Create a forward path p R o j : = a o j , and set t R o j : = t o j and F ( j ) : = t o j + t E j d .
06:    Insert p R o j into the scan eligible S E : = S E { p R o j } .
07: End For
Step 2. Path selection:
08: If S E = ϕ , then stop; otherwise, continue.
09: Select p R o i at the top of S E , and remove it from S E : = S E { p R o i } .
Step 3. Path extension:
10: For each allowed movement ψ k i j from selected link a k i to link a i j
11:    Create a forward path p ^ R o j : = p R o i a i j , and set t ^ R o j : = t R o i + t i j and F ( j ) : = t ^ R o j + t E j d .
12:    If F ( j ) b then
13:     If t ^ R o j is less than the existing path travel cost t R o j then
14:      If existing path p R o j S E , then set S E : = S E { p R o j } .
15:      Set p R o j : = p ^ R o j and S E : = S E { p ^ R o j } .
16:     End If
17:    End If
18: End For
19: Go back to Step 2.
Step 3. Backward shortest path search. This step is to determine the least travel time t R i d from each network link a i j to the destination by using the following R-BSP procedure (Road-Backward Search Procedure). Using the A* technique, the heuristic evaluation function F ( i ) = t R i d + h ( i ) is used as the path heuristic cost for the backward shortest path from the destination to link a i j , where h ( i ) is an estimated lower bound of t R o j t i j . In this study, the least travel time t R o j t i j calculated in the forward search is utilized as the h ( i ) value in this backward search. Unexplored links (with p R o j = ϕ , t R o j + t E j d > b ) in the forward search are outside the NTP and thus can be safely discarded in the backward search. Using this method, the results of the forward search are fully utilized to speed up the backward search. The branch-and-bound technique is incorporated to discard all links outside the NTP (i.e., all paths satisfying F ( i ) = t R o j + t R i d t i j > b ) during the backward shortest path search process. After the back search, explored links with p R i d ϕ , a i j A can be determined as accessible full links within the NTP.
R-BSP Procedure
Inputs: origin o and destination d , travel time budget b
Outputs: all accessible links in the network-time prism
Step 1. Initialization:
01: For each link a i j A
02:    Set backward path p R i d : = ϕ , its travel time t R i d : = and heuristic cost F ( i ) : = .
03: End For
04: For each link a i d merging to destination d
05:    If forward path p R o d ϕ at link a i d then
06:     Create a backward path p R i d : = a i d , and set t R i d : = t i d and F ( i ) : = t R i d + t R o d t i d .
07:     Insert p R i d into the scan eligible S E : = S E { p R i d } .
08:    End If
09: End For
Step 2. Path selection:
10: If S E = ϕ , then stop; otherwise, continue.
11: Select p R j d at the top of S E , and remove it from S E : = S E { p R j d } .
Step 3. Path extension:
12: For each allowed movement ψ i j k from link a i j to selected link a j k
13:    If forward path p R o j ϕ at link a i j then
14:     Create a backward path p ^ R i d : = a i j p R j d , and set t ^ R i d : = t R j d + t i j and F ( i ) : = t ^ R i d + t R o j t i j .
15:     If F ( i ) b then
16:      If t ^ R i d is less than the existing path travel cost t R i d then
17:       If existing label p R i d S E , then set S E : = S E { p R i d } .
18:       Set p R i d : = p ^ R i d and S E : = S E { p ^ R i d } .
19:      End If
20:     End If
21:    End If
22: End For
23: Go back to Step 2.
Step 4. Potential network area construction. This step is to determine accessible full and partial links in the NTP. Using the results of Step 3, all accessible full links can be easily determined as the explored links (with p R i d ϕ , a i j A ). Among them, divided and undivided full links are maintained, respectively, in two link sets, D L and U L . For each accessible undivided full link a i j U L , its opposite link a j i is also included in U L . All accessible partial links are identified and stored in another set, P L . Any accessible partial link a j k P L can be identified if the link a j k is undivided, satisfies a j k ( D L U L ) , and connects to an accessible link a i j ( D L U L ) , ψ i j k = ( a i j , a j k ) .
Step 5. Network–time prism construction. This step is to construct Space-time polygon Q i j for each accessible (partial) link a i j . Different shapes of space-time polygons are constructed for links in D L , U L and P L as follows:
The divided link scenario (i.e., a i j D L ). The earliest arrival time and latest departure time at tail node i can be calculated as t i = t o + t R o j t i j and t i + = t d t R i d . The earliest arrival time and latest departure time at head node j are determined as t j = t o + t R o j and t j + = t d t R i d + t i j . The Space-time polygon can be constructed as Q i j = { ( x i , y i , t i + ) , ( x j , y j , t j + ) , ( x j , y j , t j ) , ( x i , y i , t i ) } . If the link a i j has one or many intermediate vertices, then ( x w , y w , t w ) , ( x w , y w , t w + ) are also calculated and included in Q i j for each intermediate vertex w . The t w and t w + values at each vertex w can be interpolated from those of the tail and head nodes.
The undivided link scenario (i.e., a i j U L ). Firstly, two Space-time polygons Q i j and Q j i are constructed for two opposite links a i j and a j i , using the same method of the above-mentioned divided link scenario. Then, constructed polygons Q i j and Q j i are merged into a new polygon Q ¯ i j . Finally, the merged polygon Q ¯ i j is set as the polygons for both links a i j and a j i .
The partial link scenario (i.e., a j k P L ). Let P D S ( a j k ) = { ψ i j k = ( a i j , a j k ) Ψ } be a set of accessible predecessor links of the link a j k . The earliest arrival time and latest departure time at node j are determined as t j = min ( t o + t R o j ) and t j + = max ( t d t R i d + t i j ) among all accessible predecessor links, a i j P D S ( a j k ) . To determine accessible partial link a j e , its end node e = ( a j k , θ e ) is calculated by θ e = ( t j + t j c min ) / ( t j k + t k j ) . Its earliest arrival time and latest departure time are calculated as t e = t j + t j k θ e and t e + = t j + t j k θ e . A Space-time polygon is constructed for partial link a j e through ψ i j k as Q j e = { ( x j , y j , t j + ) , ( x e , y e , t e + ) , ( x e , y e , t e ) , ( x j , y j , t j ) } . If partial link a j e has one or many intermediate vertices, then the corresponding ( x w , y w , t w ) , ( x w , y w , t w + ) are also calculated and included in Q j e for every intermediate vertex w . Then, using a similar method, polygon Q e k for partial link a k e in the opposite direction is constructed. These two constructed polygons, Q j e and Q e k , are merged into a new polygon Q ¯ j k . Finally, the merged polygon Q ¯ j k is set as polygons for both directions.
Step 6. Road network restoration. This step is to restore road network G by removing the temporary nodes and links added in Step 1.
The computational complexity of the proposed NTP-A* algorithm is analyzed. With the implementation of a priority queue using the F-heap structure [35], both forward and backward shortest path searches (Steps 2 and 3) require O ( | Ψ | + | A | L o g | A | ) in the worst case, where | Ψ | is the number of turns in the road network and | A | is the number of links in the road network. In Steps 4 and 5, both PNA construction and NTP construction run in O ( | A | ) . In summary, the total computational time is O ( | Ψ | + | A | L o g | A | ) . Therefore, the performance of the NTP-A* algorithm is dominated by the two shortest path searches in Steps 2 and 3.
The improvement of the two shortest path searches (i.e., R-FSP and R-BSP algorithms) could significantly enhance the NTP construction performance. In addition to A* and branch-and-bound techniques, several implementation issues can affect the shortest path searching performance. Conventionally, the A*-based shortest path searches utilize the label-setting technique by using priority queue data structures (e.g., F-heap) for SE (scan eligible) implementation. The label-correcting technique, by using the linked-list data structure, is suggested for the proposed NTP-A* algorithm due to its computational efficiency. In the above-mentioned R-FSP and R-BSP algorithms, the link-based labeling technique [33] is adopted to consider turn restrictions in the road network. Recently, Li et al. [36] proposed a new hybrid link-node labeling technique by adaptively using a node-based labeling technique at nodes without turn restrictions and a link-based labeling technique at nodes with turn restrictions. It was reported [36] that the hybrid link-node labeling technique can determine the least time path in a road network with turn restrictions, while achieving a similar computational performance as the classical node-based Dijkstra’s algorithm. It is noted that, theoretically, these techniques (i.e., A* and branch-and-bound techniques, and label-correcting and hybrid link-node labeling techniques) do not affect the worst-case complexity of the NTP-A* algorithm (which is the same as that of the existing NTP-Dij and NTP-SN algorithms). In practice, these techniques can significantly enhance the NTP construction performance in real-world road networks. The effectiveness of such techniques will be examined and discussed in the next section though a comprehensive case study.

5. Case Study

In this study, a comprehensive case study using real-world road networks is carried out to investigate the computational performance of the proposed NTP-A* algorithm. The proposed NTP-A* algorithm was implemented using the Visual C# programming language. A link-based adjacency list structure [33] was employed to load the road network into the memory. The link-based label-correcting technique was adopted for implementing the R-FSP and R-BSP procedures. For comparison, three other NTP construction algorithms were also implemented using the same programming language. The first algorithm, called NTP-BB, only employs the branch-and-bound technique, but sets the heuristic evaluation function to be zero for both R-FSP and R-BSP algorithms. The second algorithm, called NTP-Dij, employs neither the A* technique nor the branch-and-bound technique. This algorithm was modified from the existing straightforward algorithm [31] by using the link-based Dijkstra’s algorithm to consider the turn restrictions in road networks. The third algorithm (called NTP-SN) was implemented based on the existing algorithm of constructing the NTP within a sub-network [28,29]. In this NTP-SN algorithm, the sub-network was constructed by selecting nodes and links within the STP in the planar space; and then the NTP-Dij algorithm was directly utilized to construct the NTPs. In the implementation, the sub-network was generated by simply setting an “enable” attribute as true for corresponding nodes and links within the sub-network. The maximum travel speed (i.e., v R max ) was set as 120 km/h. In this case study, all experiments were conducted on a MacBook Air laptop with a four-core Intel i7 CPU running at 2.0 GHz and the Windows 7 operating system.
The road network in Wuhan, China, with detailed information of turn restrictions and divided/undivided roads, was adopted for this case study. As shown in Figure 4, the Wuhan road network consists of 19,306 nodes, 46,757 links and 128,965 turns. In this road network, 24,909 links are divided (i.e., 53.3% of total links) and other 21,848 links (i.e., 46.7% of total links) are undivided. The number of restricted turns is 1681, accounting for only 1.30% of total turns. To obtain link travel times of the Wuhan road network, real-world floating car data (FCD) were collected on a typical Thursday (3 September 2009). Figure 4 shows the estimated travel times during an evening peak period (6 p.m.–7 p.m.). For the detailed method of estimating these travel times, interested readers may refer to Reference [5].
Table 1 reports the computational performance of all four algorithms (i.e., NTP-A*, NTP-BB, NTP-Dij and NTP-SN) in the Wuhan road network. The travel time budget (i.e., b ) values were set from 10 to 150 min. The size of a NTP was measured by the percentage of links within the NTP over the whole network. The computational performance of all algorithms was measured by computational times ( t ˜ ) and the number of selected links ( n ˜ ). The reported computational performance was the average of 100 runs using different origin and destination (O-D) pairs. The 100 O-D pairs were randomly generated in the network and the same set of O-D pairs was used for all algorithms.
As can be seen from the table, the computational performance of the NTP-A* algorithm degraded with the increase of the travel time budget (i.e., b ) values. For example, when b = 10 min, the NTP-A* algorithm requires only 5.75 ms. When b = 150 min, this computational time significantly increases to 593.18 ms. This result is obvious, due to the increase in NTP size from 1.02% to 96.71% when the b values increase from 10 to 150 min. It can be observed from the table that the travel time budget parameter has no impact on the computational performance of the NTP-Dij algorithm, which consumed 629.23 ms for all b values. This is because the NTP-Dij algorithm utilizes two one-to-all shortest path searches to determine the earliest departure time and latest arrival time for every network link, regardless of different b values. The NTP-Dij algorithm, therefore, can have a significant computational overhead by exploring a large number of unnecessary network links, when the NTP size is small. For example, when b = 10 min, the computational time consumed by the NTP-Dij algorithm was about 108 times (i.e., 629.23/5.75 − 1) more than that of the proposed NTP-A* algorithm.
Compared with the NTP-Dij algorithm, the NTP-SN algorithm constructs the NTP in a sub-network within the STP in the planar space, instead of the whole network. It can be seen from the table that this NTP-SN algorithm can improve the NTP construction performance when the travel time budget is very small (e.g., b = 10 min). However, this computational improvement degrades quickly with the increase of the travel time budget (e.g., b = 30 min). This is because the sub-network defined by the STP in the planar space was generally quite a bit larger than the actual NTP. When the travel time budget becomes large (e.g., b > 30 min), the sub-network may reach the whole network. In this case, the sub-network generation can introduce an additional computational burden.
The proposed NTP-A* algorithm utilizes both A* and branch-and-bound techniques to improve the NTP construction performance. The effectiveness of the branch-and-bound technique was investigated through a comparison between the NTP-Dij and NTP-BB algorithms. Using the branch-and-bound technique, the NTP-BB algorithm can discard inaccessible network links of which travel times to the destination (i.e., t R i d ) (or from the origin, i.e., t R o j ) are larger than the given travel time budget b . Compared with the NTP-Dij algorithm, this introduced branch-and-bound technique can significantly reduce the number of explored unnecessary links and thereby improve the NTP construction performance. For example, when b = 10 min, the branch-and-bound technique reduced the number of selected links by 98.96% (i.e., 1 − 7694/743853). The NTP-BB algorithm, therefore, runs about 83 times faster than the NTP-Dij algorithm when b = 10 min. Nevertheless, it can be found from the table that the effectiveness of the branch-and-bound technique degrades with the increase of travel time budget values, and becomes marginal when the size of the NTP approaches the whole network (i.e., 100%).
The effectiveness of the A* technique was examined by a comparison between the NTP-BB and NTP-A* algorithms. In the proposed NTP-A* algorithm, both the A* and branch-and-bound techniques were employed to discard the unnecessary links of which heuristic costs to the destination (i.e., t R i d + h ( i ) ) (or from the origin, i.e., t R o j + h ( j ) ) are larger than the given travel time budget b . In the forward search, a heuristic function h ( j ) = t E j d was introduced by incorporating the information of each link to the destination, while, in the backward search, the heuristic function h ( i ) = t R o i was adopted by best using the forward search results. Compared with the NTP-BB algorithm, the introduced A* technique was effective in reducing the number of selected links by 60.75% and improved the NTP construction performance by 30.78% when b = 10 min. The effectiveness of this A* technique became more distinct when a medium-size NTP was used. For example, when b = 40 min, the A* technique can reduce the number of selected links by 62.63% and improve the NTP construction performance by 103.90%. Similar to the branch-and-bound technique, the effectiveness of the A* technique becomes marginal when the size of the NTP approaches that of the whole network.
Several implementation techniques of the proposed NTP-A* algorithm were also examined. Examined first was the effectiveness of the label-correcting technique in SE implementation. Conventionally, the A*-type shortest path algorithm utilizes the label-setting technique [37,38]. For comparison, this label-setting technique was also implemented in the case study using an F-heap data structure [35] (called the NTP-A*-LS algorithm). Figure 5 illustrates the computational performance of the NTP-A* and NTP-A*-LS algorithms in the Wuhan road network. As shown in the figure, the NTP-A* algorithm using the label-correcting technique runs faster than the NTP-A*-LS algorithm using the label-setting technique. This is because the priority queue structure in the label-setting technique was computationally expensive relative to the linked-list data structure used in the label-correcting technique.
The labeling techniques for considering turn restrictions were then examined. The NTP-A* algorithm (i.e., the R-FSP and R-BSP procedures) based on the link-based labeling technique can be further enhanced by using the hybrid link-node labeling technique [36]. The hybrid link-node labeling technique adaptively uses the node-based labeling technique for unrestricted nodes without turn restrictions, and the link-based labeling technique for restricted nodes with turn restrictions. Using this hybrid link-node labeling technique, the number of paths generated, evaluated and maintained at unrestricted nodes can be reduced compared with the link-based labeling technique. Because the number of restricted nodes was small in most road networks (e.g., the Wuhan network), such a hybrid link-node labeling technique can significantly improve the computational performance of the R-BSP and R-BSP procedures. The enhanced algorithm was referred as the NTP-A*-HLN algorithm for convenience. As can be seen in the figure, the NTP-A*-HLN algorithm runs 1.99 times faster than the NTP-A* algorithm when b = 60 min.
The computational performance of the proposed NTP-A*-HLN algorithm was further examined using four road networks with different sizes. Two existing algorithms (NTP-Dij and NTP-SN) were also examined for comparison. In addition to the Wuhan network, three other networks, the Hong Kong RTIS, the Chicago Regional and the Beijing network, were obtained from References [36,38]. Table 2 gives the computational performance of the three algorithms. The reported computational performance was the average of 100 runs using randomly generated O-D pairs for each network. The travel time budget parameter was set as 30 min for all networks.
As can be seen from the table, the computational times of the three algorithms increased with the network size. The NTP-A*-HLN algorithm consumed only 2.85 ms for constructing NTPs in the Hong Kong RTIS with 3655 links. When the Beijing network was used, the size of the road network increased 30.39 times and the computational time increased by 17.24 times to 52.01 ms. Compared with the NTP-A*-HLN algorithm, the NTP-Dij algorithm degrades significantly with network size. For example, when the Beijing network was analyzed, the computational time required by the NTP-Dij algorithm increased by about 890.53 times (7809.83/8.76 − 1). This is because the NTP-Dij algorithm constructs the NTP by exploring the whole network twice. In this case, the computational time of the NTP-Dij algorithm is more sensitive to the network size. It can be observed from the table that the NTP-SN algorithm runs in a similar way to the NTP-Dij algorithm. This result confirmed that the effectiveness of constructing NTPs in the sub-networks using the STP in the planar space is marginal.

6. Conclusions

The Space-time prism is a key concept in time geography for analyzing human activity-travel behavior under various Space-time constraints. It has broad applications in numerous time-geographic studies. However, few efficient geo-computational algorithms have been developed in the literature for constructing network–time prisms (NTPs) in realistic road networks. To fill this gap, this study investigated NTP models and geo-computational algorithms. A NTP model was proposed to differentiate divided and undivided roads, and to allow individuals to make U-turns and access partial links on undivided roads. A geo-computational algorithm (called NTP-A*) was developed for efficiently constructing NTP in large-scale road networks. In the proposed algorithm, the A* and branch-and-bound techniques were employed to improve the NTP construction performance by discarding inaccessible links during two shortest path searches. The label-correcting and hybrid link-node labeling techniques were employed to improve the performance of constructing NTPs in road networks with turn restrictions. A comprehensive case study using four real road networks was carried out to demonstrate the computational advantage of the proposed NTP-A* algorithm. Experimental results showed that the proposed NTP-A* algorithm can significantly improve the existing algorithms (i.e., NTP-Dij and NTP-SN) by a factor of 100 in large-scale road networks (e.g., the Beijing network).
In this study, travel times in road networks are assumed to be static and deterministic. The proposed NTP-A* algorithm can be easily extended to construct NTPs in dynamic networks, where link travel times are varying with the time of the day. In this dynamic case, time-dependent shortest path algorithms [39] should be adopted instead of the classical Dijkstra’s algorithm. The introduced implementation techniques (including the A* and branch-and-bound techniques) are still effective for such a dynamic case. The proposed NTP-A* algorithm can also be extended to construct reliable Space-time prisms [17] in road networks with travel time uncertainties. In this stochastic case, both the A* and branch-and-bound techniques are effective, but reliable shortest path algorithms [38,40,41] should be employed for the two shortest path searches. However, the NTP construction problem becomes challenging when both dynamic and stochastic characteristics of travel times are considered. In the dynamic and stochastic networks, path travel times are found to be non-reversible [42] and cannot be generated in the reverse direction from the destination. It is an open question how to develop an efficient approach to determine the latest departure times for all accessible nodes. We leave this important extension to future research.

Acknowledgments

The work described in this paper was jointly supported by research grants from the National Natural Science Foundation of China (Nos. 41231171, 41571149 and 41371377).

Author Contributions

Hui-Ping Chen, Bi Yu Chen, Yafei Wang and Qingquan Li provided the idea for this study. Hui-Ping Chen implemented the solution algorithm and carried out the case study. Hui-Ping Chen and Bi Yu Chen wrote the manuscript. Yafei Wang and Qingquan Li made important comments and suggestions on the manuscript.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Hägerstrand, T. What about people in regional science? Pap. Reg. Sci. 1970, 24, 7–24. [Google Scholar] [CrossRef]
  2. Miller, H.J. A measurement theory for time geography. Geogr. Anal. 2005, 37, 17–45. [Google Scholar] [CrossRef]
  3. Kwan, M.P. Space–time and integral measures of individual accessibility: A comparative analysis using a point-based framework. Geogr. Anal. 1998, 30, 191–216. [Google Scholar] [CrossRef]
  4. Miller, H.J. Measuring Space–time accessibility benefits within transportation networks: Basic theory and computational procedures. Geogr. Anal. 1999, 31, 187–212. [Google Scholar] [CrossRef]
  5. Chen, B.Y.; Yuan, H.; Li, Q.Q.; Wang, D.G.; Shaw, S.-L.; Lam, W.H.K. Measuring place-based accessibility under travel time uncertainty. Int. J. Geogr. Inf. Sci. 2016. [Google Scholar] [CrossRef]
  6. Charleux, L. A GIS toolbox for measuring and mapping person-based space-time accessibility. Trans. GIS 2015, 19, 262–278. [Google Scholar] [CrossRef]
  7. Mansour, S. Spatial analysis of public health facilities in Riyadh Governorate, Saudi Arabia: A GIS-based study to assess geographic variations of service provision and accessibility. Geo. Spat. Inf. Sci. 2016, 19, 26–38. [Google Scholar] [CrossRef]
  8. Timmermans, H.; Arentze, T.; Joh, C.H. Analysing Space-time behaviour: New approaches to old problems. Prog. Hum. Geogr. 2002, 26, 175–190. [Google Scholar] [CrossRef]
  9. Pendyala, R.M.; Yamamoto, T.; Kitamura, R. On the formulation of time-space prisms to model constraints on personal activity-travel engagement. Transportation 2002, 29, 73–94. [Google Scholar] [CrossRef]
  10. Fu, X.; Lam, W.H.K.; Xiong, Y. Modelling intra-household interactions in household’s activity-travel scheduling behaviour. Transp. A 2016, 12, 612–628. [Google Scholar] [CrossRef]
  11. Tong, L.; Zhou, X.; Miller, H.J. Transportation network design for maximizing Space-time accessibility. Transp. Res. B Methodol. 2015, 81, 555–576. [Google Scholar] [CrossRef]
  12. Neutens, T.; Schwanen, T.; Witlox, F. The prism of everyday life: Towards a new research agenda for time geography. Transp. Rev. 2011, 31, 25–47. [Google Scholar] [CrossRef]
  13. Miller, H.J. Modelling accessibility using Space-time prism concepts within geographical information systems. Int. J. Geogr. Inf. Sci. 1991, 5, 287–301. [Google Scholar] [CrossRef]
  14. Kim, H.-M.; Kwan, M.-P. Space-time accessibility measures: A geocomputational algorithm with a focus on the feasible opportunity set and possible activity duration. J. Geogr. Syst. 2003, 5, 71–91. [Google Scholar] [CrossRef]
  15. Miller, H.J.; Bridwell, S.A. A field-based theory for time geography. Ann. Assoc. Am. Geogr. 2009, 99, 49–75. [Google Scholar] [CrossRef]
  16. Wu, Y.H.; Miller, H.J. Computational tools for measuring Space-time accessibility within transportation networks with dynamic flow. J. Transp. Stat. 2001, 4, 1–14. [Google Scholar]
  17. Chen, B.Y.; Li, Q.Q.; Wang, D.G.; Shaw, S.L.; Lam, W.H.K.; Yuan, H.; Fang, Z.X. Reliable Space-time prisms under travel time uncertainty. Ann. Assoc. Am. Geogr. 2013, 103, 1502–1521. [Google Scholar] [CrossRef]
  18. Neutens, T.; Witlox, F.; van de Weghe, N.; de Maeyer, P. Human interaction spaces under uncertainty. Transp. Res. Rec. 2007, 2021, 28–35. [Google Scholar] [CrossRef]
  19. Chen, B.Y.; Wang, Y.; Tu, W.; Yuan, H.; Li, Q.Q.; Wuhan University, Wuhan, China. Unpublished work. 2016.
  20. Kwan, M.P. Interactive geovisualization of activity-travel patterns using three-dimensional geographical information systems: A methodological exploration with a large data set. Transp. Res. C Emerg. Technol. 2000, 8, 185–203. [Google Scholar] [CrossRef]
  21. Shaw, S.L.; Yu, H.B. A GIS-based time-geographic approach of studying individual activities and interactions in a hybrid physical-virtual space. J. Transp. Geogr. 2009, 17, 141–149. [Google Scholar] [CrossRef]
  22. Neutens, T.; Van de Weghe, N.; Witlox, F.; de Maeyer, P. A three-dimensional network-based Space-time prism. J. Geogr. Syst. 2008, 10, 89–107. [Google Scholar] [CrossRef]
  23. Chen, B.Y.; Yuan, H.; Li, Q.Q.; Shaw, S.-L.; Lam, W.H.K.; Chen, X. Spatiotemporal data model for network time geographic analysis in the era of big data. Int. J. Geogr. Inf. Sci. 2016, 30, 1041–1071. [Google Scholar] [CrossRef]
  24. Long, J.A.; Nelson, T.A. A review of quantitative methods for movement data. Int. J. Geogr. Inf. Sci. 2013, 27, 292–318. [Google Scholar] [CrossRef]
  25. Tang, J.; Song, Y.; Miller, H.J.; Zhou, X. Estimating the most likely Space-time paths, dwell times and path uncertainties from vehicle trajectory data: A time geographic method. Transp. Res. C Emerg. Technol. 2016, 66, 176–194. [Google Scholar] [CrossRef]
  26. Chen, B.Y.; Yuan, H.; Li, Q.Q.; Lam, W.H.K.; Shaw, S.-L.; Yan, K. Map matching algorithm for large-scale low-frequency floating car data. Int. J. Geogr. Inf. Sci. 2014, 28, 22–38. [Google Scholar] [CrossRef]
  27. Versichele, M.; Neutens, T.; Claeys Bouuaert, M.; Van de Weghe, N. Time-geographic derivation of feasible co-presence opportunities from network-constrained episodic movement data. Trans. GIS 2014, 18, 687–703. [Google Scholar] [CrossRef]
  28. Kuijpers, B.; Othman, W. Modeling uncertainty of moving objects on road networks via Space-time prisms. Int. J. Geogr. Inf. Sci. 2009, 23, 1095–1117. [Google Scholar] [CrossRef]
  29. Othman, W. Uncertainty Management in Trajectory Databases. Ph.D. Thesis, Hasselt University, Diepenbeek, Belgium, 19 May 2009. [Google Scholar]
  30. Liu, X.; Kang, C.G.; Gong, L.; Liu, Y. Incorporating spatial interaction patterns in classifying and understanding urban land use. Int. J. Geogr. Inf. Sci. 2016, 30, 334–350. [Google Scholar] [CrossRef]
  31. Yu, H.; Shaw, S.L. Exploring potential human activities in physical and virtual spaces: A spatio-temporal GIS approach. Int. J. Geogr. Inf. Sci. 2008, 22, 409–430. [Google Scholar] [CrossRef]
  32. Miller, H.J.; Shaw, S.L. Geographic Information Systems for Transportation: Principles and Applications; Oxford University Press: New York, NY, USA, 2001. [Google Scholar]
  33. Gutierrez, E.; Medaglia, A.L. Labeling algorithm for the shortest path problem with turn prohibitions with application to large-scale road networks. Ann. Oper. Res. 2008, 157, 169–182. [Google Scholar] [CrossRef]
  34. Dijkstra, E.M. A note on two problems in connexion with graphs. Numer. Math. 1959, 1, 269–271. [Google Scholar] [CrossRef]
  35. Fredman, M.L.; Tarjan, R.E. Fibonacci heaps and their uses in improved network optimization algorithms. J. ACM 1987, 34, 596–615. [Google Scholar] [CrossRef]
  36. Li, Q.Q.; Chen, B.Y.; Wang, Y.; Lam, W.H.K. A hybrid link-node approach for finding shortest paths in road networks with turn restrictions. Trans. GIS 2015, 19, 915–929. [Google Scholar] [CrossRef]
  37. Zeng, W.; Church, R.L. Finding shortest paths on real road networks: The case for A*. Int. J. Geogr. Inf. Sci. 2009, 23, 531–543. [Google Scholar] [CrossRef]
  38. Chen, B.Y.; Lam, W.H.K.; Sumalee, A.; Li, Q.Q.; Shao, H.; Fang, Z.X. Finding reliable shortest paths in road networks under uncertainty. Netw. Spat. Econ. 2013, 13, 123–148. [Google Scholar] [CrossRef]
  39. Chabini, I.; Lan, S. Adaptations of the A* algorithm for the computation of fastest paths in deterministic discrete-time dynamic networks. IEEE Trans. Intell. Transp. Syst. 2002, 3, 60–74. [Google Scholar] [CrossRef]
  40. Chen, B.Y.; Lam, W.H.K.; Sumalee, A.; Li, Z.L. Reliable shortest path finding in stochastic networks with spatial correlated link travel times. Int. J. Geogr. Inf. Sci. 2012, 26, 365–386. [Google Scholar] [CrossRef]
  41. Chen, B.Y.; Lam, W.H.K.; Li, Q.Q. Efficient solution algorithm for finding spatially dependent reliable shortest path in road networks. J. Adv. Transp. 2016, 50, 1413–1431. [Google Scholar] [CrossRef]
  42. Chen, B.Y.; Lam, W.H.K.; Sumalee, A.; Li, Q.Q.; Tam, M.L. Reliable shortest path problems in stochastic time-dependent networks. J. Intell. Transp. Syst. 2014, 18, 177–189. [Google Scholar] [CrossRef]
Figure 1. Space-time prism and related concepts.
Figure 1. Space-time prism and related concepts.
Ijgi 05 00214 g001
Figure 2. A simple road network.
Figure 2. A simple road network.
Ijgi 05 00214 g002
Figure 3. An illustrative network-time prism.
Figure 3. An illustrative network-time prism.
Ijgi 05 00214 g003
Figure 4. The road network of Wuhan City.
Figure 4. The road network of Wuhan City.
Ijgi 05 00214 g004
Figure 5. Computational times of three different implementations of the NTP-A* algorithm.
Figure 5. Computational times of three different implementations of the NTP-A* algorithm.
Ijgi 05 00214 g005
Table 1. Computational performance of the four algorithms.
Table 1. Computational performance of the four algorithms.
Travel Time Budget (min)NTP SizeNTP-A*NTP-BBNTP-DijNTP-SN
t ˜ n ˜ t ˜ n ˜ t ˜ n ˜ t ˜ n ˜
101.02%5.7530207.527694629.23743,85371.28101,899
202.96%14.5512,61221.3134,343629.23743,853364.45461,742
308.09%36.0236,30063.1699,646629.23743,853539.69671,069
4014.18%77.9176,918149.87216,165629.23743,853667.78743,853
5021.69%143.75137,844293.11368,942629.23743,853667.78743,853
6031.27%243.12218,397399.09514,266629.23743,853667.78743,853
9063.83%468.05472,997565.62697,992629.23743,853667.78743,853
12088.32%531.21633,165586.07725,898629.23743,853667.78743,853
15096.71%593.18702,050600.09736,739629.23743,853667.78743,853
t ˜ : Computational time in ms; n ˜ : Number of selected links.
Table 2. Computational times of the three NTP construction algorithms in ms.
Table 2. Computational times of the three NTP construction algorithms in ms.
NetworksNodesLinksNTP SizeNTP-A*-HLNNTP-DijNTP-SN
Hong Kong RTIS1367365525.32%2.858.769.61
Chicago Regional12,98139,0187.32%19.601459.421178.01
Wuhan network19,30646,7578.09%17.66629.23539.69
Beijing network59,541114,7377.01%52.017809.834891.62

Share and Cite

MDPI and ACS Style

Chen, H.-P.; Chen, B.Y.; Wang, Y.; Li, Q. Efficient Geo-Computational Algorithms for Constructing Space-Time Prisms in Road Networks. ISPRS Int. J. Geo-Inf. 2016, 5, 214. https://0-doi-org.brum.beds.ac.uk/10.3390/ijgi5110214

AMA Style

Chen H-P, Chen BY, Wang Y, Li Q. Efficient Geo-Computational Algorithms for Constructing Space-Time Prisms in Road Networks. ISPRS International Journal of Geo-Information. 2016; 5(11):214. https://0-doi-org.brum.beds.ac.uk/10.3390/ijgi5110214

Chicago/Turabian Style

Chen, Hui-Ping, Bi Yu Chen, Yafei Wang, and Qingquan Li. 2016. "Efficient Geo-Computational Algorithms for Constructing Space-Time Prisms in Road Networks" ISPRS International Journal of Geo-Information 5, no. 11: 214. https://0-doi-org.brum.beds.ac.uk/10.3390/ijgi5110214

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop