Skip to content

Instantly share code, notes, and snippets.

View lixin9311's full-sized avatar
🏠
Working from home

lucas lixin9311

🏠
Working from home
View GitHub Profile
@trevphil
trevphil / KalmanFilter.swift
Created June 3, 2019 13:24
Kalman Filter for CLLocation
import Foundation
import CoreLocation
extension CLLocation {
// Alias for `horizontalAccuracy` (more readable)
var uncertainty: Double {
return horizontalAccuracy
}
}