Skip to content

Library for rust to parse google LocationHistory.json

Notifications You must be signed in to change notification settings

etrombly/location_history

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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);
}

About

Library for rust to parse google LocationHistory.json

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages