Algorithm for blind navigation along a GPS track

Size: px
Start display at page:

Download "Algorithm for blind navigation along a GPS track"

Transcription

1 Algorithm for blind navigation along a GPS track Rosen Ivanov Abstract: Most of existing navigation systems for the blind require a precise GPS maps. This makes them unusable in regions where there are no GPS maps, or they are not sufficiently accurate. lgorithm for GPS navigation for the visually impaired along a GPS track, which describes the path as a sequence of waypoints, is proposed. The main advantages of the algorithm are: natural voice navigation, adaptive to the velocity and accuracy of the GPS data, start of the navigation from any waypoint; correction of the direction of movement if it is necessary, return the user to the route if deviation is detected, work with and without electronic compass, detection of the movement of the user in the opposite direction. Key words: blind navigation, navigation along a track, Java mobile applications INTRODUCTION At present the most of outdoor navigation systems are based on Global Positioning System (GPS). The accuracy in determining the position of the users using GPS is in the range meters and it is not sufficient for navigation of the blind. Possible ways to improve the accuracy of GPS positioning are: reduction of random errors in GPS data (canyon effects in urban environment, delays of the GPS signals in the ionosphere and troposphere, and etc.) by using statistical techniques or by using Differential GPS (DGPS) or Satellite Based Augmentation Systems (SBAS) in which accuracy is less than 5 meters. The idea for using a GPS with the aim of developing navigation systems for the blind was proposed in 1985 by Collins [2] and Loomis [6]. The commercial applications in this area have high prices. They are based mainly on the use of smartphones, PDA or specialized hardware, GPS maps, and screen readers, for example: Sendero GPS (Sendero Group LLC, based on the BrailleNote platform, price around $1600), MobileGeo (Code- Factory, runs on smartphones equipped with the Mobile Speack screen reader and Pocket PC devices, price $1150), and Trekker (Humanware, runs on Maestro PDA, price $1600). In the absence of GPS maps for certain regions or insufficient precision of GPS maps one of the alternatives is to use the navigation alogn a track. The track is obtained as a sequence of GPS coordinates of the waypoints that are significant for the navigation process. The waypoints that form the track most often are obtained after specified period of time or distance. Part of the resulting waypoints do not describe exactly the route, mainly because of random errors in calculating the position. To minimize these errors, positions filtering is used. The navigation algorithm involves using only those waypoints (called critical points) where there is a real change of direction of movement. This implies the use of track simplification algorithms, for example Douglas-Peucker algorithm [3]. After track filtering and simplification navigation of type "from waypoint to waypoint can be used. There are few applications that allow blind navigation along a track. For example, application Loadstone GPS [10], which is developed by the blind for the blind, allows the recording of waypoints and navigation from one waypoint to another. This application, written in C for Symbian OS, has many disadvantages, for example: requires a screen reader, navigation is not possible to continue after the deviation from the route, can be installed only on the Nokia smartphones with platform S60, and etc. Java programming language is the most common used on modern mobile platforms. This guarantee a lower cost and greater availability of navigation systems, realized using Java mobile platforms [5]. Permission to make digital or hard copies of all or part of this work for personal or classroom use is granted without fee provided that copies are not made or distributed for profit or commercial advantage and that copies bear this notice and the full citation on the first page. To copy otherwise, or republish, to post on servers or to redistribute to lists, requires prior specific permission and/or a fee. CompSysTech'11, June 16 17, 2011, Vienna, Austria. Copyright 2011 ACM /11/06...$

2 DESCRIPTION OF THE ALGORITHM Navigation is a complex process for the people with visual disabilities. It includes the following stages: route planning (result is track that consists waypoints that describes the path), orientation, following a path, and overcoming the obstacles [1]. The proposed algorithm for the navigating along a track is part of an Java (J2ME) application for mobile phones which realize stages "route planning", "orientation and navigation along a track. Although the user can record voice messages (voice waypoints), describing obstacles or risky sections of the path, it is assumed that users use the white cane and/or a guide dog to avoid hazards and obstacles on the path. 1. GPS positions filtering To reduce random errors in the GPS data an algorithm for filtering of GPS positions is used. It combines the following techniques: knowledge-based GPS data pre-processing, a fuzzy estimation of noise level in GPS data and an adaptive Kalman filtering. Fig. 1 shows an example (one lap of the stadium on foot) for operation of the algorithm used to filter and simplify the GPS tracks. raw data: filtered data: track simplification, track simplification, 493 points, 444m 485 points, 406m filter off: 17 points, 414m filter on: 12 points, 401m Fig.1. GPS track filtering and simplification example 2. Select the time interval for checking the user s position GPS receivers generate information about the position of users during an interval of one second. When navigating along a track it is not necessary to check the position of the the user after every second, because he/she will not traveled significant for the navigation process distance. It is proposed distance D th, after which should to check the position of the user, to depend on velocity by the following equation: D th [ ] vf, vf 0, 100 km h =, (1) 40, vf > 100km h where v f is the filtered velocity: and i is the discrete time. v f i ( 1 ) ν i = αv f + α, (2) i 1 The check for the new position of the user is realized if the following conditions are fulfilled: 1) GPS receiver generates valid data (number of the visible satellites is greater than 3), 2) The estination for the horizontal accuracy - horizontal dilution of precision (hdop) - must be less than 3.5, 3) Filtered velocity v f must be greater than 1km/h, and 4) Distance traveled must be greater than or equal to D th. 373

3 3. Start of the navigation Before activate the mode "navigation" the user should load the desired track. When creating a new track, the user must give voice names of the first and last waypoints. When loading a track, the application inform the user by voice for the selected track. Let assume that one of the waypoints that describe the track is first, and another - last. There are two possible ways for the navigation along a track: from first to the last waypoint and vice versa - from last to the first waypoint. The following variables are introduced: N is the number of points which describe the track; firstpointindex is the index of first waypoint; lastpointindex is the index of last waypoint; currentpointindex is the index of current waypoint; nextpointindex is the index of next waypoint; direction encodes the direction of movement: 1, if movement isfrom firstpoint to lastpoint, firstpointindex = 0, lastpointindex = N 1 direction = (3) 1,if movement is from lastpoint to firstpoint, lastpointindex = 0, firstpointindex = N 1 If the movement is from currentpoint to nextpoint, then index of each next waypoint is calculated by the following equation: nextpointindex = nextpointindex + direction, if nextpointindex destinationpointindex (4) 4. Select the starting point The algorithm allows navigation along a track, regardless of the starting position of the user. Let the current position of the user is described with waypoint named currposition (see Fig. 2). p index p l d l d p r d r currposition p index+1 p index-1 Fig.2. Find the coordinates of the start point The calculation of the position of the startpoint is realized as follows: 1. Minimum distance d from the current position of the user (currposition) to each of the points p i, i=0 N-1 is calculated: d = min startposition, p, (5) i i where operator means GPS distance. In this case (see Fig. 2) the nearest point is p index. 374

