Wireless Indoor Tracking System (WITS)

Size: px
Start display at page:

Download "Wireless Indoor Tracking System (WITS)"

Transcription

1 163 Wireless Indoor Tracking System (WITS) Communication Systems/Computing Center, University of Freiburg Abstract A wireless indoor tracking system is described in this paper, which can be used to track and locate both moving and static WLAN-enabled devices inside a building. The system is purely software based, which means an advantage for the existing WLAN. No additional hardware and costs are required. Using complex mathematic algorithms, the system determines the locations of the mobile devices according to the received signal strength from visible access points. Taking into account the historical signal strength, the interior structure of the building and available Bluetooth access points, the positioning and tracking accuracy achieved is very optimistic. Experimental results are reported at the end of the paper. 1 Introduction People s location is a crucial ingredient in many ubiquitous computing applications. It makes possible reasoning about what the person is doing or what he/she is interested in, therefore determining what information to present and in what way, even triggering automatic events that benefit the person. Development of wireless communication technology and widely deployment of wireless networks have made location-aware applications possible and necessary. Tourist guiding system in the city, visitor guiding system in the conference center, multimedia navigation and information system in the gardens or zoos, and etc, will benefit us greatly. To realize such promising applications, we must have an accurate positioning and tracking system as prerequisite. The problem of positioning and tracking has been tackled by many systems over the years, such as GPS, wide-area cellular-based system, infrared-based system, magnetic tracking system, physical contact systems and radio frequency

2 164 based systems. GPS makes a big success in outdoor navigation, but fails indoors because of radio wave multipathing, scattering and attenuation in indoor environments. The other systems require special hardware devices to be installed. Radio frequency-based tracking in WLAN has gained more and more attention in recent years, because it makes use of existing WLAN infrastructure, requires no extra hardware, and provides relatively large coverage. An indoor wireless positioning system was firstly developed, which could be used to determine the locations of static devices in a WLAN [Zho 04]. However, in reality the mobile devices are not fixed to a location, they move from time to time. With the support of Karl-Steinbuch-Scholarship of MFG foundation [Kar][Mfg], the Wireless Indoor Tracking System (WITS) was developed, which can be used to locate and track both moving devices and static devices inside a building. The system is purely software based, which means an advantage for the existing WLAN. No additional hardware and costs are required. For inferring locations, it uses a series of consecutive received signal strength from visible access points as the input to the history based location determination algorithm. Interior structure of the building and Bluetooth technology are applied as constrains to improve the accuracy. Related research in this field will be reviewed firstly in the next section. Section 3 gives a description about the design and implementation of the system. WLAN-based tracking algorithm, which is the most important part of the paper, will be discussed in section 4. Experimental results will be presented in section 5. Afterwards is the discussion about the deployment of WLAN-based tracking in section 6. Conclusion and references come at the end. 2 Related work Since WLAN-based tracking has gained much attention in recent years, several teams have been working in this field. RADAR, developed by Bahl and Padmanabhan, is regarded as the first one. Using the nearest neighbor algorithm, RADAR gave a median spatial error distance of 2.94 meters [Bah00a]. Using a Viterbi-like algorithm in the enhanced-radar, the median spatial error distance was reduced to 2.37 meters [Bah00b]. LOCADIO developed by Krumm and Horvitz used Hidden Markov Model to infer the location of a client with a median error of 1.5 meter and whether or not the client is in motion with a classification accuracy of 87%. For motion, they measure the variance of the signal strength of the strongest access point as input to a simple two-state Hidden Markov Model for smoothing transitions between the inferred states of»still«and»moving«. For location, they used another Hidden Markov Model on a graph of locations nodes [Kru04]. The location system described by Ladd et al. used Bayesian reasoning and a Hidden Markov Model (HMM). Taking into account signal strength from multiple access points, the probability of seeing the access points at a location and the ori-

3 Wireless Indoor Tracking System (WITS) 165 entation, the system achieved a median spatial error distance of around 1 meter in hallways [Lad02]. A WLAN location determination technique, the Joint Clustering technique, presented by Youssef et al. used 1) signals strength probability distributions to address the noisy wireless channels, and 2) clustering of locations to reduce the computational cost of searching the radio map. The technique gave user location to within 7 feet with over 90% accuracy [You03]. Ekahau is the commercial real-time location system using site calibration and statistical modeling of signal strengths in the market, which announces up to 1 meter average accuracy [Eka]. While most other teams used manual calibration, UCSD s ActiveCampus used a formula that approximates the distance between wireless sensor and access point as a function of signal strength. Using hill-climbing algorithm, the system achieved the accuracy of 10 meters [Gri02]. 3 System description The approaches to determine the locations of the mobile devices based on WLAN can be categorized into two classes: switch-based and client-based. To realize switch-based location determination, the wireless switch system must include a positioning component, which measures the signal strength of the mobile devices within its range and estimates their locations using specific mathematical algorithms. All the work is done at the switch side. Differently, for client-based location determination, it is the mobile device that retrieves the signal strength from its wireless adapter and reports it to the location determination server, which then estimates the location of the mobile device using proper mathematical algorithm. Client-based location determination does not require the positioning component to be included in the wireless switch system, therefore, can work with normal access points. The Wireless Indoor Tracking System (WITS) discussed in this paper is client-based. A calibration process must be conducted before the client-based tracking, in which signal strength footprints at various locations inside the building are collected and stored in a so called RSS (Received Signal Strength) radio map. In the tracking phase, the client, i.e. the mobile device, retrieves the current received signal strength from visible access points, passes them to the location determination server, which matches them with the RSS radio map and estimates the current location of the client using the positioning and tracking algorithm. The estimated locations can be used by upper-layer location-aware applications. Figure 1 illustrates the process and the components. Wireless Indoor Tracking System (WITS) is a pure software system, which is used to locate and track mobile devices inside a building. It makes use of existing WLAN (802.11) infrastructure and uses wireless adapter as the sensor. The system is implemented with Visual C++, and is composed of server, client and builder, as Figure 2 illustrates.

4 166 WITS server is a dedicated computer which is running the location determination algorithm. It receives tracking request from WITS client, estimates its realtime location using tracking algorithm, and returns the location information back to WITS client. WITS client is installed on the mobile device. It measures the current received signal strength, sends tracking request with the received signal strength to WITS server, and displays the estimated location on the map after receiving reply from WITS server. WITS client can also register in the server that it wants to be tracked so that other person is able to know its location. Before mobile devices can be tracked, the RSS radio map must be built via a calibration process, which is the job of WITS builder. WITS builder collects samples of signal strength at various locations in the building and sends them to WITS server, which will store them in the RSS database and build the RSS radio map. RSS database is implemented with Microsoft Access. It contains 8 tables.»rss_basic«stores the raw signal strength data collected at calibrated locations,»rss_mean«stores signal strength mean value, while»rss_histogram«stores the probability distribution of signal strength. The 3 tables compose the RSS radio map.»bluetooth«contains the locations of the available Bluetooth access points.»layout_basic«,»layout_sd«,»path«and»room«are constrains based on the interior structure of the building, which can be applied to the tracking algorithm to improve the accuracy and precision. The basic of the tracking system is to retrieve signal strength values of the visible access points accurately and promptly. The source code of Wireless Research API from University of California, which implements the function, is integrated into WITS. It works on Windows XP platform and is independent on wireless adapters [Wra]. Fig. 1 Client-based positioning and tracking

