SlideShare a Scribd company logo
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 02 Issue: 12 | Dec-2013, Available @ http://www.ijret.org 447
A SURVEY ON OPTIMAL ROUTE QUERIES FOR ROAD NETWORKS
Gopika N.A1
, S. Deepa Kanmani2
1
PG student, 2
Assistant Professor, Computer Science and Engineering, Karunya University, Tamilnadu, India,
gopika.nasa@gmail.com, deepa_cse@karunya.edu
Abstract
In daily life the need to find optimal routes between two points is critical, for example finding the shortest distance to the nearest
hospital. Internet based maps are now widely used for this purpose. Route search and optimal route queries are two important classes
of queries based on road network concept. Route search queries find the route according to the given constraints. The optimal route
queries find the optimum route from a set of specifications by a user. In road map queries, users have to give the specification of
starting point and ending point of their travelling with or without constraints. Some spatial features about the categories and the
different locations should be specified along with this. If the travelling constraints are given then it should be unique. These
constraints may be either total order or partial order. In this specification order there should be information about both starting point
and destination point of the travelling. The optimal route queries optimize the possible routes and give the optimal route that satisfies
all the constraints. This paper describes the survey on optimal route query processing, two categories namely optimal route query
processing and spatial search with categorical information have been considered, a discussion on technique for optimal route query
with constraints and without constraint is also included. The total order needs a specification of list of points and in the same order
that they should be visited but that is not required for partial order constraints. Finally this paper concludes with pros and cons of
different techniques under optimal route queries.
Keywords: Query processing, optimal route queries, Spatial search, Categorical information, Constraints.
----------------------------------------------------------------------***------------------------------------------------------------------------
1. INTRODUCTION
Query processing is the efficient retrieval of desired
information from the database system. The various phases of
query processing system are shown in the Fig 1. Four main
steps are there in the query processing where first three steps
are executed in compile time and last one in the runtime. The
route queries obtain the route from the spatial data with
categorical information stored in the database. The optimal
route queries find the optimal route from the given set of
information. The users have to give query starting point and
some travelling rules or constraints [4], [7] along with the
database which contains the categorical information about the
road map. Various techniques are used for the processing of
route queries. The some of the techniques used travelling rules
which are either total order or partial order and some other
without any specification. The given constraints may be either
total order or partial order.
Optimal route query processing finds all the possible routes
and then optimizes these possible routes. For that, route
queries operate on the spatial data with categorical
information [5], [8]. The goal is to find the optimal route from
the given queries.
In this paper, we discuss about various techniques in optimal
route queries. There are two main approaches: query
processing for optimal route [2], [3], [4], [7] and queries that
operate on spatial data [5], [6], [8].
Fig -1: Various Phases of query processing system
Relational
algebra
expression
Execution
plan
Generated
code
Query
output
System
catalog
Database
statistics
Main
database
Com
pile
time
Runti
me
Query
decomposi
tion
Query
optimizati
on
Code
generation
Runtime
query
execution
Query in high
level language
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 02 Issue: 12 | Dec-2013, Available @ http://www.ijret.org 448
The paper is organized as follows: section 2 presents the
problems in the optimal route queries. Section 3 and 4
classifies the optimal route query processing and the queries
related to spatial search with categorical information. The
advantages and disadvantages of each scheme are also
specified in this section.
2. PROBLEM STATEMENT
The optimal route query processing is mainly used in the road
network. The very first solution of the optimal route query is
based on the greedy strategy [1]. The first approaches
considered only the end points. The later approaches used
some category sequences as the input for the optimal route
queries that is some of the constraints are considered.
Different types of constraints are combined with the query.
Apart from the optimal route query some of the categorical
information is needed to consider for better surroundings and
facilities. For the effectiveness of some clustering techniques
are also discussed. Most of the techniques have limitations in
some particular area. The main problems are some of the
techniques may produce optimal route and others not. Among
this some may consider constraints and others without
consider the constraints and these are the main problems to
consider.
3. OPTIMAL ROUTE QUERY PROCESSING IN
ROAD NETWORK
3.1 On Trip Planning Queries (TPQ) in Spatial
Database
On Trip Planning Queries [3] are the efficient and exact
solutions for the general optimal route queries. A set of point
of interest (POI) of different categories, starting point and
destination point is given and TPQ [3] finds the best trip
starting from the specific source and will ends on the
destination through some POI. There are no ordered
constraints here in this method. The existence of multiple
choices per category is the main difficulty of this technique
and for solving this some of the approximation techniques are
used.
Mainly two greedy algorithms are available with the tight
approximation ratios with respect to the total number of
categories. The first algorithm is the nearest neighbor
algorithm. This algorithm find the best trip by visiting the
nearest neighbor of the last category to be added and that have
not been visited at that particular moment. The route thus
formed from source to destination point which is specified by
the user. The second one is the minimum distance algorithm
which introduces a novel greedy algorithm and while
comparing with the first one this is having the better
approximation bound [3]. This will find the set of vertices
with minimum cost. In this paper the nearest neighbor
algorithm is used to finds the better route starting and ending
at specific points. The advantages of the On Trip Planning
Queries include 1. Approximation ratio is high, 2. Minimum
cost for route finding. The disadvantage includes 1. No user
defined constraints in the TPQ.
3.2 The Optimal Sequenced Route (OSR) Query
The Optimal Sequenced Route Query [7] is a type of Nearest
Neighbor query and it finds the optimal route that starts from a
specific location and passed through a number of typed
location in some specific order. The shortest path problem is
the basics of this technique. First of all the OSR problem is
transformed into a simple shortest path problem in large planar
graph. For that the Dijkstra’s algorithm [7] is used. The OSR
query is given with starting point, a set of intermediate points
and the sequence of the locations. The weighted directed
graph is constructed from the given network. The starting
point is connected to all the other vertices and the weight
assigned to each edge of graph is the distance between two
end vertices. From this the optimal route of the OSR query is
the route or set of points with minimum length. The shortest
path finding is by travelling from starting point to all other
points and returning the minimum path length and this is done
by the Dijkstra’s algorithm. But this classic Dijkstra’s
algorithm is impractical due to the following reasons. The first
one is, in the real world dataset millions of possible edges
have to be handles so the time complexity is very high. Thus
the complexity of the algorithm is also very huge.
To improve the problem occurred due to the Dijkstra’s
algorithm the range query can be used. Even then the problem
cannot be overcome. Therefore Light Optimal Route Discover
(LORD)[7] algorithm developed for handling OSR queries.
This is an iterative and a light threshold based algorithm,
which uses different thresholds to filter out the points that
cannot be the optimal route. The memory requirement for
LORD is very much less than Dijkstra’s algorithm therefore it
is named as light. First this algorithm generates a set of partial
sequenced routes in the opposite order. That is from the
destination point to the starting point. Attach each point to the
recently added one and finally forms the optimal route.
The next one is R-LORD [7] algorithm which is an enhanced
version of LORD algorithm. It is based on R-tree and it
calculated the threshold value more efficiently. This is the first
correct solution for the optimal route queries with total order
travelling rules. R-LORD uses the greedy algorithm to find the
optimal route and the threshold value. From the end category,
finds the optimal points in the sequence and within the
threshold distance to the query point. Iteratively finds the
optimum route.
3.3 The Multi-Rule Partial Sequenced Route Query
The optimal route computation is purely based on greedy [1]
solutions in the earlier stages. This uses two approaches. The
first one is Nearest Neighbor Partial Sequenced Route
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 02 Issue: 12 | Dec-2013, Available @ http://www.ijret.org 449
(NNPSR)[2] which works similar to greedy approach. This
will start from the query start point and find the point which is
nearest to the start point and forms the edge. Then using the
newly added point finds the nearest point and forms the route.
The final route will be optimal through this greedy approach.
That is it finds the best at that moment. The second approach
will find all the nearest points from each and every category
and forms the route. This is also optimal route with in a
particular range.
Then another approach is the combination of NNPSR and R-
LORD [7]. The NNPSR is used to obtain the greedy route.
From that it obtains the category of each and every point. This
total order of categories is the input of R-LORD. And it will
output the suboptimal routes.
4. SPATIAL SEARCH WITH CATEGORICAL
INFORMATION
4.1 Top-K spatial Preference Queries
The spatial preference query [8] is used to rank the objects
from the feature qualities of the neighborhood objects.
Generally Top-K spatial preference queries are used to rank
the spatial objects effectively. Different types of algorithms
are used for this ranking. First one is a baseline algorithm
named simple probing algorithm and which applying the
spatial queries on feature dataset and calculate the scores for
every object. Thus the ranking is done. The incremental
computation techniques are used to optimize the simple
probing algorithm and which minimizes the number of
computations of component scores.
A variant of simple probing algorithm [8] is the group probing
algorithm and which computing the object scores in the
particular leaf node repeatedly and thus reduces the I/O cost.
Branch and Bound algorithm [8] is the enhanced version of
group probing algorithm, which removes the entries other than
the leaf nodes in the object tree that cannot produce better
performance. For this a new method is used by accessing
feature trees and deriving upper bound scores for the entities.
The last one is feature join algorithm [8] which performs over
the feature tree by multi-way join used to find the group of
feature points and then search for the objects using this
grouping.
4.2 Categorical Range Queries (CRQ) in Large
Databases
The categorical range queries [5] in the large database are
handled through the paper. Mainly it is related to the spatial
data like geostationary information systems. For this technique
a multi tree indent is used and which is associated with an
effective way of categorical data and spatial information. The
main concept is the augmentation [5] of categorical points
with some information to accelerate the queries.
The technical parts are a new method for spatial data structure
and R-Tree based on the query processing of CRQs in the
context of large databases. The new method is compared with
two baseline algorithms. The first one is the regular range
query [5] which handles the query for the particular range of
lower and upper boundary. The second one is the construction
of R-Tree [5] which contains the nodes that are the categorical
attributes.
4.3 Query Processing in Spatial Network Databases
The query processing in spatial database [6] is mainly based
on Euclidean spaces. But in this paper a new architecture is
proposed in which the road network is separated from the
datasets. To gather connectivity and location, a disk-based
representation is used. For handling the dynamic updates and
Euclidean queries the spatial entities are scored by some of the
corresponding spatial access methods. Based on the above
architecture two techniques are developed which are
Euclidean restriction and network expansion. The most
common spatial queries are the range search queries, nearest
neighbor queries, closest pair queries and distance join
queries. These are processed by using the above mentioned
frameworks. By using the location information and
connectivity, the efficient pruning of the search space is
possible. Through this the traditional processing methods can
be expanded by the new algorithms. The query processing in
the Spatial Network Databases (SNDB)[6] in efficient and this
paper introduces this advantage.
4.4 Optimal Route Query with Arbitrary Order
Constraints
The optimal route query considers the partial order constraints
for finding the optimal route. The user wants to specify
starting point, destination point and a set of arbitrary order
constraints [4]. This is different from the total sequenced rules.
The example for the partial order constraints is “visit the pub
before hotel”. Therefore any other categories can be included
in between these two categories. But total order is the
sequenced route conditions.
For considering the partial order constraints two different
types of techniques are developed namely Backward search
and Forward search [4]. Both the methods will take the same
inputs and will produce the same output. The backward search
algorithm finds the optimal route in the reverse manner that is
starting from the destination and ends at the query starting
point. This is similar to the R-LORD algorithm [7]. First select
the destination point and as per the partial sequenced route
find out all the possible edges to the second last point. Then
find the optimum edge from these and attached to the
destination. Then repeat the process until the query starting
point encountered.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 02 Issue: 12 | Dec-2013, Available @ http://www.ijret.org 450
The second one is Forward search algorithm and which is
similar to the greedy algorithm [1]. First select the query
starting point and then find the nearest neighbor point which
satisfies the given constraint. The process repeats and finally
one optimal route is obtained. Then this forward search
algorithm will use the backward search algorithm for the
backtracking process. This will eliminate the demerits of the
greedy algorithm. That is it eliminates some points that will
not be a part of the optimal route. Both the algorithms find the
optimal routes and which satisfies all the given partial order
constraints. The memory usage is reduced by using some
pruning techniques. Thus the number of categories from the
dataset is reduced and the memory usage will be reduced.
This paper which uses both the optimal route query processing
in road network and the spatial search with categorical
information. Thus the methods used here is included in both
the classifications. This technique solved the problem of
optimal route query with partial order constraints [4]. Another
advantage is that several sub routes also can be obtained and
are optimal. Therefore in the real world application some of
the category points can be omitted to meet the particular cost
or the time.
5. CONCLUSIONS
The optimal route queries find the optimal route and this has
greater applications in the road network. The spatial search
with categorical information is used to consider the categorical
points to be visited with better facilities. The initial solution of
the optimal route query is based on the greedy solution. Some
of the techniques considered total order constraints. The recent
solutions of the optimal route query handle the arbitrary order
constraints. All the methods will result in the optimal solutions
with the given the starting and destination points. But many of
the techniques do not consider constraints. Some may consider
the total order constraints and some others use the partial order
constraints. In future, some of the timing constraints can be
included to the optimal route queries.
ACKNOWLEDGEMENTS
I feel it pleasure to be indebted to my guide Mrs. S. Deepa
Kanmani, M.E, Assistant professor, Department of Computer
Science and Engineering for her invaluable support, advice
and encouragement and the reference for her feedback.
REFERENCES
[1]. Boinski P, Wojciechowski M, Zakrzewicz M(2007), “A
Greedy Approach to Concurrent Processing of Frequent
Itemset Queries”, Proc. Of the International IIS: IIPWM’06
Conference
[2]. Chen H, Ku W.S, Sun M.T, Zimmermann R(2008), “The
Multi-Rule Partial Sequenced Route Query”, Proc. 16th ACM
SIGSPATIAL Int’l Conf. Advances in Geographic
Information Systems (GIS)
[3]. Li F, Cheng D, Hadjieleftheriou M, Kollios G, Teng
S.H(2005), “On Trip Planning Queries in Spatial Databases”,
Proc. Ninth Int’l Conf. Advances in Spatial and Temporal
Databases (SSTD)
[4]. Li J, Yang Y.D, Mamoulis N(2013), “Optimal Route
Queries with Arbitrary Order Constraints”, IEEE Trans.
Computers, vol. 25, no. 5, pp. 1097- 1110
[5]. Nanopoulos A, Bozanis P(2003), “Categorical Range
Queries in Large Databases”, Springer-Verlag Berlin
Heidelberg, pp. 122-139
[6]. Papadias D,Zhang J, Mamoulis N, Tao Y(2003), “Query
Processing in Spatial Network Databases”, VLDB conference.
[7]. Sharifzadeh M, Kolahdouzan M.R, Shahabi C(2008),
“The Optimal Sequenced Route Query”, VLDB J - Int’l J.
Very Large Data Bases, vol. 17, no. 4, pp. 765-787
[8]. Yiu M.L, Mamoulis N, Vaitis M(2007), “Top-k Spatial
Preference Queries”, 7160/05E from Hong Kong RGC
BIOGRAPHIES
Gopika N.A pursuing her M.Tech in Computer
Science and Engineering from Karunya
University, Tamilnadu, India. She received her
Bachelor’s degree from Lourdes Matha
Engineering College under Kerala University
in Computer Science and Engineering.
Mrs. S. Deepa Kanmani received her Master of
Engineering degree from the Anna University,
India. Currently she is pursuing her Ph.D
degree in Distributed Data Mining & Database,
Karunya University, and Coimbatore. She is
working as an Assistant Professor in Computer Science and
Engineering Department, Karunya University, Coimbatore.