4 2. If the condition d>min_dist_to_track is fulfilled it is assumed that the user is too far away from the track and navigation is impossible at this time. 3. We introduce the variable pos, which is used to find the starting point. For this purpose we obtain the following distances: d currposition, = p index, d l currposition, pl =, d r = currposition, pr, (6) where: d is the distance from current position to a waypoint p index ; d l is the minimum distance from the current position to the segment formed by points p index and p index-1 ; d r is the minimum distance from the current position to the segment formed by points p index and p index+1 ; The minimum distance d min =min(d, d l d r ) must be calculated. The start point of the track is that for which minimum distance d min was obtained: pindex, if d = d min, pos = 0 startpoint = pl, if dl = d min, pos = 1 pr, if dr = d min, pos = 1 (7) The index of the the next waypoint is given by the following equation: index,if pos = direction nextpointi ndex = (8) index + direction,otherwise 5. Navigate to the next waypoint There are several ways for voice navigation of the blind users: 1) Use the cardinal expression. The following words are used: north, south, east, and west, for example: west 25m to home. This way for navigation is not suitable for the blind. 2) Use the clock expression [9]. It is assumed that the user must follow the direction pointed by the hour hand of the the clock, for example: "home 25m at 11 o'clock". 3) Use the relative expression [8] (left, right, straight, and back), for example: turn left. The last method is suitable for the navigation in urban environment, but not outside the city. Experiments show [7] that the most appropriate and fast way for navigation of the blind is to use relative expressions with information for direction of movement in degrees (bearing mode), eg: turn 70 to the left. In the proposed algorithm is used bearing mode in which the angle is rounded to 10, since greater accuracy is difficult to be interpreted from blind. The users must move from the current waypoint (currentpointindex) to the next waypoint (nextpointindex), as shown in Fig. 3. North nextpointindex α 2 α=α 2 -α 1 α 1 d pc d next D currpointindex Fig.3. Navigation to next waypoint 375

5 Let the current position of the user is waypoint p c. Let assume that there is no deviation from the track - the distance d is less than a predetermined threshold value d th. If there is no deviation from the course and the user is close to the next waypoint (d next <D), he/she must be informed that after D meters must change its direction of movement. The value of the parameter D depends on the velocity and the current value of hdop (a low hdop value indicates better relative geometry and higher corresponding accuracy), D = f v, f hdop : ( ) ( 10 hdop + 5) + 0. v f D = 65. (9) When reaching nextpoint the user must change its direction of movement. Let α = α 2 α 1, where α 1 is the current direction of movement in degrees and α 2 is the new direction that must be followed. The blind user must change its course with α degrees. If α>0 the correction of the course is to the right to the current direction of movement, and if α<0 - the correction is to the left. If nextpointindex=lastpointindex navigation is stopped since the destination waypoint is reached. Otherwise the index to the next waypoint is calculated: nextpointi ndex = nextpointindex + direction. (10) 6. Navigation if deviation from the track is detected Deviation from an intended path is one of main problem for the blind [11]. The navigation algorithm must inform user when the route is left or lost. When moving from currpoint to nextpoint is possible the user to deviate from the track. Research in this area [4] shows that blind users deviate from the intended course by 1.3 on each step. Therefore, the navigation system must check the new position of the user in about ten meters since the error accumulates. For quantitative evaluation of deviation from the course is used perpendicular distance (d) from the current position of the blind (waypoint p c ) to the segments that form the points currpoint and nextpoint (see Fig. 4). North β 1 p c d β 2 β nextpointindex currpointindex Fig.4. Navigation if deviation from the track is detected If d d th it is assumed that there is significant deviation from the track and the user must be informed. The value of threshold d th in meters is calculated adaptively by the following equation: ( ) d th = hdop. (11) In case of deviation the blind is informed for the distance d and how many degrees (β=β 1 -β 2 ) left or right of course is the deviation. If β>0, the deviation is on the right, and if β<0 - the deviation is on the left. 376

6 7. Return to the track after the deviation Let assume that the user has deviated from the route at point A and is informed for the the deviation at point B (see Fig. 5). p B d th nextpointindex p A currpointindex p C γ Fig.5. Return to the track after the deviation Let assume that after being notified for the deviation, the user changes its course and returns to the track at point C. The user must be informed before it reaches point C how to change course to follow the correct course to nextpoint. For this purpose we calculate the difference between the course to point C and the course which the blind user must follows - γ. If γ>0 the correction of the course must be γ degrees to the left, and if γ<0 - γ degrees to the right. If the blind does not change its course after the notification for the deviation (point B), recording of new track at point A is started. Subsequently, through this new track will be possible to guide the blind to point A in order to continue navigation along the old track. 8. Detection of movement in the opposite direction It is possible the blind to move in the opposite direction. For this purpose calculates the absolute value of difference between the desired course α 1 and direction α 2 in which the the user actually moves. If the mobile phone has a built-in compass, the movement in the opposite direction is detected easily and quickly. If there is no compass, the algorithm takes time (the user must travel about 10 meters) to determine if the blind moves in the opposite direction. 9. Deviation from the nextpoint Let assume that the the user is approached to the nextpoint (d next <D) and the system had informed it that after D meters must change its course. If in this moment the user changes its course, at the next step of the algorithm the navigation should be back to nextpointindex, rather than nextpointindex+direction. This event is detected by comparing i i 1 the distances d next for the last two steps of the algorithm. If d next > 0.8d next it is assumed that the blind has deviated from the nextpoint. 10. Skipping a waypoints Let D p is the distance between waypoints currpoint and nextpoint. If condition D p <D is fulfilled the accuracy of the GPS receiver is not sufficient to realize a reliable navigation to the waypoint nextpoint. The waypoints nextpoint are skipped until meet the condition D p D. EXPERIMENTAL RESULTS Java mobile application for blind navigation along a GPS track is developed. The requirements for the successful installation of the application are as follows: profile MIDP 2.0/2.1 (JSR-118), configuration CLDC 1.1 (JSR-139), File Connection and PIM API (JSR- 75), Java APIs for Bluetooth (JSR-82), and Location API (JSR-179) optional. 377

