12th International Conference on Information Fusion Seattle, WA, USA, July 6-9, ISIF 126

Size: px
Start display at page:

Download "12th International Conference on Information Fusion Seattle, WA, USA, July 6-9, ISIF 126"

Transcription

1 12th International Conference on Information Fusion Seattle, WA, USA, July 6-9, ISIF 126

2 with x s denoting the known satellite position. ρ e shall be used to model the errors occurring as described below. If all the errors in ρ e except the receiver s clock bias are neglected, at least four pseudorange measurements to different satellites are needed at the same time in order to solve the localization problem stated above. While this can often be guaranteed, it is e.g. still a problem in so called urban canyons, where large buildings can occlude a direct line of sight to several satellites. An integration of motion or inertial sensors measuring velocity and yaw rate of the vehicle can aid the localization in several ways. By using motion models [1], a feasible vehicle motion path can be determined by continuously integrating these measurements into the localization estimation. Therewith, localization accuracy can be increased and as the update rate of inertial sensors is usually high, interpolation between two consecutive GPS measurements can be done more precisely. Several methods of combining GPS and Inertial Navigations Systems (INS) are proposed in literature. Loosely coupled systems join a separately determined GPS position with the motion measurements, whereas tightly coupled systems use the raw GPS pseudorange measurements instead. Hence, even if there are less than four satellites visible they can be used to aid the localization. There are a lot of applications where an absolute positioning is not really necessary, but it is rather useful to know where traffic participants are located to each other. Relative Positioning addresses this task, while several approaches exist to solve it. A straightforward one could be that each vehicle determines its own absolute position by GPS and inertial sensors, provides this estimation to other vehicles so they can calculate a difference vector using their own position estimation. Another approach is to introduce ranging sensors which measure the distance between two vehicles by radio ranging technology. Therewith, a direct information link between two participants can be established, improving the localization estimation. Within this paper, a decentralized cooperative localization approach is presented, where several traffic participants provide their pseudorange measurements and ego motion via communication. Each vehicle estimates relative vectors to the other participants which are ego motion compensated using local and remote ego motion estimations. The main advantage arises from the fact that pseudorange measurements from common available satellites are tightly coupled with measurements from inertial sensors using a differential motion model. Additionally, as only raw measurement data are communicated, only low bandwidth is needed. 3 Related Work In [2], relative localization is shown using several receivers mounted on an airplane. Therewith, high accurate GPS carrier phase measurement differencing can be done, e.g. using an analog circuit. Sanguino proposed a centralized localization scheme in [3], where pedestrians are tracked using both GPS time of flight and carrier phase measurements (L 1/2 ). In [4], GPS and additional radio ranging sensors are used to improve the localization accuracy and reliability. A tightly coupled GPS/ INS integration has been proposed by [5], by which drift errors can be reduced significantly. A cooperative lane-level positioning approach using GPS and intervehicle communications is shown in [6]. In [7], the local estimates of all participants are exchanged as the only common information in a decentralized network. The raw measurements are not directly used for the cooperative localization. 4 Algorithm Framework In this chapter, the algorithmic framework used for estimating relative vectors from GPS pseudorange and inertial sensor measurements is shown. The main filter technology used is a Bayesian Particle Filter implementation which is described briefly. Hereafter, the ego motion model is depicted in short and pseudorange double differencing is introduced. 4.1 Filter Technology Particle Filters belong to the class of Bayes filters which recursively estimate the state x k of a certain system from one time step t k 1 to the next t k. While Kalman Filters represent the probability density function (pdf) by parameters (mean and covariance) Particle Filters are based on Sequential Monte Carlo Methods (SMCM) [8], [9] and therefore heavily rely on samples which are also called particles. In contrast to the Unscented Kalman Filter [10] which represents the pdf with a fixed number of deterministically drawn particles, Particle Filters use a large number of randomly generated samples to represent the pdf or density of the system. Due to the use of this non-parametric representation, Particle Filters are very suitable for non-linear and non-gaussian applications, but also for systems with a possibility of ambiguities. A typical particle filter algorithm consists of the following steps: sampling step: generation of new particles where each particle is drawn from an importance function π(x) update importance weights: weights ω (i) calculation of particles resampling step: draw M particles x (i) from set S k according to resampling algorithm First of all a representation of a system and measurement model x k = f(x k 1 ) + u k (4) z k = g(x k ) + v k (5) 127