More Related Content

What's hot

IRJET- A Survey on MSER Based Scene Text Detection
IRJET-  	  A Survey on MSER Based Scene Text DetectionIRJET-  	  A Survey on MSER Based Scene Text Detection
IRJET- A Survey on MSER Based Scene Text Detection
IRJET Journal
 
A Combined Approach for Feature Subset Selection and Size Reduction for High ...
A Combined Approach for Feature Subset Selection and Size Reduction for High ...A Combined Approach for Feature Subset Selection and Size Reduction for High ...
A Combined Approach for Feature Subset Selection and Size Reduction for High ...
IJERA Editor
 
Text documents clustering using modified multi-verse optimizer
Text documents clustering using modified multi-verse optimizerText documents clustering using modified multi-verse optimizer
Text documents clustering using modified multi-verse optimizer
IJECEIAES
 
K-nearest neighbor and naïve Bayes based diagnostic analytic of harmonic sour...
K-nearest neighbor and naïve Bayes based diagnostic analytic of harmonic sour...K-nearest neighbor and naïve Bayes based diagnostic analytic of harmonic sour...
K-nearest neighbor and naïve Bayes based diagnostic analytic of harmonic sour...
journalBEEI
 
Application Of Extreme Value Theory To Bursts Prediction
Application Of Extreme Value Theory To Bursts PredictionApplication Of Extreme Value Theory To Bursts Prediction
Application Of Extreme Value Theory To Bursts Prediction
CSCJournals
 