7 All experiments were conducted with mobile phones Nokia 6630, Nokia N95, and Nokia C7-00. The application has been tested in urban (10 tracks) and in non-urban environment (20 tracks). The tests were performed with 5 users with visual impairment (myopia from 4 to 6 dioptres) and 10 users without visual impairments, but blindfolded. For the hdop values below 1.5 all tests are successfully completed. At lower accuracy (1.5<hdop<3.5) the time to reach the destination waypoint is increasing by 21% due to deviations from the track. When the value of the hdop is greater than 3.5 navigation is risky for the blind. Fig. 6 shows screenshots that describe various moments of the navigation process: the user is to far away from the track (42m), navigation without deviation from the track (go streight 59m), navigation with deviation from the track (deviation 89m, 30 to the right), and next waypoint has been reached (turn 46 to the right). Fig.6. Test of the algorithm In the future, the algorithm will be tested by the blind users. CONCLUSIONS An algorithm for the blind navigation along a track is developed and implemented. The main advantages of the algorithm are: Voice-based navigation. Start of the navigation from any waypoint of the track. The algorithm is adaptive to the transportation mode (pedestrian or vehicle) and accuracy of the GPS data. Detection of the movement in the opposite direction. Detection of the deviation, and the ability for the navigation back to the track. Possibility to pass consecutive waypoints if accuracy of GPS data is not sufficient. Navigation at presence and absence of an electronic compass. Change the direction of the movement (from first to last waypoint and vice versa) at any time. The users are notified via voice messages for the following: How many meters remain to the next waypoint. How much time and how many meters remain to the destination waypoint. Change of the status of the GPS data (transition from valid to invalid data and vice versa, insufficient accuracy, and etc.). Current accuracy of GPS receiver in meters. When there is a deviation from the track how many meters is the deviation and how the blind user should correct its course. How to change the course when reaching the next waypoint. 378

8 The destination waypoint has been reached. The voice waypoint has been reached. Since algorithm is adaptive to the velocity, it can be used not only for developing application for navigation of visually impaired and blind but also in GPS navigators in offroad and free modes. REFERENCES [1] Adams, C., An investigation of navigation process in human locomotion behaviour, Master thesis, Virginia Polytechnic Institute and State University, [2] Collins, C.C., On mobility aids for the blind, Electronic Spatial Sensing for the Blind (Warren, D. H. and Strelow, E. R., Eds.), Matinus Nijhoff, Dordrecht, The Netherlands, pp , [3] Hershberger, J., J. Snoeyink, Speeding up the Douglas-Peucker line simplification algorithm, In Proceedings of the 5th Int. Symposium on Spatial Data Handling, vol. 1, pp , [4] Kallie, C.S., P.R. Schrater, and G.E. Legge, Variability in stepping direction explains the veering behaviour of blind walkers, Journal of Experimental Psychology: Human Perception and Performance, 33(1): , [5] Kamiski, Ł., A. Stepnowski, J. Demkowicz, Wearable system supporting navigation of the blind, Int. Journal of Geology, 5(2), [6] Loomis, J., Digital Map and Navigation System for the Visually Impaired, University of California, Available: [7] Marston, J.R., J.M. Loomis, R.L. Klatzky, R.G. Golledge, and E.L. Smith, Evaluation of spatial displays for navigation without sight, ACM Transactions on Applied Perception, 3(2), pp , [8] Pressl, B., M. Wieser, A computer-based navigation system tailored to the needs of blind people, in K. Miesenberger et al. (eds.), ICCHP 2006, LNCS 4061, Springer Verlag Berlin Heidelberg, pp , [9] Sanchez, J.H., F.A. Aguayo, and T.M. Hassler, Independent outdoor mobility for the blind, Virtual Rehabilitation, pp , [10] The Loadstone GPS team, Loadstone GPS project, Available: [11] Tóth, B., G. Németh, Speech Enabled GPS Based Navigation System for Blind People on Symbian Based Mobile devices in Hungarian, Regional Conference on Embedded and Ambient Systems, pp , Hungary, ABOUT THE AUTHOR Assoc.Prof. Rosen Ivanov, PhD, Department of Computer Systems and Technologies, Technical University - Gabrovo, -mail: rs-soft@ieee.org. 379

Algorithm for GPS Navigation, Adapted for Visually Impaired People

Algorithm for GPS Navigation, Adapted for Visually Impaired People Algorithm for GPS Navigation, Adapted for Visually Impaired People Rosen S. Ivanov Abstract The paper presents an algorithm for speech enabled GPS navigation in Bulgarian. The algorithm is part of the

More information

Outdoor Navigation Systems to Promote Urban Mobility to Aid Visually Impaired People

Outdoor Navigation Systems to Promote Urban Mobility to Aid Visually Impaired People Journal of Information Systems Engineering & Management, 2018, 3(2), 14 ISSN: 2468-4376 Outdoor Navigation Systems to Promote Urban Mobility to Aid Visually Impaired People André Lima 1, Daniela Mendes

More information

MELODIOUS WALKABOUT: IMPLICIT NAVIGATION WITH CONTEXTUALIZED PERSONAL AUDIO CONTENTS

MELODIOUS WALKABOUT: IMPLICIT NAVIGATION WITH CONTEXTUALIZED PERSONAL AUDIO CONTENTS MELODIOUS WALKABOUT: IMPLICIT NAVIGATION WITH CONTEXTUALIZED PERSONAL AUDIO CONTENTS Richard Etter 1 ) and Marcus Specht 2 ) Abstract In this paper the design, development and evaluation of a GPS-based

More information

The experimental evaluation of the EGNOS safety-of-life services for railway signalling

The experimental evaluation of the EGNOS safety-of-life services for railway signalling Computers in Railways XII 735 The experimental evaluation of the EGNOS safety-of-life services for railway signalling A. Filip, L. Bažant & H. Mocek Railway Infrastructure Administration, LIS, Pardubice,

More information

Resection. We can measure direction in the real world! Lecture 10: Position Determination. Resection Example: Isola, Slovenia. Professor Keith Clarke

Resection. We can measure direction in the real world! Lecture 10: Position Determination. Resection Example: Isola, Slovenia. Professor Keith Clarke Geography 12: Maps and Spatial Reasoning Lecture 10: Position Determination We can measure direction in the real world! Professor Keith Clarke Resection Resection Example: Isola, Slovenia Back azimuth

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

BeFitter Apps Manual

BeFitter Apps Manual BeFitter Apps Manual Key features The apps BF Hiker, BF Cycle, BF XC Ski and BF Runner have 13 pages. You can toggle through these pages with the previous page and next page function. See the chapter User

More information

A VIRTUAL VALIDATION ENVIRONMENT FOR THE DESIGN OF AUTOMOTIVE SATELLITE BASED NAVIGATION SYSTEMS FOR URBAN CANYONS

A VIRTUAL VALIDATION ENVIRONMENT FOR THE DESIGN OF AUTOMOTIVE SATELLITE BASED NAVIGATION SYSTEMS FOR URBAN CANYONS 49. Internationales Wissenschaftliches Kolloquium Technische Universität Ilmenau 27.-30. September 2004 Holger Rath / Peter Unger /Tommy Baumann / Andreas Emde / David Grüner / Thomas Lohfelder / Jens

More information

IOT GEOLOCATION NEW TECHNICAL AND ECONOMICAL OPPORTUNITIES

IOT GEOLOCATION NEW TECHNICAL AND ECONOMICAL OPPORTUNITIES IOT GEOLOCATION NEW TECHNICAL AND ECONOMICAL OPPORTUNITIES Florian LECLERE f.leclere@kerlink.fr EOT Conference Herning 2017 November 1st, 2017 AGENDA 1 NEW IOT PLATFORM LoRa LPWAN Platform Geolocation

