SlideShare a Scribd company logo
1 of 5
Download to read offline
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 02 Issue: 11 | Nov-2013, Available @ http://www.ijret.org 529
USE OF LOCATION AIDED ALGORITHM USING WI-FI IN INDOOR
AD-HOC SYSTEMS
Sivaramakrishnan SR1
, Gururaja H.S.2
1
Dept. of Information Science & Engineering, BMS College of Engineering, Bangalore, Karnataka, India,
shivramkrishnan@live.com
2
Asst. Professor, Dept. of Information Science & Engineering, BMS College of Engineering, Bangalore, Karnataka,
India, gururaja.hs@gmail.com
Abstract
Mobile Ad-Hoc networks are designed to establish a network anytime and anywhere. Unlike other networks, ad-hoc does not
require a fixed infrastructure. There are various routing techniques which are related to ad-hoc networking like Destination
Sequenced Distance Vector Protocol (DSDV), Dynamic Source Routing Protocol (DSR) and Ad-Hoc On Demand Distance Vector
Protocol (AODV). One such routing protocol named Location Aided Routing uses GPS (Global Positioning System) to get the co-
ordinates of the nodes which would assist in routing. There is a definite set of drawbacks where GPS is used to get the location for
the nodes in the ad-hoc network which is implemented indoor. In this paper, we propose an alternative of using Wi-Fi Positioning
System to get the location of the co-ordinates which may prove to be a better solution than GPS indoor.
Index Terms: Ad-Hoc Networks, DSDV, DSR, AODV, LAR, GPS, Wi-Fi Positioning System
--------------------------------------------------------------------***----------------------------------------------------------------------
1. INTRODUCTION
Mobile Ad-Hoc networks (MANET) are a collection of
mobile nodes with a dynamic network infrastructure which
forms a temporary network. The topology of ad-hoc
networks can change quickly; the network should be
adaptable to changes including when a node leaves the
network or when a new node joins the network. Therefore,
the task of routing in MANET cannot be considered trivial.
There are several efficient protocols which can be
implemented on MANET. These protocols can be roughly
classified as either a Table-Driven Protocol (Proactive
Protocol) or a Source-Initiated Protocol (Reactive Protocol)
[1]. In this paper, we closely look into Location Aided
Routing which uses location co-ordinates to decrease the
overhead of route discovery. LAR uses GPS to obtain the
co-ordinates of the various nodes in the network. Using
these co-ordinates the expected zone and also the request
zones are defined. GPS brings in an overhead when used.
The main limitation of GPS is that it is not accurate when
used indoors. Therefore it may not be effective in the case of
ad-hoc networks using LAR, which are implemented
indoors. In this paper, we provide an alternative to GPS,
which is Wi-Fi Positioning System to get the co-ordinates of
the nodes in the ad-hoc network implemented indoors.
2. FLOODING
Flooding is a simple routing algorithm where a packet is
broadcasted to every link other that the link from which the
packet arrived from. When a Node A needs to find a route
to Node G, Node A issues a Route Request message to all its
neighbors. Every node in the network is given a unique
identifier. The Route Request message contains the
identifier of the destination node. Suppose an intermediate
Node E receives the route request message, it compares its
identifier with that of the destination present in the message.
If it is a match then the request for a route is to itself. If not,
Node E broadcasts the message to its neighbors.
Redundancy is avoided as the Node B would discard the
same Route Request from Node A, when received.
Fig - 1: Demonstration of Flooding
One receiving the Route Request message, Node G sends a
Route Reply message to Node A. The path is obtained by
reversing the path obtained from route request message.
Dynamic source routing (DSR) [2], and ad-hoc on demand
Distance vector routing (AODV) [3] protocols are both
based on variations of flooding.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 02 Issue: 11 | Nov-2013, Available @ http://www.ijret.org 530
3. OVERVIEW OF LOCATION AIDED
ROUTING
Flooding is not an efficient algorithm, though it may be the
simplest to implement. A lot routing overhead is involved in
the case of Flooding, as the packets are broadcasted to all.
An alternative to Flooding is Location Aided Routing
(LAR). Location Aided Routing uses the Global Positioning
system (GPS) to obtain the physical location of the nodes
which is used to reduce the overhead involved. LAR uses
two different types of region – Expected Zone and Request
Zone.
Expected Zone
Consider a situation where the Node A needs to find a route
to Node B. Assume that, Node A knows the location of
Node B at time t0 and the average speed with which the node
B is moving. Let the average speed be v. Expected Zone is
defined as the region in which the Node A expects the Node
B to be present at time t1 where t1 > t0. Expected Zone can be
defined as a circle with a radius of v(t1-t0).
Fig - 2: Example of Expected Zone with radius v(t1-t0)
Request Zone
In Flooding, each node broadcasts its route request packet to
its neighbors. But this is not the case in LAR. A region
known as Request Zone is defined. A Node would broadcast
the message to its neighbors only if it is in the request zone.
Fig - 3: Example of Request Zone
If Node X receives route request message, it checks if it lies
within the Request Zone. Since it is present inside the
Request Zone, Node X broadcasts its message to its
neighbors. But this is not the case with Node K. Since node
K is present outside the Request Zone, it discards the Route
Request packet which it received.
Using the Expected Zone and Request Zone, there are two
LAR Schemes defined [4].
3.1 LAR Scheme 1
In this is scheme it is assumed that the source Node S knows
the co-ordinates of destination Node D at time to and also its
average velocity at which it’s moving. The Request Zone is
defined as the smallest rectangle which contains the Source
Node S and the Expected Zone such that the sides of the
rectangle are parallel to the X and Y axis. The source S in its
Route Request message includes the co-ordinates of the four
corners of the rectangle. When an intermediate node
receives this route request, it compares its location with that
of the request zone. It will discard the message if it lies
outside the expected zone, otherwise it would forward the
route request message to its neighbors.
In the following example, when Node I receives the Route
Request message from Node S, it discard the message
because Node I is present outside the Request Zone.
Fig - 4: LAR Scheme 1
3.2 LAR Scheme 2
In addition to the location of the request zone in the route
request message, LAR Scheme 2 also includes the distance
(between the Source Node S and Destination Node D) and
the co-ordinates of the destination. The distance between the
source and the destination is denoted by DISTs and the co-
ordinates of the destination are represented by (Xd, Yd).
When an intermediate node I receives the route request from
the Source, it calculates its distance from the destination
denoted by DISTi. For some parameter δ, DISTs + δ ≥
DISTi, the Node I would forward the route request message
to its neighbors.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 02 Issue: 11 | Nov-2013, Available @ http://www.ijret.org 531
Fig - 5: LAR Scheme 2
The distance between node B and the destination is denoted
by DISTb. But DISTs + δ ≤ DISTb, therefore the Node B
discards the route request packet.
4. WI-FI OVER GLOBAL POSITIONING
SYSTEM
The key components of the Location Aided Routing are the
co-ordinates of the nodes. These co-ordinates could be
obtained in many ways including, Global Positioning
System and Wi-Fi Positioning Systems. The Global
Positioning System (GPS) is a network of satellites orbiting
the Earth at an altitude of 20,000 km. The U.S Government
designed this system for military purpose, but now it can be
used by anyone who has a GPS enabled system. At least
four GPS satellites are visible at any time, wherever you are
on the planet. Each satellite transmits information about its
position and the current time at regular intervals. These
signals, travelling at the speed of light, are intercepted by
your GPS receiver, which calculates how far away each
satellite is based on how long it took for the messages to
arrive. Using the process of trilalteration, the exact location
could be pin pointed by the GPS receiver.
There is a considerable error involved while using the GPS.
According to the Official U.S Government Information
about the GPS, the errors associated with GPS (in terms of
location) are about 7.8 meters at 95% confidence. [5] Also,
GPS faces a problem of Satellite Geometry. If a GPS
receiver is locked onto four satellites and all four of these
satellites are in the sky to the north and west of the receiver,
satellite geometry is rather poor. [6] Considering all the
above factors, GPS does have its limitations. By using GPS
in ad-hoc networks implemented indoors, these factors play
a crucial role. The energy consumed by the GPS to obtain
the co-ordinates would be significant. Since ad-hoc
networks are designed to last for a long duration, GPS may
prove to be in efficient. Energy Efficient protocols for ad-
hoc networks such as SPAN [7] have been developed which
builds on the observation that only certain nodes needs to be
active at a time to forward traffic.
When ad-hoc systems using LAR is implemented indoors,
or in a densely populated location with a number of
buildings, the GPS may also not be accurate due to
multipath. Multipath occurs when the signal bounces off a
building before reaching the GPS receiver's antenna which
causes a delay in the signal. This added time makes the GPS
receiver think the satellite is farther away than it really is.
In this paper we propose an alternate method of obtaining
the co-ordinates of the nodes in the Location Aided Routing
(implemented indoors) with the help of Wi-Fi Positioning
System instead of Global Positioning System. The mean
error involved with Wi-Fi Positioning System is found to be
about 2.3m (line of sight) and 2.9(non-line of sight) [8]. This
is comparatively lesser than the error generated in GPS.
Also the limitations such as multipath is avoided in this
system
5. WI-FI AS AN ALTERNATIVE
Wi-Fi technology enables electronic devices to exchange
data or connect to the internet wirelessly. It is based on
the Institute of Electrical and Electronics Engineers
(IEEE) 802.11 standards (which are protocols to implement
WLAN) [9].Many devices can access Wi-Fi. Devices can
connect to a network resource such as the internet using
various wireless access points. Wi-Fi positioning system
uses these wireless access points to measure the intensity of
the signal. There are different methods by which the signal
strength or the direction of the signal could be used to
determine the location of the node.
5.1 Cell Identity
In order to find the location of the node through this method,
some preparations must be made. A database of wireless
access point’s IDs (Which could be the MAC Address) and
its geo-location is necessary. The closest station to the node
is the station from which the strongest incoming signal on
the node is received. A request to the database is performed
for the ID of the station with the strongest received signal.
The database returns the position of the desired station and
from this the location of the node could be obtained. But this
system is found to be very inaccurate and can be used only
to find the approximate location of the node. This is because
it uses the location of only one wireless access point and the
request to the pre defined database would return an
approximate location close to that wireless access point.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 02 Issue: 11 | Nov-2013, Available @ http://www.ijret.org 532
Fig - 6: Example of Cell Identity
Node I is receiving the strongest strength from wireless
access point A. On sending a request to the database with
the ID of wireless access point, it returns an approximate
location of Node I.
5.2 Trilateration
Trilateration[10] is the process of determining the location
of a node by measuring distances from three different
wireless access points. This process starts off by calculating
the distance between the node and the first wireless access
point. Let the distance obtained be denoted by WD1. This
distance obtained is used to define a circular region with
radius of WD1 from the first wireless access point. In other
words, the node lies within this circle of radius WD1. To
increase precision, another wireless access point is
considered. The distance between the node and the second
wireless access point is calculated and let it be denoted by
WD2. This distance of WD2 is used to define a circular
region with the radius of WD2 with the second wireless
access point as the centre. Now there are two circles with
radius’s WD1 and WD2 which are intersecting at two points
(one of them being the location of the node). In order to pin
point on the exact location, a third wireless access point is
considered. The distance between the third wireless access
point and the node is calculated and is represented by WD3.
A third circle is drawn with the wireless access point 3 as
the center and WD3 being the radius. The intersection of the
three circles is the location of the Node. An illustration of
Trilateration is shown below.
Fig - 7: Trilateration
5.3 Wi-Fi Fingerprinting
Wi-Fi Fingerprinting [11] technique involves forming a pre-
defined table of values of signal patterns and this table is
referred for obtaining the corresponding location. The initial
phase involves recording of the entire area of work. The area
should be covered with pattern of recording points known as
fingerprints. Every fingerprint consists of measurements
including the signal strength of various wireless access
points in that location. This data is stored in a database
known as radio map. If a node should be located in the
recorded area, then it measures the signal strengths of all the
current wireless access points in range. This data which is
obtained by the node is compared with the radio table to
obtain the position of the node. Table 1 shows an example
of a Radio Map which is used in the Wi-Fi fingerprinting
technique.
Table -1: Example of a Radio Map
Position Direction WAP 1 WAP 2 WAP 3
P1 0 -89 dBm -43 dBm -12 dBm
P2 40o
-30 dBm -98dBm -45 dBm
P3 55o
-20 dBm -10dBm -39 dBm
P4 67o
-67 dBm -67dBm -12 dBm
The strength of the Wi-Fi signal at a particular location is
measured in terms of decibel meter (dBm).The three
wireless access points which are needed are represented as
WAP1, WAP2 and WAP3. Suppose a node is located at a
position where the intensity of WAP1, WAP2 and WAP3
are 89dBm,-43 dBm and -12 dBm respectively. The node
sends a request to the radio map to match these values of
WAP1, WAP2 and WAP3. On comparing the values of the
radio map and the values sent by the node, the position of
the node is found to be in P1.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 02 Issue: 11 | Nov-2013, Available @ http://www.ijret.org 533
CONCLUSIONS
Wi-Fi in today’s world is ubiquitous. By replacing Global
Positioning System for obtaining the co-ordinates of nodes
for LAR with Wi-Fi Positioning System may prove to be of
a greater benefit. Wi-Fi is proven to be faster than GPS in
finding out location. The GPS module used to obtain the co-
ordinates will consume considerable amount of power.
Unlike GPS, the power consumed by Wi-Fi would be lesser
because the location is obtained from the already defined
regions of the wireless access point. By using one of the
methods mentioned in this paper, we might possibly attain
an ad-hoc network which could be implemented indoors
with greater energy efficiency. Also if GPS were to be used
in LAR indoors, the problem such as multipath would
detriment the accuracy of the location. This could be
overcome in the case of using Wi-Fi where multipath is
minimum. Wi-Fi Positioning System may be a better option
in the case of indoor ad-hoc networks than GPS.
REFERENCES
[1]. Mbarushimana, C and Shahrabi A., ”Comparative
Study of Reactive and Proactive Routing Protocols
Performance in Mobile Ad-Hoc Networks”, May ,2007.
[2]. D. Johnson and D. A. Maltz, “Dynamic source routing
in ad-hoc wireless networks, Kluwere Academic Publishers,
1996.
[3]. C. E. Perkins and E. M. Royer, “Ad-Hoc on demand
distance vector (AODV) routing (Internet-Draft),” Aug.
1998.
[4]. Yottttg-BaeKo and Nitin H. Vaidya, “Location-Aided
Routing (LAR) in Mobile Ad-Hoc Networks”, 2000.
[5]. “Global Positioning System Standard Positioning
Service Performance Standard”, by the U.S. Government
available at http://www.gps.gov/technical/ps/2008-SPS-
performance-standard.pdf.
[6]. C Dussault, R Courtois, JP Ouellet, J Huot, “Influence
of satellite geometry and differential correction on GPS
location accuracy”, Wildlife Society Bulletin, 2001.
[7]. B Chen, K Jamieson, H Balakrishnan, R Morris, “Span:
An energy-efficient coordination algorithm for topology
maintenance in ad-hoc wireless networks”, Wireless
networks, 2002 – Springer.
[8]. Bose, A., Chuan Heng Foh, “A practical path loss model
for indoor Wi-Fi positioning enhancement”, Information,
Communications & Signal Processing, 2007 6th
International Conference.
[9]. Crow, B.P; Widjaja, I.; Jeong Geun Kim; Sakai, P.T,
“IEEE 802.11 Wireless Local Area Networks”,
Communications Magazine, IEEE (Volume:35 , Issue: 9).
[10]. F. Lassabe, P. Canalda, P. Chatonnay, F. Spies,
”Indoor Wi-Fi positioning: techniques and systems”,
Springer October 2009, Volume 64, Issue 9-10, pp 651-664.
[11]. E. Mok & G. Retscher, ”Location determination
using Wi-Fi Fingerprinting vs. Wi-Fi trilateration“, Journal
of Location Based Services Volume 1, Issue 2, 2007.
BIOGRAPHIES
Sivaramakrishnan SR is pursuing
his Bachelor of Engineering in
Information Science at BMS
College of Engineering, Bangalore.
His research interests include Ad-
hoc networks, Sensor networks and
Network Security.
Gururaja H.S. has completed his
Bachelor of Engineering in
Computer Science and Master of
Technology in Computer Networks
from Visvesvaraya Technological
University, Belgaum. He is
currently pursuing his Ph.D. from
JNTU, Hyderabad in the field of
Cryptography & Network Security
and has around 8 years of teaching
experience.