Hybrid multi objectives genetic algorithms and immigrants scheme for dynamic ...
Hybrid multi objectives genetic algorithms and immigrants scheme for dynamic ...Hybrid multi objectives genetic algorithms and immigrants scheme for dynamic ...
Hybrid multi objectives genetic algorithms and immigrants scheme for dynamic ...
khalil IBRAHIM
 
Extended pso algorithm for improvement problems k means clustering algorithm
Extended pso algorithm for improvement problems k means clustering algorithmExtended pso algorithm for improvement problems k means clustering algorithm
Extended pso algorithm for improvement problems k means clustering algorithm
IJMIT JOURNAL
 
2-DOF BLOCK POLE PLACEMENT CONTROL APPLICATION TO:HAVE-DASH-IIBTT MISSILE
2-DOF BLOCK POLE PLACEMENT CONTROL APPLICATION TO:HAVE-DASH-IIBTT MISSILE2-DOF BLOCK POLE PLACEMENT CONTROL APPLICATION TO:HAVE-DASH-IIBTT MISSILE
2-DOF BLOCK POLE PLACEMENT CONTROL APPLICATION TO:HAVE-DASH-IIBTT MISSILE
Zac Darcy
 
PROTECTOR CONTROL PC-AODV-BH IN THE AD HOC NETWORKS
PROTECTOR CONTROL PC-AODV-BH IN THE AD HOC NETWORKSPROTECTOR CONTROL PC-AODV-BH IN THE AD HOC NETWORKS
PROTECTOR CONTROL PC-AODV-BH IN THE AD HOC NETWORKS
Zac Darcy
 
A Novel Penalized and Compensated Constraints Based Modified Fuzzy Possibilis...
A Novel Penalized and Compensated Constraints Based Modified Fuzzy Possibilis...A Novel Penalized and Compensated Constraints Based Modified Fuzzy Possibilis...
A Novel Penalized and Compensated Constraints Based Modified Fuzzy Possibilis...
ijsrd.com
 
Comparison of search algorithms in Javanese-Indonesian dictionary application
Comparison of search algorithms in Javanese-Indonesian dictionary applicationComparison of search algorithms in Javanese-Indonesian dictionary application
Comparison of search algorithms in Javanese-Indonesian dictionary application
TELKOMNIKA JOURNAL
 
IRJET- Devnagari Text Detection
IRJET- Devnagari Text DetectionIRJET- Devnagari Text Detection
IRJET- Devnagari Text Detection
IRJET Journal
 
A study and implementation of the transit route network design problem for a ...
A study and implementation of the transit route network design problem for a ...A study and implementation of the transit route network design problem for a ...
A study and implementation of the transit route network design problem for a ...
csandit
 
The Improved Hybrid Algorithm for the Atheer and Berry-ravindran Algorithms
The Improved Hybrid Algorithm for the Atheer and  Berry-ravindran Algorithms  The Improved Hybrid Algorithm for the Atheer and  Berry-ravindran Algorithms
The Improved Hybrid Algorithm for the Atheer and Berry-ravindran Algorithms
IJECEIAES
 
A spatial data model for moving object databases
A spatial data model for moving object databasesA spatial data model for moving object databases
A spatial data model for moving object databases
ijdms
 
IRJET- Evidence Chain for Missing Data Imputation: Survey
IRJET- Evidence Chain for Missing Data Imputation: SurveyIRJET- Evidence Chain for Missing Data Imputation: Survey
IRJET- Evidence Chain for Missing Data Imputation: Survey
IRJET Journal
 
ENHANCING COMPUTATIONAL EFFORTS WITH CONSIDERATION OF PROBABILISTIC AVAILABL...
ENHANCING COMPUTATIONAL EFFORTS WITH CONSIDERATION OF  PROBABILISTIC AVAILABL...ENHANCING COMPUTATIONAL EFFORTS WITH CONSIDERATION OF  PROBABILISTIC AVAILABL...
ENHANCING COMPUTATIONAL EFFORTS WITH CONSIDERATION OF PROBABILISTIC AVAILABL...Raja Larik
 
Analysis of Road Network using Remote Sensing and GIS Data Udham Singh Nagar ...
Analysis of Road Network using Remote Sensing and GIS Data Udham Singh Nagar ...Analysis of Road Network using Remote Sensing and GIS Data Udham Singh Nagar ...
Analysis of Road Network using Remote Sensing and GIS Data Udham Singh Nagar ...
IRJET Journal
 

What's hot (18)

IRJET- A Survey on MSER Based Scene Text Detection
IRJET-  	  A Survey on MSER Based Scene Text DetectionIRJET-  	  A Survey on MSER Based Scene Text Detection
IRJET- A Survey on MSER Based Scene Text Detection
 
A Combined Approach for Feature Subset Selection and Size Reduction for High ...
A Combined Approach for Feature Subset Selection and Size Reduction for High ...A Combined Approach for Feature Subset Selection and Size Reduction for High ...
A Combined Approach for Feature Subset Selection and Size Reduction for High ...
 
Text documents clustering using modified multi-verse optimizer
Text documents clustering using modified multi-verse optimizerText documents clustering using modified multi-verse optimizer
Text documents clustering using modified multi-verse optimizer
 
K-nearest neighbor and naïve Bayes based diagnostic analytic of harmonic sour...
K-nearest neighbor and naïve Bayes based diagnostic analytic of harmonic sour...K-nearest neighbor and naïve Bayes based diagnostic analytic of harmonic sour...
K-nearest neighbor and naïve Bayes based diagnostic analytic of harmonic sour...
 
Application Of Extreme Value Theory To Bursts Prediction
Application Of Extreme Value Theory To Bursts PredictionApplication Of Extreme Value Theory To Bursts Prediction
Application Of Extreme Value Theory To Bursts Prediction
 