More information

Integration of GPS with a Rubidium Clock and a Barometer for Land Vehicle Navigation

Integration of GPS with a Rubidium Clock and a Barometer for Land Vehicle Navigation Integration of GPS with a Rubidium Clock and a Barometer for Land Vehicle Navigation Zhaonian Zhang, Department of Geomatics Engineering, The University of Calgary BIOGRAPHY Zhaonian Zhang is a MSc student

More information

Differential navigation for UAV platforms with mobile reference station

Differential navigation for UAV platforms with mobile reference station Differential navigation for UAV platforms with mobile reference station NAWRAT ALEKSANDER, KOZAK KAMIL, DANIEC KRZYSZTOF, KOTERAS ROMAN Department of Automatic Control and Robotics, Silesian University

More information

Evaluation of RTKLIB's Positioning Accuracy Using low-cost GNSS Receiver and ASG-EUPOS

Evaluation of RTKLIB's Positioning Accuracy Using low-cost GNSS Receiver and ASG-EUPOS http://www.transnav.eu the International Journal on Marine Navigation and Safety of Sea Transportation Volume 7 Number 1 March 2013 DOI: 10.12716/1001.07.01.10 Evaluation of RTKLIB's Positioning Accuracy

More information

A MOBILE SOLUTION TO HELP VISUALLY IMPAIRED PEOPLE IN PUBLIC TRANSPORTS AND IN PEDESTRIAN WALKS

A MOBILE SOLUTION TO HELP VISUALLY IMPAIRED PEOPLE IN PUBLIC TRANSPORTS AND IN PEDESTRIAN WALKS D. Brito, et al., Int. J. Sus. Dev. Plann. Vol. 13, No. 2 (2018) 281 293 A MOBILE SOLUTION TO HELP VISUALLY IMPAIRED PEOPLE IN PUBLIC TRANSPORTS AND IN PEDESTRIAN WALKS D. BRITO, T. VIANA, D. SOUSA, A.

More information

GPS Waypoint Application

GPS Waypoint Application GPS Waypoint Application Kris Koiner, Haytham ElMiligi and Fayez Gebali Department of Electrical and Computer Engineering University of Victoria Victoria, BC, Canada Email: {kkoiner, haytham, fayez}@ece.uvic.ca

More information

DECODING OF SIRF BINARY PROTOCOL

DECODING OF SIRF BINARY PROTOCOL ARTIFICIAL SATELLITES, Vol. 46, No. 4 2011 DOI: 10.2478/v10018-012-0005-y DECODING OF SIRF BINARY PROTOCOL Bartłomiej Oszczak, Krzysztof Serżysko University of Warmia and Mazury in Olsztyn Chair of Satellite

More information

«Navi-Campus» : an orientation and navigation app for helping visually impaired people to walk independently on any university campus

«Navi-Campus» : an orientation and navigation app for helping visually impaired people to walk independently on any university campus «Navi-Campus» : an orientation and navigation app for helping visually impaired people to walk independently on any university campus Jesus ZEGARRA FLORES Altran Research Medic@ Laurence RASSENEUR Université

More information

What is it? History. Other systems. How does it work? Trilateration GEOG 201 4/28/2010. Instructor: Pesses 1. {06} The Global Positioning System

What is it? History. Other systems. How does it work? Trilateration GEOG 201 4/28/2010. Instructor: Pesses 1. {06} The Global Positioning System What is it? {06} The Global Positioning System G.P.S. = Global Positioning System Different from G.I.S. (Geographic Information Systems) Map Interpretation & GPS Spring 2010 M. Pesses History Conceived

More information

Integrated Driving Aware System in the Real-World: Sensing, Computing and Feedback

Integrated Driving Aware System in the Real-World: Sensing, Computing and Feedback Integrated Driving Aware System in the Real-World: Sensing, Computing and Feedback Jung Wook Park HCI Institute Carnegie Mellon University 5000 Forbes Avenue Pittsburgh, PA, USA, 15213 jungwoop@andrew.cmu.edu

More information

International Journal OF Engineering Sciences & Management Research

International Journal OF Engineering Sciences & Management Research EMBEDDED MICROCONTROLLER BASED REAL TIME SUPPORT FOR DISABLED PEOPLE USING GPS Ravi Sankar T *, Ashok Kumar K M.Tech, Dr.M.Narsing Yadav M.S.,Ph.D(U.S.A) * Department of Electronics and Computer Engineering,

More information

Haptic presentation of 3D objects in virtual reality for the visually disabled

Haptic presentation of 3D objects in virtual reality for the visually disabled Haptic presentation of 3D objects in virtual reality for the visually disabled M Moranski, A Materka Institute of Electronics, Technical University of Lodz, Wolczanska 211/215, Lodz, POLAND marcin.moranski@p.lodz.pl,

More information

1 ABSTRACT. Proceedings REAL CORP 2012 Tagungsband May 2012, Schwechat.

