SlideShare a Scribd company logo
Journal of Information Engineering and Applications                                            www.iiste.org
ISSN 2224-5758 (print) ISSN 2224-896X (online)
Vol 1, No.4, 2011

 Study Of Statistical Models For Route Prediction Algorithms
                         In VANET
                                     Uma Nagaraj*,Nivedita N.Kadam
                         Dept. of Computer Engg. M.A.E , Alandi (D), Pune, India.
                                        Umanagaraj67@gmail.com

Abstract
          Vehicle-to-vehicle communication is a concept greatly studied during the past years. Vehicles
equipped with devices capable of short-range wireless connectivity can form a particular mobile ad-hoc
network, called a “Vehicular Ad-hoc NETwork” (or VANET). The users of a VANET, drivers or
passengers, can be provided with useful information and with a wide range of interesting services. Route
prediction is the missing piece in several proposed ideas for intelligent vehicles. In this paper, we are
studying the algorithms that predict a vehicle’s entire route as it is driven. Such predictions are useful for
giving the driver warnings about upcoming traffic hazards or information about upcoming points of
interest, including advertising. This paper describes the route Prediction algorithms using Markov Model,
Hidden Markov Model (HMM), Variable order Markov model (VMM).
Keywords- VANET, MANET, ITs, GPS, HMM, VMM, PST.


1. Introduction
          The increasing demand of wireless communication and the needs of new wireless devices have
tend to research on self organizing, self healing networks without the interference of centralized or pre-
established infrastructure/authority. The networks with the absence of any centralized or pre-established
infrastructure are called Ad hoc networks. Ad hoc Networks are collection of self-governing mobile nodes.
         Vehicular Ad hoc Networks (VANET) is the subclass of Mobile Ad Hoc Networks (MANETs).
VANET is one of the influencing areas for the improvement of Intelligent Transportation System (ITS) in
order to provide safety and comfort to the road users. VANET assists vehicle drivers to communicate and
to coordinate among themselves in order to avoid any critical situation through Vehicle to Vehicle
communication e.g. road side accidents, traffic jams, speed control, free passage of emergency vehicles and
unseen obstacles etc. Besides safety applications VANET also provide comfort applications to the road
users. For example, weather information, mobile e-commerce, internet access and other multimedia
applications. The most well known applications include, “Advance Driver Assistance Systems (ADASE2)
(Heddebaut 2005), Crash Avoidance Matrices Partnership (CAMP) (Shulman 2005), CARTALK2000
(Andreone 2005) and Fleet Net” (Kruger 2005) that were developed under collaboration of various
governments and major car manufacturers. Figure 1 shows the overall working structure of VANET.


2. Need of Route Prediction in VANET
 Accurate travel route prediction in urban vehicular environments, however, is very challenging due to the
 following three reasons (Guangtao 2009).
     1. The structure of the urban road networks is very complicated. For example, in a city environment
        there are about 1000 intersections connecting about 25000 surface road segments in addition to
        many tunnels and densely covered viaducts. How to establish the next choice on the path of a
        vehicle in such intricate settings is not straightforward.
     2. A vehicle may be heading for different destinations. Obviously different destinations will lead to
        different itinerary choices. This adds another dimension of uncertainty to the route prediction
        problem.

28 | P a g e
www.iiste.org
Journal of Information Engineering and Applications                                                  www.iiste.org
ISSN 2224-5758 (print) ISSN 2224-896X (online)
Vol 1, No.4, 2011
      3. Traffic conditions are time-varying and will influence the route decision of a vehicle dramatically.
         Generally speaking, in off-peak hours, drivers would prefer routes of shorter distance but are more
         likely to choose routes of low traffic during rush hours. The driver’s route choices are under the
         influence of real-time traffic conditions.
         In additional, the vehicle route choice is a very complex process. It is influenced by the structure
of the urban road, real time traffic condition and emergencies on the road. It is quite hard, to obtain the pre
knowledge about how many immediately preceding road segments are associated with the upcoming route.

3. Statistical Route Prediction Models
          Here in this section we are going to describe the three statistical models for predicting the routes
for vehicle driver .For prediction of a future route for vehicle driver we have to attach a GPS to each
vehicle and we have to follow the route traces of a vehicle then we have to convert this collected GPS data
into the map matching algorithm. Because many times in a urban environment due to the large buildings
and road segments covered under viaducts leads to produce the GPS data erroneous, which produces the
uncertain route prediction.


3.1 Markov Model
Markov Model predicts only vehicle’s near term future route is based on its near term past route (SAE
2008). A Markov model is a graphical statistical model that captures a sequential model of behaviour. It is
a tuple < S,A,T >, where S is a (finite) set of states, A is a (finite) set of actions, and T is the transition
function T : S×A×S→R, where T(si,a, sj) = p(si|sj,a), which is the probability of transitioning to state si
given that the system is in state sj and action a is executed. Given a Markov model and an initial state
distribution π, one can predict the state distribution that results from carrying out a sequence of actions <a 1,
a2, ..., an >. If pt (si) is the probability of being in state si at time t (where π(.) = π 0(.) is the initial state
distribution), then pt+1(si) = ΣsjєS pt (s)T(si,at+1, sj). Note that while the exact state of the system is uncertain
when doing prediction, it is assumed that the state is known for certain after the actions are actually
executed in the world.
           The Markov model can be used to predict beyond just the next road segment. We can clearly build
P [X(1)|X(0)] , where x(0) is the current road segment and x(1) is next road segment, which is the
distribution over the road segments after the next one, given the current one. We can also user higher order
models to make these farther out predictions, e.g. P [X(2) |X(−1) , X(0)] . In general, we can build an nth
order Markov model (n ≥ 1) to predict the mth next encountered segment (m ≥ 1). The general nth order
model is denoted as,
                         [()]=[()|(−+1),(−+2),…,(0)]                                     (1)
         Our prediction algorithm is based on observations of where drivers drive measured from GPS
receivers. We do not attempt to predict where on the road segment a vehicle will be, nor do we attempt to
predict when it will arrive at a road segment. Our goal is predict the chain of road segments that a vehicle
will next encounter. In this way, our predictions show the vehicle’s future path, elevation, and turns.
It observes at how prediction accuracy changes as it increase n, the number of segments look at into the
past (better). It also looks at how prediction accuracy changes as m increases, the number of segments it
predicts into the future (worse). The Markov model does not explicitly constrain a vehicle to adhere to the
connectedness of the road network. A trained model could conceivably predict that a driver will jump over
several road segments. However, since the model is trained from real data, where such jumps do not occur,
the Markov model implicitly prevents such nonsense predictions. One advantage of probabilistic
predictions is that the algorithm has a measure of its own uncertainty that can be usefully reported to in-
vehicle applications. For instance, automatically engaging a turn signal might depend on near 100%
prediction certainty, while presenting a point of interest would not require the same level of confidence.




29 | P a g e
www.iiste.org
Journal of Information Engineering and Applications                                                 www.iiste.org
ISSN 2224-5758 (print) ISSN 2224-896X (online)
Vol 1, No.4, 2011
3.2 Hidden Markov Model
           A Hidden Markov model (HMM) (Simmons) is a Markov model with hidden (unobservable) state.
An HMM is a five tuple < S,A,O,T,Z,p >, where S, A, and T are the same as with the Markov model and p
is the initial state distribution. In addition, O is a (finite) set of observations and Z is the observation
function Z : O×S×A→R, where Z(o, s, a) =p( o| s, a), which is the probability of receiving observation o
given that the system ends up in state s after executing action a. For many problems, Z is the same for all
values of a, (i.e., Z(o, si, aj)=Z(o, si, ak)). In what follows, it will use Z(o, s) as shorthand for Z(o, s, a),
when Z is the same for all values of a.
          As in a Markov model, the exact state of the system is uncertain when predicting the effects of
actions. Unlike a Markov model, however, the state may remain uncertain even after executing the actions.
For a HMM, both transitions and observations are used to help infer the next state distribution. The same
equation as given above for Markov models is used to predict the state distribution at time t +1 given the
state distribution at time t and the action at+1. In addition, ot+1, the observation at time t +1 is used to further
constrain the state distribution:
                              P t+1(s) pt+1(s)Z(o t+1, s, a t+1)/ p(ot+1)                                      (2)

Where p(o t+1) is a normalizing factor and is given by,

                                 p(ot+1) = ∑ pt+1 (si)z(ot+1,si,at+1)                                           (3)
                                                     siεS

3.3 Variable-order Markov Model
          VOM models arose as a solution to capture longer regularities while avoiding the size explosion
caused by increasing the order of the model. In contrast to the Markov chain models, where each random
variable in a sequence with a Markov property depends on a fixed number of random variables, in VOM
models this number of conditioning random variables may vary based on the specific observed realization,
known as context. These models consider that in realistic settings, there are certain realizations of states
(represented by contexts) in which some past states are independent from the future states leading to a great
reduction in the number of model parameters.
          Algorithm for learning VMM over a finite alphabet ∑. Such algorithms attempt to learn
probabilistic finite state automata, which can model sequential data of considerable complexity. In contrast
to N-gram Markov models, which attempt to estimate conditional distributions of the form P(σ|s), with S Є
∑N and σ Є ∑, VMM algorithms learn such conditional distributions where context lengths |s| vary in
response to the available statistics in the training data. Thus, VMMs provide the means for capturing both
large and small order Markov dependencies based on the observed data. Although in general less
expressive than HMMs, VMM algorithms have been used to solve many applications with notable success.
The simpler nature of VMM methods also makes them amenable for analysis, and some VMM algorithms
that we discuss below enjoy tight theoretical performance guarantees, which in general are not possible in
learning using HMMs.
          For route prediction VMM extends to probabilistic suffix tree (PST) algorithm (Ron et al., 1996)
