-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
125 lines (100 loc) · 4.3 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
using CommandLine;
using Geo.Gps;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace LocationHistoryConvertor
{
public class Options
{
public enum Split
{
None,
Year,
Month
}
[Option('i', "input", Required = true, HelpText = "Set source file")]
public string Source { get; set; }
[Option('o', "output", Required = true, HelpText = "Set output file")]
public string Output { get; set; }
[Option('s', "split", Required = true, HelpText = "Split by")]
public Split SplitBy { get; set; }
}
public class GooglePartialConvert
{
public DateTime Time;
public GoogleLocationData Data;
}
public class GoogleLocationExport
{
public List<GoogleLocationData> locations;
}
public class GoogleLocationData
{
public string timestampMs;
public int latitudeE7;
public int longitudeE7;
public int accuracy;
public int velocity;
public int altitude;
public int verticalAccuracy;
}
class Program
{
public static DateTime UnixTimeStampToDateTime(double unixTimeStamp)
{
// Unix timestamp is seconds past epoch
DateTime dtDateTime = new DateTime(1970, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc);
dtDateTime = dtDateTime.AddMilliseconds(unixTimeStamp).ToLocalTime();
return dtDateTime;
}
private static long GroupYear(DateTime dateTime) => dateTime.Year;
private static long None(DateTime dateTime) => 0;
static void Main(string[] args)
{
Parser.Default.ParseArguments<Options>(args)
.WithParsed(o =>
{
Console.WriteLine($"Reading source {o.Source}");
using StreamReader sw = new StreamReader(o.Source);
using JsonReader reader = new JsonTextReader(sw);
var serializer = new JsonSerializer();
var json = serializer.Deserialize<GoogleLocationExport>(reader);
Func<GooglePartialConvert, string> groupBy = o.SplitBy switch
{
Options.Split.None => (GooglePartialConvert data) => "",
Options.Split.Year => (GooglePartialConvert data) => data.Time.Year.ToString(),
Options.Split.Month => (GooglePartialConvert data) => $"{data.Time.Year}-{data.Time.Month}",
_ => throw new NotImplementedException(),
};
Console.WriteLine($"Parsing source {o.Source}");
var groups = json.locations.Select(x => new GooglePartialConvert
{
Time = DateTimeOffset.FromUnixTimeMilliseconds(long.Parse(x.timestampMs)).DateTime,
Data = x
}).GroupBy(groupBy);
foreach (var group in groups)
{
var track = new Track();
var trackSegment = new TrackSegment();
foreach (var data in group)
{
var location = data.Data;
trackSegment.Waypoints.Add(new Waypoint(location.latitudeE7 / 1e7, location.longitudeE7 / 1e7, location.altitude, data.Time));
}
track.Segments.Add(trackSegment);
var gpsData = new GpsData();
gpsData.Tracks.Add(track);
Console.WriteLine($"Found {trackSegment.Waypoints.Count} waypoints");
var output = Path.Combine(Path.GetDirectoryName(o.Output), $"{Path.GetFileName(o.Output)}_{group.Key}.gpx");
Console.WriteLine($"Writting output {output}");
var gpx11Serializer = new Geo.Gps.Serialization.Gpx11Serializer();
using var writeStream = File.OpenWrite(output);
gpx11Serializer.Serialize(gpsData, writeStream);
}
});
}
}
}