1 ABSTRACT. Proceedings REAL CORP 2012 Tagungsband May 2012, Schwechat. Oihana Otaegui, Estíbaliz Loyo, Eduardo Carrasco, Caludia Fösleitner, John Spiller, Daniela Patti, Adela, Marcoci, Rafael Olmedo, Markus Dubielzig 1 ABSTRACT (Oihana Otaegui, Vicomtech-IK4, San Sebastian,

More information

Introduction to the Global Positioning System

Introduction to the Global Positioning System GPS for ICS - 2003 Introduction to the Global Positioning System Pre-Work Pre-Work Objectives Describe at least three sources of GPS signal error, and ways to mitigate or reduce those errors. Identify

More information

Introduction to the Global Positioning System

Introduction to the Global Positioning System GPS for Fire Management - 2004 Introduction to the Global Positioning System Pre-Work Pre-Work Objectives Describe at least three sources of GPS signal error, and identify ways to mitigate or reduce those

More information

Assisting and Guiding Visually Impaired in Indoor Environments

Assisting and Guiding Visually Impaired in Indoor Environments Avestia Publishing 9 International Journal of Mechanical Engineering and Mechatronics Volume 1, Issue 1, Year 2012 Journal ISSN: 1929-2724 Article ID: 002, DOI: 10.11159/ijmem.2012.002 Assisting and Guiding

More information

Advanced Techniques for Mobile Robotics Location-Based Activity Recognition

Advanced Techniques for Mobile Robotics Location-Based Activity Recognition Advanced Techniques for Mobile Robotics Location-Based Activity Recognition Wolfram Burgard, Cyrill Stachniss, Kai Arras, Maren Bennewitz Activity Recognition Based on L. Liao, D. J. Patterson, D. Fox,

More information

Virtual Tactile Maps

Virtual Tactile Maps In: H.-J. Bullinger, J. Ziegler, (Eds.). Human-Computer Interaction: Ergonomics and User Interfaces. Proc. HCI International 99 (the 8 th International Conference on Human-Computer Interaction), Munich,

More information

Remote PED Assistant. Gabriel DeRuwe. Department of Electrical & Computer Engineering

Remote PED Assistant. Gabriel DeRuwe. Department of Electrical & Computer Engineering Remote PED Assistant Gabriel DeRuwe NIATT Department of Electrical & Computer Engineering Smart Signals Research Advanced Pedestrian Assistant What is it: A handheld device for activation of pedestrian

More information

Performance Evaluation of the Effect of QZS (Quasi-zenith Satellite) on Precise Positioning

Performance Evaluation of the Effect of QZS (Quasi-zenith Satellite) on Precise Positioning Performance Evaluation of the Effect of QZS (Quasi-zenith Satellite) on Precise Positioning Nobuaki Kubo, Tomoko Shirai, Tomoji Takasu, Akio Yasuda (TUMST) Satoshi Kogure (JAXA) Abstract The quasi-zenith

More information

Smart Navigation System for Visually Impaired Person

Smart Navigation System for Visually Impaired Person Smart Navigation System for Visually Impaired Person Rupa N. Digole 1, Prof. S. M. Kulkarni 2 ME Student, Department of VLSI & Embedded, MITCOE, Pune, India 1 Assistant Professor, Department of E&TC, MITCOE,

More information

Addressing Issues with GPS Data Accuracy and Position Update Rate for Field Traffic Studies

Addressing Issues with GPS Data Accuracy and Position Update Rate for Field Traffic Studies Addressing Issues with GPS Data Accuracy and Position Update Rate for Field Traffic Studies THIS FEATURE VALIDATES INTRODUCTION Global positioning system (GPS) technologies have provided promising tools

More information

VEHICLE INTEGRATED NAVIGATION SYSTEM

VEHICLE INTEGRATED NAVIGATION SYSTEM VEHICLE INTEGRATED NAVIGATION SYSTEM Ian Humphery, Fibersense Technology Corporation Christopher Reynolds, Fibersense Technology Corporation Biographies Ian P. Humphrey, Director of GPSI Engineering, Fibersense

More information

INTELLIGENT LAND VEHICLE NAVIGATION: INTEGRATING SPATIAL INFORMATION INTO THE NAVIGATION SOLUTION

INTELLIGENT LAND VEHICLE NAVIGATION: INTEGRATING SPATIAL INFORMATION INTO THE NAVIGATION SOLUTION INTELLIGENT LAND VEHICLE NAVIGATION: INTEGRATING SPATIAL INFORMATION INTO THE NAVIGATION SOLUTION Stephen Scott-Young (sscott@ecr.mu.oz.au) Dr Allison Kealy (akealy@unimelb.edu.au) Dr Philip Collier (p.collier@unimelb.edu.au)

More information

Do-It-Yourself Object Identification Using Augmented Reality for Visually Impaired People

Do-It-Yourself Object Identification Using Augmented Reality for Visually Impaired People Do-It-Yourself Object Identification Using Augmented Reality for Visually Impaired People Atheer S. Al-Khalifa 1 and Hend S. Al-Khalifa 2 1 Electronic and Computer Research Institute, King Abdulaziz City

More information

GPS - GPS and Galileo Data Processing: From Fundamentals to High Accuracy Navigation

GPS - GPS and Galileo Data Processing: From Fundamentals to High Accuracy Navigation Coordinating unit: Teaching unit: Academic year: Degree: ECTS credits: 2017 230 - ETSETB - Barcelona School of Telecommunications Engineering 749 - MAT - Department of Mathematics DEGREE IN TELECOMMUNICATIONS

More information

GPS based data acquisition system for mobile applications

GPS based data acquisition system for mobile applications GPS based data acquisition system for mobile applications D. Covaciu, I. Preda, Gh. Ciolan Transilvania University of Brasov, Romania e-mail: dinu.covaciu@unitbv.ro, pion@unitbv.ro, cgicu@unitbv.ro Abstract:

More information

Road Reduction Filtering for GPS-GIS Navigation

Road Reduction Filtering for GPS-GIS Navigation Research Article Road Reduction Filtering for GPS-GIS Navigation GEORGE TAYLOR Department of Geomatics University of Newcastle upon Tyne UK DOERTE STEUP Department of Geomatics University of Newcastle

More information

IZT S1000 / IZT S1010 Testing ecall Systems

IZT S1000 / IZT S1010 Testing ecall Systems IZT S1000 / IZT S1010 Testing ecall Systems Application Note Ready for the 2018 ecall standards Preinstalled scenarios for various testing Self-defined scenarios for special tests ecall and Adjacent Band

More information

Sources of Error in Satellite Navigation Positioning

Sources of Error in Satellite Navigation Positioning http://www.transnav.eu the International Journal on Marine Navigation and Safety of Sea Transportation Volume 11 Number 3 September 2017 DOI: 10.12716/1001.11.03.04 Sources of Error in Satellite Navigation

More information

Navigation System for the Blind:

Navigation System for the Blind: Jack M. Loomis Department of Psychology University of California Santa Barbara CA 93106 loomis@psych.ucsb.edu Navigation System for the Blind: Auditory Display Modes and Guidance Reginald G. Golledge Department

More information

[Bhoge* et al., 5.(6): June, 2016] ISSN: IC Value: 3.00 Impact Factor: 4.116

[Bhoge* et al., 5.(6): June, 2016] ISSN: IC Value: 3.00 Impact Factor: 4.116 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY REVIEW ON GPS NAVIGATION SYSTEM FOR BLIND PEOPLE Vidya Bhoge *, S.Y.Chinchulikar * PG Student, E&TC Department, Shreeyash College

More information

An Audio-Haptic Mobile Guide for Non-Visual Navigation and Orientation

An Audio-Haptic Mobile Guide for Non-Visual Navigation and Orientation An Audio-Haptic Mobile Guide for Non-Visual Navigation and Orientation Rassmus-Gröhn, Kirsten; Molina, Miguel; Magnusson, Charlotte; Szymczak, Delphine Published in: Poster Proceedings from 5th International

More information

Homework 10: Patent Liability Analysis

Homework 10: Patent Liability Analysis Homework 10: Patent Liability Analysis Team Code Name: Autonomous Targeting Vehicle (ATV) Group No. 3 Team Member Completing This Homework: Anthony Myers E-mail Address of Team Member: myersar @ purdue.edu

More information

Introduction to NAVSTAR GPS

Introduction to NAVSTAR GPS Introduction to NAVSTAR GPS Charlie Leonard, 1999 (revised 2001, 2002) The History of GPS Feasibility studies begun in 1960 s. Pentagon appropriates funding in 1973. First satellite launched in 1978. System

More information

Audio GPS: spatial audio in a minimal attention interface

Audio GPS: spatial audio in a minimal attention interface Audio GPS: spatial audio in a minimal attention interface SIMON HOLLAND & DAVID R. MORSE Computing Department, The Open University, Walton Hall, Milton Keynes, MK7 6AA, United Kingdom. Email: S.Holland@open.ac.uk,

More information

Test Solutions for Simulating Realistic GNSS Scenarios

Test Solutions for Simulating Realistic GNSS Scenarios Test Solutions for Simulating Realistic GNSS Scenarios Author Markus Irsigler, Rohde & Schwarz GmbH & Co. KG Biography Markus Irsigler received his diploma in Geodesy and Geomatics from the University

More information

Evaluation of Guidance Systems in Public Infrastructures Using Eye Tracking in an Immersive Virtual Environment

Evaluation of Guidance Systems in Public Infrastructures Using Eye Tracking in an Immersive Virtual Environment Evaluation of Guidance Systems in Public Infrastructures Using Eye Tracking in an Immersive Virtual Environment Helmut Schrom-Feiertag 1, Christoph Schinko 2, Volker Settgast 3, and Stefan Seer 1 1 Austrian

More information

Simulation Analysis for Performance Improvements of GNSS-based Positioning in a Road Environment

Simulation Analysis for Performance Improvements of GNSS-based Positioning in a Road Environment Simulation Analysis for Performance Improvements of GNSS-based Positioning in a Road Environment Nam-Hyeok Kim, Chi-Ho Park IT Convergence Division DGIST Daegu, S. Korea {nhkim, chpark}@dgist.ac.kr Soon

More information

GPS positioning using map-matching algorithms, drive restriction information and road network connectivity

GPS positioning using map-matching algorithms, drive restriction information and road network connectivity Extended abstract Submission for GISRUK 2001 GPS positioning using map-matching algorithms, drive restriction information and road network connectivity George Taylor 1, Jamie Uff 2 and Adil Al-Hamadani

More information

New Tools for Network RTK Integrity Monitoring

New Tools for Network RTK Integrity Monitoring New Tools for Network RTK Integrity Monitoring Xiaoming Chen, Herbert Landau, Ulrich Vollath Trimble Terrasat GmbH BIOGRAPHY Dr. Xiaoming Chen is a software engineer at Trimble Terrasat. He holds a PhD

More information

Drive-by DTM. and Navigation at our university in cooperation

Drive-by DTM. and Navigation at our university in cooperation Drive-by DTM GPS and GSM/GPRS Power Cost-Effective Terrain Modeling A data teletransmission system for quick and efficient creation of digital terrain models (DTMs) forms the backbone of experimental work

More information

Trustworthy Positioning for Next Generation Intelligent Transport Systems Ahmed El-Mowafy

Trustworthy Positioning for Next Generation Intelligent Transport Systems Ahmed El-Mowafy Trustworthy Positioning for Next Generation Intelligent Transport Systems Ahmed El-Mowafy Contents Background on ITS and C-ITS Requirements Challenges RAIM Test and Results Utilisation Workshop, Sydney,

More information

Development of Ultimate Seamless Positioning System for Global Cellular Phone Platform based on QZSS IMES

Development of Ultimate Seamless Positioning System for Global Cellular Phone Platform based on QZSS IMES Development of Ultimate Seamless Positioning System for Global Cellular Phone Platform based on QZSS IMES Dinesh Manandhar, Kazuki Okano, Makoto Ishii, Masahiro Asako, Hideyuki Torimoto GNSS Technologies

More information

Analysis of Compass Sensor Accuracy on Several Mobile Devices in an Industrial Environment

Analysis of Compass Sensor Accuracy on Several Mobile Devices in an Industrial Environment Analysis of Compass Sensor Accuracy on Several Mobile Devices in an Industrial Environment Michael Hölzl, Roland Neumeier and Gerald Ostermayer University of Applied Sciences Hagenberg michael.hoelzl@fh-hagenberg.at,

More information

TEST YOUR SATELLITE NAVIGATION PERFORMANCE ON YOUR ANDROID DEVICE GLOSSARY

TEST YOUR SATELLITE NAVIGATION PERFORMANCE ON YOUR ANDROID DEVICE GLOSSARY TEST YOUR SATELLITE NAVIGATION PERFORMANCE ON YOUR ANDROID DEVICE GLOSSARY THE GLOSSARY This glossary aims to clarify and explain the acronyms used in GNSS and satellite navigation performance testing

More information

Experiences with Fugro's Real Time GPS/GLONASS Orbit/Clock Decimeter Level Precise Positioning System

Experiences with Fugro's Real Time GPS/GLONASS Orbit/Clock Decimeter Level Precise Positioning System Return to Session Directory DYNAMIC POSITIONING CONFERENCE October 13-14, 2009 Sensors Experiences with Fugro's Real Time GPS/GLONASS Orbit/Clock Decimeter Level Precise Positioning System Ole Ørpen and

More information

A Positon and Orientation Post-Processing Software Package for Land Applications - New Technology

A Positon and Orientation Post-Processing Software Package for Land Applications - New Technology A Positon and Orientation Post-Processing Software Package for Land Applications - New Technology Tatyana Bourke, Applanix Corporation Abstract This paper describes a post-processing software package that

More information

SIAPAS: A Case Study on the Use of a GPS-Based Parking System

SIAPAS: A Case Study on the Use of a GPS-Based Parking System SIAPAS: A Case Study on the Use of a GPS-Based Parking System Gonzalo Mendez 1, Pilar Herrero 2, and Ramon Valladares 2 1 Facultad de Informatica - Universidad Complutense de Madrid C/ Prof. Jose Garcia

More information

Cooperative localization (part I) Jouni Rantakokko

Cooperative localization (part I) Jouni Rantakokko Cooperative localization (part I) Jouni Rantakokko Cooperative applications / approaches Wireless sensor networks Robotics Pedestrian localization First responders Localization sensors - Small, low-cost

More information

Multi-Agent Robotics with GPS Navigation

Multi-Agent Robotics with GPS Navigation Jay Joshi Edison High School 50 Boulevard of the Eagles Edison, NJ 08817 Multi-Agent Robotics with GPS Navigation Abstract The GPS Navigation project is a multi-agent robotics project. A GPS Navigation

More information

SPAN Technology System Characteristics and Performance

SPAN Technology System Characteristics and Performance SPAN Technology System Characteristics and Performance NovAtel Inc. ABSTRACT The addition of inertial technology to a GPS system provides multiple benefits, including the availability of attitude output

More information

Digital Land Surveying and Mapping (DLS and M) Dr. Jayanta Kumar Ghosh Department of Civil Engineering Indian Institute of Technology, Roorkee

Digital Land Surveying and Mapping (DLS and M) Dr. Jayanta Kumar Ghosh Department of Civil Engineering Indian Institute of Technology, Roorkee Digital Land Surveying and Mapping (DLS and M) Dr. Jayanta Kumar Ghosh Department of Civil Engineering Indian Institute of Technology, Roorkee Lecture 11 Errors in GPS Observables Welcome students. Lesson

More information

Automatically determine route and mode of tranport using a gps enabled phone

Automatically determine route and mode of tranport using a gps enabled phone University of South Florida Scholar Commons Graduate Theses and Dissertations Graduate School 2005 Automatically determine route and mode of tranport using a gps enabled phone Himanshu Gilani University

More information

REAL-TIME ESTIMATION OF IONOSPHERIC DELAY USING DUAL FREQUENCY GPS OBSERVATIONS

REAL-TIME ESTIMATION OF IONOSPHERIC DELAY USING DUAL FREQUENCY GPS OBSERVATIONS European Scientific Journal May 03 edition vol.9, o.5 ISS: 857 788 (Print e - ISS 857-743 REAL-TIME ESTIMATIO OF IOOSPHERIC DELAY USIG DUAL FREQUECY GPS OBSERVATIOS Dhiraj Sunehra, M.Tech., PhD Jawaharlal

More information

GPS: The Basics. Darrell R. Dean, Jr. Civil and Environmental Engineering West Virginia University. Expected Learning Outcomes for GPS

GPS: The Basics. Darrell R. Dean, Jr. Civil and Environmental Engineering West Virginia University. Expected Learning Outcomes for GPS GPS: The Basics Darrell R. Dean, Jr. Civil and Environmental Engineering West Virginia University Expected Learning Outcomes for GPS Explain the acronym GPS Name 3 important tdt dates in history of GPS

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

GPS Engine Board USB Interface

GPS Engine Board USB Interface GPS Engine Board USB Interface Specification DGM-U2525B Page 1 of 14 1. Introduction 1.1. Overview The DGM-U2525B is a high sensitivity ultra low power consumption cost efficient, compact size GPS engine

More information

Understanding GPS: Principles and Applications Second Edition

Understanding GPS: Principles and Applications Second Edition Understanding GPS: Principles and Applications Second Edition Elliott Kaplan and Christopher Hegarty ISBN 1-58053-894-0 Approx. 680 pages Navtech Part #1024 This thoroughly updated second edition of an

More information

SMART ELECTRONIC GADGET FOR VISUALLY IMPAIRED PEOPLE

SMART ELECTRONIC GADGET FOR VISUALLY IMPAIRED PEOPLE ISSN: 0976-2876 (Print) ISSN: 2250-0138 (Online) SMART ELECTRONIC GADGET FOR VISUALLY IMPAIRED PEOPLE L. SAROJINI a1, I. ANBURAJ b, R. ARAVIND c, M. KARTHIKEYAN d AND K. GAYATHRI e a Assistant professor,

More information

Robust Positioning for Urban Traffic

Robust Positioning for Urban Traffic Robust Positioning for Urban Traffic Motivations and Activity plan for the WG 4.1.4 Dr. Laura Ruotsalainen Research Manager, Department of Navigation and positioning Finnish Geospatial Research Institute

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

GMS6-CR6(SIRF-IV) Fast Acquisition Enhanced Sensitivity 48 Channel GPS Sensor Module

GMS6-CR6(SIRF-IV) Fast Acquisition Enhanced Sensitivity 48 Channel GPS Sensor Module GMS6-CR6(SIRF-IV) Fast Acquisition Enhanced Sensitivity 48 Channel GPS Sensor Module The GMS6-CR6 is a compact all-in-one GPS module solution intended for a broad range of Original Equipment Manufacturer

More information

CiberRato 2019 Rules and Technical Specifications

CiberRato 2019 Rules and Technical Specifications Departamento de Electrónica, Telecomunicações e Informática Universidade de Aveiro CiberRato 2019 Rules and Technical Specifications (March, 2018) 2 CONTENTS Contents 3 1 Introduction This document describes

More information

Innovative mobility data collection tools for sustainable planning

Innovative mobility data collection tools for sustainable planning Innovative mobility data collection tools for sustainable planning Dr. Maria Morfoulaki Center for Research and Technology Hellas (CERTH)/ Hellenic Institute of Transport (HIT) marmor@certh.gr Data requested

More information

Performance Analysis of a 1-bit Feedback Beamforming Algorithm

Performance Analysis of a 1-bit Feedback Beamforming Algorithm Performance Analysis of a 1-bit Feedback Beamforming Algorithm Sherman Ng Mark Johnson Electrical Engineering and Computer Sciences University of California at Berkeley Technical Report No. UCB/EECS-2009-161

More information

Global Correction Services for GNSS

Global Correction Services for GNSS Global Correction Services for GNSS Hemisphere GNSS Whitepaper September 5, 2015 Overview Since the early days of GPS, new industries emerged while existing industries evolved to use position data in real-time.

More information

Introduction to GNSS Base-Station

Introduction to GNSS Base-Station Introduction to GNSS Base-Station Dinesh Manandhar Center for Spatial Information Science The University of Tokyo Contact Information: dinesh@iis.u-tokyo.ac.jp Slide : 1 Introduction GPS or GNSS observation

More information

al T TD ) ime D Faamily Products The RTD Family of products offers a full suite of highprecision GPS sensor positioning and navigation solutions for:

al T TD ) ime D Faamily Products The RTD Family of products offers a full suite of highprecision GPS sensor positioning and navigation solutions for: Reeal ynnamics al T amics (R TD ) ime D RTD) Time Dy Faamily mily ooff P roducts Products The RTD Family of products offers a full suite of highprecision GPS sensor positioning and navigation solutions