attempts to construct the single “best" D-bounded VMM according to the training sequence. It is assumed
that an upper bound D on the Markov order of the “true source" is known to the learner.
          A PST over ∑ is a non empty rooted tree, where the degree of each node varies between zero (for
leaves) and│∑│each edge in the tree is associated with a unique symbol in ∑. These edge labels define a
unique sequence s for each path from a node v to the root. The sequence s labels the node v. Any such PST
tree induces a “suffix set" S consisting of the labels of all the nodes. The goal of the PST learning algorithm
is to identify a good suffix set S for a PST tree and to assign a probability distribution P(σ|S) over ∑, for
each s Є S.


4. Algorithms for Route Prediction

30 | P a g e
www.iiste.org
Journal of Information Engineering and Applications                                                www.iiste.org
ISSN 2224-5758 (print) ISSN 2224-896X (online)
Vol 1, No.4, 2011
        In this section we have described the detailed algorithms for route prediction using statistical
models from previous section.
4.1 Route Prediction Algorithm using Markov Model
         As described in previous section Markov Model(SAE 2008) is able to predict the next route
segment but it has to know the past road segment, which is dependent on its previous road segment.
Steps for route prediction are as follows:
   INPUT: Trained vehicle road segments
   OUTPUT: Predicts the future road segment
        1. Collect the experimental GPS data from the vehicles route segments. (This data is a set of time-
             stamped latitude and longitude pairs).
        2. Convert this GPS vehicle data with road segment with the help of map matching algorithm
             (Shanugan 1998).
        3. This algorithm matches each GPS point to road segment, taking into account which roads are
             nearby as well as constraints imposed by the connectivity and speed limits of the road network.
        4. Process the road segments to eliminate any adjacent repeated road segments. By considering
             each trip represented by a continuous road segment.

4.2 Route Prediction Algorithm Using Hidden Markov Model
          Hidden Markov Model observes the hidden states. It learned from trips. It is described by Ried
Simmons, that a trip is a sequence of data points, where each data point contains the link and time stamp
indicating when the vehicle was on the link .The link associated with the last data point is considered as a
goal of the trip. For a trip from source to destination route segments are divided into number of links. Links
are nothing but the road segments.
Steps for route prediction are as follows:
   INPUT : Trained vehicle road segments.
   OUTPUT: Predicts the future road segments.
              1.   Collect the experimental GPS data from the vehicles route segments. (This data is a set of
                   time-stamped latitude and longitude pairs).
              2.   Convert this GPS vehicle data with road segment with the help of map matching
                   algorithm.
              3.   Go through the trip sequences, whenever there is transition from one link lj to another li to
                   access element lj in the hash table increment the number of transitions to li, under the
                   appropriate condition.
              4.   If goal link (last link)is g then, find the entry < li, g, m> exists if found increment m. where
                   m=time, g=goal, l=link
                   Otherwise, add a new element to < li, g, 1> for the link 1.
              5.   This process is repeated from g to the END_OF_TRIP link.
              6.   The statistics for the time spent on lj are updated, where the time spent on the lj is
                   determined as the time stamp the first trip data point that is on lj until the time stamp of
                   the first trip data point that is on li.
It yields accurate prediction is that the training data is reliable.

4.3 Route Prediction Algorithm Using Variable order Markov Model(Guangtao 2009)
   INPUT : Trained vehicle road segments.
   OUTPUT: Predicts the future road segments.


31 | P a g e
www.iiste.org
Journal of Information Engineering and Applications                                             www.iiste.org
ISSN 2224-5758 (print) ISSN 2224-896X (online)
Vol 1, No.4, 2011
              1.   Collect the experimental GPS data from the vehicles route segments. (This data is a set of
                   time-stamped latitude and longitude pairs).
              2.   Convert this GPS vehicle data with road segment with the help of map matching
                   algorithm.
              3.   Trace the raw GPS trace data, geographical locations of vehicle are all adjusted to
                   corresponding roads. Let R= {R1,R2,…Rn} be the set of all road segments and Ri is the ith
                   road segment and m containing the consecutive road segments, as Sm=r1r2,….rm where ri
                   ЄR, m>1.
              4.   Vehicle traces parsing. For each road the vehicle passed, only the k bounded preceding
                   roads and the next adjacent road for prediction. Where K is the memory length of a model.
              5.   Build the PST .Based on the passed road segments.
              6.   When the vehicle moves to road rc (rc =current road segment) at time t,and the roads it just
                   passed are r1r2,….rk(k<K) .To predict its next road it checks PST was constructed for rc for
                   corresponding time period .
              7.   If no such PST was found vehicle is fail to predict the next road.
              8.   If PST found it searches the next road segments with the longest suffix matching with
                   rcr1r2………… rk and ending with rn. where rn is the one of the unidirectional adjacent road of
                   rc.
It returns the patterns with highest probability .
It is useful for real time traffic conditions.
5. Conclusion
          As we have studied the statistical models for route prediction in previous section .For each model
we have to give a trained vehicle route set as input then only we can predict the future road segment. In
Simple or hidden Markov model (HMM) to predict the short-term driving route of vehicles, on the static
route selection that took no dynamic traffic conditions into account. Simple Markov model is poor in
capturing variable order Markov dependencies. Although HMM is capable of handling the vehicles moving
patterns, training the HMM model suffers from known learn ability hardness. Where using VMM which
deploys PST to generate the mobility patterns for long term route prediction, which can be applied for real
time traffic conditions for predicting the future route for the driver.
The table1 shows the comparative study of these three models.
The above mentioned all models are having centralized approach, when traffic is so high or more vehicles
are involved in it will produce the poor scalability.


References
Heddebaut, M., Rioult, J., Ghys, J.P., Gransart, C., and Ambellouis, S. (2005), “Broadband vehicle-to-
vehicle communication using an extended autonomous cruise control sensor,” Meas. Sci. Technol., vol. 16,
no. 6, pp. 1363–1373.
Shulman, M. and Deering, R. (2005), “Third annual report of the crash avoidance metrics partnership April
2003–March 2004,” Nat. Highw. Traffic Safety Admin. (NHTSA), Washington, DC. DOT HS 809 837.
Andreone, L., and Ricerche, C. (2005) , “Activities and applications of the vehicle to vehicle and vehicle to
infrastructure communication to enhance road safety,” in Proc. 5th Eur. Congr. Exhib. ITS, Hannover,
Germany.
Kruger, R., Fuler, H., Torrent-Moreno, M., Transier, M., Hartenstein, H., and Effelsberg, W. (2005)
,“Statistical analysis of the FleetNet highway movement patterns,” University of Mannheim, Mannheim,
Germany, Tech. Rep. TR-2005-004.


32 | P a g e
www.iiste.org
Journal of Information Engineering and Applications                                            www.iiste.org
ISSN 2224-5758 (print) ISSN 2224-896X (online)
Vol 1, No.4, 2011
Guangtao Xue, Zhongwei Li, and Hongzi Zhu, (2009), “Traffic-Known Urban Vehicular Route Prediction
Based on Partial Mobility Patterns”, IEEE.
SAE (2008) World Congress, April-2008, USA.”A Markov Model For Driver Turn Prediction”.
Ried Simmons, Brett Browning, Yilu Zhang & Varsha Sadekar, ”Learning To Predict Driver Route And
destination Intent.”
Shanugan, K.S and A.M. Breipohl, (1998), “Random Signals: Detection, Estimation and Data Analysis”,
New York: John Willey & Sons.664.
Dana Ron ,Yoram singer and Naftali Tishby(1996),”The Power of Amnesia: Learning Probabilistic
Automata with Variable Memory Length. Machine Learning ”.pp117-149.




                                    Fig.1: Vehicular Ad Hoc Network Overview
                                    Table 1: Comparison of statistical models

                                                                                Variable Order Markov
         Markov Model                       Hidden Markov Model
                                                                                        Model

  1.   It observes only fixed no.      It observes Hidden states, as well   It observes a variable order
       of random variables             as fixed no. of random variables.    variables not fixed.

  2.   Static approach                 Static approach                      Dynamic approach

  3.   Predict only next route         Predicts next route segment          Generates the sequences of
       segment dependent on            independent on previous road         road segments for prediction.
       previous road segment.          segment.

  4.   It Doesn’t consider other       It Consider other parameters like    It Consider other parameters
       parameters.                     Time, Day, Month, Year.              like Time, Day, Month, Year.




33 | P a g e
www.iiste.org
Ad

More Related Content

What's hot (20)

A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...
A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...
A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...
CSCJournals
 
Report bep thomas_blanken
Report bep thomas_blankenReport bep thomas_blanken
Report bep thomas_blanken
xepost
 
Volkova_DICTA_robust_feature_based_visual_navigation
Volkova_DICTA_robust_feature_based_visual_navigationVolkova_DICTA_robust_feature_based_visual_navigation
Volkova_DICTA_robust_feature_based_visual_navigation
Anastasiia Volkova
 
Implementation of Motion Model Using Vanet
Implementation of Motion Model Using VanetImplementation of Motion Model Using Vanet
Implementation of Motion Model Using Vanet
IJCERT
 
Zeleke_Poster14
Zeleke_Poster14Zeleke_Poster14
Zeleke_Poster14
Yegeta Zeleke
 
2013 methodology for the calibration of vissim in mixed traffic
2013 methodology for the calibration of vissim in mixed traffic2013 methodology for the calibration of vissim in mixed traffic
2013 methodology for the calibration of vissim in mixed traffic
Daniel Sitompul
 
Fb4301931934
Fb4301931934Fb4301931934
Fb4301931934
IJERA Editor
 
Driving behaviors for adas and autonomous driving XIII
Driving behaviors for adas and autonomous driving XIIIDriving behaviors for adas and autonomous driving XIII
Driving behaviors for adas and autonomous driving XIII
Yu Huang
 