Hybrid multi objectives genetic algorithms and immigrants scheme for dynamic ...
Hybrid multi objectives genetic algorithms and immigrants scheme for dynamic ...Hybrid multi objectives genetic algorithms and immigrants scheme for dynamic ...
Hybrid multi objectives genetic algorithms and immigrants scheme for dynamic ...
 
Extended pso algorithm for improvement problems k means clustering algorithm
Extended pso algorithm for improvement problems k means clustering algorithmExtended pso algorithm for improvement problems k means clustering algorithm
Extended pso algorithm for improvement problems k means clustering algorithm
 
2-DOF BLOCK POLE PLACEMENT CONTROL APPLICATION TO:HAVE-DASH-IIBTT MISSILE
2-DOF BLOCK POLE PLACEMENT CONTROL APPLICATION TO:HAVE-DASH-IIBTT MISSILE2-DOF BLOCK POLE PLACEMENT CONTROL APPLICATION TO:HAVE-DASH-IIBTT MISSILE
2-DOF BLOCK POLE PLACEMENT CONTROL APPLICATION TO:HAVE-DASH-IIBTT MISSILE
 
PROTECTOR CONTROL PC-AODV-BH IN THE AD HOC NETWORKS
PROTECTOR CONTROL PC-AODV-BH IN THE AD HOC NETWORKSPROTECTOR CONTROL PC-AODV-BH IN THE AD HOC NETWORKS
PROTECTOR CONTROL PC-AODV-BH IN THE AD HOC NETWORKS
 
A Novel Penalized and Compensated Constraints Based Modified Fuzzy Possibilis...
A Novel Penalized and Compensated Constraints Based Modified Fuzzy Possibilis...A Novel Penalized and Compensated Constraints Based Modified Fuzzy Possibilis...
A Novel Penalized and Compensated Constraints Based Modified Fuzzy Possibilis...
 
Comparison of search algorithms in Javanese-Indonesian dictionary application
Comparison of search algorithms in Javanese-Indonesian dictionary applicationComparison of search algorithms in Javanese-Indonesian dictionary application
Comparison of search algorithms in Javanese-Indonesian dictionary application
 
IRJET- Devnagari Text Detection
IRJET- Devnagari Text DetectionIRJET- Devnagari Text Detection
IRJET- Devnagari Text Detection
 
A study and implementation of the transit route network design problem for a ...
A study and implementation of the transit route network design problem for a ...A study and implementation of the transit route network design problem for a ...
A study and implementation of the transit route network design problem for a ...
 
The Improved Hybrid Algorithm for the Atheer and Berry-ravindran Algorithms
The Improved Hybrid Algorithm for the Atheer and  Berry-ravindran Algorithms  The Improved Hybrid Algorithm for the Atheer and  Berry-ravindran Algorithms
The Improved Hybrid Algorithm for the Atheer and Berry-ravindran Algorithms
 
A spatial data model for moving object databases
A spatial data model for moving object databasesA spatial data model for moving object databases
A spatial data model for moving object databases
 
IRJET- Evidence Chain for Missing Data Imputation: Survey
IRJET- Evidence Chain for Missing Data Imputation: SurveyIRJET- Evidence Chain for Missing Data Imputation: Survey
IRJET- Evidence Chain for Missing Data Imputation: Survey
 
ENHANCING COMPUTATIONAL EFFORTS WITH CONSIDERATION OF PROBABILISTIC AVAILABL...
ENHANCING COMPUTATIONAL EFFORTS WITH CONSIDERATION OF  PROBABILISTIC AVAILABL...ENHANCING COMPUTATIONAL EFFORTS WITH CONSIDERATION OF  PROBABILISTIC AVAILABL...
ENHANCING COMPUTATIONAL EFFORTS WITH CONSIDERATION OF PROBABILISTIC AVAILABL...
 
Analysis of Road Network using Remote Sensing and GIS Data Udham Singh Nagar ...
Analysis of Road Network using Remote Sensing and GIS Data Udham Singh Nagar ...Analysis of Road Network using Remote Sensing and GIS Data Udham Singh Nagar ...
Analysis of Road Network using Remote Sensing and GIS Data Udham Singh Nagar ...
 

Viewers also liked

Development of kinetic model for adsorption of
Development of kinetic model for adsorption ofDevelopment of kinetic model for adsorption of
Development of kinetic model for adsorption of
eSAT Publishing House
 
Devlopement of the dynamic resistance measurement (drm) method for condition ...
Devlopement of the dynamic resistance measurement (drm) method for condition ...Devlopement of the dynamic resistance measurement (drm) method for condition ...
Devlopement of the dynamic resistance measurement (drm) method for condition ...
eSAT Publishing House
 
Cfd simulation of single stage axial flow compressor
Cfd simulation of single stage axial flow compressorCfd simulation of single stage axial flow compressor
Cfd simulation of single stage axial flow compressoreSAT Publishing House
 
Degradation of mono azo dye in aqueous solution using
Degradation of mono azo dye in aqueous solution usingDegradation of mono azo dye in aqueous solution using
Degradation of mono azo dye in aqueous solution using
eSAT Publishing House
 
Comparison of symmetrical and asymmetrical cascaded
Comparison of symmetrical and asymmetrical cascadedComparison of symmetrical and asymmetrical cascaded
Comparison of symmetrical and asymmetrical cascadedeSAT Publishing House
 
Multi agent paradigm for cognitive parameter based feature similarity for soc...
Multi agent paradigm for cognitive parameter based feature similarity for soc...Multi agent paradigm for cognitive parameter based feature similarity for soc...
Multi agent paradigm for cognitive parameter based feature similarity for soc...
eSAT Publishing House
 
Design and operation of synchronized robotic arm
Design and operation of synchronized robotic armDesign and operation of synchronized robotic arm
Design and operation of synchronized robotic arm
eSAT Publishing House
 
Evaluvation of noise level and its adverse effect in metal die manufacuturing...
Evaluvation of noise level and its adverse effect in metal die manufacuturing...Evaluvation of noise level and its adverse effect in metal die manufacuturing...
Evaluvation of noise level and its adverse effect in metal die manufacuturing...
eSAT Publishing House
 
Enhancing security of caesar cipher using different
Enhancing security of caesar cipher using differentEnhancing security of caesar cipher using different
Enhancing security of caesar cipher using different
eSAT Publishing House
 
Comparison of various noise mitigation technique used
Comparison of various noise mitigation technique usedComparison of various noise mitigation technique used
Comparison of various noise mitigation technique used
eSAT Publishing House
 
Performance analysis of new proposed window for
Performance analysis of new proposed window forPerformance analysis of new proposed window for
Performance analysis of new proposed window for
eSAT Publishing House
 
Matlab simulink based digital protection of
Matlab simulink based digital protection ofMatlab simulink based digital protection of
Matlab simulink based digital protection of
eSAT Publishing House
 
Effect of shade percentage on various properties of cotton knitted fabric dye...
Effect of shade percentage on various properties of cotton knitted fabric dye...Effect of shade percentage on various properties of cotton knitted fabric dye...
Effect of shade percentage on various properties of cotton knitted fabric dye...
eSAT Publishing House
 
Finite element analysis of a floating rectangular plate
Finite element analysis of a floating rectangular plateFinite element analysis of a floating rectangular plate
Finite element analysis of a floating rectangular plate
eSAT Publishing House
 
Mapping of genes using cloud technologies
Mapping of genes using cloud technologiesMapping of genes using cloud technologies
Mapping of genes using cloud technologies
eSAT Publishing House
 