3 is assumed. Here, x k is the state vector of interest, while z k represents the vector of observations. u k and v k are both independent noise vectors with known distributions. f( ) and g( ) are known (maybe non-linear) functions. p(x k x k 1 ) represent the state transition probability and p(z k x k ) the measurement likelihood function. Each particle consists of a certain state x i and an importance weight ω i. The single particles which represent a concrete instance of the state space are combined to the set { } S k = x (i) k, ω(i) k i = 1,...,N p (6) which represents the pdf p(x k Z k ). Here, X k = {x i, i = 0,...,k} contains all states and Z k = {z i, i = 0,...,k} all measurements up to time step k. For a large number of particles N p the approximation of the pdf p(x k, Z k ) is then given by N p p(x k Z k ) ω (i) k δ(x k X (i) k ) (7) i=1 where the weights are normalized such that i w(i) k = 1. During a typical initialization phase the particles are drawn from an initial distribution p 0 (x) x (i) 0 p 0 (x) (8) while the weights ω (i) 0 are set to 1/N p. For a Bayesian Filter framework using first order Markov assumption the transitional density p(x k x k 1 ) corresponds to the system update equation (4). It is used to predict the particles to the next time step t k. When a new measurement z k arrives, all particles need to be judged based on the likelihood function p(z k x (i) k ): ω (i) k = p(z k x (i) w(i) k )p(x(i) k x(i) k 1 ) k 1 q(x (i) k x(i) k 1, z k) Here, q(x (i) k x(i) k 1, z k) is the proposal distribution where to sample from. The new posterior pdf p(x k Z k ) with incorporated measurement z k is then approximated by: N p i=1 (9) p(x k Z k ) ω (i) k δ(x k x (i) k ) (10) The described approach is problematic since the variance of the weights ω (i) will increase over time which leads to the so called degeneracy phenomenon. In consequence only a few particles will contribute to the approximation of the posteriori pdf while most have an importance weight near zero. To overcome this limitation, the resampling step is necessary. In short, resampling should duplicate particles having a high weight and eliminate particles containing weights near zero. After resampling the weights of all remaining particles are usually set to 1/N p. Typical resampling algorithms are multinomial sampling and systematic sampling [11]. In this paper KLD-sampling [12] is used since it offers quite equal performance and the additional benefit of an adaptive number of particles. KLD-sampling uses the Kullback-Leibler (KL) divergence which is a measure of difference between two probability distributions p and q: K(p, q) = x p(x)log p(x) q(x) (11) In contrast to [12], a slightly different algorithm is used instead. The prediction and resampling are separated into two independent steps. Hence, a constant number of particles is firstly predicted via the motion model, while the subsequent resampling step may adapt the number of particles. 4.2 Pseudorange Double Differences Consider two vehicles a and b each equipped with one GPS receiver measuring the pseudorange to one satellite S. As shown in [2], a pseudorange single difference can be calculated by ρ (s) = ˆρ (s) a ˆρ (s) b = d e (s), (12) where d denotes the difference vector between the vehicles and e S the unit vector pointing from the receivers to the satellite. As the vehicles are supposed to be close to each other compared to the satellite distance, the unit vector for both vehicles can be treated to be equal. Additionally, the height difference between the vehicles is assumed to be zero, which leads to two dimensional difference vectors d = ( x y ). The error ρ e from (2) can be written as ρ e = T c, (13) the time error can be split into T = T s + T r + T ion + T trop + T mp + T v, (14) where T s and T r denote the clock error of the satellite and receiver, T ion the ionospheric and T trop the tropospheric error, T mp errors due to multipath effects and T v other errors. As stated in [13], ionospheric and tropospheric errors between two close receivers are highly correlated. Therefore, by taking the single difference between two pseudorange measurements those errors can be eliminated. A pseudorange double difference (see figure 2) between two receivers a and b and two satellites s 1 and s 2 can be expressed as the difference between two single differences ρ (s1,s2) = ρ (s1) ρ (s2) = d e (s1,s2) (15) 128

4 129

5 satellite error vehicle error RMSE std. deviation in m std. deviation in m in m Table 1: Influence of vehicle and satellite error to RMSE of estimation after T=250 time steps. RMSE [m] difference vector from absolute localization difference vector from relative localization satellite error σ s [m] Figure 4: RMSE of difference vector depending on satellite error σ s (const. vehicle error σ v = 3m) at time step T = 400 for differencing two absolute positions (cross line) and the proposed relative positioning approach (circle line). The likelihood for a measurement z is p( z x a ) N( z,g b,σ). (23) Σ is a diagonal covariance matrix as possible correlations due to ionospheric and tropospheric errors are removed by differencing in (12). 6 Results To evaluate the system presented in this paper, two vehicles are simulated using the CTRV model. Both vehicles are able to get the pseudoranges of four randomly chosen satellites. The components x and y of the difference vectors d b where initialized using a zero mean Gaussian with σ d = 50m, while the heading θ was set to uniform. As the unit vector differences e (s1,ss) are derived from the generally unknown absolute position of the vehicle, they where set using a very rough GPS fix with σ e = 1000m. Simulations have shown that the estimation is not very susceptible on that initial guess. In table 1 the ionospheric and tropospheric error (satellite error) compensation capability of the system is shown. While the upper part does not show a significant influence of the satellite error to the RMSE due to the error compensation by differencing, the lower part shows an increasing error due to increasing vehicle error (e.g. multi path). As another benchmark the presented cooperative approach has been compared to the straightforward method, which differences two absolute localization estimations obtained by tightly coupling GPS and INS [5]. To be comparable with the shown approach, only the expectations of the absolute estimations are used as the amount of data which is needed to communicate is similar to the raw pseudorange data. Figure 6 shows that the error of the system which differences two absolute positions is significantly higher than of the proposed relative positioning approach. An increasing satellite error amplifies this effect. References [1] R. Schubert, E. Richter, and G. Wanielik, Comparison and evaluation of advanced motion models for vehicle tracking, in Proceedings of the 11th International Conference on Information Fusion, June July [Online]. Available: arnumber= &isnumber= [2] F. Graas and M. Braasch, Gps interferometric attitude and heading determination: Initial flight test results, Navigation: Journal of the Institute of Navigation, vol. 38, No. 4, Winter , [3] J. E. Sanguino, Enhanced waw location-based service positioning, in The 11th International Symposium on Wireless Personal Multimedia Communications (WPMC 2008), [4] R. Parker and S. Valaee, Cooperative vehicle position estimation, in Proc. IEEE International Conference on Communications ICC 07, June 2007, pp [5] Z. Syed, P. Aggarwal, Y. Yang, and N. El-Sheimy, Improved vehicle navigation using aiding with tightly coupled integration, in Proc. IEEE Vehicular Technology Conference VTC Spring 2008, May 2008, pp [6] T.-S. Dao, K. Y. K. Leung, C. M. Clark, and J. P. Huissoon, Markov-based lane positioning using intervehicle communication, vol. 8, no. 4, pp , Dec

