-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathXmlTags.vb
189 lines (187 loc) · 4.67 KB
/
XmlTags.vb
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
Public Class XmlTags
Public ReadOnly Property Projection As String
Get
Return "Projection"
End Get
End Property
Public ReadOnly Property FullName As String
Get
Return "FullName"
End Get
End Property
Public ReadOnly Property ShortName As String
Get
Return "ShortName"
End Get
End Property
Public ReadOnly Property Type As String
Get
Return "Type"
End Get
End Property
Public ReadOnly Property OriginLatitude As String
Get
Return "OriginLatitude"
End Get
End Property
Public ReadOnly Property OriginLongitude As String
Get
Return "OriginLongitude"
End Get
End Property
Public ReadOnly Property OriginEasting As String
Get
Return "OriginEasting"
End Get
End Property
Public ReadOnly Property OriginNorthing As String
Get
Return "OriginNorthing"
End Get
End Property
Public ReadOnly Property OriginScale As String
Get
Return "OriginScale"
End Get
End Property
Public ReadOnly Property FirstLatitude As String
Get
Return "FirstLatitude"
End Get
End Property
Public ReadOnly Property SecondLatitude As String
Get
Return "SecondLatitude"
End Get
End Property
Public ReadOnly Property AzimutLine As String
Get
Return "AzimutLine"
End Get
End Property
Public ReadOnly Property AngleGrid As String
Get
Return "AngleGrid"
End Get
End Property
Public ReadOnly Property InitialLongitude As String
Get
Return "InitialLongitude"
End Get
End Property
Public ReadOnly Property ZoneWidth As String
Get
Return "ZoneWidth"
End Get
End Property
Public ReadOnly Property UTMFuse As String
Get
Return "UTMFuse"
End Get
End Property
Public ReadOnly Property UTMHemisphere As String
Get
Return "UTMHemisphere"
End Get
End Property
Public ReadOnly Property Ellipsoid As String
Get
Return "Ellipsoid"
End Get
End Property
Public ReadOnly Property EpsgId As String
Get
Return "EpsgId"
End Get
End Property
Public ReadOnly Property SemiMayorAxis As String
Get
Return "SemiMayorAxis"
End Get
End Property
Public ReadOnly Property InverseFlattening As String
Get
Return "InverseFlattening"
End Get
End Property
Public ReadOnly Property ToWgs84 As String
Get
Return "ToWgs84"
End Get
End Property
Public ReadOnly Property Transformation As String
Get
Return "Transformation"
End Get
End Property
Public ReadOnly Property RotationConvention As String
Get
Return "RotationConvention"
End Get
End Property
Public ReadOnly Property DeltaX As String
Get
Return "DeltaX"
End Get
End Property
Public ReadOnly Property DeltaY As String
Get
Return "DeltaY"
End Get
End Property
Public ReadOnly Property DeltaZ As String
Get
Return "DeltaZ"
End Get
End Property
Public ReadOnly Property SourceEllipsoid As String
Get
Return "SourceEllipsoid"
End Get
End Property
Public ReadOnly Property TargetEllipsoid As String
Get
Return "TargetEllipsoid"
End Get
End Property
Public ReadOnly Property RotationX As String
Get
Return "RotationX"
End Get
End Property
Public ReadOnly Property RotationY As String
Get
Return "RotationY"
End Get
End Property
Public ReadOnly Property RotationZ As String
Get
Return "RotationZ"
End Get
End Property
Public ReadOnly Property ScaleDifference As String
Get
Return "ScaleDifference"
End Get
End Property
Public ReadOnly Property PivotX As String
Get
Return "PivotX"
End Get
End Property
Public ReadOnly Property PivotY As String
Get
Return "PivotY"
End Get
End Property
Public ReadOnly Property PivotZ As String
Get
Return "PivotZ"
End Get
End Property
Public ReadOnly Property DefaultString As String
Get
Return "Default"
End Get
End Property
End Class