More information

INDOOR HEADING MEASUREMENT SYSTEM

INDOOR HEADING MEASUREMENT SYSTEM INDOOR HEADING MEASUREMENT SYSTEM Marius Malcius Department of Research and Development AB Prospero polis, Lithuania m.malcius@orodur.lt Darius Munčys Department of Research and Development AB Prospero

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

Performance Analysis of GPS Integer Ambiguity Resolution Using External Aiding Information

Performance Analysis of GPS Integer Ambiguity Resolution Using External Aiding Information Journal of Global Positioning Systems (2005) Vol. 4, No. 1-2: 201-206 Performance Analysis of GPS Integer Ambiguity Resolution Using External Aiding Information Sebum Chun, Chulbum Kwon, Eunsung Lee, Young

More information

Assessing & Mitigation of risks on railways operational scenarios

Assessing & Mitigation of risks on railways operational scenarios R H I N O S Railway High Integrity Navigation Overlay System Assessing & Mitigation of risks on railways operational scenarios Rome, June 22 nd 2017 Anja Grosch, Ilaria Martini, Omar Garcia Crespillo (DLR)

More information

Estimation of Absolute Positioning of mobile robot using U-SAT

Estimation of Absolute Positioning of mobile robot using U-SAT Estimation of Absolute Positioning of mobile robot using U-SAT Su Yong Kim 1, SooHong Park 2 1 Graduate student, Department of Mechanical Engineering, Pusan National University, KumJung Ku, Pusan 609-735,