More Related Content

What's hot

Analyzing performance of zrp by varying node density and transmission range
Analyzing performance of zrp by varying node density and transmission rangeAnalyzing performance of zrp by varying node density and transmission range
Analyzing performance of zrp by varying node density and transmission rangeAlexander Decker
 
Decision making approach to prefer route repair technique in aodv routing pro...
Decision making approach to prefer route repair technique in aodv routing pro...Decision making approach to prefer route repair technique in aodv routing pro...
Decision making approach to prefer route repair technique in aodv routing pro...eSAT Journals
 
Comparison of energy efficient data transmission approaches for flat wireless...
Comparison of energy efficient data transmission approaches for flat wireless...Comparison of energy efficient data transmission approaches for flat wireless...
Comparison of energy efficient data transmission approaches for flat wireless...ijassn
 
Geographic Routing in WSN
Geographic Routing in WSNGeographic Routing in WSN
Geographic Routing in WSNMahbubur Rahman
 
Improved Power Aware Location Based Routing
Improved Power Aware Location Based RoutingImproved Power Aware Location Based Routing
Improved Power Aware Location Based RoutingIOSR Journals
 
O dsr optimized dsr routing
O dsr optimized dsr routingO dsr optimized dsr routing
O dsr optimized dsr routingijwmn
 