A multilevel security scheme using chaos based
A multilevel security scheme using chaos basedA multilevel security scheme using chaos based
A multilevel security scheme using chaos based
eSAT Publishing House
 
Maintenance performance metrics for manufacturing industry
Maintenance performance metrics for manufacturing industryMaintenance performance metrics for manufacturing industry
Maintenance performance metrics for manufacturing industry
eSAT Publishing House
 
Deflection control in rcc beams by using mild steel strips (an experimental i...
Deflection control in rcc beams by using mild steel strips (an experimental i...Deflection control in rcc beams by using mild steel strips (an experimental i...
Deflection control in rcc beams by using mild steel strips (an experimental i...
eSAT Publishing House
 
Capacity and performance analysis of suame
Capacity and performance analysis of suameCapacity and performance analysis of suame
Capacity and performance analysis of suame
eSAT Publishing House
 
Research issues and priorities in the field of
Research issues and priorities in the field ofResearch issues and priorities in the field of
Research issues and priorities in the field of
eSAT Publishing House
 

Viewers also liked (20)

Development of kinetic model for adsorption of
Development of kinetic model for adsorption ofDevelopment of kinetic model for adsorption of
Development of kinetic model for adsorption of
 
Devlopement of the dynamic resistance measurement (drm) method for condition ...
Devlopement of the dynamic resistance measurement (drm) method for condition ...Devlopement of the dynamic resistance measurement (drm) method for condition ...
Devlopement of the dynamic resistance measurement (drm) method for condition ...
 
Cfd simulation of single stage axial flow compressor
Cfd simulation of single stage axial flow compressorCfd simulation of single stage axial flow compressor
Cfd simulation of single stage axial flow compressor
 
Degradation of mono azo dye in aqueous solution using
Degradation of mono azo dye in aqueous solution usingDegradation of mono azo dye in aqueous solution using
Degradation of mono azo dye in aqueous solution using
 
Comparison of symmetrical and asymmetrical cascaded
Comparison of symmetrical and asymmetrical cascadedComparison of symmetrical and asymmetrical cascaded
Comparison of symmetrical and asymmetrical cascaded
 
Multi agent paradigm for cognitive parameter based feature similarity for soc...
Multi agent paradigm for cognitive parameter based feature similarity for soc...Multi agent paradigm for cognitive parameter based feature similarity for soc...
Multi agent paradigm for cognitive parameter based feature similarity for soc...
 
Design and operation of synchronized robotic arm
Design and operation of synchronized robotic armDesign and operation of synchronized robotic arm
Design and operation of synchronized robotic arm
 
Evaluvation of noise level and its adverse effect in metal die manufacuturing...
Evaluvation of noise level and its adverse effect in metal die manufacuturing...Evaluvation of noise level and its adverse effect in metal die manufacuturing...
Evaluvation of noise level and its adverse effect in metal die manufacuturing...
 
Enhancing security of caesar cipher using different
Enhancing security of caesar cipher using differentEnhancing security of caesar cipher using different
Enhancing security of caesar cipher using different
 
Comparison of various noise mitigation technique used
Comparison of various noise mitigation technique usedComparison of various noise mitigation technique used
Comparison of various noise mitigation technique used
 
Performance analysis of new proposed window for
Performance analysis of new proposed window forPerformance analysis of new proposed window for
Performance analysis of new proposed window for
 
Matlab simulink based digital protection of
Matlab simulink based digital protection ofMatlab simulink based digital protection of
Matlab simulink based digital protection of
 
Effect of shade percentage on various properties of cotton knitted fabric dye...
Effect of shade percentage on various properties of cotton knitted fabric dye...Effect of shade percentage on various properties of cotton knitted fabric dye...
Effect of shade percentage on various properties of cotton knitted fabric dye...
 
Finite element analysis of a floating rectangular plate
Finite element analysis of a floating rectangular plateFinite element analysis of a floating rectangular plate
Finite element analysis of a floating rectangular plate
 
Mapping of genes using cloud technologies
Mapping of genes using cloud technologiesMapping of genes using cloud technologies
Mapping of genes using cloud technologies
 
A multilevel security scheme using chaos based
A multilevel security scheme using chaos basedA multilevel security scheme using chaos based
A multilevel security scheme using chaos based
 
Maintenance performance metrics for manufacturing industry
Maintenance performance metrics for manufacturing industryMaintenance performance metrics for manufacturing industry
Maintenance performance metrics for manufacturing industry
 
Deflection control in rcc beams by using mild steel strips (an experimental i...
Deflection control in rcc beams by using mild steel strips (an experimental i...Deflection control in rcc beams by using mild steel strips (an experimental i...
Deflection control in rcc beams by using mild steel strips (an experimental i...
 
Capacity and performance analysis of suame
Capacity and performance analysis of suameCapacity and performance analysis of suame
Capacity and performance analysis of suame
 
Research issues and priorities in the field of
Research issues and priorities in the field ofResearch issues and priorities in the field of
Research issues and priorities in the field of
 

Similar to A survey on optimal route queries for road networks

Urban Bus Route Planning Using Reverse Labeling Dijkstra Algorithm for Tempor...
Urban Bus Route Planning Using Reverse Labeling Dijkstra Algorithm for Tempor...Urban Bus Route Planning Using Reverse Labeling Dijkstra Algorithm for Tempor...
Urban Bus Route Planning Using Reverse Labeling Dijkstra Algorithm for Tempor...
IRJET Journal
 
A Comparison Of Smart Routings In Mobile Ad Hoc Networks(MANETs)
A Comparison Of Smart Routings In Mobile Ad Hoc  Networks(MANETs) A Comparison Of Smart Routings In Mobile Ad Hoc  Networks(MANETs)
A Comparison Of Smart Routings In Mobile Ad Hoc Networks(MANETs)
IJMER
 
Location and Mobility Optimized On-demand Geographical Multipath Routing Prot...
Location and Mobility Optimized On-demand Geographical Multipath Routing Prot...Location and Mobility Optimized On-demand Geographical Multipath Routing Prot...
Location and Mobility Optimized On-demand Geographical Multipath Routing Prot...
Eswar Publications
 
Shortest route finding using an object oriented database approach
Shortest route finding using an object oriented database approachShortest route finding using an object oriented database approach
Shortest route finding using an object oriented database approach
Alexander Decker
 
Ijtra130510
Ijtra130510Ijtra130510
An Improved Greedy Parameter Stateless Routing in Vehicular Ad Hoc Network
An Improved Greedy Parameter Stateless Routing in Vehicular Ad Hoc NetworkAn Improved Greedy Parameter Stateless Routing in Vehicular Ad Hoc Network
An Improved Greedy Parameter Stateless Routing in Vehicular Ad Hoc Network
IJAAS Team
 
Simulation of Route Optimization with load balancing Using AntNet System
Simulation of Route Optimization with load balancing Using AntNet SystemSimulation of Route Optimization with load balancing Using AntNet System
Simulation of Route Optimization with load balancing Using AntNet System
IOSR Journals
 
Survey on scalable continual top k keyword search in
Survey on scalable continual top k keyword search inSurvey on scalable continual top k keyword search in
Survey on scalable continual top k keyword search in
eSAT Publishing House
 
Performance Analysis of Minimum Hop Source Routing Algorithm for Two Dimensio...
Performance Analysis of Minimum Hop Source Routing Algorithm for Two Dimensio...Performance Analysis of Minimum Hop Source Routing Algorithm for Two Dimensio...
Performance Analysis of Minimum Hop Source Routing Algorithm for Two Dimensio...
IOSR Journals
 
Survey on scalable continual top k keyword search in relational databases
Survey on scalable continual top k keyword search in relational databasesSurvey on scalable continual top k keyword search in relational databases
Survey on scalable continual top k keyword search in relational databases
eSAT Journals
 
Performance Evaluation of Routing Protocols in University Network
Performance Evaluation of Routing Protocols in University NetworkPerformance Evaluation of Routing Protocols in University Network
Performance Evaluation of Routing Protocols in University Network
ijtsrd
 
Performance evaluation of proactive, reactive and
Performance evaluation of proactive, reactive andPerformance evaluation of proactive, reactive and
Performance evaluation of proactive, reactive and
eSAT Publishing House
 
Performance evaluation of proactive, reactive and hybrid routing protocols wi...
Performance evaluation of proactive, reactive and hybrid routing protocols wi...Performance evaluation of proactive, reactive and hybrid routing protocols wi...
Performance evaluation of proactive, reactive and hybrid routing protocols wi...
eSAT Journals
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
theijes
 
IRJET- Survey on Implementation of Graph Theory in Routing Protocols of Wired...
IRJET- Survey on Implementation of Graph Theory in Routing Protocols of Wired...IRJET- Survey on Implementation of Graph Theory in Routing Protocols of Wired...
IRJET- Survey on Implementation of Graph Theory in Routing Protocols of Wired...
IRJET Journal
 
Maximizing Throughput using Adaptive Routing Based on Reinforcement Learning
Maximizing Throughput using Adaptive Routing Based on Reinforcement LearningMaximizing Throughput using Adaptive Routing Based on Reinforcement Learning
Maximizing Throughput using Adaptive Routing Based on Reinforcement Learning
Eswar Publications
 
Fakhre alam
Fakhre alamFakhre alam
Fakhre alam
Fakhre Alam
 

Similar to A survey on optimal route queries for road networks (20)

Urban Bus Route Planning Using Reverse Labeling Dijkstra Algorithm for Tempor...
Urban Bus Route Planning Using Reverse Labeling Dijkstra Algorithm for Tempor...Urban Bus Route Planning Using Reverse Labeling Dijkstra Algorithm for Tempor...
Urban Bus Route Planning Using Reverse Labeling Dijkstra Algorithm for Tempor...
 
A Comparison Of Smart Routings In Mobile Ad Hoc Networks(MANETs)
A Comparison Of Smart Routings In Mobile Ad Hoc  Networks(MANETs) A Comparison Of Smart Routings In Mobile Ad Hoc  Networks(MANETs)
A Comparison Of Smart Routings In Mobile Ad Hoc Networks(MANETs)
 
Location and Mobility Optimized On-demand Geographical Multipath Routing Prot...
Location and Mobility Optimized On-demand Geographical Multipath Routing Prot...Location and Mobility Optimized On-demand Geographical Multipath Routing Prot...
Location and Mobility Optimized On-demand Geographical Multipath Routing Prot...
 
Shortest route finding using an object oriented database approach
Shortest route finding using an object oriented database approachShortest route finding using an object oriented database approach
Shortest route finding using an object oriented database approach
 
Ijtra130510
Ijtra130510Ijtra130510
Ijtra130510
 
Ica 2013021816274759
Ica 2013021816274759Ica 2013021816274759
Ica 2013021816274759
 
An Improved Greedy Parameter Stateless Routing in Vehicular Ad Hoc Network
An Improved Greedy Parameter Stateless Routing in Vehicular Ad Hoc NetworkAn Improved Greedy Parameter Stateless Routing in Vehicular Ad Hoc Network
An Improved Greedy Parameter Stateless Routing in Vehicular Ad Hoc Network
 
Simulation of Route Optimization with load balancing Using AntNet System
Simulation of Route Optimization with load balancing Using AntNet SystemSimulation of Route Optimization with load balancing Using AntNet System
Simulation of Route Optimization with load balancing Using AntNet System
 
Survey on scalable continual top k keyword search in
Survey on scalable continual top k keyword search inSurvey on scalable continual top k keyword search in
Survey on scalable continual top k keyword search in
 
Performance Analysis of Minimum Hop Source Routing Algorithm for Two Dimensio...
Performance Analysis of Minimum Hop Source Routing Algorithm for Two Dimensio...Performance Analysis of Minimum Hop Source Routing Algorithm for Two Dimensio...
Performance Analysis of Minimum Hop Source Routing Algorithm for Two Dimensio...
 
Survey on scalable continual top k keyword search in relational databases
Survey on scalable continual top k keyword search in relational databasesSurvey on scalable continual top k keyword search in relational databases
Survey on scalable continual top k keyword search in relational databases
 
Performance Evaluation of Routing Protocols in University Network
Performance Evaluation of Routing Protocols in University NetworkPerformance Evaluation of Routing Protocols in University Network
Performance Evaluation of Routing Protocols in University Network
 
Performance evaluation of proactive, reactive and
Performance evaluation of proactive, reactive andPerformance evaluation of proactive, reactive and
Performance evaluation of proactive, reactive and
 
Performance evaluation of proactive, reactive and hybrid routing protocols wi...
Performance evaluation of proactive, reactive and hybrid routing protocols wi...Performance evaluation of proactive, reactive and hybrid routing protocols wi...
Performance evaluation of proactive, reactive and hybrid routing protocols wi...
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
IRJET- Survey on Implementation of Graph Theory in Routing Protocols of Wired...
IRJET- Survey on Implementation of Graph Theory in Routing Protocols of Wired...IRJET- Survey on Implementation of Graph Theory in Routing Protocols of Wired...
IRJET- Survey on Implementation of Graph Theory in Routing Protocols of Wired...
 
Improvement Of A Shortest Routes Algorithm
Improvement Of A Shortest Routes AlgorithmImprovement Of A Shortest Routes Algorithm
Improvement Of A Shortest Routes Algorithm
 
Maximizing Throughput using Adaptive Routing Based on Reinforcement Learning
Maximizing Throughput using Adaptive Routing Based on Reinforcement LearningMaximizing Throughput using Adaptive Routing Based on Reinforcement Learning
Maximizing Throughput using Adaptive Routing Based on Reinforcement Learning
 
Ijetcas14 488
Ijetcas14 488Ijetcas14 488
Ijetcas14 488
 
Fakhre alam
Fakhre alamFakhre alam
Fakhre alam
 

More from eSAT Publishing House

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnam
eSAT Publishing House
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...
eSAT Publishing House
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnam
eSAT Publishing House
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...
eSAT Publishing House
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, india
eSAT Publishing House
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity building
eSAT Publishing House
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...
eSAT Publishing House
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
eSAT Publishing House
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...
eSAT Publishing House
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a review
eSAT Publishing House
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...
eSAT Publishing House
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard management
eSAT Publishing House
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear walls
eSAT Publishing House
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...
eSAT Publishing House
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...
eSAT Publishing House
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of india
eSAT Publishing House
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structures
eSAT Publishing House
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildings
eSAT Publishing House
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
eSAT Publishing House
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
eSAT Publishing House
 

More from eSAT Publishing House (20)

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnam
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnam
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, india
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity building
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a review
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard management
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear walls
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of india
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structures
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildings
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
 

Recently uploaded

Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
JoytuBarua2
 
AP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specificAP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specific
BrazilAccount1
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
fxintegritypublishin
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
Kerry Sado
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
SamSarthak3
 
WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234
AafreenAbuthahir2
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
AhmedHussein950959
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
Jayaprasanna4
 
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Sreedhar Chowdam
 
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
ydteq
 
Railway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdfRailway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdf
TeeVichai
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
VENKATESHvenky89705
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
gerogepatton
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
Jayaprasanna4
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Teleport Manpower Consultant
 
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptxCFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
R&R Consult
 
power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
ViniHema
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
manasideore6
 

Recently uploaded (20)

Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
 
AP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specificAP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specific
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
 
WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
 
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
 
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
 
Railway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdfRailway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdf
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
 
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptxCFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
CFD Simulation of By-pass Flow in a HRSG module by R&R Consult.pptx
 
power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
 

A survey on optimal route queries for road networks

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 02 Issue: 12 | Dec-2013, Available @ http://www.ijret.org 447 A SURVEY ON OPTIMAL ROUTE QUERIES FOR ROAD NETWORKS Gopika N.A1 , S. Deepa Kanmani2 1 PG student, 2 Assistant Professor, Computer Science and Engineering, Karunya University, Tamilnadu, India, gopika.nasa@gmail.com, deepa_cse@karunya.edu Abstract In daily life the need to find optimal routes between two points is critical, for example finding the shortest distance to the nearest hospital. Internet based maps are now widely used for this purpose. Route search and optimal route queries are two important classes of queries based on road network concept. Route search queries find the route according to the given constraints. The optimal route queries find the optimum route from a set of specifications by a user. In road map queries, users have to give the specification of starting point and ending point of their travelling with or without constraints. Some spatial features about the categories and the different locations should be specified along with this. If the travelling constraints are given then it should be unique. These constraints may be either total order or partial order. In this specification order there should be information about both starting point and destination point of the travelling. The optimal route queries optimize the possible routes and give the optimal route that satisfies all the constraints. This paper describes the survey on optimal route query processing, two categories namely optimal route query processing and spatial search with categorical information have been considered, a discussion on technique for optimal route query with constraints and without constraint is also included. The total order needs a specification of list of points and in the same order that they should be visited but that is not required for partial order constraints. Finally this paper concludes with pros and cons of different techniques under optimal route queries. Keywords: Query processing, optimal route queries, Spatial search, Categorical information, Constraints. ----------------------------------------------------------------------***------------------------------------------------------------------------ 1. INTRODUCTION Query processing is the efficient retrieval of desired information from the database system. The various phases of query processing system are shown in the Fig 1. Four main steps are there in the query processing where first three steps are executed in compile time and last one in the runtime. The route queries obtain the route from the spatial data with categorical information stored in the database. The optimal route queries find the optimal route from the given set of information. The users have to give query starting point and some travelling rules or constraints [4], [7] along with the database which contains the categorical information about the road map. Various techniques are used for the processing of route queries. The some of the techniques used travelling rules which are either total order or partial order and some other without any specification. The given constraints may be either total order or partial order. Optimal route query processing finds all the possible routes and then optimizes these possible routes. For that, route queries operate on the spatial data with categorical information [5], [8]. The goal is to find the optimal route from the given queries. In this paper, we discuss about various techniques in optimal route queries. There are two main approaches: query processing for optimal route [2], [3], [4], [7] and queries that operate on spatial data [5], [6], [8]. Fig -1: Various Phases of query processing system Relational algebra expression Execution plan Generated code Query output System catalog Database statistics Main database Com pile time Runti me Query decomposi tion Query optimizati on Code generation Runtime query execution Query in high level language
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 02 Issue: 12 | Dec-2013, Available @ http://www.ijret.org 448 The paper is organized as follows: section 2 presents the problems in the optimal route queries. Section 3 and 4 classifies the optimal route query processing and the queries related to spatial search with categorical information. The advantages and disadvantages of each scheme are also specified in this section. 2. PROBLEM STATEMENT The optimal route query processing is mainly used in the road network. The very first solution of the optimal route query is based on the greedy strategy [1]. The first approaches considered only the end points. The later approaches used some category sequences as the input for the optimal route queries that is some of the constraints are considered. Different types of constraints are combined with the query. Apart from the optimal route query some of the categorical information is needed to consider for better surroundings and facilities. For the effectiveness of some clustering techniques are also discussed. Most of the techniques have limitations in some particular area. The main problems are some of the techniques may produce optimal route and others not. Among this some may consider constraints and others without consider the constraints and these are the main problems to consider. 3. OPTIMAL ROUTE QUERY PROCESSING IN ROAD NETWORK 3.1 On Trip Planning Queries (TPQ) in Spatial Database On Trip Planning Queries [3] are the efficient and exact solutions for the general optimal route queries. A set of point of interest (POI) of different categories, starting point and destination point is given and TPQ [3] finds the best trip starting from the specific source and will ends on the destination through some POI. There are no ordered constraints here in this method. The existence of multiple choices per category is the main difficulty of this technique and for solving this some of the approximation techniques are used. Mainly two greedy algorithms are available with the tight approximation ratios with respect to the total number of categories. The first algorithm is the nearest neighbor algorithm. This algorithm find the best trip by visiting the nearest neighbor of the last category to be added and that have not been visited at that particular moment. The route thus formed from source to destination point which is specified by the user. The second one is the minimum distance algorithm which introduces a novel greedy algorithm and while comparing with the first one this is having the better approximation bound [3]. This will find the set of vertices with minimum cost. In this paper the nearest neighbor algorithm is used to finds the better route starting and ending at specific points. The advantages of the On Trip Planning Queries include 1. Approximation ratio is high, 2. Minimum cost for route finding. The disadvantage includes 1. No user defined constraints in the TPQ. 3.2 The Optimal Sequenced Route (OSR) Query The Optimal Sequenced Route Query [7] is a type of Nearest Neighbor query and it finds the optimal route that starts from a specific location and passed through a number of typed location in some specific order. The shortest path problem is the basics of this technique. First of all the OSR problem is transformed into a simple shortest path problem in large planar graph. For that the Dijkstra’s algorithm [7] is used. The OSR query is given with starting point, a set of intermediate points and the sequence of the locations. The weighted directed graph is constructed from the given network. The starting point is connected to all the other vertices and the weight assigned to each edge of graph is the distance between two end vertices. From this the optimal route of the OSR query is the route or set of points with minimum length. The shortest path finding is by travelling from starting point to all other points and returning the minimum path length and this is done by the Dijkstra’s algorithm. But this classic Dijkstra’s algorithm is impractical due to the following reasons. The first one is, in the real world dataset millions of possible edges have to be handles so the time complexity is very high. Thus the complexity of the algorithm is also very huge. To improve the problem occurred due to the Dijkstra’s algorithm the range query can be used. Even then the problem cannot be overcome. Therefore Light Optimal Route Discover (LORD)[7] algorithm developed for handling OSR queries. This is an iterative and a light threshold based algorithm, which uses different thresholds to filter out the points that cannot be the optimal route. The memory requirement for LORD is very much less than Dijkstra’s algorithm therefore it is named as light. First this algorithm generates a set of partial sequenced routes in the opposite order. That is from the destination point to the starting point. Attach each point to the recently added one and finally forms the optimal route. The next one is R-LORD [7] algorithm which is an enhanced version of LORD algorithm. It is based on R-tree and it calculated the threshold value more efficiently. This is the first correct solution for the optimal route queries with total order travelling rules. R-LORD uses the greedy algorithm to find the optimal route and the threshold value. From the end category, finds the optimal points in the sequence and within the threshold distance to the query point. Iteratively finds the optimum route. 3.3 The Multi-Rule Partial Sequenced Route Query The optimal route computation is purely based on greedy [1] solutions in the earlier stages. This uses two approaches. The first one is Nearest Neighbor Partial Sequenced Route
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 02 Issue: 12 | Dec-2013, Available @ http://www.ijret.org 449 (NNPSR)[2] which works similar to greedy approach. This will start from the query start point and find the point which is nearest to the start point and forms the edge. Then using the newly added point finds the nearest point and forms the route. The final route will be optimal through this greedy approach. That is it finds the best at that moment. The second approach will find all the nearest points from each and every category and forms the route. This is also optimal route with in a particular range. Then another approach is the combination of NNPSR and R- LORD [7]. The NNPSR is used to obtain the greedy route. From that it obtains the category of each and every point. This total order of categories is the input of R-LORD. And it will output the suboptimal routes. 4. SPATIAL SEARCH WITH CATEGORICAL INFORMATION 4.1 Top-K spatial Preference Queries The spatial preference query [8] is used to rank the objects from the feature qualities of the neighborhood objects. Generally Top-K spatial preference queries are used to rank the spatial objects effectively. Different types of algorithms are used for this ranking. First one is a baseline algorithm named simple probing algorithm and which applying the spatial queries on feature dataset and calculate the scores for every object. Thus the ranking is done. The incremental computation techniques are used to optimize the simple probing algorithm and which minimizes the number of computations of component scores. A variant of simple probing algorithm [8] is the group probing algorithm and which computing the object scores in the particular leaf node repeatedly and thus reduces the I/O cost. Branch and Bound algorithm [8] is the enhanced version of group probing algorithm, which removes the entries other than the leaf nodes in the object tree that cannot produce better performance. For this a new method is used by accessing feature trees and deriving upper bound scores for the entities. The last one is feature join algorithm [8] which performs over the feature tree by multi-way join used to find the group of feature points and then search for the objects using this grouping. 4.2 Categorical Range Queries (CRQ) in Large Databases The categorical range queries [5] in the large database are handled through the paper. Mainly it is related to the spatial data like geostationary information systems. For this technique a multi tree indent is used and which is associated with an effective way of categorical data and spatial information. The main concept is the augmentation [5] of categorical points with some information to accelerate the queries. The technical parts are a new method for spatial data structure and R-Tree based on the query processing of CRQs in the context of large databases. The new method is compared with two baseline algorithms. The first one is the regular range query [5] which handles the query for the particular range of lower and upper boundary. The second one is the construction of R-Tree [5] which contains the nodes that are the categorical attributes. 4.3 Query Processing in Spatial Network Databases The query processing in spatial database [6] is mainly based on Euclidean spaces. But in this paper a new architecture is proposed in which the road network is separated from the datasets. To gather connectivity and location, a disk-based representation is used. For handling the dynamic updates and Euclidean queries the spatial entities are scored by some of the corresponding spatial access methods. Based on the above architecture two techniques are developed which are Euclidean restriction and network expansion. The most common spatial queries are the range search queries, nearest neighbor queries, closest pair queries and distance join queries. These are processed by using the above mentioned frameworks. By using the location information and connectivity, the efficient pruning of the search space is possible. Through this the traditional processing methods can be expanded by the new algorithms. The query processing in the Spatial Network Databases (SNDB)[6] in efficient and this paper introduces this advantage. 4.4 Optimal Route Query with Arbitrary Order Constraints The optimal route query considers the partial order constraints for finding the optimal route. The user wants to specify starting point, destination point and a set of arbitrary order constraints [4]. This is different from the total sequenced rules. The example for the partial order constraints is “visit the pub before hotel”. Therefore any other categories can be included in between these two categories. But total order is the sequenced route conditions. For considering the partial order constraints two different types of techniques are developed namely Backward search and Forward search [4]. Both the methods will take the same inputs and will produce the same output. The backward search algorithm finds the optimal route in the reverse manner that is starting from the destination and ends at the query starting point. This is similar to the R-LORD algorithm [7]. First select the destination point and as per the partial sequenced route find out all the possible edges to the second last point. Then find the optimum edge from these and attached to the destination. Then repeat the process until the query starting point encountered.
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 02 Issue: 12 | Dec-2013, Available @ http://www.ijret.org 450 The second one is Forward search algorithm and which is similar to the greedy algorithm [1]. First select the query starting point and then find the nearest neighbor point which satisfies the given constraint. The process repeats and finally one optimal route is obtained. Then this forward search algorithm will use the backward search algorithm for the backtracking process. This will eliminate the demerits of the greedy algorithm. That is it eliminates some points that will not be a part of the optimal route. Both the algorithms find the optimal routes and which satisfies all the given partial order constraints. The memory usage is reduced by using some pruning techniques. Thus the number of categories from the dataset is reduced and the memory usage will be reduced. This paper which uses both the optimal route query processing in road network and the spatial search with categorical information. Thus the methods used here is included in both the classifications. This technique solved the problem of optimal route query with partial order constraints [4]. Another advantage is that several sub routes also can be obtained and are optimal. Therefore in the real world application some of the category points can be omitted to meet the particular cost or the time. 5. CONCLUSIONS The optimal route queries find the optimal route and this has greater applications in the road network. The spatial search with categorical information is used to consider the categorical points to be visited with better facilities. The initial solution of the optimal route query is based on the greedy solution. Some of the techniques considered total order constraints. The recent solutions of the optimal route query handle the arbitrary order constraints. All the methods will result in the optimal solutions with the given the starting and destination points. But many of the techniques do not consider constraints. Some may consider the total order constraints and some others use the partial order constraints. In future, some of the timing constraints can be included to the optimal route queries. ACKNOWLEDGEMENTS I feel it pleasure to be indebted to my guide Mrs. S. Deepa Kanmani, M.E, Assistant professor, Department of Computer Science and Engineering for her invaluable support, advice and encouragement and the reference for her feedback. REFERENCES [1]. Boinski P, Wojciechowski M, Zakrzewicz M(2007), “A Greedy Approach to Concurrent Processing of Frequent Itemset Queries”, Proc. Of the International IIS: IIPWM’06 Conference [2]. Chen H, Ku W.S, Sun M.T, Zimmermann R(2008), “The Multi-Rule Partial Sequenced Route Query”, Proc. 16th ACM SIGSPATIAL Int’l Conf. Advances in Geographic Information Systems (GIS) [3]. Li F, Cheng D, Hadjieleftheriou M, Kollios G, Teng S.H(2005), “On Trip Planning Queries in Spatial Databases”, Proc. Ninth Int’l Conf. Advances in Spatial and Temporal Databases (SSTD) [4]. Li J, Yang Y.D, Mamoulis N(2013), “Optimal Route Queries with Arbitrary Order Constraints”, IEEE Trans. Computers, vol. 25, no. 5, pp. 1097- 1110 [5]. Nanopoulos A, Bozanis P(2003), “Categorical Range Queries in Large Databases”, Springer-Verlag Berlin Heidelberg, pp. 122-139 [6]. Papadias D,Zhang J, Mamoulis N, Tao Y(2003), “Query Processing in Spatial Network Databases”, VLDB conference. [7]. Sharifzadeh M, Kolahdouzan M.R, Shahabi C(2008), “The Optimal Sequenced Route Query”, VLDB J - Int’l J. Very Large Data Bases, vol. 17, no. 4, pp. 765-787 [8]. Yiu M.L, Mamoulis N, Vaitis M(2007), “Top-k Spatial Preference Queries”, 7160/05E from Hong Kong RGC BIOGRAPHIES Gopika N.A pursuing her M.Tech in Computer Science and Engineering from Karunya University, Tamilnadu, India. She received her Bachelor’s degree from Lourdes Matha Engineering College under Kerala University in Computer Science and Engineering. Mrs. S. Deepa Kanmani received her Master of Engineering degree from the Anna University, India. Currently she is pursuing her Ph.D degree in Distributed Data Mining & Database, Karunya University, and Coimbatore. She is working as an Assistant Professor in Computer Science and Engineering Department, Karunya University, Coimbatore.