More information

SYSTEM OF IDENTIFICATION AND INFORMATION OF BLIND AND VISUALLY IMPAIRED PERSONS IN THE TRAFFIC NETWORK

SYSTEM OF IDENTIFICATION AND INFORMATION OF BLIND AND VISUALLY IMPAIRED PERSONS IN THE TRAFFIC NETWORK SYSTEM OF IDENTIFICATION AND INFORMATION OF BLIND AND VISUALLY IMPAIRED PERSONS IN THE TRAFFIC NETWORK Dragan Peraković 1 - Marko Periša 2 - Tina Runjić 3 Abstract: The mobility of visually impaired persons

More information

How Many Pixels Do We Need to See Things?

How Many Pixels Do We Need to See Things? How Many Pixels Do We Need to See Things? Yang Cai Human-Computer Interaction Institute, School of Computer Science, Carnegie Mellon University, 5000 Forbes Avenue, Pittsburgh, PA 15213, USA ycai@cmu.edu

More information

Search Strategies of Visually Impaired Persons using a Camera Phone Wayfinding System

Search Strategies of Visually Impaired Persons using a Camera Phone Wayfinding System Search Strategies of Visually Impaired Persons using a Camera Phone Wayfinding System R. Manduchi 1, J. Coughlan 2 and V. Ivanchenko 2 1 University of California, Santa Cruz, CA 2 Smith-Kettlewell Eye