6 [7] L.-L. Ong, T. Bailey, H. Durrant-Whyte, and B. Upcroft, Decentralised particle filtering for multiple target tracking in wireless sensor networks, in Proc. 11th International Conference on Information Fusion, June July , pp [8] B. Ristic, S. Arulampalam, and N. Gordon, Beyond the Kalman Filter Particle Filters for Tracking Applications. Artech House, [9] S. Thrun, Probabalistic Robotics, [10] S. J. Julier and J. K. Uhlmann, Unscented filtering and nonlinear estimation, Proceedings of the IEEE, vol. 92, no. 3, pp , [Online]. Available: murphyk/papers/ Julier Uhlmann mar04.pdf [11] J. Hol, T. Schön, and F. Gustafsson, On resampling algorithms for particle filters, in Nonlinear Statistical Signal Processing Workshop, Cambridge, United Kingdom, Sep [12] D. Fox, Adapting the sample size in particle filters through kld-sampling, International Journal of Robotics Research, vol. 22, p. 2003, [13] M. Grewal, L. Weill, A. Andrews, and J. Wiley, Global positioning systems, inertial navigation, and integration. Wiley New York, [Online]. Available: id=zm7mub8y35wc&printsec=frontcover&dq= grewal+mohinder+global+positioning [14] R. P. S. S. Blackman, Design and Analysis of Modern Tracking Systems. Artech House,

Artificial Beacons with RGB-D Environment Mapping for Indoor Mobile Robot Localization

Artificial Beacons with RGB-D Environment Mapping for Indoor Mobile Robot Localization Sensors and Materials, Vol. 28, No. 6 (2016) 695 705 MYU Tokyo 695 S & M 1227 Artificial Beacons with RGB-D Environment Mapping for Indoor Mobile Robot Localization Chun-Chi Lai and Kuo-Lan Su * Department

More information

ANNUAL OF NAVIGATION 16/2010

ANNUAL OF NAVIGATION 16/2010 ANNUAL OF NAVIGATION 16/2010 STANISŁAW KONATOWSKI, MARCIN DĄBROWSKI, ANDRZEJ PIENIĘŻNY Military University of Technology VEHICLE POSITIONING SYSTEM BASED ON GPS AND AUTONOMIC SENSORS ABSTRACT In many real

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

Satellite and Inertial Attitude. A presentation by Dan Monroe and Luke Pfister Advised by Drs. In Soo Ahn and Yufeng Lu

Satellite and Inertial Attitude. A presentation by Dan Monroe and Luke Pfister Advised by Drs. In Soo Ahn and Yufeng Lu Satellite and Inertial Attitude and Positioning System A presentation by Dan Monroe and Luke Pfister Advised by Drs. In Soo Ahn and Yufeng Lu Outline Project Introduction Theoretical Background Inertial

More information

Integrated Navigation System

Integrated Navigation System Integrated Navigation System Adhika Lie adhika@aem.umn.edu AEM 5333: Design, Build, Model, Simulate, Test and Fly Small Uninhabited Aerial Vehicles Feb 14, 2013 1 Navigation System Where am I? Position,

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

Integration of GNSS and INS

Integration of GNSS and INS Integration of GNSS and INS Kiril Alexiev 1/39 To limit the drift, an INS is usually aided by other sensors that provide direct measurements of the integrated quantities. Examples of aiding sensors: Aided

More information

Monte Carlo Localization in Dense Multipath Environments Using UWB Ranging

Monte Carlo Localization in Dense Multipath Environments Using UWB Ranging Monte Carlo Localization in Dense Multipath Environments Using UWB Ranging Damien B. Jourdan, John J. Deyst, Jr., Moe Z. Win, Nicholas Roy Massachusetts Institute of Technology Laboratory for Information

More information

As a first approach, the details of how to implement a common nonparametric

As a first approach, the details of how to implement a common nonparametric Chapter 3 3D EKF-SLAM Delayed initialization As a first approach, the details of how to implement a common nonparametric Bayesian filter for the simultaneous localization and mapping (SLAM) problem is

More information

GNSS OBSERVABLES. João F. Galera Monico - UNESP Tuesday 12 Sep

GNSS OBSERVABLES. João F. Galera Monico - UNESP Tuesday 12 Sep GNSS OBSERVABLES João F. Galera Monico - UNESP Tuesday Sep Basic references Basic GNSS Observation Equations Pseudorange Carrier Phase Doppler SNR Signal to Noise Ratio Pseudorange Observation Equation

More information

On the GNSS integer ambiguity success rate

On the GNSS integer ambiguity success rate On the GNSS integer ambiguity success rate P.J.G. Teunissen Mathematical Geodesy and Positioning Faculty of Civil Engineering and Geosciences Introduction Global Navigation Satellite System (GNSS) ambiguity

More information

Resilient and Accurate Autonomous Vehicle Navigation via Signals of Opportunity

Resilient and Accurate Autonomous Vehicle Navigation via Signals of Opportunity Resilient and Accurate Autonomous Vehicle Navigation via Signals of Opportunity Zak M. Kassas Autonomous Systems Perception, Intelligence, and Navigation (ASPIN) Laboratory University of California, Riverside

More information

Cubature Kalman Filtering: Theory & Applications

Cubature Kalman Filtering: Theory & Applications Cubature Kalman Filtering: Theory & Applications I. (Haran) Arasaratnam Advisor: Professor Simon Haykin Cognitive Systems Laboratory McMaster University April 6, 2009 Haran (McMaster) Cubature Filtering

More information

Extended Kalman Filtering

Extended Kalman Filtering Extended Kalman Filtering Andre Cornman, Darren Mei Stanford EE 267, Virtual Reality, Course Report, Instructors: Gordon Wetzstein and Robert Konrad Abstract When working with virtual reality, one of the

More information

Preliminary Results in Range Only Localization and Mapping

Preliminary Results in Range Only Localization and Mapping Preliminary Results in Range Only Localization and Mapping George Kantor Sanjiv Singh The Robotics Institute, Carnegie Mellon University Pittsburgh, PA 217, e-mail {kantor,ssingh}@ri.cmu.edu Abstract This

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

Vector tracking loops are a type

