location_history

Crates.iolocation_history
lib.rslocation_history
version0.2.2
sourcesrc
created_at2017-09-19 18:37:56.936429
updated_at2020-03-04 19:25:36.779512
descriptionParse Google LocationHistory.json
homepagehttps://github.com/etrombly/location_history.git
repositoryhttps://github.com/etrombly/location_history.git
max_upload_size
id32332
size7,946
Eric Trombly (etrombly)

documentation

README

Use Google location history files in rust

Getting started

extern crate location_history;

use location_history::LocationsExt;

let mut contents = String::new();
File::open(file).unwrap().read_to_string(&mut contents).unwrap();
let locations = location_history.deserialize(&contents).filter_outliers();
for location in locations {
    println!("{:?}", location);
}
Commit count: 38

cargo fmt