Artificial Intelligence in Robot Path Planning
Artificial Intelligence in Robot Path PlanningArtificial Intelligence in Robot Path Planning
Artificial Intelligence in Robot Path Planning
iosrjce
 
Dynamic Path Planning
Dynamic Path PlanningDynamic Path Planning
Dynamic Path Planning
dare2kreate
 
Path Planning And Navigation
Path Planning And NavigationPath Planning And Navigation
Path Planning And Navigation
guest90654fd
 
Performance Analysis and Optimal Detection of Spatial Modulation
Performance Analysis and Optimal Detection of Spatial ModulationPerformance Analysis and Optimal Detection of Spatial Modulation
Performance Analysis and Optimal Detection of Spatial Modulation
rahulmonikasharma
 
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...
csandit
 
Major ppt
Major pptMajor ppt
Major ppt
Amit Baghel
 
image processing
image processingimage processing
image processing
senthilrajvlsi
 
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...
ijcsit
 
Driving behaviors for adas and autonomous driving XI
Driving behaviors for adas and autonomous driving XIDriving behaviors for adas and autonomous driving XI
Driving behaviors for adas and autonomous driving XI
Yu Huang
 
Driving behavior for ADAS and Autonomous Driving
Driving behavior for ADAS and Autonomous DrivingDriving behavior for ADAS and Autonomous Driving
Driving behavior for ADAS and Autonomous Driving
Yu Huang
 
Voronoi diagram with fuzzy number and sensor data in an indoor navigation for...
Voronoi diagram with fuzzy number and sensor data in an indoor navigation for...Voronoi diagram with fuzzy number and sensor data in an indoor navigation for...
Voronoi diagram with fuzzy number and sensor data in an indoor navigation for...
TELKOMNIKA JOURNAL
 
Transceiver Design for MIMO Systems with Individual Transmit Power Constraints
Transceiver Design for MIMO Systems with Individual Transmit Power ConstraintsTransceiver Design for MIMO Systems with Individual Transmit Power Constraints
Transceiver Design for MIMO Systems with Individual Transmit Power Constraints
IJECEIAES
 
A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...
A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...
A Path Planning Technique For Autonomous Mobile Robot Using Free-Configuratio...
CSCJournals
 
Report bep thomas_blanken
Report bep thomas_blankenReport bep thomas_blanken
Report bep thomas_blanken
xepost
 
Volkova_DICTA_robust_feature_based_visual_navigation
Volkova_DICTA_robust_feature_based_visual_navigationVolkova_DICTA_robust_feature_based_visual_navigation
Volkova_DICTA_robust_feature_based_visual_navigation
Anastasiia Volkova
 
Implementation of Motion Model Using Vanet
Implementation of Motion Model Using VanetImplementation of Motion Model Using Vanet
Implementation of Motion Model Using Vanet
IJCERT
 
2013 methodology for the calibration of vissim in mixed traffic
2013 methodology for the calibration of vissim in mixed traffic2013 methodology for the calibration of vissim in mixed traffic
2013 methodology for the calibration of vissim in mixed traffic
Daniel Sitompul
 
Driving behaviors for adas and autonomous driving XIII
Driving behaviors for adas and autonomous driving XIIIDriving behaviors for adas and autonomous driving XIII
Driving behaviors for adas and autonomous driving XIII
Yu Huang
 
Artificial Intelligence in Robot Path Planning
Artificial Intelligence in Robot Path PlanningArtificial Intelligence in Robot Path Planning
Artificial Intelligence in Robot Path Planning
iosrjce
 
Dynamic Path Planning
Dynamic Path PlanningDynamic Path Planning
Dynamic Path Planning
dare2kreate
 
Path Planning And Navigation
Path Planning And NavigationPath Planning And Navigation
Path Planning And Navigation
guest90654fd
 
Performance Analysis and Optimal Detection of Spatial Modulation
Performance Analysis and Optimal Detection of Spatial ModulationPerformance Analysis and Optimal Detection of Spatial Modulation
Performance Analysis and Optimal Detection of Spatial Modulation
rahulmonikasharma
 
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...
CREATING DATA OUTPUTS FROM MULTI AGENT TRAFFIC MICRO SIMULATION TO ASSIMILATI...
csandit
 
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...
REVIEW OF LANE DETECTION AND TRACKING ALGORITHMS IN ADVANCED DRIVER ASSISTANC...
ijcsit
 
Driving behaviors for adas and autonomous driving XI
Driving behaviors for adas and autonomous driving XIDriving behaviors for adas and autonomous driving XI
Driving behaviors for adas and autonomous driving XI
Yu Huang
 
Driving behavior for ADAS and Autonomous Driving
Driving behavior for ADAS and Autonomous DrivingDriving behavior for ADAS and Autonomous Driving
Driving behavior for ADAS and Autonomous Driving
Yu Huang
 
Voronoi diagram with fuzzy number and sensor data in an indoor navigation for...
Voronoi diagram with fuzzy number and sensor data in an indoor navigation for...Voronoi diagram with fuzzy number and sensor data in an indoor navigation for...
Voronoi diagram with fuzzy number and sensor data in an indoor navigation for...
TELKOMNIKA JOURNAL
 
Transceiver Design for MIMO Systems with Individual Transmit Power Constraints
Transceiver Design for MIMO Systems with Individual Transmit Power ConstraintsTransceiver Design for MIMO Systems with Individual Transmit Power Constraints
Transceiver Design for MIMO Systems with Individual Transmit Power Constraints
IJECEIAES
 

Viewers also liked (13)

Evaluate and Analysis of MAC Protocols for VANET
Evaluate and Analysis of MAC Protocols for VANETEvaluate and Analysis of MAC Protocols for VANET
Evaluate and Analysis of MAC Protocols for VANET
Scott Turner
 
Line Spectral Pairs Based Voice Conversion using Radial Basis Function
Line Spectral Pairs Based Voice Conversion using Radial Basis FunctionLine Spectral Pairs Based Voice Conversion using Radial Basis Function
Line Spectral Pairs Based Voice Conversion using Radial Basis Function
IDES Editor
 
Dsp 2015 - conference brochure
Dsp 2015 - conference brochureDsp 2015 - conference brochure
Dsp 2015 - conference brochure
The University of Agriculture, Peshawar, Pakistan
 
Signal Processing Tool for Emotion Recognition
Signal Processing Tool for Emotion RecognitionSignal Processing Tool for Emotion Recognition
Signal Processing Tool for Emotion Recognition
idescitation
 
Online Bus Arrival Time Prediction Using Hybrid Neural Network and Kalman fil...
Online Bus Arrival Time Prediction Using Hybrid Neural Network and Kalman fil...Online Bus Arrival Time Prediction Using Hybrid Neural Network and Kalman fil...
Online Bus Arrival Time Prediction Using Hybrid Neural Network and Kalman fil...
IJMER
 
From the Signal to the Symbol: Structure and Process in Artificial Intelligence
From the Signal to the Symbol: Structure and Process in Artificial IntelligenceFrom the Signal to the Symbol: Structure and Process in Artificial Intelligence
From the Signal to the Symbol: Structure and Process in Artificial Intelligence
Marko Rodriguez
 
Land Use and Transport Integrated Policies in Peripheral Areas
Land Use and Transport Integrated Policies in Peripheral AreasLand Use and Transport Integrated Policies in Peripheral Areas
Land Use and Transport Integrated Policies in Peripheral Areas
Henar Salas-Olmedo
 
VANETS Vehicular Adhoc NETworkS
VANETS Vehicular Adhoc NETworkSVANETS Vehicular Adhoc NETworkS
VANETS Vehicular Adhoc NETworkS
Sridhar Raghavan
 
Prediction of route and destination intent shibumon alampatta
Prediction of route and destination intent  shibumon alampattaPrediction of route and destination intent  shibumon alampatta
Prediction of route and destination intent shibumon alampatta
Shibu Alampatta
 
Introduction to VANET
Introduction to VANETIntroduction to VANET
Introduction to VANET
Akanksha Upadhyay
 
Dsp 2015 - conference brochure (1)
Dsp 2015 - conference brochure (1)Dsp 2015 - conference brochure (1)
Dsp 2015 - conference brochure (1)
The University of Agriculture, Peshawar, Pakistan
 
Security in GSM(2G) and UMTS(3G) Networks
Security in GSM(2G) and UMTS(3G) NetworksSecurity in GSM(2G) and UMTS(3G) Networks
Security in GSM(2G) and UMTS(3G) Networks
Naveen Kumar
 
MS_PBRSolutionOverview
MS_PBRSolutionOverviewMS_PBRSolutionOverview
MS_PBRSolutionOverview
Clayton Sherwood
 
Evaluate and Analysis of MAC Protocols for VANET
Evaluate and Analysis of MAC Protocols for VANETEvaluate and Analysis of MAC Protocols for VANET
Evaluate and Analysis of MAC Protocols for VANET
Scott Turner
 
Line Spectral Pairs Based Voice Conversion using Radial Basis Function
Line Spectral Pairs Based Voice Conversion using Radial Basis FunctionLine Spectral Pairs Based Voice Conversion using Radial Basis Function
Line Spectral Pairs Based Voice Conversion using Radial Basis Function
IDES Editor
 
Signal Processing Tool for Emotion Recognition
Signal Processing Tool for Emotion RecognitionSignal Processing Tool for Emotion Recognition
Signal Processing Tool for Emotion Recognition
idescitation
 
Online Bus Arrival Time Prediction Using Hybrid Neural Network and Kalman fil...
Online Bus Arrival Time Prediction Using Hybrid Neural Network and Kalman fil...Online Bus Arrival Time Prediction Using Hybrid Neural Network and Kalman fil...
Online Bus Arrival Time Prediction Using Hybrid Neural Network and Kalman fil...
IJMER
 