Vector tracking loops are a type GNSS Solutions: What are vector tracking loops, and what are their benefits and drawbacks? GNSS Solutions is a regular column featuring questions and answers about technical aspects of GNSS. Readers are

More information

Sensor Data Fusion Using Kalman Filter

Sensor Data Fusion Using Kalman Filter Sensor Data Fusion Using Kalman Filter J.Z. Sasiade and P. Hartana Department of Mechanical & Aerospace Engineering arleton University 115 olonel By Drive Ottawa, Ontario, K1S 5B6, anada e-mail: jsas@ccs.carleton.ca

More information

Intelligent Vehicle Localization Using GPS, Compass, and Machine Vision

Intelligent Vehicle Localization Using GPS, Compass, and Machine Vision The 2009 IEEE/RSJ International Conference on Intelligent Robots and Systems October 11-15, 2009 St. Louis, USA Intelligent Vehicle Localization Using GPS, Compass, and Machine Vision Somphop Limsoonthrakul,

More information

Position Tracking in Urban Environments using Linear Constraints and Bias Pseudo Measurements

Position Tracking in Urban Environments using Linear Constraints and Bias Pseudo Measurements Position Tracking in Urban Environments using Linear Constraints and Bias Pseudo Measurements Julia Niewiejska, Felix Govaers, Nils Aschenbruck University of Bonn -Institute of Computer Science 4 Roemerstr.

More information

COOPERATIVE POSITIONING TECHNIQUES AND ALGORITHMS FOR LAND MOBILE APPLICATIONS

COOPERATIVE POSITIONING TECHNIQUES AND ALGORITHMS FOR LAND MOBILE APPLICATIONS COOPERATIVE POSITIONING TECHNIQUES AND ALGORITHMS FOR LAND MOBILE APPLICATIONS Azmir Hasnur Rabiain 1, Allison Kealy 2, Guenther Retscher 3, Nima Alam 4, Andrew Dempster 5, Dorota Brzezinska 6, Charles

More information

Localization in internets of mobile agents: A linear approach

Localization in internets of mobile agents: A linear approach Localization in internets of mobile agents: A linear approach Sam Safavi, Student Member, IEEE, Usman A. Khan, Senior Member, IEEE, Soummya Kar, Member, IEEE, and José M. F. Moura, Fellow, IEEE arxiv:1802.04345v1

More information

Multi-Robot Cooperative Localization: A Study of Trade-offs Between Efficiency and Accuracy

Multi-Robot Cooperative Localization: A Study of Trade-offs Between Efficiency and Accuracy Multi-Robot Cooperative Localization: A Study of Trade-offs Between Efficiency and Accuracy Ioannis M. Rekleitis 1, Gregory Dudek 1, Evangelos E. Milios 2 1 Centre for Intelligent Machines, McGill University,

More information

Dynamic path-loss estimation using a particle filter

Dynamic path-loss estimation using a particle filter ISSN (Online): 1694-0784 ISSN (Print): 1694-0814 1 Dynamic path-loss estimation using a particle filter Javier Rodas 1 and Carlos J. Escudero 2 1 Department of Electronics and Systems, University of A

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

Guochang Xu GPS. Theory, Algorithms and Applications. Second Edition. With 59 Figures. Sprin ger

Guochang Xu GPS. Theory, Algorithms and Applications. Second Edition. With 59 Figures. Sprin ger Guochang Xu GPS Theory, Algorithms and Applications Second Edition With 59 Figures Sprin ger Contents 1 Introduction 1 1.1 AKeyNoteofGPS 2 1.2 A Brief Message About GLONASS 3 1.3 Basic Information of Galileo

More information

Improved GPS Carrier Phase Tracking in Difficult Environments Using Vector Tracking Approach

Improved GPS Carrier Phase Tracking in Difficult Environments Using Vector Tracking Approach Improved GPS Carrier Phase Tracking in Difficult Environments Using Vector Tracking Approach Scott M. Martin David M. Bevly Auburn University GPS and Vehicle Dynamics Laboratory Presentation Overview Introduction

More information

Design and Implementation of Inertial Navigation System

Design and Implementation of Inertial Navigation System Design and Implementation of Inertial Navigation System Ms. Pooja M Asangi PG Student, Digital Communicatiom Department of Telecommunication CMRIT College Bangalore, India Mrs. Sujatha S Associate Professor

More information

Carrier Phase GPS Augmentation Using Laser Scanners and Using Low Earth Orbiting Satellites

Carrier Phase GPS Augmentation Using Laser Scanners and Using Low Earth Orbiting Satellites Carrier Phase GPS Augmentation Using Laser Scanners and Using Low Earth Orbiting Satellites Colloquium on Satellite Navigation at TU München Mathieu Joerger December 15 th 2009 1 Navigation using Carrier

More information

Low-Cost Localization of Mobile Robots Through Probabilistic Sensor Fusion

Low-Cost Localization of Mobile Robots Through Probabilistic Sensor Fusion Low-Cost Localization of Mobile Robots Through Probabilistic Sensor Fusion Brian Chung December, Abstract Efforts to achieve mobile robotic localization have relied on probabilistic techniques such as

More information

GPS and Recent Alternatives for Localisation. Dr. Thierry Peynot Australian Centre for Field Robotics The University of Sydney

GPS and Recent Alternatives for Localisation. Dr. Thierry Peynot Australian Centre for Field Robotics The University of Sydney GPS and Recent Alternatives for Localisation Dr. Thierry Peynot Australian Centre for Field Robotics The University of Sydney Global Positioning System (GPS) All-weather and continuous signal system designed

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

Outlier-Robust Estimation of GPS Satellite Clock Offsets

Outlier-Robust Estimation of GPS Satellite Clock Offsets Outlier-Robust Estimation of GPS Satellite Clock Offsets Simo Martikainen, Robert Piche and Simo Ali-Löytty Tampere University of Technology. Tampere, Finland Email: simo.martikainen@tut.fi Abstract A

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