5 Wireless Indoor Tracking System (WITS) 167 Fig. 2 System architecture of WITS 4 Tracking algorithm According to the principle of choosing the most likely locations of the mobile devices, WLAN-based location determination algorithms can be categorized into two groups: deterministic and probabilistic algorithms. The earliest and most basic deterministic location determination algorithm is the nearest neighbor algorithm used in RADAR system [Bah00a]. Probabilistic location determination makes use of Bayesian law. 4.1 Nearest neighbor algorithm The nearest neighbor algorithm provides the basic idea of deterministic WLANbased positioning. During calibration, the system collects multiple samples of signal strength footprints at the calibrated locations and stores the signal strength mean value of every calibrated location in the RSS radio map. In tracking phase, the current received signal strength is compared with the mean values in the RSS radio map. The record that matches the current received signal strength best is picked up. The idea is to calculate the Euclidean distance between the current received signal strength and the records in the RSS radio map and choose the one minimizing the Euclidean distance [Bah00a]. Assume S m = {SS m0, SS m1,..., SS mn-1 } is the tuple of current received signal strength. Assume S i = {SS i0, SS i1,... SS in-1 } is the tuple of signal strength mean value of a calibrated location in the RSS radio map. SS m0, SS i0 are signal strength from AP 0, SS m1, SS i1 are signal strength from AP 1, and so on. (1) Euclidean distance (S m, S i ) = (SS m0 - SS i0 ) 2 + (SS m1 - SS i1 ) (SS mn-1 - SS in-1 ) 2

6 168 As Figure 3shows, the signal strength tuple which has the minimal Euclidean distance is the nearest neighbor and thus is the estimated location of the mobile device. Fig. 3 The nearest neighbor algorithm 4.2 Bayesian algorithm Bayesian algorithm is the basic for most probabilistic location determination algorithm. It has the same calibration phase as the nearest neighbor algorithm, but it uses Bayesian law to choose the most likely location of the mobile device [You03][Lad02]. Assume m is the number of calibrated locations, n is the number of access points. L = {L 1, L 2,..., L m } is the set of calibrated locations. L i stands for calibrated location i. E = {E 1, E 2,..., E m } is the set of signal strength footprints of all calibrated locations. E i = {e i0, e i1,..., e in-1 } stands for the signal strength footprint at calibrated location i. P(L i ) is the prior probability of location i. P(E i L i ) is the probability of getting signal strength footprint E i = {e i0, e i1,..., e in-1 } if at location i. P(E i L i ) = count(e i0,e i1,...,e in-1 ) / (all samples at location i). P(L i E i ) is the probability that the mobile device is at location i if the signal strength footprint is E i = {e i0, e i1,..., e in-1 }. E x is the current received signal strength which is used to estimate the unknown location. L x is the estimated location.

7 Wireless Indoor Tracking System (WITS) 169 If the current received signal strength is E x, according to Bayesian law, the probability that the mobile device is at location L x is: (2) (3) The location which has the maximal probability, i.e. maximized equation (2), is regarded as the estimated location. 4.3 History-based tracking algorithm The nearest neighbor algorithm and Bayesian algorithm use only the current received signal strength to estimate the unknown location. Since the user cannot jump large distances, WITS uses history based algorithm, i.e. a series of consecutive signal strength, for location determination. Depending on whether the nearest neighbor algorithm or Bayesian algorithm is used to choose the k most likely neighbors, the history-based algorithm can be deterministic or probabilistic. It is illustrated in Figure While the user is walking, collect real-time signal strength periodically (e.g. 1s). 2. Use the nearest neighbor algorithm (deterministic) or Bayesian algorithm (probabilistic) to find the k most likely locations in RSS radio map, called the k nearest neighbors. k is a predefined parameter. 3. In the history vector of k-nearest neighbors, delete the column of the oldest k nearest neighbors and add the column of the newest k nearest neighbors, so that the depth of the history vector keeps h. 4. Calculate the shortest path from the last estimated location to the newest k- nearest neighbors in the history vector. The distance between two adjacent points is their physical distance. 5. The end point of the shortest path is the current estimated location of the mobile device. 6. Repeat the steps continuously, until the client stops tracking. The algorithm is based on the work of Bahl et al. [Bah00b]. The difference in this paper is that 1) it takes into account the last estimated location when finding the shortest path, 2) the currently estimated location is the end of the shortest path, instead of the head.

8 170 Fig. 4 History based algorithm [Bah00b] 4.4 Constrains Besides using history based tracking algorithm, WITS applies some constrains to the tracking algorithm to improve the accuracy and to reduce logical errors. Layout of building In indoor scenario, logical errors, such as being indistinguishable of different floors, different rooms, or different sides of a wall, are regarded as big errors. Even though their spatial distance may be small, the path between them might be quite long. To reduce such logical errors, the layout of the building is applied to the tracking algorithm, which proves quite effective. The layout of the building is expressed by a connected graph, in which the directly connected vertexes are adjacent locations. The shortest distance between any two locations can be calculated by Dijkstra s shortest path algorithm, which is then used as the physical distance in the history-based algorithms illustrated in Figure 4. Since the layout of the building does not change often, the shortest distance between calibrated locations are calculated by Dijkstra s shortest path algorithm and stored in the database, from which the history-based algorithm get the distance directly without complex calculation. The left figure in Figure 5 is the snapshot of the table which contains the information of the directly connected calibrated locations. The right figure contains the shortest distance between any two calibrated locations. [Kru04]

9 Wireless Indoor Tracking System (WITS) 171 Fig. 5 Database of the layout of the building Path and room Other constrains are path and room constrains. The adjacent locations on the frequent paths or in the same rooms are assigned smaller distance, which is based on the assumption that the user is more likely either in a room or on a frequent path. Bluetooth Bluetooth is also implemented in this system as an additional help to WLAN tracking technology. Several Bluetooth access points are placed in fixed places whose location information is stored in the»bluetooth«table in the database. If the mobile device is Bluetooth-enabled, it will scan to discover the visible Bluetooth access points. According to the Bluetooth access points discovered, the system determines the approximate area that the mobile device is. The final estimated location of the mobile device is the intersection of the estimations from WLAN and Bluetooth. 5 Experiments Experiments were carried out in the basement and ground floor of Computing Center of the University of Freiburg respectively. Figure 6 and 10 are the maps of the testbed. Dots on the map are the calibrated locations whose signal strength footprints are stored in the RSS radio map. Lines are the frequent paths. 5.1 Experiments in the basement In this experiment, every calibration location was sampled in 4 orientations for 1 minute per orientation with sampling rate being 0.5 second. The wireless adapter used was D-Link AirPlus DWL-G access points were installed. AP0, AP1,

10 172 AP4 and AP5 were in the basement, AP2 and AP3 were on the ground floor. After the RSS radio map was set up, all the calibrated locations on the corridor were traversed with several seconds stop. The frequent path was traversed slowly and quickly respectively without stop. Tracking algorithms of WITS which make use of history information and layout constrains outperform the basic locating algorithms in the experiments. For temporarily static devices, the average error distance of WITS deterministic tracking algorithm could reach 1.13 meter, which is 24% better than the 1.49-meter average error distance of the nearest neighbor algorithm. Similarly, the average error distance of WITS Bayesian tracking algorithm for temporarily static devices could reach 1.48 meter, which is 50% better than the 2.98-meter average error distance of basic Bayesian algorithm. Accuracy and precision curves of WITS deterministic tracking algorithm and Bayesian tracking algorithm for temporarily static devices are illustrated in Figure 7. For comparison, the accuracy and precision curves of the nearest neighbor algorithm (basic deterministic locating) and Bayesian algorithm (basic Bayesian locating) are illustrated in Figure 7 too. For constantly moving devices, WITS deterministic tracking algorithm could reach the average error distance of 2.93 meter for slowly moving devices and 3.16 meter for quickly moving devices, and WITS Bayesian tracking algorithm could reach the average error distance of 1.67 meter for slowly moving devices and 3.89 meter for quickly moving devices. The accuracy and precision for constantly moving devices are illustrated in Figure 8 and Figure 9. Fig. 6 Map of Basement of Computing Center

