-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathProgram.cs
107 lines (92 loc) · 4.92 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
using StationListBuilder;
using System.Text;
using System.Text.RegularExpressions;
public class Program
{
public static void Main(string[] args)
{
Console.ForegroundColor = ConsoleColor.Cyan;
Console.WriteLine("Origional file maintained by Greg Thompson at https://www.aviationweather.gov/docs/metar/stations.txt\n");
Console.ForegroundColor = ConsoleColor.Gray;
Console.WriteLine(@"Downloading csv file...");
using var client = new HttpClient();
using var response = client.GetAsync(@"https://www.aviationweather.gov/docs/metar/stations.txt").Result;
using var stream = response.Content.ReadAsStreamAsync().Result;
Console.WriteLine($"Stations list updated: {response.Content.Headers.LastModified}\n");
var reader = new StreamReader(stream);
var text = reader.ReadToEnd();
var lines = Regex.Split(text, "\r\n|\r|\n").ToList();
lines = lines.Where(x => !x.StartsWith(@"!")).ToList();
//get all the blank seperator lines
int index = 0;
var sections = new List<int>();
foreach (var line in lines)
{
if (string.IsNullOrEmpty(line) || string.IsNullOrWhiteSpace(line)) { sections.Add(index); }
index++;
}
//remove the blank lines and section headers
int count = 0;
foreach (var section in sections)
{
lines.RemoveAt(section - count);
if (sections.Last().Equals(section)) { break; }//the last line is just a single blank line
lines.RemoveAt(section - count);
lines.RemoveAt(section - count);
count += 3;
}
//parse all the data into a Station struct
//only interested in stations that have an ICAO code
var stations = lines.Select(x => new Station(x));
foreach (var station in stations.Where(x => string.IsNullOrEmpty(x.ICAO)))
{
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine($@"Rejected {station.STATION}, missing ICAO code.");
}
stations = stations.Where(x => !string.IsNullOrEmpty(x.ICAO));
Console.ForegroundColor = ConsoleColor.Gray;
Console.WriteLine(@"Stations parsed, generating C# Dictionary...");
var sb = new StringBuilder();
sb.AppendLine(@"#if !RELEASE");
sb.AppendLine(@"#define INCLUDE//just comment out to use in DEBUG");
sb.AppendLine(@"#endif");
sb.AppendLine(@"namespace OpenWeather");
sb.AppendLine(@"{");
sb.AppendLine(@"public partial class StationDictionary");
sb.AppendLine(@"{");
sb.AppendLine($@"//last updated {response.Content.Headers.LastModified}");
sb.AppendLine($@"//generated from Greg Thompson's file at https://www.aviationweather.gov/docs/metar/stations.txt");
sb.AppendLine($@"//generated by the OpenWeather project https://github.com/rooper149/OpenWeather");
sb.AppendLine(@"[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]");
sb.AppendLine(@"private static readonly System.Collections.Generic.Dictionary<string, StationInfo> _dictionary = new()");
sb.AppendLine(@"{");
sb.AppendLine(@"#if !INCLUDE");
foreach(var station in stations.DistinctBy(x => x.ICAO))//we don't want duplicates which seem to creep in sometimes
{
var elev = int.Parse(station.ELEV);
var lat = DegreesMinutesToDecimal(station.LAT);
var lon = DegreesMinutesToDecimal(station.LON);
//StationInfo(string icao, string name, int elevation, string country, string region, double lat, double lon)
sb.AppendLine($@"{{ @""{station.ICAO}"", new StationInfo(""{station.ICAO}"", ""{station.STATION}"", {elev}, ""{station.CC}"", ""{station.CD}"", {lat}, {lon}) }},");
}
sb.AppendLine(@"#endif");
sb.AppendLine(@"};");
sb.AppendLine(@"public static readonly System.Collections.Generic.IReadOnlyDictionary<string, StationInfo> _Dictionary = new System.Collections.ObjectModel.ReadOnlyDictionary<string, StationInfo>(_dictionary!);");
sb.AppendLine(@"}}");
File.WriteAllText(@"StationDictionary.cs", sb.ToString());
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine(@"Output saved to StationDictionary.cs.");
Console.ForegroundColor = ConsoleColor.Gray;
Console.WriteLine(@"Return to exit.");
Console.ReadLine();
}
public static double DegreesMinutesToDecimal(string point)
{
var multiplier = (point.Contains("S") || point.Contains("W")) ? -1 : 1;
point = Regex.Replace(point, "[^0-9. ]", "");
var pointArray = point.Split(' ');//split the string.
var degrees = double.Parse(pointArray[0]);
var minutes = double.Parse(pointArray[1]) / 60;
return Math.Truncate((degrees + minutes) * multiplier * 100000) / 100000;//truncate to 5 points
}
}