-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMapProjectionForm.cs
120 lines (107 loc) · 4.17 KB
/
MapProjectionForm.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
/*
Maneubo is an application that provides a virtual maneuvering board and target
motion analysis.
http://www.adammil.net/Maneubo
Copyright (C) 2011-2020 Adam Milazzo
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
using System;
using System.Text.RegularExpressions;
using System.Windows.Forms;
namespace Maneubo
{
partial class MapProjectionForm : Form
{
public MapProjectionForm()
{
InitializeComponent();
cmbProjection.SelectedIndex = 0;
}
public MapProjectionType ProjectionType
{
get { return (MapProjectionType)cmbProjection.SelectedIndex; }
}
public double Latitude
{
get { return ParseLatitude(txtLatitude.Text); }
set { txtLatitude.Text = ManeuveringBoard.GetLatitudeString(value); }
}
public double Longitude
{
get { return ParseLongitude(txtLongitude.Text); }
set { txtLongitude.Text = ManeuveringBoard.GetLongitudeString(value); }
}
void btnOK_Click(object sender, EventArgs e)
{
if(Validate("latitude", latRe, txtLatitude, 'N') && Validate("longitude", lonRe, txtLongitude, 'W')) DialogResult = DialogResult.OK;
}
static double ParseLatitude(string text)
{
double angle;
TryParse(latRe, text, 'N', out angle);
return angle;
}
static double ParseLongitude(string text)
{
double angle;
TryParse(lonRe, text, 'W', out angle);
return angle;
}
static bool TryParse(Regex regex, string text, char negativeChar, out double angle)
{
Match m = regex.Match(text);
if(!m.Success)
{
angle = 0;
return false;
}
else
{
angle = double.Parse(m.Groups["degree"].Value);
bool negative = angle < 0;
if(negative) angle = -angle; // get the absolute value so that when we add minutes and seconds it increases the magnitude
if(m.Groups["minute"].Success) angle += double.Parse(m.Groups["minute"].Value) / 60;
if(m.Groups["second"].Success) angle += double.Parse(m.Groups["second"].Value) / 3600;
if(m.Groups["dir"].Success && char.ToUpperInvariant(m.Groups["dir"].Value[0]) == negativeChar) negative = !negative;
if(negative) angle = -angle;
angle = angle/180 * Math.PI;
return true;
}
}
static bool Validate(string name, Regex regex, TextBox textBox, char negativeChar)
{
double angle;
if(!TryParse(regex, textBox.Text, negativeChar, out angle))
{
if(string.IsNullOrEmpty(textBox.Text.Trim()))
{
MessageBox.Show("You must specify a longitude and latitude.", "Value required.", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else
{
MessageBox.Show("Invalid " + name + ": " + textBox.Text, "Invalid " + name + ".", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
return false;
}
return true;
}
const string lonLatReStart =
@"^\s*(?<degree>-?(?:\d+(?:[\.,]\d+)?|[\.,]\d+))\s*[\-°]?\s*
(?:(?<minute>(?:\d+(?:[\.,]\d+)?|[\.,]\d+))\s*[′']?\s*
(?:(?<second>(?:\d+(?:[\.,]\d+)?|[\.,]\d+))\s*[""″]\s*)?)?
(?<dir>[";
const string lonLatReEnd = @"])?\s*$";
static Regex latRe = new Regex(lonLatReStart + "NSns" + lonLatReEnd, RegexOptions.IgnorePatternWhitespace | RegexOptions.Singleline);
static Regex lonRe = new Regex(lonLatReStart + "EWew" + lonLatReEnd, RegexOptions.IgnorePatternWhitespace | RegexOptions.Singleline);
}
}