11 Wireless Indoor Tracking System (WITS) 173 Fig. 7 Tracking and locating in the basement Fig. 8 Deterministic tracking with stop, tracking slowly without stop and tracking quickly without stop in the basement Fig. 9 Bayesian tracking with stop, tracking slowly without stop and tracking quickly without stop in the basement

12 Experiments on the ground floor Another experiment was conducted on the corridor of the ground floor of Computing Center of the University of Freiburg (Fig. 10) using WITS Bayesian tracking algorithm with constrains. The wireless adapter used was D-Link AirPlus DWL-G access points were installed. AP1, AP2 and AP4 were on the ground floor, AP0, AP3, AP5 and AP6 were in the basement. After the RSS radio map was built, the calibrated locations were traversed with several seconds stop at each location, which reached an average error distance of 2.28 meter. The path marked on Figure 10 was traversed slowly without stop, which reached an average error distance of 3.48 meter. Figure 11 illustrates the accuracy and precision. Fig. 10 Map of ground floor of Computing Center Fig. 11 Bayesian tracking on the ground floor

13 Wireless Indoor Tracking System (WITS) Discussion Signal strength In WITS, if the signal strength of some access point is not detected, the default value assigned is -100dBm, which means no signal. However, the case exists that the signal strength of some access point is strong enough but not detected during some moment at some locations. In this case, using default value -100dBm will result in inaccuracy for positioning. To solve the problem, WITS uses only the signal strength which is bigger than -100dBm, i.e. the really detected signal strength values, to match the radio map. Orientation The orientation of the wireless adapter is important. The received signal strength differs when the wireless adapter faces different orientations [Zho04]. It is believed that incorporating the orientation into the system will improve the accuracy. However, getting the orientation information automatically is absolutely non-trivial. In WITS, the user can input orientation manually or choose not to use orientation information. All the previously mentioned experiments did not use orientation information. History based and non-history based algorithm History based algorithm makes use of history information and estimates the locations more accurately and stably. However, just because it uses history information, it needs more time to come to the correct new estimation when the user walks to a new location, while the non-history based algorithm can come to the new estimation more promptly. Deployment To successfully deploy a positioning or tracking system based on WLAN, some aspects must be considered and planned carefully. The number of access points is important. At least 3 access points are required. 5-6 access points are adequate. More access points do not help much. The locations of access points are important too. They should be placed strategically. It does not matter whether they are in the same channel. The distance between two adjacent calibrated locations should not be too large. 1 to 2 meter is fine for indoor applications. Every location should have enough calibration samples (e.g. 200 to 300 samples). Recording signal strength in all the four orientations will give better result.

14 176 Give denser calibration locations and more samples to the areas which may be confused with other areas. Walk slowly and even stop at the unknown location for a few seconds for a better accuracy. Walking more quickly will normally reduce the accuracy. 7 Conclusions and future work In the paper, a WLAN-based indoor tracking system is introduced. The system works in client-server mode, and uses history based algorithm to estimate the locations of the mobile devices. Layout of the building and Bluetooth are incorporated to improve the accuracy. In the experiments carried out, the system could achieve an average error distance of around 1.5 meter for temporarily static devices, and an average error distance of around 3 meter for constantly moving devices. From the experiments of WITS, it is found out that the more quickly the user walks, the less accurate the tracking system is. Therefore, real time tracking with the user walking continuously will be researched next. Another problem is that the signal strength received by different wireless adapters might be different [Zho04]. The users may use different kinds of wireless adapters. It is impractical to set up different RSS radio maps for different wireless adapters. How to correlate different wireless adapters is a research topic too. Based on the tracking system, a navigation system will be developed for the University of Freiburg in the near future. 8 Acknowledgement I would like to give my great appreciation to Prof. Dr. Gerhard Schneider in the University of Freiburg in Germany for his supervision. Thank Mr. Dirk von Suchodoletz in the University of Freiburg for his constant help. The staff of the Computing Center of the University of Freiburg is appreciated for their kind help. This research work was sponsored by MFG (Medien- und Filmgesellschaft Baden-Wuerttemberg) in Germany. Literatur [Bah00a] P. Bahl, V. N. Padmanabhan: RADAR: An In-Building RF-Based Location and Tracking Systems. In IEEE INFOCOM Tel-Aviv, Israel [Bah00b] P. Bahl, V. N. Padmanabhan, A. Balachandran: Enhancements to the RADAR User Location and Tracking System. Microsoft Research: Redmond, WA [Gri02] W. G. Griswold, R. Boyer, et al.: ActiveCampus Sustaining Educational Communities through Mobile Technology. University of California, San Diego: La Jolla. P [Kae05] K. Kaemarungsi: Design of Indoor Positioning Systems Based on Location Fingerprinting Technique. Doctoral dissertation, University of Pittsburgh. 2005

15 Wireless Indoor Tracking System (WITS) 177 [Kar] [Kru04] J. Krumm, E. Horvitz: LOCADIO: Inferring Motion and Location from Wi-Fi Signal Strengths. Proceedings of Mobiquitous 2004, First Annual International Conference on Mobile and Ubiquitous Systems: Networking and Services, pp August 22-26, 2004, Boston, MA, USA [Lad02] A. M. Ladd, K. E. Bekris, et al.: Robotics-based Location Sensing using Wireless Ethernet. In 8th International Conference on Mobile Computing and Networking. Atlanta, GA, USA [Mfg] [You03] M. Youssef, A. Agrawal, A. U. Shankar: WLAN location determination via clustering and probability distributions. In Proceedings of IEEE PerCom 03, Fort Worth, TX, Mar [Zho04] : Architecture and Implementation of Indoor Wireless Positioning System (RZ-IWPS). Master thesis, University of Freiburg, Germany [Zho05] : Final report of Karl-Steinbuch-Scholarship project: Wireless Indoor Tracking System (WITS). Germany [Eka] [Wra]

Enhanced wireless indoor tracking system in multi-floor buildings with location prediction

Enhanced wireless indoor tracking system in multi-floor buildings with location prediction Enhanced wireless indoor tracking system in multi-floor buildings with location prediction Rui Zhou University of Freiburg, Germany June 29, 2006 Conference, Tartu, Estonia Content Location based services

More information

RADAR: An In-Building RF-based User Location and Tracking System

RADAR: An In-Building RF-based User Location and Tracking System RADAR: An In-Building RF-based User Location and Tracking System Venkat Padmanabhan Microsoft Research Joint work with Victor Bahl Infocom 2000 Tel Aviv, Israel March 2000 Outline Motivation and related

More information

Indoor Positioning with a WLAN Access Point List on a Mobile Device

Indoor Positioning with a WLAN Access Point List on a Mobile Device Indoor Positioning with a WLAN Access Point List on a Mobile Device Marion Hermersdorf, Nokia Research Center Helsinki, Finland Abstract This paper presents indoor positioning results based on the 802.11

More information

On the Optimality of WLAN Location Determination Systems

On the Optimality of WLAN Location Determination Systems On the Optimality of WLAN Location Determination Systems Moustafa Youssef Department of Computer Science University of Maryland College Park, Maryland 20742 Email: moustafa@cs.umd.edu Ashok Agrawala Department

More information

INDOOR LOCALIZATION Matias Marenchino

