5 个版本
0.2.2 | 2020年3月4日 |
---|---|
0.2.1 | 2018年12月6日 |
0.2.0 | 2018年4月27日 |
0.1.1 | 2018年4月25日 |
0.1.0 | 2017年9月19日 |
#46 在 #history
每月 39 次下载
8KB
138 代码行
在 Rust 中使用 Google 位置历史记录文件
入门
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);
}
lib.rs
:
解析 Google 位置历史数据库
依赖项
~1.7–2.8MB
~53K SLoC