From the Signal to the Symbol: Structure and Process in Artificial Intelligence
From the Signal to the Symbol: Structure and Process in Artificial IntelligenceFrom the Signal to the Symbol: Structure and Process in Artificial Intelligence
From the Signal to the Symbol: Structure and Process in Artificial Intelligence
Marko Rodriguez
 
Land Use and Transport Integrated Policies in Peripheral Areas
Land Use and Transport Integrated Policies in Peripheral AreasLand Use and Transport Integrated Policies in Peripheral Areas
Land Use and Transport Integrated Policies in Peripheral Areas
Henar Salas-Olmedo
 
VANETS Vehicular Adhoc NETworkS
VANETS Vehicular Adhoc NETworkSVANETS Vehicular Adhoc NETworkS
VANETS Vehicular Adhoc NETworkS
Sridhar Raghavan
 
Prediction of route and destination intent shibumon alampatta
Prediction of route and destination intent  shibumon alampattaPrediction of route and destination intent  shibumon alampatta
Prediction of route and destination intent shibumon alampatta
Shibu Alampatta
 
Security in GSM(2G) and UMTS(3G) Networks
Security in GSM(2G) and UMTS(3G) NetworksSecurity in GSM(2G) and UMTS(3G) Networks
Security in GSM(2G) and UMTS(3G) Networks
Naveen Kumar
 
Ad

Similar to Study of statistical models for route prediction algorithms in vanet (20)

Network Traffic Prediction Model Considering Road Traffic Parameters Using Ar...
Network Traffic Prediction Model Considering Road Traffic Parameters Using Ar...Network Traffic Prediction Model Considering Road Traffic Parameters Using Ar...
Network Traffic Prediction Model Considering Road Traffic Parameters Using Ar...
yaswanthmamidisetty
 
Modeling and simulation of vehicular networks
Modeling and simulation of vehicular networksModeling and simulation of vehicular networks
Modeling and simulation of vehicular networks
DaisyWatson5
 
Driving Behavior for ADAS and Autonomous Driving X
Driving Behavior for ADAS and Autonomous Driving XDriving Behavior for ADAS and Autonomous Driving X
Driving Behavior for ADAS and Autonomous Driving X
Yu Huang
 
capitulo 8
capitulo 8capitulo 8
capitulo 8
Carlos Correa Alvarez
 
Traffic Congestion Prediction using Deep Reinforcement Learning in Vehicular ...
Traffic Congestion Prediction using Deep Reinforcement Learning in Vehicular ...Traffic Congestion Prediction using Deep Reinforcement Learning in Vehicular ...
Traffic Congestion Prediction using Deep Reinforcement Learning in Vehicular ...
IJCNCJournal
 
TRAFFIC CONGESTION PREDICTION USING DEEP REINFORCEMENT LEARNING IN VEHICULAR ...
TRAFFIC CONGESTION PREDICTION USING DEEP REINFORCEMENT LEARNING IN VEHICULAR ...TRAFFIC CONGESTION PREDICTION USING DEEP REINFORCEMENT LEARNING IN VEHICULAR ...
TRAFFIC CONGESTION PREDICTION USING DEEP REINFORCEMENT LEARNING IN VEHICULAR ...
IJCNCJournal
 
An effective joint prediction model for travel demands and traffic flows
An effective joint prediction model for travel demands and traffic flowsAn effective joint prediction model for travel demands and traffic flows
An effective joint prediction model for travel demands and traffic flows
ivaderivader
 
Predictive Data Dissemination in Vanet
Predictive Data Dissemination in VanetPredictive Data Dissemination in Vanet
Predictive Data Dissemination in Vanet
DhruvMarothi
 
Measuring and Predicting Departures from Routine in Human Mobility
Measuring and Predicting Departures from Routine in Human MobilityMeasuring and Predicting Departures from Routine in Human Mobility
Measuring and Predicting Departures from Routine in Human Mobility
Dirk Gorissen
 
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNING
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNINGTRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNING
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNING
IRJET Journal
 
Differential Evolution Based Secured Routing Protocols for VANETs
Differential Evolution Based Secured Routing Protocols for VANETsDifferential Evolution Based Secured Routing Protocols for VANETs
Differential Evolution Based Secured Routing Protocols for VANETs
IJCSIS Research Publications
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
IJECEIAES
 
Christian jensen advanced routing in spatial networks using big data
Christian jensen advanced routing in spatial networks using big dataChristian jensen advanced routing in spatial networks using big data
Christian jensen advanced routing in spatial networks using big data
jins0618
 
Research.pptx
Research.pptxResearch.pptx
Research.pptx
janani603976
 
Driving Behavior for ADAS and Autonomous Driving VIII
Driving Behavior for ADAS and Autonomous Driving VIIIDriving Behavior for ADAS and Autonomous Driving VIII
Driving Behavior for ADAS and Autonomous Driving VIII
Yu Huang
 
Application of a Markov chain traffic model to the Greater Philadelphia Region
Application of a Markov chain traffic model to the Greater Philadelphia RegionApplication of a Markov chain traffic model to the Greater Philadelphia Region
Application of a Markov chain traffic model to the Greater Philadelphia Region
Joseph Reiter
 
Simulation & VANET : Towards a New Reliable and Optimal Data Dissemination Model
Simulation & VANET : Towards a New Reliable and Optimal Data Dissemination ModelSimulation & VANET : Towards a New Reliable and Optimal Data Dissemination Model
Simulation & VANET : Towards a New Reliable and Optimal Data Dissemination Model
pijans
 
SIMULATION & VANET: TOWARDS A NEW RELIABLE AND OPTIMAL DATA DISSEMINATION MODEL
SIMULATION & VANET: TOWARDS A NEW RELIABLE AND OPTIMAL DATA DISSEMINATION MODELSIMULATION & VANET: TOWARDS A NEW RELIABLE AND OPTIMAL DATA DISSEMINATION MODEL
SIMULATION & VANET: TOWARDS A NEW RELIABLE AND OPTIMAL DATA DISSEMINATION MODEL
pijans
 
Measuring and Predicting Departures from Routine in Human Mobility by Dirk Go...
Measuring and Predicting Departures from Routine in Human Mobility by Dirk Go...Measuring and Predicting Departures from Routine in Human Mobility by Dirk Go...
Measuring and Predicting Departures from Routine in Human Mobility by Dirk Go...
PyData
 
[2024107_LabSeminar_Huy]MFTraj: Map-Free, Behavior-Driven Trajectory Predicti...
[2024107_LabSeminar_Huy]MFTraj: Map-Free, Behavior-Driven Trajectory Predicti...[2024107_LabSeminar_Huy]MFTraj: Map-Free, Behavior-Driven Trajectory Predicti...
[2024107_LabSeminar_Huy]MFTraj: Map-Free, Behavior-Driven Trajectory Predicti...
thanhdowork
 
Network Traffic Prediction Model Considering Road Traffic Parameters Using Ar...
Network Traffic Prediction Model Considering Road Traffic Parameters Using Ar...Network Traffic Prediction Model Considering Road Traffic Parameters Using Ar...
Network Traffic Prediction Model Considering Road Traffic Parameters Using Ar...
yaswanthmamidisetty
 
Modeling and simulation of vehicular networks
Modeling and simulation of vehicular networksModeling and simulation of vehicular networks
Modeling and simulation of vehicular networks
DaisyWatson5
 
Driving Behavior for ADAS and Autonomous Driving X
Driving Behavior for ADAS and Autonomous Driving XDriving Behavior for ADAS and Autonomous Driving X
Driving Behavior for ADAS and Autonomous Driving X
Yu Huang
 
Traffic Congestion Prediction using Deep Reinforcement Learning in Vehicular ...
Traffic Congestion Prediction using Deep Reinforcement Learning in Vehicular ...Traffic Congestion Prediction using Deep Reinforcement Learning in Vehicular ...
Traffic Congestion Prediction using Deep Reinforcement Learning in Vehicular ...
IJCNCJournal
 
TRAFFIC CONGESTION PREDICTION USING DEEP REINFORCEMENT LEARNING IN VEHICULAR ...
TRAFFIC CONGESTION PREDICTION USING DEEP REINFORCEMENT LEARNING IN VEHICULAR ...TRAFFIC CONGESTION PREDICTION USING DEEP REINFORCEMENT LEARNING IN VEHICULAR ...
TRAFFIC CONGESTION PREDICTION USING DEEP REINFORCEMENT LEARNING IN VEHICULAR ...
IJCNCJournal
 
An effective joint prediction model for travel demands and traffic flows
An effective joint prediction model for travel demands and traffic flowsAn effective joint prediction model for travel demands and traffic flows
An effective joint prediction model for travel demands and traffic flows
ivaderivader
 
Predictive Data Dissemination in Vanet
Predictive Data Dissemination in VanetPredictive Data Dissemination in Vanet
Predictive Data Dissemination in Vanet
DhruvMarothi
 
Measuring and Predicting Departures from Routine in Human Mobility
Measuring and Predicting Departures from Routine in Human MobilityMeasuring and Predicting Departures from Routine in Human Mobility
Measuring and Predicting Departures from Routine in Human Mobility
Dirk Gorissen
 
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNING
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNINGTRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNING
TRAFFIC FORECAST FOR INTELLECTUAL TRANSPORTATION SYSTEM USING MACHINE LEARNING
IRJET Journal
 
Differential Evolution Based Secured Routing Protocols for VANETs
Differential Evolution Based Secured Routing Protocols for VANETsDifferential Evolution Based Secured Routing Protocols for VANETs
Differential Evolution Based Secured Routing Protocols for VANETs
IJCSIS Research Publications
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
IJECEIAES
 