More information

The Global Positioning System

The Global Positioning System The Global Positioning System 5-1 US GPS Facts of Note DoD navigation system First launch on 22 Feb 1978, fully operational in 1994 ~$15 billion (?) invested to date 24 (+/-) Earth-orbiting satellites

More information

Evaluating EGNOS technology in an ITS driving assistance application

Evaluating EGNOS technology in an ITS driving assistance application Evaluating EGNOS technology in an ITS driving assistance application A. Gómez Skarmeta H. Martínez Barberá M. Zamora Izquierdo J. Cánovas Quiñonero L. Tomás Balibrea Dept. of Communications and Information

More information

GPS PERFORMANCE EVALUATION OF THE HUAWEI MATE 9 WITH DIFFERENT ANTENNA CONFIGURATIONS

GPS PERFORMANCE EVALUATION OF THE HUAWEI MATE 9 WITH DIFFERENT ANTENNA CONFIGURATIONS GPS PERFORMANCE EVALUATION OF THE HUAWEI MATE 9 WITH DIFFERENT ANTENNA CONFIGURATIONS AND P10 IN THE FIELD Gérard Lachapelle & Research Team PLAN Group, University of Calgary (http://plan.geomatics.ucalgary.ca)

More information

Location and navigation system for visually impaired

Location and navigation system for visually impaired Česky Paper: # 8/11/2002 ISSN 1213-161X Content Location and navigation system for visually impaired Václav Eksler *), Genevičve Baudoin *)), Martine Villegas *)) Department of Telecommunications Faculty

More information

Galileo as an instrument of unification of the European railway transport

Galileo as an instrument of unification of the European railway transport Railway Infrastructure Administration Galileo as an instrument of unification of the European railway transport by Hynek Mocek SŽDC, TÚDC - Laboratory of Intelligent Systems Pardubice,, Czech Republic

More information

Mobile Positioning in Wireless Mobile Networks

Mobile Positioning in Wireless Mobile Networks Mobile Positioning in Wireless Mobile Networks Peter Brída Department of Telecommunications and Multimedia Faculty of Electrical Engineering University of Žilina SLOVAKIA Outline Why Mobile Positioning?

More information

Lecture 05 Localization & GPS

Lecture 05 Localization & GPS CS 460/560 Introduction to Computational Robotics Fall 2017, Rutgers University Lecture 05 Localization & GPS Instructor: Jingjin Yu Outline Basic localization methods Triangulation Trilateration Global

More information

Carrier Independent Localization Techniques for GSM Terminals

Carrier Independent Localization Techniques for GSM Terminals Carrier Independent Localization Techniques for GSM Terminals V. Loscrí, E. Natalizio and E. Viterbo DEIS University of Calabria - Cosenza, Italy Email: {vloscri,enatalizio,viterbo}@deis.unical.it D. Mauro,

More information

Computer Vision Based Real-Time Stairs And Door Detection For Indoor Navigation Of Visually Impaired People

Computer Vision Based Real-Time Stairs And Door Detection For Indoor Navigation Of Visually Impaired People ISSN (e): 2250 3005 Volume, 08 Issue, 8 August 2018 International Journal of Computational Engineering Research (IJCER) For Indoor Navigation Of Visually Impaired People Shrugal Varde 1, Dr. M. S. Panse

More information

Implementation and Comparison the Dynamic Pathfinding Algorithm and Two Modified A* Pathfinding Algorithms in a Car Racing Game

Implementation and Comparison the Dynamic Pathfinding Algorithm and Two Modified A* Pathfinding Algorithms in a Car Racing Game Implementation and Comparison the Dynamic Pathfinding Algorithm and Two Modified A* Pathfinding Algorithms in a Car Racing Game Jung-Ying Wang and Yong-Bin Lin Abstract For a car racing game, the most

More information

GPS Milestones, cont. GPS Milestones. The Global Positioning Sytem, Part 1 10/10/2017. M. Helper, GEO 327G/386G, UT Austin 1. US GPS Facts of Note

GPS Milestones, cont. GPS Milestones. The Global Positioning Sytem, Part 1 10/10/2017. M. Helper, GEO 327G/386G, UT Austin 1. US GPS Facts of Note The Global Positioning System US GPS Facts of Note DoD navigation system First launch on 22 Feb 1978, fully operational in 1994 ~$15 billion (?) invested to date 24 (+/-) Earth-orbiting satellites (SVs)

More information

A Novel Tracking System for AAL Based on Smartphone Technology. DIEEI University of Catania, Italy

A Novel Tracking System for AAL Based on Smartphone Technology. DIEEI University of Catania, Italy A Novel Tracking System for AAL Based on Smartphone Technology DIEEI University of Catania, Italy Outline AAL research activities at DIEEI The proposed methodology for user tracking The proposed methodology

More information

ProMark 500 White Paper

ProMark 500 White Paper ProMark 500 White Paper How Magellan Optimally Uses GLONASS in the ProMark 500 GNSS Receiver How Magellan Optimally Uses GLONASS in the ProMark 500 GNSS Receiver 1. Background GLONASS brings to the GNSS

More information

GT-720F (Flash version) Fast Acquisition Enhanced Sensitivity 65 Channel GPS Sensor Module

GT-720F (Flash version) Fast Acquisition Enhanced Sensitivity 65 Channel GPS Sensor Module GT-720F (Flash version) Fast Acquisition Enhanced Sensitivity 65 Channel GPS Sensor Module The GT-720F is a compact all-in-one GPS module solution intended for a broad range of Original Equipment Manufacturer

More information

Global Navigation Satellite Systems II

Global Navigation Satellite Systems II Global Navigation Satellite Systems II AERO4701 Space Engineering 3 Week 4 Last Week Examined the problem of satellite coverage and constellation design Looked at the GPS satellite constellation Overview

More information