INDOOR LOCALIZATION Matias Marenchino INDOOR LOCALIZATION Matias Marenchino!! CMSC 818G!! February 27, 2014 BIBLIOGRAPHY RADAR: An In-Building RF-based User Location and Tracking System (Paramvir Bahl and Venkata N. Padmanabhan) WLAN Location

More information

On the Optimality of WLAN Location Determination Systems

On the Optimality of WLAN Location Determination Systems On the Optimality of WLAN Location Determination Systems Moustafa A. Youssef, Ashok Agrawala Department of Comupter Science and UMIACS University of Maryland College Park, Maryland 2742 {moustafa,agrawala}@cs.umd.edu

More information

IoT Wi-Fi- based Indoor Positioning System Using Smartphones

IoT Wi-Fi- based Indoor Positioning System Using Smartphones IoT Wi-Fi- based Indoor Positioning System Using Smartphones Author: Suyash Gupta Abstract The demand for Indoor Location Based Services (LBS) is increasing over the past years as smartphone market expands.

More information

SMARTPOS: Accurate and Precise Indoor Positioning on Mobile Phones

SMARTPOS: Accurate and Precise Indoor Positioning on Mobile Phones SMARTPOS: Accurate and Precise Indoor Positioning on Mobile Phones Moritz Kessel, Martin Werner Mobile and Distributed Systems Group Ludwig-Maximilians-University Munich Munich, Germany {moritz.essel,martin.werner}@ifi.lmu.de

More information

Wireless Sensors self-location in an Indoor WLAN environment

Wireless Sensors self-location in an Indoor WLAN environment Wireless Sensors self-location in an Indoor WLAN environment Miguel Garcia, Carlos Martinez, Jesus Tomas, Jaime Lloret 4 Department of Communications, Polytechnic University of Valencia migarpi@teleco.upv.es,

More information

ANALYSIS OF THE OPTIMAL STRATEGY FOR WLAN LOCATION DETERMINATION SYSTEMS