Christian jensen advanced routing in spatial networks using big data
Christian jensen advanced routing in spatial networks using big dataChristian jensen advanced routing in spatial networks using big data
Christian jensen advanced routing in spatial networks using big data
jins0618
 
Driving Behavior for ADAS and Autonomous Driving VIII
Driving Behavior for ADAS and Autonomous Driving VIIIDriving Behavior for ADAS and Autonomous Driving VIII
Driving Behavior for ADAS and Autonomous Driving VIII
Yu Huang
 
Application of a Markov chain traffic model to the Greater Philadelphia Region
Application of a Markov chain traffic model to the Greater Philadelphia RegionApplication of a Markov chain traffic model to the Greater Philadelphia Region
Application of a Markov chain traffic model to the Greater Philadelphia Region
Joseph Reiter
 
Simulation & VANET : Towards a New Reliable and Optimal Data Dissemination Model
Simulation & VANET : Towards a New Reliable and Optimal Data Dissemination ModelSimulation & VANET : Towards a New Reliable and Optimal Data Dissemination Model
Simulation & VANET : Towards a New Reliable and Optimal Data Dissemination Model
pijans
 
SIMULATION & VANET: TOWARDS A NEW RELIABLE AND OPTIMAL DATA DISSEMINATION MODEL
SIMULATION & VANET: TOWARDS A NEW RELIABLE AND OPTIMAL DATA DISSEMINATION MODELSIMULATION & VANET: TOWARDS A NEW RELIABLE AND OPTIMAL DATA DISSEMINATION MODEL
SIMULATION & VANET: TOWARDS A NEW RELIABLE AND OPTIMAL DATA DISSEMINATION MODEL
pijans
 
Measuring and Predicting Departures from Routine in Human Mobility by Dirk Go...
Measuring and Predicting Departures from Routine in Human Mobility by Dirk Go...Measuring and Predicting Departures from Routine in Human Mobility by Dirk Go...
Measuring and Predicting Departures from Routine in Human Mobility by Dirk Go...
PyData
 
[2024107_LabSeminar_Huy]MFTraj: Map-Free, Behavior-Driven Trajectory Predicti...
[2024107_LabSeminar_Huy]MFTraj: Map-Free, Behavior-Driven Trajectory Predicti...[2024107_LabSeminar_Huy]MFTraj: Map-Free, Behavior-Driven Trajectory Predicti...
[2024107_LabSeminar_Huy]MFTraj: Map-Free, Behavior-Driven Trajectory Predicti...
thanhdowork
 
Ad

More from Alexander Decker (20)

Abnormalities of hormones and inflammatory cytokines in women affected with p...
Abnormalities of hormones and inflammatory cytokines in women affected with p...Abnormalities of hormones and inflammatory cytokines in women affected with p...
Abnormalities of hormones and inflammatory cytokines in women affected with p...
Alexander Decker
 
A validation of the adverse childhood experiences scale in
A validation of the adverse childhood experiences scale inA validation of the adverse childhood experiences scale in
A validation of the adverse childhood experiences scale in
Alexander Decker
 
A usability evaluation framework for b2 c e commerce websites
A usability evaluation framework for b2 c e commerce websitesA usability evaluation framework for b2 c e commerce websites
A usability evaluation framework for b2 c e commerce websites
Alexander Decker
 
A universal model for managing the marketing executives in nigerian banks
A universal model for managing the marketing executives in nigerian banksA universal model for managing the marketing executives in nigerian banks
A universal model for managing the marketing executives in nigerian banks
Alexander Decker
 
A unique common fixed point theorems in generalized d
A unique common fixed point theorems in generalized dA unique common fixed point theorems in generalized d
A unique common fixed point theorems in generalized d
Alexander Decker
 
A trends of salmonella and antibiotic resistance
A trends of salmonella and antibiotic resistanceA trends of salmonella and antibiotic resistance
A trends of salmonella and antibiotic resistance
Alexander Decker
 
A transformational generative approach towards understanding al-istifham
A transformational  generative approach towards understanding al-istifhamA transformational  generative approach towards understanding al-istifham
A transformational generative approach towards understanding al-istifham
Alexander Decker
 
A time series analysis of the determinants of savings in namibia
A time series analysis of the determinants of savings in namibiaA time series analysis of the determinants of savings in namibia
A time series analysis of the determinants of savings in namibia
Alexander Decker
 
A therapy for physical and mental fitness of school children
A therapy for physical and mental fitness of school childrenA therapy for physical and mental fitness of school children
A therapy for physical and mental fitness of school children
Alexander Decker
 
A theory of efficiency for managing the marketing executives in nigerian banks
A theory of efficiency for managing the marketing executives in nigerian banksA theory of efficiency for managing the marketing executives in nigerian banks
A theory of efficiency for managing the marketing executives in nigerian banks
Alexander Decker
 
A systematic evaluation of link budget for
A systematic evaluation of link budget forA systematic evaluation of link budget for
A systematic evaluation of link budget for
Alexander Decker
 
A synthetic review of contraceptive supplies in punjab
A synthetic review of contraceptive supplies in punjabA synthetic review of contraceptive supplies in punjab
A synthetic review of contraceptive supplies in punjab
Alexander Decker
 
A synthesis of taylor’s and fayol’s management approaches for managing market...
A synthesis of taylor’s and fayol’s management approaches for managing market...A synthesis of taylor’s and fayol’s management approaches for managing market...
A synthesis of taylor’s and fayol’s management approaches for managing market...
Alexander Decker
 
A survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incrementalA survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incremental
Alexander Decker
 
A survey on live virtual machine migrations and its techniques
A survey on live virtual machine migrations and its techniquesA survey on live virtual machine migrations and its techniques
A survey on live virtual machine migrations and its techniques
Alexander Decker
 
A survey on data mining and analysis in hadoop and mongo db
A survey on data mining and analysis in hadoop and mongo dbA survey on data mining and analysis in hadoop and mongo db
A survey on data mining and analysis in hadoop and mongo db
Alexander Decker
 
A survey on challenges to the media cloud
A survey on challenges to the media cloudA survey on challenges to the media cloud
A survey on challenges to the media cloud
Alexander Decker
 
A survey of provenance leveraged
A survey of provenance leveragedA survey of provenance leveraged
A survey of provenance leveraged
Alexander Decker
 
A survey of private equity investments in kenya
A survey of private equity investments in kenyaA survey of private equity investments in kenya
A survey of private equity investments in kenya
Alexander Decker
 
A study to measures the financial health of
A study to measures the financial health ofA study to measures the financial health of
A study to measures the financial health of
Alexander Decker
 
Abnormalities of hormones and inflammatory cytokines in women affected with p...
Abnormalities of hormones and inflammatory cytokines in women affected with p...Abnormalities of hormones and inflammatory cytokines in women affected with p...
Abnormalities of hormones and inflammatory cytokines in women affected with p...
Alexander Decker
 
A validation of the adverse childhood experiences scale in
A validation of the adverse childhood experiences scale inA validation of the adverse childhood experiences scale in
A validation of the adverse childhood experiences scale in
Alexander Decker
 
A usability evaluation framework for b2 c e commerce websites
A usability evaluation framework for b2 c e commerce websitesA usability evaluation framework for b2 c e commerce websites
A usability evaluation framework for b2 c e commerce websites
Alexander Decker
 
A universal model for managing the marketing executives in nigerian banks
A universal model for managing the marketing executives in nigerian banksA universal model for managing the marketing executives in nigerian banks
A universal model for managing the marketing executives in nigerian banks
Alexander Decker
 
A unique common fixed point theorems in generalized d
A unique common fixed point theorems in generalized dA unique common fixed point theorems in generalized d
A unique common fixed point theorems in generalized d
Alexander Decker
 
A trends of salmonella and antibiotic resistance
A trends of salmonella and antibiotic resistanceA trends of salmonella and antibiotic resistance
A trends of salmonella and antibiotic resistance
Alexander Decker
 
A transformational generative approach towards understanding al-istifham
A transformational  generative approach towards understanding al-istifhamA transformational  generative approach towards understanding al-istifham
A transformational generative approach towards understanding al-istifham
Alexander Decker
 
A time series analysis of the determinants of savings in namibia
A time series analysis of the determinants of savings in namibiaA time series analysis of the determinants of savings in namibia
A time series analysis of the determinants of savings in namibia
Alexander Decker
 
A therapy for physical and mental fitness of school children
A therapy for physical and mental fitness of school childrenA therapy for physical and mental fitness of school children
A therapy for physical and mental fitness of school children
Alexander Decker
 
A theory of efficiency for managing the marketing executives in nigerian banks
A theory of efficiency for managing the marketing executives in nigerian banksA theory of efficiency for managing the marketing executives in nigerian banks
A theory of efficiency for managing the marketing executives in nigerian banks
Alexander Decker
 
A systematic evaluation of link budget for
A systematic evaluation of link budget forA systematic evaluation of link budget for
A systematic evaluation of link budget for
Alexander Decker
 
A synthetic review of contraceptive supplies in punjab
A synthetic review of contraceptive supplies in punjabA synthetic review of contraceptive supplies in punjab
A synthetic review of contraceptive supplies in punjab
Alexander Decker
 
A synthesis of taylor’s and fayol’s management approaches for managing market...
A synthesis of taylor’s and fayol’s management approaches for managing market...A synthesis of taylor’s and fayol’s management approaches for managing market...
A synthesis of taylor’s and fayol’s management approaches for managing market...
Alexander Decker
 
A survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incrementalA survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incremental
Alexander Decker
 
A survey on live virtual machine migrations and its techniques
A survey on live virtual machine migrations and its techniquesA survey on live virtual machine migrations and its techniques
A survey on live virtual machine migrations and its techniques
Alexander Decker
 