SIMULATION PROCESS FOR MOBILE NODES INFORMATION USING LOCATION-AIDED ROUTING ...
SIMULATION PROCESS FOR MOBILE NODES INFORMATION USING LOCATION-AIDED ROUTING ...SIMULATION PROCESS FOR MOBILE NODES INFORMATION USING LOCATION-AIDED ROUTING ...
SIMULATION PROCESS FOR MOBILE NODES INFORMATION USING LOCATION-AIDED ROUTING ...ijwmn
 
Destination Aware APU Strategy for Geographic Routing in MANET
Destination Aware APU Strategy for Geographic Routing in MANETDestination Aware APU Strategy for Geographic Routing in MANET
Destination Aware APU Strategy for Geographic Routing in MANETEditor IJCATR
 
HORIZONTAL AND VERTICAL ZONE BASED LOCATION TECHNIQUES FOR WIRELESS SENSOR NE...
HORIZONTAL AND VERTICAL ZONE BASED LOCATION TECHNIQUES FOR WIRELESS SENSOR NE...HORIZONTAL AND VERTICAL ZONE BASED LOCATION TECHNIQUES FOR WIRELESS SENSOR NE...
HORIZONTAL AND VERTICAL ZONE BASED LOCATION TECHNIQUES FOR WIRELESS SENSOR NE...ijwmn
 
Paper id 252014153
Paper id 252014153Paper id 252014153
Paper id 252014153IJRAT
 
Power saving mechanism for hybrid routing protocol using scheduling technique
Power saving mechanism for hybrid routing protocol using scheduling techniquePower saving mechanism for hybrid routing protocol using scheduling technique
Power saving mechanism for hybrid routing protocol using scheduling techniqueeSAT Publishing House
 
Detection of Duplicate Address in Mobile Adhoc Networks for On Demand Routing...
Detection of Duplicate Address in Mobile Adhoc Networks for On Demand Routing...Detection of Duplicate Address in Mobile Adhoc Networks for On Demand Routing...
Detection of Duplicate Address in Mobile Adhoc Networks for On Demand Routing...IJMER
 
Enhanced location based self adaptive routing algorithm for wsn in industrial...
Enhanced location based self adaptive routing algorithm for wsn in industrial...Enhanced location based self adaptive routing algorithm for wsn in industrial...
Enhanced location based self adaptive routing algorithm for wsn in industrial...eSAT Publishing House
 
Performance analysis of aodv with the constraints of
Performance analysis of aodv with the constraints ofPerformance analysis of aodv with the constraints of
Performance analysis of aodv with the constraints ofEditor Jacotech
 
Comparative Study for Performance Analysis of Routing Protocols in Mobility a...
Comparative Study for Performance Analysis of Routing Protocols in Mobility a...Comparative Study for Performance Analysis of Routing Protocols in Mobility a...
Comparative Study for Performance Analysis of Routing Protocols in Mobility a...eeiej
 
COMPARATIVE STUDY FOR PERFORMANCE ANALYSIS OF ROUTING PROTOCOLS IN MOBILITY A...
COMPARATIVE STUDY FOR PERFORMANCE ANALYSIS OF ROUTING PROTOCOLS IN MOBILITY A...COMPARATIVE STUDY FOR PERFORMANCE ANALYSIS OF ROUTING PROTOCOLS IN MOBILITY A...
COMPARATIVE STUDY FOR PERFORMANCE ANALYSIS OF ROUTING PROTOCOLS IN MOBILITY A...eeiej_journal
 

What's hot (17)

Analyzing performance of zrp by varying node density and transmission range
Analyzing performance of zrp by varying node density and transmission rangeAnalyzing performance of zrp by varying node density and transmission range
Analyzing performance of zrp by varying node density and transmission range
 
Decision making approach to prefer route repair technique in aodv routing pro...
Decision making approach to prefer route repair technique in aodv routing pro...Decision making approach to prefer route repair technique in aodv routing pro...
Decision making approach to prefer route repair technique in aodv routing pro...
 
Comparison of energy efficient data transmission approaches for flat wireless...
Comparison of energy efficient data transmission approaches for flat wireless...Comparison of energy efficient data transmission approaches for flat wireless...
Comparison of energy efficient data transmission approaches for flat wireless...
 