Accurate Positioning for Vehicular Safety Applications the SAFESPOT Approach

Accurate Positioning for Vehicular Safety Applications the SAFESPOT Approach Accurate Positioning for Vehicular Safety Applications the SAFESPOT Approach Robin Schubert, Marius Schlingelhof, Heiko Cramer and Gerd Wanielik Professorship of Communications Engineering Chemnitz University

More information

,6~~~~~~~~~~~~~~Cprg IE

,6~~~~~~~~~~~~~~Cprg IE Cyan Magenilta 3Black / l~~~proceedings of\ 4hIEEE Internatilonal Sympos'ium on W'ireless Communilcatilon Systems 2007 16-19 October 2007. Trondheim, Norway Editors: Matthias P6tzold, Yuming Jiang andyan

More information

Table of Contents. Frequently Used Abbreviation... xvii

Table of Contents. Frequently Used Abbreviation... xvii GPS Satellite Surveying, 2 nd Edition Alfred Leick Department of Surveying Engineering, University of Maine John Wiley & Sons, Inc. 1995 (Navtech order #1028) Table of Contents Preface... xiii Frequently

More information

Signals, and Receivers

Signals, and Receivers ENGINEERING SATELLITE-BASED NAVIGATION AND TIMING Global Navigation Satellite Systems, Signals, and Receivers John W. Betz IEEE IEEE PRESS Wiley CONTENTS Preface Acknowledgments Useful Constants List of

More information

Integer Ambiguity Resolution for Precise Point Positioning Patrick Henkel

Integer Ambiguity Resolution for Precise Point Positioning Patrick Henkel Integer Ambiguity Resolution for Precise Point Positioning Patrick Henkel Overview Introduction Sequential Best-Integer Equivariant Estimation Multi-frequency code carrier linear combinations Galileo:

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

Decentralised SLAM with Low-Bandwidth Communication for Teams of Vehicles

Decentralised SLAM with Low-Bandwidth Communication for Teams of Vehicles Decentralised SLAM with Low-Bandwidth Communication for Teams of Vehicles Eric Nettleton a, Sebastian Thrun b, Hugh Durrant-Whyte a and Salah Sukkarieh a a Australian Centre for Field Robotics, University

More information

EE 570: Location and Navigation

EE 570: Location and Navigation EE 570: Location and Navigation INS/GPS Integration Aly El-Osery 1 Stephen Bruder 2 1 Electrical Engineering Department, New Mexico Tech Socorro, New Mexico, USA 2 Electrical and Computer Engineering Department,

More information

2016 IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any current or future media,

2016 IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any current or future media, 216 IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any current or future media, including reprinting/republishing this material for advertising

More information

Measurement Level Integration of Multiple Low-Cost GPS Receivers for UAVs

Measurement Level Integration of Multiple Low-Cost GPS Receivers for UAVs Measurement Level Integration of Multiple Low-Cost GPS Receivers for UAVs Akshay Shetty and Grace Xingxin Gao University of Illinois at Urbana-Champaign BIOGRAPHY Akshay Shetty is a graduate student in

More information

Design of Accurate Navigation System by Integrating INS and GPS using Extended Kalman Filter

Design of Accurate Navigation System by Integrating INS and GPS using Extended Kalman Filter Design of Accurate Navigation System by Integrating INS and GPS using Extended Kalman Filter Santhosh Kumar S. A 1, 1 M.Tech student, Digital Electronics and Communication Systems, PES institute of technology,

More information

Tracking Algorithms for Multipath-Aided Indoor Localization

Tracking Algorithms for Multipath-Aided Indoor Localization Tracking Algorithms for Multipath-Aided Indoor Localization Paul Meissner and Klaus Witrisal Graz University of Technology, Austria th UWB Forum on Sensing and Communication, May 5, Meissner, Witrisal

More information

Passive Emitter Geolocation using Agent-based Data Fusion of AOA, TDOA and FDOA Measurements

Passive Emitter Geolocation using Agent-based Data Fusion of AOA, TDOA and FDOA Measurements Passive Emitter Geolocation using Agent-based Data Fusion of AOA, TDOA and FDOA Measurements Alex Mikhalev and Richard Ormondroyd Department of Aerospace Power and Sensors Cranfield University The Defence

More information

Level I Signal Modeling and Adaptive Spectral Analysis

Level I Signal Modeling and Adaptive Spectral Analysis Level I Signal Modeling and Adaptive Spectral Analysis 1 Learning Objectives Students will learn about autoregressive signal modeling as a means to represent a stochastic signal. This differs from using

More information

A Comparison of Particle Swarm Optimization and Gradient Descent in Training Wavelet Neural Network to Predict DGPS Corrections

A Comparison of Particle Swarm Optimization and Gradient Descent in Training Wavelet Neural Network to Predict DGPS Corrections Proceedings of the World Congress on Engineering and Computer Science 00 Vol I WCECS 00, October 0-, 00, San Francisco, USA A Comparison of Particle Swarm Optimization and Gradient Descent in Training

More information

High Precision 6DOF Vehicle Navigation in Urban Environments using a Low-cost Single-frequency GPS Receiver

High Precision 6DOF Vehicle Navigation in Urban Environments using a Low-cost Single-frequency GPS Receiver High Precision 6DOF Vehicle Navigation in Urban Environments using a Low-cost Single-frequency GPS Receiver Sheng Zhao Yiming Chen Jay A. Farrell Abstract Many advanced driver assistance systems (ADAS)

More information

REAL-TIME GPS ATTITUDE DETERMINATION SYSTEM BASED ON EPOCH-BY-EPOCH TECHNOLOGY

REAL-TIME GPS ATTITUDE DETERMINATION SYSTEM BASED ON EPOCH-BY-EPOCH TECHNOLOGY REAL-TIME GPS ATTITUDE DETERMINATION SYSTEM BASED ON EPOCH-BY-EPOCH TECHNOLOGY Dr. Yehuda Bock 1, Thomas J. Macdonald 2, John H. Merts 3, William H. Spires III 3, Dr. Lydia Bock 1, Dr. Jeffrey A. Fayman

More information

UNIT 1 - introduction to GPS

UNIT 1 - introduction to GPS UNIT 1 - introduction to GPS 1. GPS SIGNAL Each GPS satellite transmit two signal for positioning purposes: L1 signal (carrier frequency of 1,575.42 MHz). Modulated onto the L1 carrier are two pseudorandom

More information

GPS data correction using encoders and INS sensors

GPS data correction using encoders and INS sensors GPS data correction using encoders and INS sensors Sid Ahmed Berrabah Mechanical Department, Royal Military School, Belgium, Avenue de la Renaissance 30, 1000 Brussels, Belgium sidahmed.berrabah@rma.ac.be

More information

Dynamic Model-Based Filtering for Mobile Terminal Location Estimation

Dynamic Model-Based Filtering for Mobile Terminal Location Estimation 1012 IEEE TRANSACTIONS ON VEHICULAR TECHNOLOGY, VOL. 52, NO. 4, JULY 2003 Dynamic Model-Based Filtering for Mobile Terminal Location Estimation Michael McGuire, Member, IEEE, and Konstantinos N. Plataniotis,

More information

Tracking of UWB Multipath Components Using Probability Hypothesis Density Filters

Tracking of UWB Multipath Components Using Probability Hypothesis Density Filters Tracking of UWB Multipath Components Using Probability Hypothesis Density Filters Markus Froehle, Paul Meissner and Klaus Witrisal Graz University of Technology, Graz, Austria. Email: {froehle, paul.meissner,

More information

Cooperative Indoor Positioning by Exchange of Bluetooth Signals and State Estimates Between Users

Cooperative Indoor Positioning by Exchange of Bluetooth Signals and State Estimates Between Users Cooperative Indoor Positioning by Exchange of Bluetooth Signals and State Estimates Between Users Karlsson, Martin; Karlsson, Fredrik Published in: 216 European Control conference DOI: 1.119/ECC.216.781492

More information

This is an author-deposited version published in: Eprints ID: 11765

This is an author-deposited version published in:  Eprints ID: 11765 Open Archive Toulouse Archive Ouverte (OATAO) OATAO is an open access repository that collects the work of Toulouse researchers and makes it freely available over the web where possible. This is an author-deposited

More information

Hybrid Positioning through Extended Kalman Filter with Inertial Data Fusion

Hybrid Positioning through Extended Kalman Filter with Inertial Data Fusion Hybrid Positioning through Extended Kalman Filter with Inertial Data Fusion Rafiullah Khan, Francesco Sottile, and Maurizio A. Spirito Abstract In wireless sensor networks (WSNs), hybrid algorithms are

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

SYSTEMATIC EFFECTS IN GPS AND WAAS TIME TRANSFERS

SYSTEMATIC EFFECTS IN GPS AND WAAS TIME TRANSFERS SYSTEMATIC EFFECTS IN GPS AND WAAS TIME TRANSFERS Bill Klepczynski Innovative Solutions International Abstract Several systematic effects that can influence SBAS and GPS time transfers are discussed. These

More information

COS Lecture 7 Autonomous Robot Navigation

COS Lecture 7 Autonomous Robot Navigation COS 495 - Lecture 7 Autonomous Robot Navigation Instructor: Chris Clark Semester: Fall 2011 1 Figures courtesy of Siegwart & Nourbakhsh Control Structure Prior Knowledge Operator Commands Localization

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

Amplitude and Phase Distortions in MIMO and Diversity Systems

Amplitude and Phase Distortions in MIMO and Diversity Systems Amplitude and Phase Distortions in MIMO and Diversity Systems Christiane Kuhnert, Gerd Saala, Christian Waldschmidt, Werner Wiesbeck Institut für Höchstfrequenztechnik und Elektronik (IHE) Universität

More information

A COST-EFFECTIVE POSITIONING SOLUTION FOR ASPHALT ROLLERS BASED ON LOW-COST DGPS RECEIVERS

A COST-EFFECTIVE POSITIONING SOLUTION FOR ASPHALT ROLLERS BASED ON LOW-COST DGPS RECEIVERS A COST-EFFECTIVE POSITIONING SOLUTION FOR ASPHALT ROLLERS BASED ON LOW-COST DGPS RECEIVERS by Jaroslaw Jurasz 1, Karl Ludwig Kley 1 ABSTRACT: As of today, the DGPS-based Computer Integrated Road Construction

More information

A Hybrid TDOA/RSSD Geolocation System using the Unscented Kalman Filter

A Hybrid TDOA/RSSD Geolocation System using the Unscented Kalman Filter A Hybrid TDOA/RSSD Geolocation System using the Unscented Kalman Filter Noha El Gemayel, Holger Jäkel and Friedrich K. Jondral Communications Engineering Lab, Karlsruhe Institute of Technology (KIT, Germany

More information

Analysis and Improvements of Linear Multi-user user MIMO Precoding Techniques

Analysis and Improvements of Linear Multi-user user MIMO Precoding Techniques 1 Analysis and Improvements of Linear Multi-user user MIMO Precoding Techniques Bin Song and Martin Haardt Outline 2 Multi-user user MIMO System (main topic in phase I and phase II) critical problem Downlink

More information

Applications & Theory

Applications & Theory Applications & Theory Azadeh Kushki azadeh.kushki@ieee.org Professor K N Plataniotis Professor K.N. Plataniotis Professor A.N. Venetsanopoulos Presentation Outline 2 Part I: The case for WLAN positioning

More information

Neural network based data fusion for vehicle positioning in

Neural network based data fusion for vehicle positioning in 04ANNUAL-345 Neural network based data fusion for vehicle positioning in land navigation system Mathieu St-Pierre Department of Electrical and Computer Engineering Université de Sherbrooke Sherbrooke (Québec)

More information

4D-Particle filter localization for a simulated UAV

4D-Particle filter localization for a simulated UAV 4D-Particle filter localization for a simulated UAV Anna Chiara Bellini annachiara.bellini@gmail.com Abstract. Particle filters are a mathematical method that can be used to build a belief about the location

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

An Efficient Joint Timing and Frequency Offset Estimation for OFDM Systems

An Efficient Joint Timing and Frequency Offset Estimation for OFDM Systems An Efficient Joint Timing and Frequency Offset Estimation for OFDM Systems Yang Yang School of Information Science and Engineering Southeast University 210096, Nanjing, P. R. China yangyang.1388@gmail.com

More information

Filtering Impulses in Dynamic Noise in the Presence of Large Measurement Noise

Filtering Impulses in Dynamic Noise in the Presence of Large Measurement Noise Clemson University TigerPrints All Dissertations Dissertations 12-215 Filtering Impulses in Dynamic Noise in the Presence of Large Measurement Noise Jungphil Kwon Clemson University Follow this and additional

More information

arxiv: v1 [cs.sd] 4 Dec 2018

arxiv: v1 [cs.sd] 4 Dec 2018 LOCALIZATION AND TRACKING OF AN ACOUSTIC SOURCE USING A DIAGONAL UNLOADING BEAMFORMING AND A KALMAN FILTER Daniele Salvati, Carlo Drioli, Gian Luca Foresti Department of Mathematics, Computer Science and

More information

THOMAS PANY SOFTWARE RECEIVERS

THOMAS PANY SOFTWARE RECEIVERS TECHNOLOGY AND APPLICATIONS SERIES THOMAS PANY SOFTWARE RECEIVERS Contents Preface Acknowledgments xiii xvii Chapter 1 Radio Navigation Signals 1 1.1 Signal Generation 1 1.2 Signal Propagation 2 1.3 Signal

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

TEST RESULTS OF A HIGH GAIN ADVANCED GPS RECEIVER

TEST RESULTS OF A HIGH GAIN ADVANCED GPS RECEIVER TEST RESULTS OF A HIGH GAIN ADVANCED GPS RECEIVER ABSTRACT Dr. Alison Brown, Randy Silva, Gengsheng Zhang,; NAVSYS Corporation. NAVSYS High Gain Advanced GPS Receiver () uses a digital beam-steering antenna

More information

Autonomous Underwater Vehicle Navigation.

Autonomous Underwater Vehicle Navigation. Autonomous Underwater Vehicle Navigation. We are aware that electromagnetic energy cannot propagate appreciable distances in the ocean except at very low frequencies. As a result, GPS-based and other such

More information

Computationally Efficient Unscented Kalman Filtering Techniques for Launch Vehicle Navigation using a Space-borne GPS Receiver

Computationally Efficient Unscented Kalman Filtering Techniques for Launch Vehicle Navigation using a Space-borne GPS Receiver Computationally Efficient Unscented Kalman Filtering Techniques for Launch Vehicle Navigation using a Space-borne GPS Receiver Sanat K. Biswas, ACSER, UNSW Australia Li Qiao, UNSW Australia Andrew G. Dempster,

More information

Reliability Estimation for RTK-GNSS/IMU/Vehicle Speed Sensors in Urban Environment

Reliability Estimation for RTK-GNSS/IMU/Vehicle Speed Sensors in Urban Environment Laboratory of Satellite Navigation Engineering Reliability Estimation for RTK-GNSS/IMU/Vehicle Speed Sensors in Urban Environment Ren Kikuchi, Nobuaki Kubo (TUMSAT) Shigeki Kawai, Ichiro Kato, Nobuyuki

More information

Angle Differential Modulation Scheme for Odd-bit QAM

Angle Differential Modulation Scheme for Odd-bit QAM Angle Differential Modulation Scheme for Odd-bit QAM Syed Safwan Khalid and Shafayat Abrar {safwan khalid,sabrar}@comsats.edu.pk Department of Electrical Engineering, COMSATS Institute of Information Technology,

More information

Adaptive Correction Method for an OCXO and Investigation of Analytical Cumulative Time Error Upperbound

Adaptive Correction Method for an OCXO and Investigation of Analytical Cumulative Time Error Upperbound Adaptive Correction Method for an OCXO and Investigation of Analytical Cumulative Time Error Upperbound Hui Zhou, Thomas Kunz, Howard Schwartz Abstract Traditional oscillators used in timing modules of

More information

INTRODUCTION TO VEHICLE NAVIGATION SYSTEM LECTURE 5.1 SGU 4823 SATELLITE NAVIGATION

INTRODUCTION TO VEHICLE NAVIGATION SYSTEM LECTURE 5.1 SGU 4823 SATELLITE NAVIGATION INTRODUCTION TO VEHICLE NAVIGATION SYSTEM LECTURE 5.1 SGU 4823 SATELLITE NAVIGATION AzmiHassan SGU4823 SatNav 2012 1 Navigation Systems Navigation ( Localisation ) may be defined as the process of determining

More information

ECE 174 Computer Assignment #2 Due Thursday 12/6/2012 GLOBAL POSITIONING SYSTEM (GPS) ALGORITHM

ECE 174 Computer Assignment #2 Due Thursday 12/6/2012 GLOBAL POSITIONING SYSTEM (GPS) ALGORITHM ECE 174 Computer Assignment #2 Due Thursday 12/6/2012 GLOBAL POSITIONING SYSTEM (GPS) ALGORITHM Overview By utilizing measurements of the so-called pseudorange between an object and each of several earth

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

Next Generation Vehicle Positioning Techniques for GPS- Degraded Environments to Support Vehicle Safety and Automation Systems

Next Generation Vehicle Positioning Techniques for GPS- Degraded Environments to Support Vehicle Safety and Automation Systems Next Generation Vehicle Positioning Techniques for GPS- Degraded Environments to Support Vehicle Safety and Automation Systems EXPLORATORY ADVANCED RESEARCH PROGRAM Auburn University SRI (formerly Sarnoff)

More information

Vehicle Localization Enhancement with VANETs

Vehicle Localization Enhancement with VANETs 2014 IEEE Intelligent Vehicles Symposium (IV) June 8-11, 2014. Dearborn, Michigan, USA Vehicle Localization Enhancement with VANETs Ali Ufuk Peker, Tankut Acarman, Çağdaş Yaman, and Erkan Yüksel Abstract

More information

Radio Tomographic Imaging and Tracking of Stationary and Moving People via Kernel Distance

Radio Tomographic Imaging and Tracking of Stationary and Moving People via Kernel Distance Radio Tomographic Imaging and Tracking of Stationary and Moving People via Kernel Distance Yang Zhao, Neal Patwari, Jeff M. Phillips, Suresh Venkatasubramanian April 11, 2013 Outline 1 Introduction Device-Free

More information

Research Article Ubiquitous and Seamless Localization: Fusing GNSS Pseudoranges and WLAN Signal Strengths

Research Article Ubiquitous and Seamless Localization: Fusing GNSS Pseudoranges and WLAN Signal Strengths Hindawi Mobile Information Systems Volume 2017, Article ID 8260746, 16 pages https://doi.org/10.1155/2017/8260746 Research Article Ubiquitous and Seamless Localization: Fusing GNSS Pseudoranges and WLAN

More information

The Benefits of Three Frequencies for the High Accuracy Positioning

The Benefits of Three Frequencies for the High Accuracy Positioning The Benefits of Three Frequencies for the High Accuracy Positioning Nobuaki Kubo (Tokyo University of Marine and Science Technology) Akio Yasuda (Tokyo University of Marine and Science Technology) Isao

More information

5G positioning and hybridization with GNSS observations

5G positioning and hybridization with GNSS observations 5G positioning and hybridization with GNSS observations 1. Introduction Abstract The paradigm of ubiquitous location information has risen a requirement for hybrid positioning methods, as a continuous

More information

Data Fusion with ML-PMHT for Very Low SNR Track Detection in an OTHR

Data Fusion with ML-PMHT for Very Low SNR Track Detection in an OTHR 18th International Conference on Information Fusion Washington, DC - July 6-9, 215 Data Fusion with ML-PMHT for Very Low SNR Track Detection in an OTHR Kevin Romeo, Yaakov Bar-Shalom, and Peter Willett

More information

Some of the proposed GALILEO and modernized GPS frequencies.

Some of the proposed GALILEO and modernized GPS frequencies. On the selection of frequencies for long baseline GALILEO ambiguity resolution P.J.G. Teunissen, P. Joosten, C.D. de Jong Department of Mathematical Geodesy and Positioning, Delft University of Technology,

More information

AWIRELESS sensor network (WSN) employs low-cost

AWIRELESS sensor network (WSN) employs low-cost IEEE TRANSACTIONS ON SIGNAL PROCESSING, VOL. 57, NO. 5, MAY 2009 1987 Tracking in Wireless Sensor Networks Using Particle Filtering: Physical Layer Considerations Onur Ozdemir, Student Member, IEEE, Ruixin

More information

Analysis of the impact of map-matching on the accuracy of propagation models

Analysis of the impact of map-matching on the accuracy of propagation models Adv. Radio Sci., 5, 367 372, 2007 Author(s) 2007. This work is licensed under a Creative Commons License. Advances in Radio Science Analysis of the impact of map-matching on the accuracy of propagation

More information

3D-Map Aided Multipath Mitigation for Urban GNSS Positioning

3D-Map Aided Multipath Mitigation for Urban GNSS Positioning Summer School on GNSS 2014 Student Scholarship Award Workshop August 2, 2014 3D-Map Aided Multipath Mitigation for Urban GNSS Positioning I-Wen Chu National Cheng Kung University, Taiwan. Page 1 Outline

More information

HIGH GAIN ADVANCED GPS RECEIVER

HIGH GAIN ADVANCED GPS RECEIVER ABSTRACT HIGH GAIN ADVANCED GPS RECEIVER NAVSYS High Gain Advanced () uses a digital beam-steering antenna array to enable up to eight GPS satellites to be tracked, each with up to dbi of additional antenna

More information

Localization in Wireless Sensor Networks

Localization in Wireless Sensor Networks Localization in Wireless Sensor Networks Part 2: Localization techniques Department of Informatics University of Oslo Cyber Physical Systems, 11.10.2011 Localization problem in WSN In a localization problem

More information

Fast Multi Fault Detection & Exclusion Approach for GNSS Integrity Monitoring

Fast Multi Fault Detection & Exclusion Approach for GNSS Integrity Monitoring 62820 Fast Multi Fault Detection & Exclusion Approach for GNSS Integrity Monitoring Nourdine Aït Tmazirte, Maan E. El Najjar, Joelle Al Hage, Cherif Smaili and Denis Pomorski Abstract Integrity monitoring

More information

An Information Fusion Method for Vehicle Positioning System

An Information Fusion Method for Vehicle Positioning System An Information Fusion Method for Vehicle Positioning System Yi Yan, Che-Cheng Chang and Wun-Sheng Yao Abstract Vehicle positioning techniques have a broad application in advanced driver assistant system

More information

Vehicle Speed Estimation Using GPS/RISS (Reduced Inertial Sensor System)

Vehicle Speed Estimation Using GPS/RISS (Reduced Inertial Sensor System) ISSC 2013, LYIT Letterkenny, June 20 21 Vehicle Speed Estimation Using GPS/RISS (Reduced Inertial Sensor System) Thomas O Kane and John V. Ringwood Department of Electronic Engineering National University

More information