A survey on data mining and analysis in hadoop and mongo db
A survey on data mining and analysis in hadoop and mongo dbA survey on data mining and analysis in hadoop and mongo db
A survey on data mining and analysis in hadoop and mongo db
Alexander Decker
 
A survey on challenges to the media cloud
A survey on challenges to the media cloudA survey on challenges to the media cloud
A survey on challenges to the media cloud
Alexander Decker
 
A survey of provenance leveraged
A survey of provenance leveragedA survey of provenance leveraged
A survey of provenance leveraged
Alexander Decker
 
A survey of private equity investments in kenya
A survey of private equity investments in kenyaA survey of private equity investments in kenya
A survey of private equity investments in kenya
Alexander Decker
 
A study to measures the financial health of
A study to measures the financial health ofA study to measures the financial health of
A study to measures the financial health of
Alexander Decker
 

Recently uploaded (20)

BEONBIT 2025 New.pdf.....................
BEONBIT 2025 New.pdf.....................BEONBIT 2025 New.pdf.....................
BEONBIT 2025 New.pdf.....................
sudhir9132
 
Appreciation Endorsements in favour of Rajesh Prasad
Appreciation Endorsements in favour of Rajesh PrasadAppreciation Endorsements in favour of Rajesh Prasad
Appreciation Endorsements in favour of Rajesh Prasad
Rajesh Prasad
 
PMI Authentically Social by Corey Perlman
PMI Authentically Social by Corey PerlmanPMI Authentically Social by Corey Perlman
PMI Authentically Social by Corey Perlman
Corey Perlman, Social Media Speaker and Consultant
 
Buy GitHub Accounts in 2025 from anywhere of USA
Buy GitHub Accounts in 2025 from anywhere of USABuy GitHub Accounts in 2025 from anywhere of USA
Buy GitHub Accounts in 2025 from anywhere of USA
buyusaaccounts.com
 
AI in the Innovation Process: CTO Spring Forum 2025
AI in the Innovation Process: CTO Spring Forum 2025AI in the Innovation Process: CTO Spring Forum 2025
AI in the Innovation Process: CTO Spring Forum 2025
MIPLM
 
Why Flow Switches Are Key to Efficient Water Management.pptx
Why Flow Switches Are Key to Efficient Water Management.pptxWhy Flow Switches Are Key to Efficient Water Management.pptx
Why Flow Switches Are Key to Efficient Water Management.pptx
Grid Controls
 
3 Best sites to Buy Linkedin Accounts (PVA & Phone Verified).pdf
3 Best sites to Buy Linkedin Accounts (PVA & Phone Verified).pdf3 Best sites to Buy Linkedin Accounts (PVA & Phone Verified).pdf
3 Best sites to Buy Linkedin Accounts (PVA & Phone Verified).pdf
bomay69950
 
Amazon-Inc-A-Comprehensive-Analysis.pptx
Amazon-Inc-A-Comprehensive-Analysis.pptxAmazon-Inc-A-Comprehensive-Analysis.pptx
Amazon-Inc-A-Comprehensive-Analysis.pptx
anjaliworkinfo
 
Event Report - Informatica World 2025 - Off to be the System of Record for AI
Event Report - Informatica World 2025 - Off to be the System of Record for AIEvent Report - Informatica World 2025 - Off to be the System of Record for AI
Event Report - Informatica World 2025 - Off to be the System of Record for AI
Holger Mueller
 
Robbie Teehan - A Passionate About Storytelling
Robbie Teehan - A Passionate About StorytellingRobbie Teehan - A Passionate About Storytelling
Robbie Teehan - A Passionate About Storytelling
Robbie Teehan
 
Price Bailey Valuation Quarterly Webinar May 2025pdf
Price Bailey Valuation Quarterly Webinar May 2025pdfPrice Bailey Valuation Quarterly Webinar May 2025pdf
Price Bailey Valuation Quarterly Webinar May 2025pdf
FelixPerez547899
 
Middle East Copper Rod and Busbar Market Size and Report | 2034
Middle East Copper Rod and Busbar Market Size and Report | 2034Middle East Copper Rod and Busbar Market Size and Report | 2034
Middle East Copper Rod and Busbar Market Size and Report | 2034
GeorgeButtler
 
Pneumatic Cylinders Reliable Power for Every Industry.pptx
Pneumatic Cylinders Reliable Power for Every Industry.pptxPneumatic Cylinders Reliable Power for Every Industry.pptx
Pneumatic Cylinders Reliable Power for Every Industry.pptx
Airmax Team
 
Stock Video Market: Trends & Opportunities
Stock Video Market: Trends & OpportunitiesStock Video Market: Trends & Opportunities
Stock Video Market: Trends & Opportunities
chanderdeepseoexpert
 
Zomato Restaurant Analysis Project By Akash.pptx
Zomato Restaurant Analysis Project By Akash.pptxZomato Restaurant Analysis Project By Akash.pptx
Zomato Restaurant Analysis Project By Akash.pptx
akashnarwade36042
 
Presented By NAVEENA | Digital Marketing
Presented By NAVEENA | Digital MarketingPresented By NAVEENA | Digital Marketing
Presented By NAVEENA | Digital Marketing
bnaveena69
 
Connect with Top HR Professionals Using Data InfoMetrix HR Email List
Connect with Top HR Professionals Using Data InfoMetrix HR Email ListConnect with Top HR Professionals Using Data InfoMetrix HR Email List
Connect with Top HR Professionals Using Data InfoMetrix HR Email List
Data InfoMetrix
 
BoSUSA24 | Austin Bouley | 3 Huge Levers That Got My SaaS To $500K ARR In 5 M...
BoSUSA24 | Austin Bouley | 3 Huge Levers That Got My SaaS To $500K ARR In 5 M...BoSUSA24 | Austin Bouley | 3 Huge Levers That Got My SaaS To $500K ARR In 5 M...
BoSUSA24 | Austin Bouley | 3 Huge Levers That Got My SaaS To $500K ARR In 5 M...
Business of Software Conference
 
How Professional Business Plan Writers Can Boost Your Startup’s Success
How Professional Business Plan Writers Can Boost Your Startup’s SuccessHow Professional Business Plan Writers Can Boost Your Startup’s Success
How Professional Business Plan Writers Can Boost Your Startup’s Success
RUPAL AGARWAL
 
Integrating AI and Chatbots in Pharmacy Delivery Apps for Better User Support
Integrating AI and Chatbots in Pharmacy Delivery Apps for Better User SupportIntegrating AI and Chatbots in Pharmacy Delivery Apps for Better User Support
Integrating AI and Chatbots in Pharmacy Delivery Apps for Better User Support
PeppyOcean
 
BEONBIT 2025 New.pdf.....................
BEONBIT 2025 New.pdf.....................BEONBIT 2025 New.pdf.....................
BEONBIT 2025 New.pdf.....................
sudhir9132
 
Appreciation Endorsements in favour of Rajesh Prasad
Appreciation Endorsements in favour of Rajesh PrasadAppreciation Endorsements in favour of Rajesh Prasad
Appreciation Endorsements in favour of Rajesh Prasad
Rajesh Prasad
 
Buy GitHub Accounts in 2025 from anywhere of USA
Buy GitHub Accounts in 2025 from anywhere of USABuy GitHub Accounts in 2025 from anywhere of USA
Buy GitHub Accounts in 2025 from anywhere of USA
buyusaaccounts.com
 
AI in the Innovation Process: CTO Spring Forum 2025
AI in the Innovation Process: CTO Spring Forum 2025AI in the Innovation Process: CTO Spring Forum 2025
AI in the Innovation Process: CTO Spring Forum 2025
MIPLM
 
Why Flow Switches Are Key to Efficient Water Management.pptx
Why Flow Switches Are Key to Efficient Water Management.pptxWhy Flow Switches Are Key to Efficient Water Management.pptx
Why Flow Switches Are Key to Efficient Water Management.pptx
Grid Controls
 
3 Best sites to Buy Linkedin Accounts (PVA & Phone Verified).pdf
3 Best sites to Buy Linkedin Accounts (PVA & Phone Verified).pdf3 Best sites to Buy Linkedin Accounts (PVA & Phone Verified).pdf
3 Best sites to Buy Linkedin Accounts (PVA & Phone Verified).pdf
bomay69950
 
Amazon-Inc-A-Comprehensive-Analysis.pptx
Amazon-Inc-A-Comprehensive-Analysis.pptxAmazon-Inc-A-Comprehensive-Analysis.pptx
Amazon-Inc-A-Comprehensive-Analysis.pptx
anjaliworkinfo
 
Event Report - Informatica World 2025 - Off to be the System of Record for AI
Event Report - Informatica World 2025 - Off to be the System of Record for AIEvent Report - Informatica World 2025 - Off to be the System of Record for AI
Event Report - Informatica World 2025 - Off to be the System of Record for AI
Holger Mueller
 
Robbie Teehan - A Passionate About Storytelling
Robbie Teehan - A Passionate About StorytellingRobbie Teehan - A Passionate About Storytelling
Robbie Teehan - A Passionate About Storytelling
Robbie Teehan
 
Price Bailey Valuation Quarterly Webinar May 2025pdf
Price Bailey Valuation Quarterly Webinar May 2025pdfPrice Bailey Valuation Quarterly Webinar May 2025pdf
Price Bailey Valuation Quarterly Webinar May 2025pdf
FelixPerez547899
 
Middle East Copper Rod and Busbar Market Size and Report | 2034
Middle East Copper Rod and Busbar Market Size and Report | 2034Middle East Copper Rod and Busbar Market Size and Report | 2034
Middle East Copper Rod and Busbar Market Size and Report | 2034
GeorgeButtler
 
Pneumatic Cylinders Reliable Power for Every Industry.pptx
Pneumatic Cylinders Reliable Power for Every Industry.pptxPneumatic Cylinders Reliable Power for Every Industry.pptx
Pneumatic Cylinders Reliable Power for Every Industry.pptx
Airmax Team
 