ANALYSIS OF THE OPTIMAL STRATEGY FOR WLAN LOCATION DETERMINATION SYSTEMS ANALYSIS OF THE OPTIMAL STRATEGY FOR WLAN LOCATION DETERMINATION SYSTEMS Moustafa A. Youssef, Ashok Agrawala Department of Computer Science University of Maryland College Park, Maryland 20742 {moustafa,

More information

Herecast: An Open Infrastructure for Location-Based Services using WiFi

Herecast: An Open Infrastructure for Location-Based Services using WiFi Herecast: An Open Infrastructure for Location-Based Services using WiFi Mark Paciga and Hanan Lutfiyya Presented by Emmanuel Agu CS 525M Introduction User s context includes location, time, date, temperature,

More information

GSM-Based Approach for Indoor Localization

GSM-Based Approach for Indoor Localization -Based Approach for Indoor Localization M.Stella, M. Russo, and D. Begušić Abstract Ability of accurate and reliable location estimation in indoor environment is the key issue in developing great number

More information

Indoor Localization and Tracking using Wi-Fi Access Points

Indoor Localization and Tracking using Wi-Fi Access Points Indoor Localization and Tracking using Wi-Fi Access Points Dubal Omkar #1,Prof. S. S. Koul *2. Department of Information Technology,Smt. Kashibai Navale college of Eng. Pune-41, India. Abstract Location

More information

Indoor Human Localization with Orientation using WiFi Fingerprinting

Indoor Human Localization with Orientation using WiFi Fingerprinting Indoor Human Localization with Orientation using WiFi Fingerprinting Mohd Nizam Husen Intelligent Systems Research Institute Sungkyunkwan University Republic of Korea +8231-299-6465 mnizam@skku.edu Sukhan

More information

Enhancements to the RADAR User Location and Tracking System

Enhancements to the RADAR User Location and Tracking System Enhancements to the RADAR User Location and Tracking System By Nnenna Paul-Ugochukwu, Qunyi Bao, Olutoni Okelana and Astrit Zhushi 9 th February 2009 Outline Introduction User location and tracking system

More information

ON INDOOR POSITION LOCATION WITH WIRELESS LANS

ON INDOOR POSITION LOCATION WITH WIRELESS LANS ON INDOOR POSITION LOCATION WITH WIRELESS LANS P. Prasithsangaree 1, P. Krishnamurthy 1, P.K. Chrysanthis 2 1 Telecommunications Program, University of Pittsburgh, Pittsburgh PA 15260, {phongsak, prashant}@mail.sis.pitt.edu

More information

Multi-Directional Weighted Interpolation for Wi-Fi Localisation

Multi-Directional Weighted Interpolation for Wi-Fi Localisation Multi-Directional Weighted Interpolation for Wi-Fi Localisation Author Bowie, Dale, Faichney, Jolon, Blumenstein, Michael Published 2014 Conference Title Robot Intelligence Technology and Applications

More information

Handling Samples Correlation in the Horus System

Handling Samples Correlation in the Horus System Handling Samples Correlation in the Horus System Moustafa Youssef and Ashok Agrawala Department of Computer Science and UMIACS University of Maryland College Park, Maryland 20742 Email: {moustafa, agrawala@cs.umd.edu

More information

Location Determination. Framework and Technologies

Location Determination. Framework and Technologies 1 Location Determination Framework and Technologies 2 Meaning of Location Three Dimensional Space Reference Coordinate System Global GPS Local z Application Specific Multiple References Ability to Map

More information

Wireless Location Detection for an Embedded System

Wireless Location Detection for an Embedded System Wireless Location Detection for an Embedded System Danny Turner 12/03/08 CSE 237a Final Project Report Introduction For my final project I implemented client side location estimation in the PXA27x DVK.

More information

Bayesian Positioning in Wireless Networks using Angle of Arrival

Bayesian Positioning in Wireless Networks using Angle of Arrival Bayesian Positioning in Wireless Networks using Angle of Arrival Presented by: Rich Martin Joint work with: David Madigan, Eiman Elnahrawy, Wen-Hua Ju, P. Krishnan, A.S. Krishnakumar Rutgers University

More information

Research Article Kalman Filter-Based Hybrid Indoor Position Estimation Technique in Bluetooth Networks

Research Article Kalman Filter-Based Hybrid Indoor Position Estimation Technique in Bluetooth Networks International Journal of Navigation and Observation Volume 2013, Article ID 570964, 13 pages http://dx.doi.org/10.1155/2013/570964 Research Article Kalman Filter-Based Indoor Position Estimation Technique

More information

Indoor Localization in Wireless Sensor Networks

Indoor Localization in Wireless Sensor Networks International Journal of Engineering Inventions e-issn: 2278-7461, p-issn: 2319-6491 Volume 4, Issue 03 (August 2014) PP: 39-44 Indoor Localization in Wireless Sensor Networks Farhat M. A. Zargoun 1, Nesreen

More information

SMART RFID FOR LOCATION TRACKING

SMART RFID FOR LOCATION TRACKING SMART RFID FOR LOCATION TRACKING By: Rashid Rashidzadeh Electrical and Computer Engineering University of Windsor 1 Radio Frequency Identification (RFID) RFID is evolving as a major technology enabler

More information

best practice guide Ruckus SPoT Best Practices SOLUTION OVERVIEW AND BEST PRACTICES FOR DEPLOYMENT

best practice guide Ruckus SPoT Best Practices SOLUTION OVERVIEW AND BEST PRACTICES FOR DEPLOYMENT best practice guide Ruckus SPoT Best Practices SOLUTION OVERVIEW AND BEST PRACTICES FOR DEPLOYMENT Overview Since the mobile device industry is alive and well, every corner of the ever-opportunistic tech

More information

On The Feasibility of Using Two Mobile Phones and WLAN Signal to Detect Co-Location of Two Users for Epidemic Prediction

On The Feasibility of Using Two Mobile Phones and WLAN Signal to Detect Co-Location of Two Users for Epidemic Prediction On The Feasibility of Using Two Mobile Phones and WLAN Signal to Detect Co-Location of Two Users for Epidemic Prediction Khuong An Nguyen, Zhiyuan Luo, Chris Watkins Department of Computer Science, Royal

More information

Location Determination of a Mobile Device Using IEEE b Access Point Signals

Location Determination of a Mobile Device Using IEEE b Access Point Signals Location Determination of a Mobile Device Using IEEE 802.b Access Point Signals Siddhartha Saha, Kamalika Chaudhuri, Dheeraj Sanghi, Pravin Bhagwat Department of Computer Science and Engineering Indian

More information

WiFi fingerprinting. Indoor Localization (582747), autumn Teemu Pulkkinen & Johannes Verwijnen. November 12, 2015

WiFi fingerprinting. Indoor Localization (582747), autumn Teemu Pulkkinen & Johannes Verwijnen. November 12, 2015 WiFi fingerprinting Indoor Localization (582747), autumn 2015 Teemu Pulkkinen & Johannes Verwijnen November 12, 2015 1 / 39 1 Course issues 2 WiFi fingerprinting 2 / 39 Seminar INTO seminar 27.11. in Pasila

More information

Nuzzer: A Large-Scale Device-Free Passive Localization System for Wireless Environments

Nuzzer: A Large-Scale Device-Free Passive Localization System for Wireless Environments IEEE TRANSACTIONS ON MOBILE COMPUTING, VOL., NO., JULY Nuzzer: A Large-Scale Device-Free Passive Localization System for Wireless Environments Moustafa Seifeldin, Student Member, IEEE, Ahmed Saeed, Ahmed

More information

Orientation-based Wi-Fi Positioning on the Google Nexus One

Orientation-based Wi-Fi Positioning on the Google Nexus One 200 IEEE 6th International Conference on Wireless and Mobile Computing, Networking and Communications Orientation-based Wi-Fi Positioning on the Google Nexus One Eddie C.L. Chan, George Baciu, S.C. Mak

More information

2 Limitations of range estimation based on Received Signal Strength

2 Limitations of range estimation based on Received Signal Strength Limitations of range estimation in wireless LAN Hector Velayos, Gunnar Karlsson KTH, Royal Institute of Technology, Stockholm, Sweden, (hvelayos,gk)@imit.kth.se Abstract Limitations in the range estimation

More information

Wi-Fi Fingerprinting through Active Learning using Smartphones

Wi-Fi Fingerprinting through Active Learning using Smartphones Wi-Fi Fingerprinting through Active Learning using Smartphones Le T. Nguyen Carnegie Mellon University Moffet Field, CA, USA le.nguyen@sv.cmu.edu Joy Zhang Carnegie Mellon University Moffet Field, CA,

More information

Research on an Economic Localization Approach

Research on an Economic Localization Approach Computer and Information Science; Vol. 12, No. 1; 2019 ISSN 1913-8989 E-ISSN 1913-8997 Published by Canadian Center of Science and Education Research on an Economic Localization Approach 1 Yancheng Teachers

More information

Wireless Local Area Network based Indoor Positioning System: A Study on the Orientation of Wi-Fi Receiving Device towards the Effect on RSSI

Wireless Local Area Network based Indoor Positioning System: A Study on the Orientation of Wi-Fi Receiving Device towards the Effect on RSSI Wireless Local Area Network based Indoor Positioning System: A Study on the Orientation of Wi-Fi Receiving Device towards the Effect on RSSI *1 OOI CHIN SEANG and 2 KOAY FONG THAI *1 Engineering Department,

More information

Fingerprinting Based Indoor Positioning System using RSSI Bluetooth

Fingerprinting Based Indoor Positioning System using RSSI Bluetooth IJSRD - International Journal for Scientific Research & Development Vol. 1, Issue 4, 2013 ISSN (online): 2321-0613 Fingerprinting Based Indoor Positioning System using RSSI Bluetooth Disha Adalja 1 Girish

More information

Location Estimation based on Received Signal Strength from Access Pointer and Machine Learning Techniques

Location Estimation based on Received Signal Strength from Access Pointer and Machine Learning Techniques , pp.204-208 http://dx.doi.org/10.14257/astl.2014.63.45 Location Estimation based on Received Signal Strength from Access Pointer and Machine Learning Techniques Seong-Jin Cho 1,1, Ho-Kyun Park 1 1 School

More information

Adaptive Temporal Radio Maps for Indoor Location Estimation

Adaptive Temporal Radio Maps for Indoor Location Estimation Adaptive Temporal Radio Maps for Indoor Location Estimation Jie Yin, Qiang Yang, Lionel Ni Department of Computer Science Hong Kong University of Science and Technology Clearwater Bay, Kowloon, Hong Kong,

More information

A New WKNN Localization Approach

A New WKNN Localization Approach A New WKNN Localization Approach Amin Gholoobi Faculty of Pure and Applied Sciences Open University of Cyprus Nicosia, Cyprus Email: amin.gholoobi@st.ouc.ac.cy Stavros Stavrou Faculty of Pure and Applied

More information

Indoor Location Prediction Using Multiple Wireless Received Signal Strengths

Indoor Location Prediction Using Multiple Wireless Received Signal Strengths Indoor Location Prediction Using Multiple Wireless Received Signal Strengths Kha Tran, Dinh Phung, Brett Adams, Svetha Venkatesh Department of Computing Curtin University of Technology, GPO Box U 1987,

More information

Ichnaea: A Low-overhead Robust WLAN Device-free Passive Localization System

Ichnaea: A Low-overhead Robust WLAN Device-free Passive Localization System JOURNAL OF SELECTED TOPICS IN SIGNAL PROCESSING, VOL. 99, NO. 1, JANUARY 213 1 Ichnaea: A Low-overhead Robust WLAN Device-free Passive Localization System Ahmed Saeed, Student Member, IEEE, Ahmed E. Kosba,

More information

Use of fingerprinting in Wi-Fi based outdoor positioning

Use of fingerprinting in Wi-Fi based outdoor positioning Use of fingerprinting in Wi-Fi based outdoor positioning Ishrat J. Quader School of Surveying and Spatial information Systems, UNSW, Australia Phone 93854208 Fax 93137493 Email: ishrat.quader@student.unsw.edu.au

More information

RADAR: an In-building RF-based user location and tracking system

RADAR: an In-building RF-based user location and tracking system RADAR: an In-building RF-based user location and tracking system BY P. BAHL AND V.N. PADMANABHAN PRESENTED BY: AREEJ ALTHUBAITY Goal and Motivation Previous Works Experimental Testbed Basic Idea Offline

More information

Combining similarity functions and majority rules for multi-building, multi-floor, WiFi Positioning

Combining similarity functions and majority rules for multi-building, multi-floor, WiFi Positioning Combining similarity functions and majority rules for multi-building, multi-floor, WiFi Positioning Nelson Marques, Filipe Meneses and Adriano Moreira Mobile and Ubiquitous Systems research group Centro

More information

Accuracy Indicator for Fingerprinting Localization Systems

Accuracy Indicator for Fingerprinting Localization Systems Accuracy Indicator for Fingerprinting Localization Systems Vahideh Moghtadaiee, Andrew G. Dempster, Binghao Li School of Surveying and Spatial Information Systems University of New South Wales Sydney,

More information

Study of WLAN Fingerprinting Indoor Positioning Technology based on Smart Phone Ye Yuan a, Daihong Chao, Lailiang Song

Study of WLAN Fingerprinting Indoor Positioning Technology based on Smart Phone Ye Yuan a, Daihong Chao, Lailiang Song International Conference on Information Sciences, Machinery, Materials and Energy (ICISMME 2015) Study of WLAN Fingerprinting Indoor Positioning Technology based on Smart Phone Ye Yuan a, Daihong Chao,

More information

Trials of commercial Wi-Fi positioning systems for indoor and urban canyons

Trials of commercial Wi-Fi positioning systems for indoor and urban canyons International Global Navigation Satellite Systems Society IGNSS Symposium 2009 Holiday Inn Surfers Paradise, Qld, Australia 1 3 December, 2009 Trials of commercial Wi-Fi positioning systems for indoor

More information

SSD BASED LOCATION IDENTIFICATION USING FINGERPRINT BASED APPROACH

SSD BASED LOCATION IDENTIFICATION USING FINGERPRINT BASED APPROACH SSD BASED LOCATION IDENTIFICATION USING FINGERPRINT BASED APPROACH Mr. M. Dinesh babu 1, Mr.V.Tamizhazhagan Dr. R. Saminathan 3 1,, 3 (Department of Computer Science & Engineering, Annamalai University,

More information

Extended Gradient Predictor and Filter for Smoothing RSSI

Extended Gradient Predictor and Filter for Smoothing RSSI Extended Gradient Predictor and Filter for Smoothing RSSI Fazli Subhan 1, Salman Ahmed 2 and Khalid Ashraf 3 1 Department of Information Technology and Engineering, National University of Modern Languages-NUML,

More information

Indoor Location System with Wi-Fi and Alternative Cellular Network Signal

Indoor Location System with Wi-Fi and Alternative Cellular Network Signal , pp. 59-70 http://dx.doi.org/10.14257/ijmue.2015.10.3.06 Indoor Location System with Wi-Fi and Alternative Cellular Network Signal Md Arafin Mahamud 1 and Mahfuzulhoq Chowdhury 1 1 Dept. of Computer Science

More information

Enhancing Wi-Fi Indoor Location System with Sensor-assisted Adaptation and Collaboration

Enhancing Wi-Fi Indoor Location System with Sensor-assisted Adaptation and Collaboration 1 Enhancing Wi-Fi Indoor Location System with Sensor-assisted Adaptation and Collaboration Yi-Chao CHEN 1, Ji-Rung CHIANG, Hao-hua CHU, and Jane Yung-jen HSU, Member, IEEE Abstract--Wi-Fi based indoor

More information

Effect of Body-Environment Interaction on WiFi Fingerprinting

Effect of Body-Environment Interaction on WiFi Fingerprinting FACOLTÀ DI INGEGNERIA DELL INFORMAZIONE, INFORMATICA E STATISTICA CORSO DI LAUREA IN INGEGNERIA ELETTRONICA Effect of Body-Environment Interaction on WiFi Fingerprinting Relatore Maria-Gabriella Di Benedetto

More information

Improving the Accuracy of Wireless LAN based Location Determination Systems using Kalman Filter and Multiple Observers

Improving the Accuracy of Wireless LAN based Location Determination Systems using Kalman Filter and Multiple Observers Improving the Accuracy of Wireless LAN based Location Determination Systems using Kalman Filter and Multiple Observers Raman Kumar K, Varsha Apte, Yogesh A Powar Dept. of Computer Science and Engineering

More information

Multi-Classifier for WLAN Fingerprint-Based. positioning system. Jikang Shin and Dongsoo Han

Multi-Classifier for WLAN Fingerprint-Based. positioning system. Jikang Shin and Dongsoo Han , June 30 - July 2, 2010, London, U.K. Multi-Classifier for WLAN Fingerprint-Based Positioning System Jikang Shin and Dongsoo Han Abstract WLAN fingerprint-based positioning system is a viable solution

More information

Indoor Navigation by WLAN Location Fingerprinting

Indoor Navigation by WLAN Location Fingerprinting Indoor Navigation by WLAN Location Fingerprinting Reducing Trainings-Efforts with Interpolated Radio Maps Dutzler Roland & Ebner Martin Institute for Information Systems and Computer Media Graz University

More information

Indoor Localization Using FM Radio Signals: A Fingerprinting Approach

Indoor Localization Using FM Radio Signals: A Fingerprinting Approach Indoor Localization Using FM Radio Signals: A Fingerprinting Approach Vahideh Moghtadaiee, Andrew G. Dempster, and Samsung Lim School of Surveying and Spatial Information Systems University of New South

More information

Positioning in Indoor Environments using WLAN Received Signal Strength Fingerprints

Positioning in Indoor Environments using WLAN Received Signal Strength Fingerprints Positioning in Indoor Environments using WLAN Received Signal Strength Fingerprints Christos Laoudias Department of Electrical and Computer Engineering KIOS Research Center for Intelligent Systems and

More information

EXTRACTING AND USING POSITION INFORMATION IN WLAN NETWORKS

EXTRACTING AND USING POSITION INFORMATION IN WLAN NETWORKS EXTRACTING AND USING POSITION INFORMATION IN WLAN NETWORKS Antti Seppänen Teliasonera Finland Vilhonvuorenkatu 8 A 29, 00500 Helsinki, Finland Antti.Seppanen@teliasonera.com Jouni Ikonen Lappeenranta University

More information

Adding Angle of Arrival Modality to Basic RSS Location Management Techniques

Adding Angle of Arrival Modality to Basic RSS Location Management Techniques Adding Angle of Arrival Modality to Basic RSS Location Management Techniques Eiman Elnahrawy, John Austen-Francisco, Richard P. Martin {eiman,deymious,rmartin}@cs.rutgers.edu Department of Computer Science,

More information

Location and Time in Wireless Environments. Ashok K. Agrawala Director, MIND Lab Professor, Computer Science University of Maryland

Location and Time in Wireless Environments. Ashok K. Agrawala Director, MIND Lab Professor, Computer Science University of Maryland Location and Time in Wireless Environments Ashok K. Agrawala Director, MIND Lab Professor, Computer Science University of Maryland Environment N nodes local clock Stable Wireless Communications Computation

More information

Enhanced Location Estimation in Wireless LAN environment using Hybrid method

Enhanced Location Estimation in Wireless LAN environment using Hybrid method Enhanced Location Estimation in Wireless LAN environment using Hybrid method Kevin C. Shum, and Joseph K. Ng Department of Computer Science Hong Kong Baptist University Kowloon Tong, Hong Kong cyshum,jng@comp.hkbu.edu.hk

More information

User Location Service over an Ad-Hoc Network

User Location Service over an Ad-Hoc Network User Location Service over an 802.11 Ad-Hoc Network Song Li, Gang Zhao and Lin Liao {songli, galaxy, liaolin}@cs.washington.edu Abstract User location service for context-aware applications in wireless

More information

A Testbed for Real-Time Performance Evaluation of RSS-based Indoor Geolocation Systems in Laboratory Environment

A Testbed for Real-Time Performance Evaluation of RSS-based Indoor Geolocation Systems in Laboratory Environment Worcester Polytechnic Institute Digital WPI Masters Theses All Theses, All Years Electronic Theses and Dissertations 2005-05-04 A Testbed for Real-Time Performance Evaluation of RSS-based Indoor Geolocation

More information

RSSI based adaptive indoor location tracker

RSSI based adaptive indoor location tracker Maduskar and Tapaswi Scientific Phone Apps and Mobile Devices (2017) 3:3 DOI 10.1186/s41070-017-0015-z Scientific Phone Apps and Mobile Devices SOFTWARE ARTICLE Open Access RSSI based adaptive indoor location

More information

MOBILE COMPUTING 1/29/18. Cellular Positioning: Cell ID. Cellular Positioning - Cell ID with TA. CSE 40814/60814 Spring 2018

MOBILE COMPUTING 1/29/18. Cellular Positioning: Cell ID. Cellular Positioning - Cell ID with TA. CSE 40814/60814 Spring 2018 MOBILE COMPUTING CSE 40814/60814 Spring 2018 Cellular Positioning: Cell ID Open-source database of cell IDs: opencellid.org Cellular Positioning - Cell ID with TA TA: Timing Advance (time a signal takes

More information

Indoor Positioning by the Fusion of Wireless Metrics and Sensors

Indoor Positioning by the Fusion of Wireless Metrics and Sensors Indoor Positioning by the Fusion of Wireless Metrics and Sensors Asst. Prof. Dr. Özgür TAMER Dokuz Eylül University Electrical and Electronics Eng. Dept Indoor Positioning Indoor positioning systems (IPS)

More information

Some Signal Processing Techniques for Wireless Cooperative Localization and Tracking

Some Signal Processing Techniques for Wireless Cooperative Localization and Tracking Some Signal Processing Techniques for Wireless Cooperative Localization and Tracking Hadi Noureddine CominLabs UEB/Supélec Rennes SCEE Supélec seminar February 20, 2014 Acknowledgments This work was performed

More information

AUTOMATIC WLAN FINGERPRINT RADIO MAP GENERATION FOR ACCURATE INDOOR POSITIONING BASED ON SIGNAL PATH LOSS MODEL

AUTOMATIC WLAN FINGERPRINT RADIO MAP GENERATION FOR ACCURATE INDOOR POSITIONING BASED ON SIGNAL PATH LOSS MODEL AUTOMATIC WLAN FINGERPRINT RADIO MAP GENERATION FOR ACCURATE INDOOR POSITIONING BASED ON SIGNAL PATH LOSS MODEL Iyad H. Alshami, Noor Azurati Ahmad and Shamsul Sahibuddin Advanced Informatics School, Universiti

More information

Computationally Tractable Location Estimation on WiFi Enabled Mobile Phones

Computationally Tractable Location Estimation on WiFi Enabled Mobile Phones ISSC 2009, UCD, June 10 11 th Computationally Tractable Location Estimation on WiFi Enabled Mobile Phones Damian Kelly, Ross Behan, Rudi Villing and Seán McLoone Department of Electronic Engineering National

More information

Received-Signal-Strength-Based Logical Positioning Resilient to Signal Fluctuation

Received-Signal-Strength-Based Logical Positioning Resilient to Signal Fluctuation Received-Signal-Strength-Based Logical Positioning Resilient to Signal Fluctuation Thomas Locher, Roger Wattenhofer, Aaron Zollinger {lochert@student, wattenhofer@tik.ee, zollinger@tik.ee}.ethz.ch Computer

More information

Analysis of Sources of Large Positioning Errors in Deterministic Fingerprinting. Adriano Moreira 2, *, ID

Analysis of Sources of Large Positioning Errors in Deterministic Fingerprinting. Adriano Moreira 2, *, ID sensors Article Analysis of Sources of Large Positioning Errors in Deterministic Fingerprinting Joaquín Torres-Sospedra, *, ID and Adriano Moreira, *, ID Institute of New Imaging Technologies, Universitat

More information

INDOOR LOCATION SENSING AMBIENT MAGNETIC FIELD. Jaewoo Chung

INDOOR LOCATION SENSING AMBIENT MAGNETIC FIELD. Jaewoo Chung INDOOR LOCATION SENSING AMBIENT MAGNETIC FIELD Jaewoo Chung Positioning System INTRODUCTION Indoor positioning system using magnetic field as location reference Magnetic field inside building? Heading

More information

WiFiPos: An In/Out-Door Positioning Tool

WiFiPos: An In/Out-Door Positioning Tool WiFiPos: An In/Out-Door Positioning Tool Juan Toloza 1, Nelson Acosta, Carlos Kornuta 2 1 (Post-Doctoral Fellow, CONICET, INCA/INTIA - School of Exact Sciences UNICEN, TANDIL Argentina) 2 (Post-Doctoral

More information

An Enhanced Floor Estimation Algorithm for Indoor Wireless Localization Systems Using Confidence Interval Approach

An Enhanced Floor Estimation Algorithm for Indoor Wireless Localization Systems Using Confidence Interval Approach An Enhanced Floor Estimation Algorithm for Indoor Wireless Localization Systems Using Confidence Interval Approach Kriangkrai Maneerat, Chutima Prommak 1 Abstract Indoor wireless localization systems have

More information

Performance Evaluation of Mobile U-Navigation based on GPS/WLAN

Performance Evaluation of Mobile U-Navigation based on GPS/WLAN Performance Evaluation of Mobile U-Navigation based on GPS/WLAN Hybridization *1,Corresponding Author Wan Mohd Yaakob Wan Bejuri, 2 Mohd Murtadha Mohamad, 3 Maimunah Sapri, 4 Mohd Adly Rosly 1,2,4 Faculty

More information

WiFi Fingerprinting Signal Strength Error Modeling for Short Distances

WiFi Fingerprinting Signal Strength Error Modeling for Short Distances WiFi Fingerprinting Signal Strength Error Modeling for Short Distances Vahideh Moghtadaiee School of Surveying and Geospatial Engineering University of New South Wales Sydney, Australia v.moghtadaiee@student.unsw.edu.au

More information

Sponsored by. Nisarg Kothari Carnegie Mellon University April 26, 2011

Sponsored by. Nisarg Kothari Carnegie Mellon University April 26, 2011 Sponsored by Nisarg Kothari Carnegie Mellon University April 26, 2011 Motivation Why indoor localization? Navigating malls, airports, office buildings Museum tours, context aware apps Augmented reality

More information

Wifi bluetooth based combined positioning algorithm

Wifi bluetooth based combined positioning algorithm Wifi bluetooth based combined positioning algorithm Title Wifi bluetooth based combined positioning algorithm Publisher Elsevier Ltd Item Type Conferencia Downloaded 01/11/2018 17:43:07 Link to Item http://hdl.handle.net/11285/630414

More information

WIFE: Wireless Indoor positioning based on Fingerprint Evaluation

WIFE: Wireless Indoor positioning based on Fingerprint Evaluation WIFE: Wireless Indoor positioning based on Fingerprint Evaluation Apostolia Papapostolou, and Hakima Chaouchi Telecom-Sudparis, CNRS SAMOVAR, UMR 5157, LOR department {apostolia.papapostolou,hakima.chaouchi}@it-sudparis.eu

More information

Location Services with Riverbed Xirrus APPLICATION NOTE

Location Services with Riverbed Xirrus APPLICATION NOTE Location Services with Riverbed Xirrus APPLICATION NOTE Introduction Indoor location tracking systems using Wi-Fi, as well as other shorter range wireless technologies, have seen a significant increase

More information

IoT. Indoor Positioning with BLE Beacons. Author: Uday Agarwal

IoT. Indoor Positioning with BLE Beacons. Author: Uday Agarwal IoT Indoor Positioning with BLE Beacons Author: Uday Agarwal Contents Introduction 1 Bluetooth Low Energy and RSSI 2 Factors Affecting RSSI 3 Distance Calculation 4 Approach to Indoor Positioning 5 Zone

More information

INDOOR LOCALIZATION OUTLINE

INDOOR LOCALIZATION OUTLINE INDOOR LOCALIZATION DHARIN PATEL VARIL PATEL OUTLINE INTRODUCTION CHALLAGES OF INDOOR LOCALIZATION LOCATION DETECTION TECHNIQUE INDOOR POSITIONING ALGORITHM RESEARCH METHODOLOGY WIFI-BASED INDOOR LOCALIZATION

More information

Chapter 1 Implement Location-Based Services

Chapter 1 Implement Location-Based Services [ 3 ] Chapter 1 Implement Location-Based Services The term location-based services refers to the ability to locate an 802.11 device and provide services based on this location information. Services can

More information

A Study on Investigating Wi-Fi based Fingerprint indoor localization of Trivial Devices

A Study on Investigating Wi-Fi based Fingerprint indoor localization of Trivial Devices A Study on Investigating Wi-Fi based Fingerprint indoor localization of Trivial Devices Sangisetti Bhagya Rekha Assistant Professor, Dept. of IT, Vignana Bharathi Institute of Technology, E-mail: bhagyarekha2001@gmail.com

More information

DATA ACQUISITION FOR STOCHASTIC LOCALIZATION OF WIRELESS MOBILE CLIENT IN MULTISTORY BUILDING

DATA ACQUISITION FOR STOCHASTIC LOCALIZATION OF WIRELESS MOBILE CLIENT IN MULTISTORY BUILDING DATA ACQUISITION FOR STOCHASTIC LOCALIZATION OF WIRELESS MOBILE CLIENT IN MULTISTORY BUILDING Tomohiro Umetani 1 *, Tomoya Yamashita, and Yuichi Tamura 1 1 Department of Intelligence and Informatics, Konan

More information

Indoor navigation with smartphones

Indoor navigation with smartphones Indoor navigation with smartphones REinEU2016 Conference September 22 2016 PAVEL DAVIDSON Outline Indoor navigation system for smartphone: goals and requirements WiFi based positioning Application of BLE

More information

An operational design of indoor tracking system in the environment of GSM structure

An operational design of indoor tracking system in the environment of GSM structure American Journal of Computer Science and Engineering 2014; 1(3): 18-24 Published online October 10, 2014 (http://www.openscienceonline.com/journal/ajcse) An operational design of indoor tracking system

More information

A Received Signal Strength based Self-adaptive Algorithm Targeting Indoor Positioning

A Received Signal Strength based Self-adaptive Algorithm Targeting Indoor Positioning A Received Signal Strength based Self-adaptive Algorithm Targeting Indoor Positioning Xiaoyue Hou, Tughrul Arslan, Arief Juri University of Edinburgh Abstract This paper proposes a novel received signal

More information

Improving Accuracy of FingerPrint DB with AP Connection States

Improving Accuracy of FingerPrint DB with AP Connection States Improving Accuracy of FingerPrint DB with AP Connection States Ilkyu Ha, Zhehao Zhang and Chonggun Kim 1 Department of Computer Engineering, Yeungnam Umiversity Kyungsan Kyungbuk 712-749, Republic of Korea

More information

Markov Localization of Wireless Local Area Network Clients

Markov Localization of Wireless Local Area Network Clients Markov Localization of Wireless Local Area Network Clients Michael Wallbaum and Torsten Wasch Department of Computer Science, RWTH Aachen University, D-52056 Aachen, Germany Abstract. Markov localization

More information

Research on cooperative localization algorithm for multi user

Research on cooperative localization algorithm for multi user Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2014, 6(6):2203-2207 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Research on cooperative localization algorithm

More information

Accurate Distance Tracking using WiFi

Accurate Distance Tracking using WiFi 17 International Conference on Indoor Positioning and Indoor Navigation (IPIN), 181 September 17, Sapporo, Japan Accurate Distance Tracking using WiFi Martin Schüssel Institute of Communications Engineering

More information

WLAN Location Methods

WLAN Location Methods S-7.333 Postgraduate Course in Radio Communications 7.4.004 WLAN Location Methods Heikki Laitinen heikki.laitinen@hut.fi Contents Overview of Radiolocation Radiolocation in IEEE 80.11 Signal strength based

More information

Indoor Positioning System using Magnetic Positioning and BLE beacons

Indoor Positioning System using Magnetic Positioning and BLE beacons Indoor Positioning System using Magnetic Positioning and BLE beacons Prof.Manoj.V. Bramhe 1, Jeetendra Gan 2, Nayan Ghodpage 3, Ankit Nawale 4, Gurendra Bahe 5 1Associate Professor & HOD, Dept of Information

More information

SpotFi: Decimeter Level Localization using WiFi. Manikanta Kotaru, Kiran Joshi, Dinesh Bharadia, Sachin Katti Stanford University

SpotFi: Decimeter Level Localization using WiFi. Manikanta Kotaru, Kiran Joshi, Dinesh Bharadia, Sachin Katti Stanford University SpotFi: Decimeter Level Localization using WiFi Manikanta Kotaru, Kiran Joshi, Dinesh Bharadia, Sachin Katti Stanford University Applications of Indoor Localization 2 Targeted Location Based Advertising

More information

Pilot: Device-free Indoor Localization Using Channel State Information

Pilot: Device-free Indoor Localization Using Channel State Information ICDCS 2013 Pilot: Device-free Indoor Localization Using Channel State Information Jiang Xiao, Kaishun Wu, Youwen Yi, Lu Wang, Lionel M. Ni Department of Computer Science and Engineering Hong Kong University

More information

A Dual Distance Measurement Scheme for Indoor IEEE Wireless Local Area Networks*

A Dual Distance Measurement Scheme for Indoor IEEE Wireless Local Area Networks* A Dual Distance Measurement Scheme for Indoor IEEE 80.11 Wireless Local Area Networks* Murad Abusubaih, Berthold Rathke, and Adam Wolisz Telecommunication Networks Group Technical University Berlin Email:

More information

LATERATION TECHNIQUE FOR WIRELESS INDOOR POSITIONING IN SINGLE-STOREY AND MULTI-STOREY SCENARIOS

LATERATION TECHNIQUE FOR WIRELESS INDOOR POSITIONING IN SINGLE-STOREY AND MULTI-STOREY SCENARIOS LATERATION TECHNIQUE FOR WIRELESS INDOOR POSITIONING IN SINGLE-STOREY AND MULTI-STOREY SCENARIOS 1 LEE CHIN VUI, 2 ROSDIADEE NORDIN Department of Electrical, Electronic and System Engineering, Faculty

More information

A Study of Devising Neural Network Based Indoor Localization Using Beacons: First Results

A Study of Devising Neural Network Based Indoor Localization Using Beacons: First Results A Study of Devising Neural Network Based Indoor Localization Using Beacons: First Results Filip Mazan and Alena Kovarova Faculty of Informatics and Information Technologies Slovak University of Technology

More information

RECENT developments in the area of ubiquitous

RECENT developments in the area of ubiquitous LocSens - An Indoor Location Tracking System using Wireless Sensors Faruk Bagci, Florian Kluge, Theo Ungerer, and Nader Bagherzadeh Abstract Ubiquitous and pervasive computing envisions context-aware systems

More information

A Toolkit-Based Approach to Indoor Localization

A Toolkit-Based Approach to Indoor Localization A Toolkit-Based Approach to Indoor Localization Yu Wang and Adam Harder Dept. of Computer Science and Software Engineering Auburn University Auburn, Alabama 36849 Email: wangyu1@auburn.edu, hardead@auburn.edu

More information