addNoise method

LocationSample addNoise()

Implementation

LocationSample addNoise() {
  double lat = this.geoLocation.latitude * 1.000001;
  double lon = this.geoLocation.longitude * 1.000001;
  return LocationSample(GeoLocation(lat, lon), this.datetime);
}