Stock Video Market: Trends & Opportunities
Stock Video Market: Trends & OpportunitiesStock Video Market: Trends & Opportunities
Stock Video Market: Trends & Opportunities
chanderdeepseoexpert
 
Zomato Restaurant Analysis Project By Akash.pptx
Zomato Restaurant Analysis Project By Akash.pptxZomato Restaurant Analysis Project By Akash.pptx
Zomato Restaurant Analysis Project By Akash.pptx
akashnarwade36042
 
Presented By NAVEENA | Digital Marketing
Presented By NAVEENA | Digital MarketingPresented By NAVEENA | Digital Marketing
Presented By NAVEENA | Digital Marketing
bnaveena69
 
Connect with Top HR Professionals Using Data InfoMetrix HR Email List
Connect with Top HR Professionals Using Data InfoMetrix HR Email ListConnect with Top HR Professionals Using Data InfoMetrix HR Email List
Connect with Top HR Professionals Using Data InfoMetrix HR Email List
Data InfoMetrix
 
BoSUSA24 | Austin Bouley | 3 Huge Levers That Got My SaaS To $500K ARR In 5 M...
BoSUSA24 | Austin Bouley | 3 Huge Levers That Got My SaaS To $500K ARR In 5 M...BoSUSA24 | Austin Bouley | 3 Huge Levers That Got My SaaS To $500K ARR In 5 M...
BoSUSA24 | Austin Bouley | 3 Huge Levers That Got My SaaS To $500K ARR In 5 M...
Business of Software Conference
 
How Professional Business Plan Writers Can Boost Your Startup’s Success
How Professional Business Plan Writers Can Boost Your Startup’s SuccessHow Professional Business Plan Writers Can Boost Your Startup’s Success
How Professional Business Plan Writers Can Boost Your Startup’s Success
RUPAL AGARWAL
 
Integrating AI and Chatbots in Pharmacy Delivery Apps for Better User Support
Integrating AI and Chatbots in Pharmacy Delivery Apps for Better User SupportIntegrating AI and Chatbots in Pharmacy Delivery Apps for Better User Support
Integrating AI and Chatbots in Pharmacy Delivery Apps for Better User Support
PeppyOcean
 

