Hckalmanfilter

HCKalmanFilter is Swift implementation of Kalman filter algorithm intended to solve problem with GPS tracking
Alternatives To Hckalmanfilter
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Hckalmanfilter212
33 years ago5January 26, 201815mitSwift
HCKalmanFilter is Swift implementation of Kalman filter algorithm intended to solve problem with GPS tracking
Kalmanfilter122
2 years ago6mitSwift
Swift implementation of Kalman Filter algorithm
Geogeometry114
15 days ago1February 26, 20147otherKotlin
GeoGeometry is a set of algorithms and functions for manipulating geo hashes and geometric shapes with geo coordinates.
Jdbscan54
3 years ago1February 25, 20204gpl-2.0JavaScript
Javascript DBSCAN – Spatial and temporal (GPS location) data ready!
Map_matching48
a year ago5gpl-3.0Python
Algorithms to find the streets that a vehicle should have traveled to generate a given GPS track
Ada Traits Containers25
6 months ago1otherAda
Generic Ada Library for Algorithms and Containers
Uavsensorfusionalgorithms22
2 months agogpl-3.0MATLAB
This repository contains MATLAB software for the Performance Analsysis of multiple Sensor Fusion Algorithms for the Position Estimation of a non-moving GPS Jammer from a Unmanned Aerial Vehicle Platform
Programmers Algorithm19
a year ago2C++
프로그래머스 C++ Python3 풀이
137 Stopmove15
5 years ago1mitJava
Algorithms to automatically discover stops and moves in GPS trajectories.
Map Match14
5 years ago3Python
Implementation of a map matching algorithm called st-match
Alternatives To Hckalmanfilter
Select To Compare


Alternative Project Comparisons
Readme

CocoaPods Compatible License Platform Swift

logo

HCKalmanFilter is a delightful library for iOS written in Swift. HCKalmanFilter library was created for the implementation of Kalman filter algorithm for the problem of GPS tracking and correction of trajectories obtained based on the measurement of the GPS receiver. The problem occurs in the case of a large oscillation of the coordinates received from the GPS receiver when the accuracy is very small or the GPS signal is very bad. If you have this kind of problem and you need a fluid trajectory of movement without big peaks and deviations, this library is the right choice for you.

screenshot

screenshot

Change Log

1.2.0

  • In this version, we have upgraded the matrix processing functions within our class HCMatrixObject which now use core functions of the Surge Library. It will greatly accelerate the processing of data and lead to faster results being obtained by the algorithm.
  • We fixed small bug because of which it was not possible to build the example project.

1.1.0

  • In this version, we added another new functionality in addition to small bug fixes.

  • At the request of the HCKalmanFilter library user, we decided that in addition to the correction values for latitude and longitude, we should add the correction of the altitude.

Now you can easily get the corrected value for altitude in the following way:

...
let kalmanLocation = hcKalmanFilter.processState(currentLocation: myLocation)
print(kalmanLocation.altitude)
...

Getting Started

  • Download HCKalmanFilter Sample project, open HCKalmanFilter Sample folder via Terminal and run the following command:

    $ pod install
    

    This will install all necessary dependencies for this sample project. After you have installed all necessary dependencies, open HCKalmanFilter Sample.xcworkspace and try out the included iPhone example app.

  • Read the Installation guide, Usage guide, or other articles on the Wiki about Kalman Filter Algorithm

Installing

CocoaPods is a dependency manager for Objective-C and Swift, which automates and simplifies the process of using 3rd-party libraries like HCKalmanFilter in your projects.

Podfile

To integrate HCKalmanFilter into your Xcode project using CocoaPods, specify it in your Podfile:

target 'TargetName' do
  use_frameworks!
  pod 'HCKalmanFilter'
end

Then, run the following command:

$ pod install

With source code

Download repository, then add HCKalmanAlgorithm directory to your project.

Usage

1. First import HCKalmanFilter module

import HCKalmanFilter

2. After installing and importing Kalman Filter library it is necessary to initialize the HCKalmanFilter object before using it.

let hcKalmanFilter = HCKalmanAlgorithm(initialLocation: myInitialLocation)
  • myInitialLocation is the location where the tracking starts.

3. if necessary, it is possible to correct the value of the rValue parameter. rValue parameter is value for Sensor Noise Covariance Matrix. The default value is 29.0, this is the recommended value for the GPS problem, with this value filter provides optimal accuracy. This value can be adjusted depending on the needs, the higher value of rVaule variable will give greater roundness trajectories, and vice versa.

hcKalmanFilter.rValue = 35.0

4. After initialization and eventual correction of rValue parameter, after each next measurement of the coordinates from the GPS receiver, it is necessary to call processState function of the HCKalmanFilter object with current coordinates.

let kalmanLocation = hcKalmanFilter.processState(currentLocation: myCurrentLocation)
  • currentLocation is CLLocation object which represents the actual coordinates received from the GPS receiver.
  • kalmanLocation is CLLocation object which represents coordinates obtained by processing currentLocation with HCKalmanFilter algorithm. You can now use the corrected coordinates for further purposes (for example, to plot the path of the object you are tracking...)

5. In case you need to stop tracking and then restart it, it is necessary to call resetKalman function with new start location, before continuing with the processing of the measured coordinates.

hcKalmanFilter.resetKalman(newStartLocation: myNewStartLocation)
  • myNewStartLocation is CLLocation object which represents the actual coordinates received from the GPS receiver at the moment of restarting the algorithm.

After calling the restart function, you can continue to repeat the steps under the number 4.

Example of usage

var resetKalmanFilter: Bool = false
var hcKalmanFilter: HCKalmanAlgorithm?

...

func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation])
{
    var myLocation: CLLocation = locations.first!
    
    if hcKalmanFilter == nil {
       self.hcKalmanFilter = HCKalmanAlgorithm(initialLocation: myLocation)
    }
    else {
        if let hcKalmanFilter = self.hcKalmanFilter {
            if resetKalmanFilter == true {
                hcKalmanFilter.resetKalman(newStartLocation: myLocation)
                resetKalmanFilter = false
            }
            else {
                let kalmanLocation = hcKalmanFilter.processState(currentLocation: myLocation)
                print(kalmanLocation.coordinate)
            }
        }
    }
}

Credits

HCKalmanFilter is owned and maintained by the Hypercube.

If you find any bug, please report it, and we will try to fix it ASAP.

Popular Gps Projects
Popular Algorithms Projects
Popular Hardware Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Swift
Algorithms
Gps
Kalman Filter
Gps Tracking