Geographic Routing in WSN
Geographic Routing in WSNGeographic Routing in WSN
Geographic Routing in WSN
 
Improved Power Aware Location Based Routing
Improved Power Aware Location Based RoutingImproved Power Aware Location Based Routing
Improved Power Aware Location Based Routing
 
O dsr optimized dsr routing
O dsr optimized dsr routingO dsr optimized dsr routing
O dsr optimized dsr routing
 
Hd3312521256
Hd3312521256Hd3312521256
Hd3312521256
 
SIMULATION PROCESS FOR MOBILE NODES INFORMATION USING LOCATION-AIDED ROUTING ...
SIMULATION PROCESS FOR MOBILE NODES INFORMATION USING LOCATION-AIDED ROUTING ...SIMULATION PROCESS FOR MOBILE NODES INFORMATION USING LOCATION-AIDED ROUTING ...
SIMULATION PROCESS FOR MOBILE NODES INFORMATION USING LOCATION-AIDED ROUTING ...
 
Destination Aware APU Strategy for Geographic Routing in MANET
Destination Aware APU Strategy for Geographic Routing in MANETDestination Aware APU Strategy for Geographic Routing in MANET
Destination Aware APU Strategy for Geographic Routing in MANET
 
HORIZONTAL AND VERTICAL ZONE BASED LOCATION TECHNIQUES FOR WIRELESS SENSOR NE...
HORIZONTAL AND VERTICAL ZONE BASED LOCATION TECHNIQUES FOR WIRELESS SENSOR NE...HORIZONTAL AND VERTICAL ZONE BASED LOCATION TECHNIQUES FOR WIRELESS SENSOR NE...
HORIZONTAL AND VERTICAL ZONE BASED LOCATION TECHNIQUES FOR WIRELESS SENSOR NE...
 
Paper id 252014153
Paper id 252014153Paper id 252014153
Paper id 252014153
 
Power saving mechanism for hybrid routing protocol using scheduling technique
Power saving mechanism for hybrid routing protocol using scheduling techniquePower saving mechanism for hybrid routing protocol using scheduling technique
Power saving mechanism for hybrid routing protocol using scheduling technique
 
Detection of Duplicate Address in Mobile Adhoc Networks for On Demand Routing...
Detection of Duplicate Address in Mobile Adhoc Networks for On Demand Routing...Detection of Duplicate Address in Mobile Adhoc Networks for On Demand Routing...
Detection of Duplicate Address in Mobile Adhoc Networks for On Demand Routing...
 
Enhanced location based self adaptive routing algorithm for wsn in industrial...
Enhanced location based self adaptive routing algorithm for wsn in industrial...Enhanced location based self adaptive routing algorithm for wsn in industrial...
Enhanced location based self adaptive routing algorithm for wsn in industrial...
 
Performance analysis of aodv with the constraints of
Performance analysis of aodv with the constraints ofPerformance analysis of aodv with the constraints of
Performance analysis of aodv with the constraints of
 
Comparative Study for Performance Analysis of Routing Protocols in Mobility a...
Comparative Study for Performance Analysis of Routing Protocols in Mobility a...Comparative Study for Performance Analysis of Routing Protocols in Mobility a...
Comparative Study for Performance Analysis of Routing Protocols in Mobility a...
 
COMPARATIVE STUDY FOR PERFORMANCE ANALYSIS OF ROUTING PROTOCOLS IN MOBILITY A...
COMPARATIVE STUDY FOR PERFORMANCE ANALYSIS OF ROUTING PROTOCOLS IN MOBILITY A...COMPARATIVE STUDY FOR PERFORMANCE ANALYSIS OF ROUTING PROTOCOLS IN MOBILITY A...
COMPARATIVE STUDY FOR PERFORMANCE ANALYSIS OF ROUTING PROTOCOLS IN MOBILITY A...
 

Viewers also liked

A study on push pull analysis associated with awkward
A study on push pull analysis associated with awkwardA study on push pull analysis associated with awkward
A study on push pull analysis associated with awkwardeSAT Publishing House
 
Behaviour of randomly distributed fiber reinforced
Behaviour of randomly distributed fiber reinforcedBehaviour of randomly distributed fiber reinforced
Behaviour of randomly distributed fiber reinforcedeSAT Publishing House
 
An fpga implementation of the lms adaptive filter
An fpga implementation of the lms adaptive filterAn fpga implementation of the lms adaptive filter
An fpga implementation of the lms adaptive filtereSAT Publishing House
 
An innovative way for computerized smith chart generation and transmission li...
An innovative way for computerized smith chart generation and transmission li...An innovative way for computerized smith chart generation and transmission li...
An innovative way for computerized smith chart generation and transmission li...eSAT Publishing House
 
Improving productivity of apparel manufacturing
Improving productivity of apparel manufacturingImproving productivity of apparel manufacturing
Improving productivity of apparel manufacturingeSAT Publishing House
 
Electrochemical impedance spectroscopy on thermal
Electrochemical impedance spectroscopy on thermalElectrochemical impedance spectroscopy on thermal
Electrochemical impedance spectroscopy on thermaleSAT Publishing House
 
Design of digital video watermarking scheme using matlab simulink
Design of digital video watermarking scheme using matlab simulinkDesign of digital video watermarking scheme using matlab simulink
Design of digital video watermarking scheme using matlab simulinkeSAT Publishing House
 
Natural and calcined clayey diatomite as cement replacement materials microst...
Natural and calcined clayey diatomite as cement replacement materials microst...Natural and calcined clayey diatomite as cement replacement materials microst...
Natural and calcined clayey diatomite as cement replacement materials microst...eSAT Publishing House
 
Interactive irrigation system through mobile with ivr response
Interactive irrigation system through mobile with ivr responseInteractive irrigation system through mobile with ivr response
Interactive irrigation system through mobile with ivr responseeSAT Publishing House
 