Study of statistical models for route prediction algorithms in vanet

  • 1. Journal of Information Engineering and Applications www.iiste.org ISSN 2224-5758 (print) ISSN 2224-896X (online) Vol 1, No.4, 2011 Study Of Statistical Models For Route Prediction Algorithms In VANET Uma Nagaraj*,Nivedita N.Kadam Dept. of Computer Engg. M.A.E , Alandi (D), Pune, India.  Umanagaraj67@gmail.com Abstract Vehicle-to-vehicle communication is a concept greatly studied during the past years. Vehicles equipped with devices capable of short-range wireless connectivity can form a particular mobile ad-hoc network, called a “Vehicular Ad-hoc NETwork” (or VANET). The users of a VANET, drivers or passengers, can be provided with useful information and with a wide range of interesting services. Route prediction is the missing piece in several proposed ideas for intelligent vehicles. In this paper, we are studying the algorithms that predict a vehicle’s entire route as it is driven. Such predictions are useful for giving the driver warnings about upcoming traffic hazards or information about upcoming points of interest, including advertising. This paper describes the route Prediction algorithms using Markov Model, Hidden Markov Model (HMM), Variable order Markov model (VMM). Keywords- VANET, MANET, ITs, GPS, HMM, VMM, PST. 1. Introduction The increasing demand of wireless communication and the needs of new wireless devices have tend to research on self organizing, self healing networks without the interference of centralized or pre- established infrastructure/authority. The networks with the absence of any centralized or pre-established infrastructure are called Ad hoc networks. Ad hoc Networks are collection of self-governing mobile nodes. Vehicular Ad hoc Networks (VANET) is the subclass of Mobile Ad Hoc Networks (MANETs). VANET is one of the influencing areas for the improvement of Intelligent Transportation System (ITS) in order to provide safety and comfort to the road users. VANET assists vehicle drivers to communicate and to coordinate among themselves in order to avoid any critical situation through Vehicle to Vehicle communication e.g. road side accidents, traffic jams, speed control, free passage of emergency vehicles and unseen obstacles etc. Besides safety applications VANET also provide comfort applications to the road users. For example, weather information, mobile e-commerce, internet access and other multimedia applications. The most well known applications include, “Advance Driver Assistance Systems (ADASE2) (Heddebaut 2005), Crash Avoidance Matrices Partnership (CAMP) (Shulman 2005), CARTALK2000 (Andreone 2005) and Fleet Net” (Kruger 2005) that were developed under collaboration of various governments and major car manufacturers. Figure 1 shows the overall working structure of VANET. 2. Need of Route Prediction in VANET Accurate travel route prediction in urban vehicular environments, however, is very challenging due to the following three reasons (Guangtao 2009). 1. The structure of the urban road networks is very complicated. For example, in a city environment there are about 1000 intersections connecting about 25000 surface road segments in addition to many tunnels and densely covered viaducts. How to establish the next choice on the path of a vehicle in such intricate settings is not straightforward. 2. A vehicle may be heading for different destinations. Obviously different destinations will lead to different itinerary choices. This adds another dimension of uncertainty to the route prediction problem. 28 | P a g e www.iiste.org
  • 2. Journal of Information Engineering and Applications www.iiste.org ISSN 2224-5758 (print) ISSN 2224-896X (online) Vol 1, No.4, 2011 3. Traffic conditions are time-varying and will influence the route decision of a vehicle dramatically. Generally speaking, in off-peak hours, drivers would prefer routes of shorter distance but are more likely to choose routes of low traffic during rush hours. The driver’s route choices are under the influence of real-time traffic conditions. In additional, the vehicle route choice is a very complex process. It is influenced by the structure of the urban road, real time traffic condition and emergencies on the road. It is quite hard, to obtain the pre knowledge about how many immediately preceding road segments are associated with the upcoming route. 3. Statistical Route Prediction Models Here in this section we are going to describe the three statistical models for predicting the routes for vehicle driver .For prediction of a future route for vehicle driver we have to attach a GPS to each vehicle and we have to follow the route traces of a vehicle then we have to convert this collected GPS data into the map matching algorithm. Because many times in a urban environment due to the large buildings and road segments covered under viaducts leads to produce the GPS data erroneous, which produces the uncertain route prediction. 3.1 Markov Model Markov Model predicts only vehicle’s near term future route is based on its near term past route (SAE 2008). A Markov model is a graphical statistical model that captures a sequential model of behaviour. It is a tuple < S,A,T >, where S is a (finite) set of states, A is a (finite) set of actions, and T is the transition function T : S×A×S→R, where T(si,a, sj) = p(si|sj,a), which is the probability of transitioning to state si given that the system is in state sj and action a is executed. Given a Markov model and an initial state distribution π, one can predict the state distribution that results from carrying out a sequence of actions <a 1, a2, ..., an >. If pt (si) is the probability of being in state si at time t (where π(.) = π 0(.) is the initial state distribution), then pt+1(si) = ΣsjєS pt (s)T(si,at+1, sj). Note that while the exact state of the system is uncertain when doing prediction, it is assumed that the state is known for certain after the actions are actually executed in the world. The Markov model can be used to predict beyond just the next road segment. We can clearly build P [X(1)|X(0)] , where x(0) is the current road segment and x(1) is next road segment, which is the distribution over the road segments after the next one, given the current one. We can also user higher order models to make these farther out predictions, e.g. P [X(2) |X(−1) , X(0)] . In general, we can build an nth order Markov model (n ≥ 1) to predict the mth next encountered segment (m ≥ 1). The general nth order model is denoted as, [()]=[()|(−+1),(−+2),…,(0)] (1) Our prediction algorithm is based on observations of where drivers drive measured from GPS receivers. We do not attempt to predict where on the road segment a vehicle will be, nor do we attempt to predict when it will arrive at a road segment. Our goal is predict the chain of road segments that a vehicle will next encounter. In this way, our predictions show the vehicle’s future path, elevation, and turns. It observes at how prediction accuracy changes as it increase n, the number of segments look at into the past (better). It also looks at how prediction accuracy changes as m increases, the number of segments it predicts into the future (worse). The Markov model does not explicitly constrain a vehicle to adhere to the connectedness of the road network. A trained model could conceivably predict that a driver will jump over several road segments. However, since the model is trained from real data, where such jumps do not occur, the Markov model implicitly prevents such nonsense predictions. One advantage of probabilistic predictions is that the algorithm has a measure of its own uncertainty that can be usefully reported to in- vehicle applications. For instance, automatically engaging a turn signal might depend on near 100% prediction certainty, while presenting a point of interest would not require the same level of confidence. 29 | P a g e www.iiste.org
  • 3. Journal of Information Engineering and Applications www.iiste.org ISSN 2224-5758 (print) ISSN 2224-896X (online) Vol 1, No.4, 2011 3.2 Hidden Markov Model A Hidden Markov model (HMM) (Simmons) is a Markov model with hidden (unobservable) state. An HMM is a five tuple < S,A,O,T,Z,p >, where S, A, and T are the same as with the Markov model and p is the initial state distribution. In addition, O is a (finite) set of observations and Z is the observation function Z : O×S×A→R, where Z(o, s, a) =p( o| s, a), which is the probability of receiving observation o given that the system ends up in state s after executing action a. For many problems, Z is the same for all values of a, (i.e., Z(o, si, aj)=Z(o, si, ak)). In what follows, it will use Z(o, s) as shorthand for Z(o, s, a), when Z is the same for all values of a. As in a Markov model, the exact state of the system is uncertain when predicting the effects of actions. Unlike a Markov model, however, the state may remain uncertain even after executing the actions. For a HMM, both transitions and observations are used to help infer the next state distribution. The same equation as given above for Markov models is used to predict the state distribution at time t +1 given the state distribution at time t and the action at+1. In addition, ot+1, the observation at time t +1 is used to further constrain the state distribution: P t+1(s) pt+1(s)Z(o t+1, s, a t+1)/ p(ot+1) (2) Where p(o t+1) is a normalizing factor and is given by, p(ot+1) = ∑ pt+1 (si)z(ot+1,si,at+1) (3) siεS 3.3 Variable-order Markov Model VOM models arose as a solution to capture longer regularities while avoiding the size explosion caused by increasing the order of the model. In contrast to the Markov chain models, where each random variable in a sequence with a Markov property depends on a fixed number of random variables, in VOM models this number of conditioning random variables may vary based on the specific observed realization, known as context. These models consider that in realistic settings, there are certain realizations of states (represented by contexts) in which some past states are independent from the future states leading to a great reduction in the number of model parameters. Algorithm for learning VMM over a finite alphabet ∑. Such algorithms attempt to learn probabilistic finite state automata, which can model sequential data of considerable complexity. In contrast to N-gram Markov models, which attempt to estimate conditional distributions of the form P(σ|s), with S Є ∑N and σ Є ∑, VMM algorithms learn such conditional distributions where context lengths |s| vary in response to the available statistics in the training data. Thus, VMMs provide the means for capturing both large and small order Markov dependencies based on the observed data. Although in general less expressive than HMMs, VMM algorithms have been used to solve many applications with notable success. The simpler nature of VMM methods also makes them amenable for analysis, and some VMM algorithms that we discuss below enjoy tight theoretical performance guarantees, which in general are not possible in learning using HMMs. For route prediction VMM extends to probabilistic suffix tree (PST) algorithm (Ron et al., 1996) attempts to construct the single “best" D-bounded VMM according to the training sequence. It is assumed that an upper bound D on the Markov order of the “true source" is known to the learner. A PST over ∑ is a non empty rooted tree, where the degree of each node varies between zero (for leaves) and│∑│each edge in the tree is associated with a unique symbol in ∑. These edge labels define a unique sequence s for each path from a node v to the root. The sequence s labels the node v. Any such PST tree induces a “suffix set" S consisting of the labels of all the nodes. The goal of the PST learning algorithm is to identify a good suffix set S for a PST tree and to assign a probability distribution P(σ|S) over ∑, for each s Є S. 4. Algorithms for Route Prediction 30 | P a g e www.iiste.org
  • 4. Journal of Information Engineering and Applications www.iiste.org ISSN 2224-5758 (print) ISSN 2224-896X (online) Vol 1, No.4, 2011 In this section we have described the detailed algorithms for route prediction using statistical models from previous section. 4.1 Route Prediction Algorithm using Markov Model As described in previous section Markov Model(SAE 2008) is able to predict the next route segment but it has to know the past road segment, which is dependent on its previous road segment. Steps for route prediction are as follows: INPUT: Trained vehicle road segments OUTPUT: Predicts the future road segment 1. Collect the experimental GPS data from the vehicles route segments. (This data is a set of time- stamped latitude and longitude pairs). 2. Convert this GPS vehicle data with road segment with the help of map matching algorithm (Shanugan 1998). 3. This algorithm matches each GPS point to road segment, taking into account which roads are nearby as well as constraints imposed by the connectivity and speed limits of the road network. 4. Process the road segments to eliminate any adjacent repeated road segments. By considering each trip represented by a continuous road segment. 4.2 Route Prediction Algorithm Using Hidden Markov Model Hidden Markov Model observes the hidden states. It learned from trips. It is described by Ried Simmons, that a trip is a sequence of data points, where each data point contains the link and time stamp indicating when the vehicle was on the link .The link associated with the last data point is considered as a goal of the trip. For a trip from source to destination route segments are divided into number of links. Links are nothing but the road segments. Steps for route prediction are as follows: INPUT : Trained vehicle road segments. OUTPUT: Predicts the future road segments. 1. Collect the experimental GPS data from the vehicles route segments. (This data is a set of time-stamped latitude and longitude pairs). 2. Convert this GPS vehicle data with road segment with the help of map matching algorithm. 3. Go through the trip sequences, whenever there is transition from one link lj to another li to access element lj in the hash table increment the number of transitions to li, under the appropriate condition. 4. If goal link (last link)is g then, find the entry < li, g, m> exists if found increment m. where m=time, g=goal, l=link Otherwise, add a new element to < li, g, 1> for the link 1. 5. This process is repeated from g to the END_OF_TRIP link. 6. The statistics for the time spent on lj are updated, where the time spent on the lj is determined as the time stamp the first trip data point that is on lj until the time stamp of the first trip data point that is on li. It yields accurate prediction is that the training data is reliable. 4.3 Route Prediction Algorithm Using Variable order Markov Model(Guangtao 2009) INPUT : Trained vehicle road segments. OUTPUT: Predicts the future road segments. 31 | P a g e www.iiste.org
  • 5. Journal of Information Engineering and Applications www.iiste.org ISSN 2224-5758 (print) ISSN 2224-896X (online) Vol 1, No.4, 2011 1. Collect the experimental GPS data from the vehicles route segments. (This data is a set of time-stamped latitude and longitude pairs). 2. Convert this GPS vehicle data with road segment with the help of map matching algorithm. 3. Trace the raw GPS trace data, geographical locations of vehicle are all adjusted to corresponding roads. Let R= {R1,R2,…Rn} be the set of all road segments and Ri is the ith road segment and m containing the consecutive road segments, as Sm=r1r2,….rm where ri ЄR, m>1. 4. Vehicle traces parsing. For each road the vehicle passed, only the k bounded preceding roads and the next adjacent road for prediction. Where K is the memory length of a model. 5. Build the PST .Based on the passed road segments. 6. When the vehicle moves to road rc (rc =current road segment) at time t,and the roads it just passed are r1r2,….rk(k<K) .To predict its next road it checks PST was constructed for rc for corresponding time period . 7. If no such PST was found vehicle is fail to predict the next road. 8. If PST found it searches the next road segments with the longest suffix matching with rcr1r2………… rk and ending with rn. where rn is the one of the unidirectional adjacent road of rc. It returns the patterns with highest probability . It is useful for real time traffic conditions. 5. Conclusion As we have studied the statistical models for route prediction in previous section .For each model we have to give a trained vehicle route set as input then only we can predict the future road segment. In Simple or hidden Markov model (HMM) to predict the short-term driving route of vehicles, on the static route selection that took no dynamic traffic conditions into account. Simple Markov model is poor in capturing variable order Markov dependencies. Although HMM is capable of handling the vehicles moving patterns, training the HMM model suffers from known learn ability hardness. Where using VMM which deploys PST to generate the mobility patterns for long term route prediction, which can be applied for real time traffic conditions for predicting the future route for the driver. The table1 shows the comparative study of these three models. The above mentioned all models are having centralized approach, when traffic is so high or more vehicles are involved in it will produce the poor scalability. References Heddebaut, M., Rioult, J., Ghys, J.P., Gransart, C., and Ambellouis, S. (2005), “Broadband vehicle-to- vehicle communication using an extended autonomous cruise control sensor,” Meas. Sci. Technol., vol. 16, no. 6, pp. 1363–1373. Shulman, M. and Deering, R. (2005), “Third annual report of the crash avoidance metrics partnership April 2003–March 2004,” Nat. Highw. Traffic Safety Admin. (NHTSA), Washington, DC. DOT HS 809 837. Andreone, L., and Ricerche, C. (2005) , “Activities and applications of the vehicle to vehicle and vehicle to infrastructure communication to enhance road safety,” in Proc. 5th Eur. Congr. Exhib. ITS, Hannover, Germany. Kruger, R., Fuler, H., Torrent-Moreno, M., Transier, M., Hartenstein, H., and Effelsberg, W. (2005) ,“Statistical analysis of the FleetNet highway movement patterns,” University of Mannheim, Mannheim, Germany, Tech. Rep. TR-2005-004. 32 | P a g e www.iiste.org
  • 6. Journal of Information Engineering and Applications www.iiste.org ISSN 2224-5758 (print) ISSN 2224-896X (online) Vol 1, No.4, 2011 Guangtao Xue, Zhongwei Li, and Hongzi Zhu, (2009), “Traffic-Known Urban Vehicular Route Prediction Based on Partial Mobility Patterns”, IEEE. SAE (2008) World Congress, April-2008, USA.”A Markov Model For Driver Turn Prediction”. Ried Simmons, Brett Browning, Yilu Zhang & Varsha Sadekar, ”Learning To Predict Driver Route And destination Intent.” Shanugan, K.S and A.M. Breipohl, (1998), “Random Signals: Detection, Estimation and Data Analysis”, New York: John Willey & Sons.664. Dana Ron ,Yoram singer and Naftali Tishby(1996),”The Power of Amnesia: Learning Probabilistic Automata with Variable Memory Length. Machine Learning ”.pp117-149. Fig.1: Vehicular Ad Hoc Network Overview Table 1: Comparison of statistical models Variable Order Markov Markov Model Hidden Markov Model Model 1. It observes only fixed no. It observes Hidden states, as well It observes a variable order of random variables as fixed no. of random variables. variables not fixed. 2. Static approach Static approach Dynamic approach 3. Predict only next route Predicts next route segment Generates the sequences of segment dependent on independent on previous road road segments for prediction. previous road segment. segment. 4. It Doesn’t consider other It Consider other parameters like It Consider other parameters parameters. Time, Day, Month, Year. like Time, Day, Month, Year. 33 | P a g e www.iiste.org
  翻译: