Skip to content

Instantly share code, notes, and snippets.

View daniellemccool's full-sized avatar

Danielle McCool daniellemccool

View GitHub Profile
using System;
using Newtonsoft.Json;
using SQLite;
namespace Tabi.DataObjects
{
public class PositionEntry
{
[PrimaryKey, AutoIncrement, JsonIgnore]
public int Id { get; set; }
@daniellemccool
daniellemccool / KalmanFilter.cs
Created September 10, 2018 12:08
KalmanFilter
using System;
using System.Collections.Generic;
using System.Text;
using System.Linq;
using Tabi.DataObjects;
namespace Tabi.Logic
{
public class KalmanLatLong : PositionEntry // Implementation taken from: https://stackoverflow.com/questions/1134579/smooth-gps-data/15657798#15657798
{