Tiled bitmap algorithm and forensic analysis of data tampering (an evolutiona...
Tiled bitmap algorithm and forensic analysis of data tampering (an evolutiona...Tiled bitmap algorithm and forensic analysis of data tampering (an evolutiona...
Tiled bitmap algorithm and forensic analysis of data tampering (an evolutiona...eSAT Publishing House
 
Pca based support vector machine technique for volatility forecasting
Pca based support vector machine technique for volatility forecastingPca based support vector machine technique for volatility forecasting
Pca based support vector machine technique for volatility forecastingeSAT Publishing House
 
Analysis of energy efficiency aspects in energy management
Analysis of energy efficiency aspects in energy managementAnalysis of energy efficiency aspects in energy management
Analysis of energy efficiency aspects in energy managementeSAT Publishing House
 
Real time reservoir operation (calibration phase) a case study
Real time reservoir operation (calibration phase) a case studyReal time reservoir operation (calibration phase) a case study
Real time reservoir operation (calibration phase) a case studyeSAT Publishing House
 
Amalgamation of contour, texture, color, edge, and
Amalgamation of contour, texture, color, edge, andAmalgamation of contour, texture, color, edge, and
Amalgamation of contour, texture, color, edge, andeSAT Publishing House
 
Design and characterization of various shapes of microcantilever for human im...
Design and characterization of various shapes of microcantilever for human im...Design and characterization of various shapes of microcantilever for human im...
Design and characterization of various shapes of microcantilever for human im...eSAT Publishing House
 
A semi circle theorem in magneto-rotatory
A semi circle theorem in magneto-rotatoryA semi circle theorem in magneto-rotatory
A semi circle theorem in magneto-rotatoryeSAT Publishing House
 
Framework for web personalization using web mining
Framework for web personalization using web miningFramework for web personalization using web mining
Framework for web personalization using web miningeSAT Publishing House
 
Connected roman domination in graphs
Connected roman domination in graphsConnected roman domination in graphs
Connected roman domination in graphseSAT 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
 

Viewers also liked (20)

A study on push pull analysis associated with awkward
A study on push pull analysis associated with awkwardA study on push pull analysis associated with awkward
A study on push pull analysis associated with awkward
 
Behaviour of randomly distributed fiber reinforced
Behaviour of randomly distributed fiber reinforcedBehaviour of randomly distributed fiber reinforced
Behaviour of randomly distributed fiber reinforced
 
An fpga implementation of the lms adaptive filter
An fpga implementation of the lms adaptive filterAn fpga implementation of the lms adaptive filter
An fpga implementation of the lms adaptive filter
 
An innovative way for computerized smith chart generation and transmission li...
An innovative way for computerized smith chart generation and transmission li...An innovative way for computerized smith chart generation and transmission li...
An innovative way for computerized smith chart generation and transmission li...
 
Improving productivity of apparel manufacturing
Improving productivity of apparel manufacturingImproving productivity of apparel manufacturing
Improving productivity of apparel manufacturing
 
Electrochemical impedance spectroscopy on thermal
Electrochemical impedance spectroscopy on thermalElectrochemical impedance spectroscopy on thermal
Electrochemical impedance spectroscopy on thermal
 
Design of digital video watermarking scheme using matlab simulink
Design of digital video watermarking scheme using matlab simulinkDesign of digital video watermarking scheme using matlab simulink
Design of digital video watermarking scheme using matlab simulink
 
Natural and calcined clayey diatomite as cement replacement materials microst...
Natural and calcined clayey diatomite as cement replacement materials microst...Natural and calcined clayey diatomite as cement replacement materials microst...
Natural and calcined clayey diatomite as cement replacement materials microst...
 
Interactive irrigation system through mobile with ivr response
Interactive irrigation system through mobile with ivr responseInteractive irrigation system through mobile with ivr response
Interactive irrigation system through mobile with ivr response
 
Tiled bitmap algorithm and forensic analysis of data tampering (an evolutiona...
Tiled bitmap algorithm and forensic analysis of data tampering (an evolutiona...Tiled bitmap algorithm and forensic analysis of data tampering (an evolutiona...
Tiled bitmap algorithm and forensic analysis of data tampering (an evolutiona...
 
Pca based support vector machine technique for volatility forecasting
Pca based support vector machine technique for volatility forecastingPca based support vector machine technique for volatility forecasting
Pca based support vector machine technique for volatility forecasting
 
Analysis of energy efficiency aspects in energy management
Analysis of energy efficiency aspects in energy managementAnalysis of energy efficiency aspects in energy management
Analysis of energy efficiency aspects in energy management
 
Synthesis and characterization of
Synthesis and characterization ofSynthesis and characterization of
Synthesis and characterization of
 
Real time reservoir operation (calibration phase) a case study
Real time reservoir operation (calibration phase) a case studyReal time reservoir operation (calibration phase) a case study
Real time reservoir operation (calibration phase) a case study
 
Amalgamation of contour, texture, color, edge, and
Amalgamation of contour, texture, color, edge, andAmalgamation of contour, texture, color, edge, and
Amalgamation of contour, texture, color, edge, and
 
Design and characterization of various shapes of microcantilever for human im...
Design and characterization of various shapes of microcantilever for human im...Design and characterization of various shapes of microcantilever for human im...
Design and characterization of various shapes of microcantilever for human im...
 
A semi circle theorem in magneto-rotatory
A semi circle theorem in magneto-rotatoryA semi circle theorem in magneto-rotatory
A semi circle theorem in magneto-rotatory
 
Framework for web personalization using web mining
Framework for web personalization using web miningFramework for web personalization using web mining
Framework for web personalization using web mining
 
Connected roman domination in graphs
Connected roman domination in graphsConnected roman domination in graphs
Connected roman domination in graphs
 
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...
 

Similar to Use of location aided algorithm using wi fi in indoor

Analysis of zone routing protocol in manet
Analysis of zone routing protocol in manetAnalysis of zone routing protocol in manet
Analysis of zone routing protocol in maneteSAT Journals
 
Performance analysis of aodv, olsr, grp and dsr routing
Performance analysis of aodv, olsr, grp and dsr routingPerformance analysis of aodv, olsr, grp and dsr routing
Performance analysis of aodv, olsr, grp and dsr routingeSAT Publishing House
 
Performance analysis of aodv, olsr, grp and dsr routing protocols with databa...
Performance analysis of aodv, olsr, grp and dsr routing protocols with databa...Performance analysis of aodv, olsr, grp and dsr routing protocols with databa...
Performance analysis of aodv, olsr, grp and dsr routing protocols with databa...eSAT Journals
 
Analysis of zone routing protocol in manet
Analysis of zone routing protocol in manetAnalysis of zone routing protocol in manet
Analysis of zone routing protocol in maneteSAT Publishing House
 
Location updation for energy efficient geographic routing in
Location updation for energy efficient geographic routing inLocation updation for energy efficient geographic routing in
Location updation for energy efficient geographic routing ineSAT Publishing House
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)ijceronline
 
Performance evaluation of various types of nodes in manet with dsr routing pr...
Performance evaluation of various types of nodes in manet with dsr routing pr...Performance evaluation of various types of nodes in manet with dsr routing pr...
Performance evaluation of various types of nodes in manet with dsr routing pr...eSAT Journals
 
Performance evaluation of various types of nodes in
Performance evaluation of various types of nodes inPerformance evaluation of various types of nodes in
Performance evaluation of various types of nodes ineSAT Publishing House
 
Survey on dynamic source routing, attacks and counter measures in wireless se...
Survey on dynamic source routing, attacks and counter measures in wireless se...Survey on dynamic source routing, attacks and counter measures in wireless se...
Survey on dynamic source routing, attacks and counter measures in wireless se...eSAT Publishing House
 
Location updation for energy efficient geographic routing in manet
Location updation for energy efficient geographic routing in manetLocation updation for energy efficient geographic routing in manet
Location updation for energy efficient geographic routing in maneteSAT Journals
 
Cv31424430
Cv31424430Cv31424430
Cv31424430IJMER
 
Advanced delay reduction algorithm based on GPS with Load Balancing
Advanced delay reduction algorithm based on GPS with Load BalancingAdvanced delay reduction algorithm based on GPS with Load Balancing
Advanced delay reduction algorithm based on GPS with Load Balancingijdpsjournal
 
SECURED GREEDY PERIMETER STATELESS ROUTING FOR WIRELESS SENSOR NETWORKS
SECURED GREEDY PERIMETER STATELESS ROUTING FOR WIRELESS SENSOR NETWORKS SECURED GREEDY PERIMETER STATELESS ROUTING FOR WIRELESS SENSOR NETWORKS
SECURED GREEDY PERIMETER STATELESS ROUTING FOR WIRELESS SENSOR NETWORKS ijasuc
 
SECURED GREEDY PERIMETER STATELESS ROUTING FOR WIRELESS SENSOR NETWORKS
SECURED GREEDY PERIMETER STATELESS ROUTING FOR WIRELESS SENSOR NETWORKS SECURED GREEDY PERIMETER STATELESS ROUTING FOR WIRELESS SENSOR NETWORKS
SECURED GREEDY PERIMETER STATELESS ROUTING FOR WIRELESS SENSOR NETWORKS ijasuc
 
Discovering adaptive wireless sensor network using
Discovering adaptive wireless sensor network using Discovering adaptive wireless sensor network using
Discovering adaptive wireless sensor network using eSAT Journals
 
Discovering adaptive wireless sensor network using β synchronizer
Discovering adaptive wireless sensor network using β synchronizerDiscovering adaptive wireless sensor network using β synchronizer
Discovering adaptive wireless sensor network using β synchronizereSAT Publishing House
 
A Survey On Hybrid Routing Protocols In MANETS
A Survey On Hybrid Routing Protocols In MANETSA Survey On Hybrid Routing Protocols In MANETS
A Survey On Hybrid Routing Protocols In MANETSSabrina Ball
 
Analyzing the Effect of Varying CBR on AODV, DSR, IERP Routing Protocols in M...
Analyzing the Effect of Varying CBR on AODV, DSR, IERP Routing Protocols in M...Analyzing the Effect of Varying CBR on AODV, DSR, IERP Routing Protocols in M...
Analyzing the Effect of Varying CBR on AODV, DSR, IERP Routing Protocols in M...IOSR Journals
 

Similar to Use of location aided algorithm using wi fi in indoor (20)

Analysis of zone routing protocol in manet
Analysis of zone routing protocol in manetAnalysis of zone routing protocol in manet
Analysis of zone routing protocol in manet
 
Performance analysis of aodv, olsr, grp and dsr routing
Performance analysis of aodv, olsr, grp and dsr routingPerformance analysis of aodv, olsr, grp and dsr routing
Performance analysis of aodv, olsr, grp and dsr routing
 
Performance analysis of aodv, olsr, grp and dsr routing protocols with databa...
Performance analysis of aodv, olsr, grp and dsr routing protocols with databa...Performance analysis of aodv, olsr, grp and dsr routing protocols with databa...
Performance analysis of aodv, olsr, grp and dsr routing protocols with databa...
 
Analysis of zone routing protocol in manet
Analysis of zone routing protocol in manetAnalysis of zone routing protocol in manet
Analysis of zone routing protocol in manet
 
Location updation for energy efficient geographic routing in
Location updation for energy efficient geographic routing inLocation updation for energy efficient geographic routing in
Location updation for energy efficient geographic routing in
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
Performance evaluation of various types of nodes in manet with dsr routing pr...
Performance evaluation of various types of nodes in manet with dsr routing pr...Performance evaluation of various types of nodes in manet with dsr routing pr...
Performance evaluation of various types of nodes in manet with dsr routing pr...
 
Performance evaluation of various types of nodes in
Performance evaluation of various types of nodes inPerformance evaluation of various types of nodes in
Performance evaluation of various types of nodes in
 
Survey on dynamic source routing, attacks and counter measures in wireless se...
Survey on dynamic source routing, attacks and counter measures in wireless se...Survey on dynamic source routing, attacks and counter measures in wireless se...
Survey on dynamic source routing, attacks and counter measures in wireless se...
 
Location updation for energy efficient geographic routing in manet
Location updation for energy efficient geographic routing in manetLocation updation for energy efficient geographic routing in manet
Location updation for energy efficient geographic routing in manet
 
Cv31424430
Cv31424430Cv31424430
Cv31424430
 
Advanced delay reduction algorithm based on GPS with Load Balancing
Advanced delay reduction algorithm based on GPS with Load BalancingAdvanced delay reduction algorithm based on GPS with Load Balancing
Advanced delay reduction algorithm based on GPS with Load Balancing
 
SECURED GREEDY PERIMETER STATELESS ROUTING FOR WIRELESS SENSOR NETWORKS
SECURED GREEDY PERIMETER STATELESS ROUTING FOR WIRELESS SENSOR NETWORKS SECURED GREEDY PERIMETER STATELESS ROUTING FOR WIRELESS SENSOR NETWORKS
SECURED GREEDY PERIMETER STATELESS ROUTING FOR WIRELESS SENSOR NETWORKS
 
SECURED GREEDY PERIMETER STATELESS ROUTING FOR WIRELESS SENSOR NETWORKS
SECURED GREEDY PERIMETER STATELESS ROUTING FOR WIRELESS SENSOR NETWORKS SECURED GREEDY PERIMETER STATELESS ROUTING FOR WIRELESS SENSOR NETWORKS
SECURED GREEDY PERIMETER STATELESS ROUTING FOR WIRELESS SENSOR NETWORKS
 
Discovering adaptive wireless sensor network using
Discovering adaptive wireless sensor network using Discovering adaptive wireless sensor network using
Discovering adaptive wireless sensor network using
 
Discovering adaptive wireless sensor network using β synchronizer
Discovering adaptive wireless sensor network using β synchronizerDiscovering adaptive wireless sensor network using β synchronizer
Discovering adaptive wireless sensor network using β synchronizer
 
A Survey On Hybrid Routing Protocols In MANETS
A Survey On Hybrid Routing Protocols In MANETSA Survey On Hybrid Routing Protocols In MANETS
A Survey On Hybrid Routing Protocols In MANETS
 
G343741
G343741G343741
G343741
 
G343741
G343741G343741
G343741
 
Analyzing the Effect of Varying CBR on AODV, DSR, IERP Routing Protocols in M...
Analyzing the Effect of Varying CBR on AODV, DSR, IERP Routing Protocols in M...Analyzing the Effect of Varying CBR on AODV, DSR, IERP Routing Protocols in M...
Analyzing the Effect of Varying CBR on AODV, DSR, IERP Routing Protocols in M...
 

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 visakhapatnameSAT 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 visakhapatnameSAT 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, indiaeSAT 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 buildingeSAT 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 revieweSAT 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 managementeSAT 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 wallseSAT 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 indiaeSAT 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 structureseSAT 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 buildingseSAT 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
 
Disaster recovery sustainable housing
Disaster recovery sustainable housingDisaster recovery sustainable housing
Disaster recovery sustainable housingeSAT 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
 
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...
 
Disaster recovery sustainable housing
Disaster recovery sustainable housingDisaster recovery sustainable housing
Disaster recovery sustainable housing
 

Recently uploaded

Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 

Recently uploaded (20)

Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 

Use of location aided algorithm using wi fi in indoor

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 02 Issue: 11 | Nov-2013, Available @ http://www.ijret.org 529 USE OF LOCATION AIDED ALGORITHM USING WI-FI IN INDOOR AD-HOC SYSTEMS Sivaramakrishnan SR1 , Gururaja H.S.2 1 Dept. of Information Science & Engineering, BMS College of Engineering, Bangalore, Karnataka, India, shivramkrishnan@live.com 2 Asst. Professor, Dept. of Information Science & Engineering, BMS College of Engineering, Bangalore, Karnataka, India, gururaja.hs@gmail.com Abstract Mobile Ad-Hoc networks are designed to establish a network anytime and anywhere. Unlike other networks, ad-hoc does not require a fixed infrastructure. There are various routing techniques which are related to ad-hoc networking like Destination Sequenced Distance Vector Protocol (DSDV), Dynamic Source Routing Protocol (DSR) and Ad-Hoc On Demand Distance Vector Protocol (AODV). One such routing protocol named Location Aided Routing uses GPS (Global Positioning System) to get the co- ordinates of the nodes which would assist in routing. There is a definite set of drawbacks where GPS is used to get the location for the nodes in the ad-hoc network which is implemented indoor. In this paper, we propose an alternative of using Wi-Fi Positioning System to get the location of the co-ordinates which may prove to be a better solution than GPS indoor. Index Terms: Ad-Hoc Networks, DSDV, DSR, AODV, LAR, GPS, Wi-Fi Positioning System --------------------------------------------------------------------***---------------------------------------------------------------------- 1. INTRODUCTION Mobile Ad-Hoc networks (MANET) are a collection of mobile nodes with a dynamic network infrastructure which forms a temporary network. The topology of ad-hoc networks can change quickly; the network should be adaptable to changes including when a node leaves the network or when a new node joins the network. Therefore, the task of routing in MANET cannot be considered trivial. There are several efficient protocols which can be implemented on MANET. These protocols can be roughly classified as either a Table-Driven Protocol (Proactive Protocol) or a Source-Initiated Protocol (Reactive Protocol) [1]. In this paper, we closely look into Location Aided Routing which uses location co-ordinates to decrease the overhead of route discovery. LAR uses GPS to obtain the co-ordinates of the various nodes in the network. Using these co-ordinates the expected zone and also the request zones are defined. GPS brings in an overhead when used. The main limitation of GPS is that it is not accurate when used indoors. Therefore it may not be effective in the case of ad-hoc networks using LAR, which are implemented indoors. In this paper, we provide an alternative to GPS, which is Wi-Fi Positioning System to get the co-ordinates of the nodes in the ad-hoc network implemented indoors. 2. FLOODING Flooding is a simple routing algorithm where a packet is broadcasted to every link other that the link from which the packet arrived from. When a Node A needs to find a route to Node G, Node A issues a Route Request message to all its neighbors. Every node in the network is given a unique identifier. The Route Request message contains the identifier of the destination node. Suppose an intermediate Node E receives the route request message, it compares its identifier with that of the destination present in the message. If it is a match then the request for a route is to itself. If not, Node E broadcasts the message to its neighbors. Redundancy is avoided as the Node B would discard the same Route Request from Node A, when received. Fig - 1: Demonstration of Flooding One receiving the Route Request message, Node G sends a Route Reply message to Node A. The path is obtained by reversing the path obtained from route request message. Dynamic source routing (DSR) [2], and ad-hoc on demand Distance vector routing (AODV) [3] protocols are both based on variations of flooding.
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 02 Issue: 11 | Nov-2013, Available @ http://www.ijret.org 530 3. OVERVIEW OF LOCATION AIDED ROUTING Flooding is not an efficient algorithm, though it may be the simplest to implement. A lot routing overhead is involved in the case of Flooding, as the packets are broadcasted to all. An alternative to Flooding is Location Aided Routing (LAR). Location Aided Routing uses the Global Positioning system (GPS) to obtain the physical location of the nodes which is used to reduce the overhead involved. LAR uses two different types of region – Expected Zone and Request Zone. Expected Zone Consider a situation where the Node A needs to find a route to Node B. Assume that, Node A knows the location of Node B at time t0 and the average speed with which the node B is moving. Let the average speed be v. Expected Zone is defined as the region in which the Node A expects the Node B to be present at time t1 where t1 > t0. Expected Zone can be defined as a circle with a radius of v(t1-t0). Fig - 2: Example of Expected Zone with radius v(t1-t0) Request Zone In Flooding, each node broadcasts its route request packet to its neighbors. But this is not the case in LAR. A region known as Request Zone is defined. A Node would broadcast the message to its neighbors only if it is in the request zone. Fig - 3: Example of Request Zone If Node X receives route request message, it checks if it lies within the Request Zone. Since it is present inside the Request Zone, Node X broadcasts its message to its neighbors. But this is not the case with Node K. Since node K is present outside the Request Zone, it discards the Route Request packet which it received. Using the Expected Zone and Request Zone, there are two LAR Schemes defined [4]. 3.1 LAR Scheme 1 In this is scheme it is assumed that the source Node S knows the co-ordinates of destination Node D at time to and also its average velocity at which it’s moving. The Request Zone is defined as the smallest rectangle which contains the Source Node S and the Expected Zone such that the sides of the rectangle are parallel to the X and Y axis. The source S in its Route Request message includes the co-ordinates of the four corners of the rectangle. When an intermediate node receives this route request, it compares its location with that of the request zone. It will discard the message if it lies outside the expected zone, otherwise it would forward the route request message to its neighbors. In the following example, when Node I receives the Route Request message from Node S, it discard the message because Node I is present outside the Request Zone. Fig - 4: LAR Scheme 1 3.2 LAR Scheme 2 In addition to the location of the request zone in the route request message, LAR Scheme 2 also includes the distance (between the Source Node S and Destination Node D) and the co-ordinates of the destination. The distance between the source and the destination is denoted by DISTs and the co- ordinates of the destination are represented by (Xd, Yd). When an intermediate node I receives the route request from the Source, it calculates its distance from the destination denoted by DISTi. For some parameter δ, DISTs + δ ≥ DISTi, the Node I would forward the route request message to its neighbors.
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 02 Issue: 11 | Nov-2013, Available @ http://www.ijret.org 531 Fig - 5: LAR Scheme 2 The distance between node B and the destination is denoted by DISTb. But DISTs + δ ≤ DISTb, therefore the Node B discards the route request packet. 4. WI-FI OVER GLOBAL POSITIONING SYSTEM The key components of the Location Aided Routing are the co-ordinates of the nodes. These co-ordinates could be obtained in many ways including, Global Positioning System and Wi-Fi Positioning Systems. The Global Positioning System (GPS) is a network of satellites orbiting the Earth at an altitude of 20,000 km. The U.S Government designed this system for military purpose, but now it can be used by anyone who has a GPS enabled system. At least four GPS satellites are visible at any time, wherever you are on the planet. Each satellite transmits information about its position and the current time at regular intervals. These signals, travelling at the speed of light, are intercepted by your GPS receiver, which calculates how far away each satellite is based on how long it took for the messages to arrive. Using the process of trilalteration, the exact location could be pin pointed by the GPS receiver. There is a considerable error involved while using the GPS. According to the Official U.S Government Information about the GPS, the errors associated with GPS (in terms of location) are about 7.8 meters at 95% confidence. [5] Also, GPS faces a problem of Satellite Geometry. If a GPS receiver is locked onto four satellites and all four of these satellites are in the sky to the north and west of the receiver, satellite geometry is rather poor. [6] Considering all the above factors, GPS does have its limitations. By using GPS in ad-hoc networks implemented indoors, these factors play a crucial role. The energy consumed by the GPS to obtain the co-ordinates would be significant. Since ad-hoc networks are designed to last for a long duration, GPS may prove to be in efficient. Energy Efficient protocols for ad- hoc networks such as SPAN [7] have been developed which builds on the observation that only certain nodes needs to be active at a time to forward traffic. When ad-hoc systems using LAR is implemented indoors, or in a densely populated location with a number of buildings, the GPS may also not be accurate due to multipath. Multipath occurs when the signal bounces off a building before reaching the GPS receiver's antenna which causes a delay in the signal. This added time makes the GPS receiver think the satellite is farther away than it really is. In this paper we propose an alternate method of obtaining the co-ordinates of the nodes in the Location Aided Routing (implemented indoors) with the help of Wi-Fi Positioning System instead of Global Positioning System. The mean error involved with Wi-Fi Positioning System is found to be about 2.3m (line of sight) and 2.9(non-line of sight) [8]. This is comparatively lesser than the error generated in GPS. Also the limitations such as multipath is avoided in this system 5. WI-FI AS AN ALTERNATIVE Wi-Fi technology enables electronic devices to exchange data or connect to the internet wirelessly. It is based on the Institute of Electrical and Electronics Engineers (IEEE) 802.11 standards (which are protocols to implement WLAN) [9].Many devices can access Wi-Fi. Devices can connect to a network resource such as the internet using various wireless access points. Wi-Fi positioning system uses these wireless access points to measure the intensity of the signal. There are different methods by which the signal strength or the direction of the signal could be used to determine the location of the node. 5.1 Cell Identity In order to find the location of the node through this method, some preparations must be made. A database of wireless access point’s IDs (Which could be the MAC Address) and its geo-location is necessary. The closest station to the node is the station from which the strongest incoming signal on the node is received. A request to the database is performed for the ID of the station with the strongest received signal. The database returns the position of the desired station and from this the location of the node could be obtained. But this system is found to be very inaccurate and can be used only to find the approximate location of the node. This is because it uses the location of only one wireless access point and the request to the pre defined database would return an approximate location close to that wireless access point.
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 02 Issue: 11 | Nov-2013, Available @ http://www.ijret.org 532 Fig - 6: Example of Cell Identity Node I is receiving the strongest strength from wireless access point A. On sending a request to the database with the ID of wireless access point, it returns an approximate location of Node I. 5.2 Trilateration Trilateration[10] is the process of determining the location of a node by measuring distances from three different wireless access points. This process starts off by calculating the distance between the node and the first wireless access point. Let the distance obtained be denoted by WD1. This distance obtained is used to define a circular region with radius of WD1 from the first wireless access point. In other words, the node lies within this circle of radius WD1. To increase precision, another wireless access point is considered. The distance between the node and the second wireless access point is calculated and let it be denoted by WD2. This distance of WD2 is used to define a circular region with the radius of WD2 with the second wireless access point as the centre. Now there are two circles with radius’s WD1 and WD2 which are intersecting at two points (one of them being the location of the node). In order to pin point on the exact location, a third wireless access point is considered. The distance between the third wireless access point and the node is calculated and is represented by WD3. A third circle is drawn with the wireless access point 3 as the center and WD3 being the radius. The intersection of the three circles is the location of the Node. An illustration of Trilateration is shown below. Fig - 7: Trilateration 5.3 Wi-Fi Fingerprinting Wi-Fi Fingerprinting [11] technique involves forming a pre- defined table of values of signal patterns and this table is referred for obtaining the corresponding location. The initial phase involves recording of the entire area of work. The area should be covered with pattern of recording points known as fingerprints. Every fingerprint consists of measurements including the signal strength of various wireless access points in that location. This data is stored in a database known as radio map. If a node should be located in the recorded area, then it measures the signal strengths of all the current wireless access points in range. This data which is obtained by the node is compared with the radio table to obtain the position of the node. Table 1 shows an example of a Radio Map which is used in the Wi-Fi fingerprinting technique. Table -1: Example of a Radio Map Position Direction WAP 1 WAP 2 WAP 3 P1 0 -89 dBm -43 dBm -12 dBm P2 40o -30 dBm -98dBm -45 dBm P3 55o -20 dBm -10dBm -39 dBm P4 67o -67 dBm -67dBm -12 dBm The strength of the Wi-Fi signal at a particular location is measured in terms of decibel meter (dBm).The three wireless access points which are needed are represented as WAP1, WAP2 and WAP3. Suppose a node is located at a position where the intensity of WAP1, WAP2 and WAP3 are 89dBm,-43 dBm and -12 dBm respectively. The node sends a request to the radio map to match these values of WAP1, WAP2 and WAP3. On comparing the values of the radio map and the values sent by the node, the position of the node is found to be in P1.
  • 5. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 02 Issue: 11 | Nov-2013, Available @ http://www.ijret.org 533 CONCLUSIONS Wi-Fi in today’s world is ubiquitous. By replacing Global Positioning System for obtaining the co-ordinates of nodes for LAR with Wi-Fi Positioning System may prove to be of a greater benefit. Wi-Fi is proven to be faster than GPS in finding out location. The GPS module used to obtain the co- ordinates will consume considerable amount of power. Unlike GPS, the power consumed by Wi-Fi would be lesser because the location is obtained from the already defined regions of the wireless access point. By using one of the methods mentioned in this paper, we might possibly attain an ad-hoc network which could be implemented indoors with greater energy efficiency. Also if GPS were to be used in LAR indoors, the problem such as multipath would detriment the accuracy of the location. This could be overcome in the case of using Wi-Fi where multipath is minimum. Wi-Fi Positioning System may be a better option in the case of indoor ad-hoc networks than GPS. REFERENCES [1]. Mbarushimana, C and Shahrabi A., ”Comparative Study of Reactive and Proactive Routing Protocols Performance in Mobile Ad-Hoc Networks”, May ,2007. [2]. D. Johnson and D. A. Maltz, “Dynamic source routing in ad-hoc wireless networks, Kluwere Academic Publishers, 1996. [3]. C. E. Perkins and E. M. Royer, “Ad-Hoc on demand distance vector (AODV) routing (Internet-Draft),” Aug. 1998. [4]. Yottttg-BaeKo and Nitin H. Vaidya, “Location-Aided Routing (LAR) in Mobile Ad-Hoc Networks”, 2000. [5]. “Global Positioning System Standard Positioning Service Performance Standard”, by the U.S. Government available at http://www.gps.gov/technical/ps/2008-SPS- performance-standard.pdf. [6]. C Dussault, R Courtois, JP Ouellet, J Huot, “Influence of satellite geometry and differential correction on GPS location accuracy”, Wildlife Society Bulletin, 2001. [7]. B Chen, K Jamieson, H Balakrishnan, R Morris, “Span: An energy-efficient coordination algorithm for topology maintenance in ad-hoc wireless networks”, Wireless networks, 2002 – Springer. [8]. Bose, A., Chuan Heng Foh, “A practical path loss model for indoor Wi-Fi positioning enhancement”, Information, Communications & Signal Processing, 2007 6th International Conference. [9]. Crow, B.P; Widjaja, I.; Jeong Geun Kim; Sakai, P.T, “IEEE 802.11 Wireless Local Area Networks”, Communications Magazine, IEEE (Volume:35 , Issue: 9). [10]. F. Lassabe, P. Canalda, P. Chatonnay, F. Spies, ”Indoor Wi-Fi positioning: techniques and systems”, Springer October 2009, Volume 64, Issue 9-10, pp 651-664. [11]. E. Mok & G. Retscher, ”Location determination using Wi-Fi Fingerprinting vs. Wi-Fi trilateration“, Journal of Location Based Services Volume 1, Issue 2, 2007. BIOGRAPHIES Sivaramakrishnan SR is pursuing his Bachelor of Engineering in Information Science at BMS College of Engineering, Bangalore. His research interests include Ad- hoc networks, Sensor networks and Network Security. Gururaja H.S. has completed his Bachelor of Engineering in Computer Science and Master of Technology in Computer Networks from Visvesvaraya Technological University, Belgaum. He is currently pursuing his Ph.D. from JNTU, Hyderabad in the field of Cryptography & Network Security and has around 8 years of teaching experience.