forked from PeterWaher/IoTGateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserLocation.cs
More file actions
442 lines (383 loc) · 9.51 KB
/
UserLocation.cs
File metadata and controls
442 lines (383 loc) · 9.51 KB
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;
using Waher.Content;
using Waher.Content.Xml;
namespace Waher.Networking.XMPP.PEP
{
/// <summary>
/// User Location event, as defined in XEP-0080:
/// https://xmpp.org/extensions/xep-0080.html
/// </summary>
public class UserLocation : PersonalEvent
{
private decimal? accuracy = null;
private decimal? alt = null;
private decimal? altaccuracy = null;
private string area = null;
private decimal? bearing = null;
private string building = null;
private string country = null;
private string countrycode = null;
private string datum = null;
private string description = null;
private string floor = null;
private decimal? lat = null;
private string locality = null;
private decimal? lon = null;
private string postalcode = null;
private string region = null;
private string room = null;
private decimal? speed = null;
private string street = null;
private string text = null;
private DateTime? timestamp = null;
private string tzo = null;
private Uri uri = null;
/// <summary>
/// User Location event, as defined in XEP-0080:
/// https://xmpp.org/extensions/xep-0080.html
/// </summary>
public UserLocation()
{
}
/// <summary>
/// Local name of the event element.
/// </summary>
public override string LocalName => "geoloc";
/// <summary>
/// Namespace of the event element.
/// </summary>
public override string Namespace => "http://jabber.org/protocol/geoloc";
/// <summary>
/// XML representation of the event.
/// </summary>
public override string PayloadXml
{
get
{
StringBuilder Xml = new StringBuilder();
Xml.Append("<geoloc xmlns='");
Xml.Append(this.Namespace);
Xml.Append("'>");
this.Append(Xml, "accuracy", this.accuracy);
this.Append(Xml, "alt", this.alt);
this.Append(Xml, "altaccuracy", this.altaccuracy);
this.Append(Xml, "area", this.area);
this.Append(Xml, "bearing", this.bearing);
this.Append(Xml, "building", this.building);
this.Append(Xml, "country", this.country);
this.Append(Xml, "countrycode", this.countrycode);
this.Append(Xml, "datum", this.datum);
this.Append(Xml, "description", this.description);
this.Append(Xml, "floor", this.floor);
this.Append(Xml, "lat", this.lat);
this.Append(Xml, "locality", this.locality);
this.Append(Xml, "lon", this.lon);
this.Append(Xml, "postalcode", this.postalcode);
this.Append(Xml, "region", this.region);
this.Append(Xml, "room", this.room);
this.Append(Xml, "speed", this.speed);
this.Append(Xml, "street", this.street);
this.Append(Xml, "text", this.text);
this.Append(Xml, "timestamp", this.timestamp);
this.Append(Xml, "tzo", this.tzo);
this.Append(Xml, "uri", this.uri?.ToString());
Xml.Append("</geoloc>");
return Xml.ToString();
}
}
/// <summary>
/// Parses a personal event from its XML representation
/// </summary>
/// <param name="E">XML representation of personal event.</param>
/// <returns>Personal event object.</returns>
public override IPersonalEvent Parse(XmlElement E)
{
UserLocation Result = new UserLocation();
foreach (XmlNode N in E.ChildNodes)
{
if (N is XmlElement E2)
{
switch (E2.LocalName)
{
case "accuracy":
if (CommonTypes.TryParse(E2.InnerText, out decimal d))
Result.accuracy = d;
break;
case "alt":
if (CommonTypes.TryParse(E2.InnerText, out d))
Result.alt = d;
break;
case "altaccuracy":
if (CommonTypes.TryParse(E2.InnerText, out d))
Result.altaccuracy = d;
break;
case "area":
Result.area = E2.InnerText;
break;
case "bearing":
if (CommonTypes.TryParse(E2.InnerText, out d))
Result.bearing = d;
break;
case "building":
Result.building = E2.InnerText;
break;
case "country":
Result.country = E2.InnerText;
break;
case "countrycode":
Result.countrycode = E2.InnerText;
break;
case "datum":
Result.datum = E2.InnerText;
break;
case "description":
Result.description = E2.InnerText;
break;
case "error":
if (CommonTypes.TryParse(E2.InnerText, out d))
Result.accuracy = d;
break;
case "floor":
Result.floor = E2.InnerText;
break;
case "lat":
if (CommonTypes.TryParse(E2.InnerText, out d))
Result.lat = d;
break;
case "locality":
Result.locality = E2.InnerText;
break;
case "lon":
if (CommonTypes.TryParse(E2.InnerText, out d))
Result.lon = d;
break;
case "postalcode":
Result.postalcode = E2.InnerText;
break;
case "region":
Result.region = E2.InnerText;
break;
case "room":
Result.room = E2.InnerText;
break;
case "speed":
if (CommonTypes.TryParse(E2.InnerText, out d))
Result.speed = d;
break;
case "street":
Result.street = E2.InnerText;
break;
case "text":
Result.text = E2.InnerText;
break;
case "timestamp":
if (XML.TryParse(E2.InnerText, out DateTime TP))
Result.timestamp = TP;
break;
case "tzo":
Result.tzo = E2.InnerText;
break;
case "uri":
try
{
Result.uri = new Uri(E2.InnerText);
}
catch (Exception)
{
// Ignore.
}
break;
}
}
}
return Result;
}
/// <summary>
/// Horizontal GPS error in meters.
/// </summary>
public decimal? Accuracy
{
get => this.accuracy;
set => this.accuracy = value;
}
/// <summary>
/// Altitude in meters above or below sea level
/// </summary>
public decimal? Alt
{
get => this.alt;
set => this.alt = value;
}
/// <summary>
/// Vertical GPS error in meters
/// </summary>
public decimal? AltAccuracy
{
get => this.altaccuracy;
set => this.altaccuracy = value;
}
/// <summary>
/// A named area such as a campus or neighborhood
/// </summary>
public string Area
{
get => this.area;
set => this.area = value;
}
/// <summary>
/// GPS bearing (direction in which the entity is heading to reach its next waypoint), measured in decimal degrees relative to true north
/// </summary>
public decimal? Bearing
{
get => this.bearing;
set => this.bearing = value;
}
/// <summary>
/// A specific building on a street or in an area
/// </summary>
public string Building
{
get => this.building;
set => this.building = value;
}
/// <summary>
/// The nation where the user is located
/// </summary>
public string Country
{
get => this.country;
set => this.country = value;
}
/// <summary>
/// The ISO 3166 two-letter country code
/// </summary>
public string CountryCode
{
get => this.countrycode;
set => this.countrycode = value;
}
/// <summary>
/// GPS datum
/// </summary>
public string Datum
{
get => this.datum;
set => this.datum = value;
}
/// <summary>
/// A natural-language name for or description of the location
/// </summary>
public string Description
{
get => this.description;
set => this.description = value;
}
/// <summary>
/// A particular floor in a building
/// </summary>
public string Floor
{
get => this.floor;
set => this.floor = value;
}
/// <summary>
/// Latitude in decimal degrees North
/// </summary>
public decimal? Lat
{
get => this.lat;
set => this.lat = value;
}
/// <summary>
/// A locality within the administrative region, such as a town or city
/// </summary>
public string Locality
{
get => this.locality;
set => this.locality = value;
}
/// <summary>
/// Longitude in decimal degrees East
/// </summary>
public decimal? Lon
{
get => this.lon;
set => this.lon = value;
}
/// <summary>
/// A code used for postal delivery
/// </summary>
public string PostalCode
{
get => this.postalcode;
set => this.postalcode = value;
}
/// <summary>
/// An administrative region of the nation, such as a state or province
/// </summary>
public string Region
{
get => this.region;
set => this.region = value;
}
/// <summary>
/// A particular room in a building
/// </summary>
public string Room
{
get => this.room;
set => this.room = value;
}
/// <summary>
/// The speed at which the entity is moving, in meters per second
/// </summary>
public decimal? Speed
{
get => this.speed;
set => this.speed = value;
}
/// <summary>
/// A thoroughfare within the locality, or a crossing of two thoroughfares
/// </summary>
public string Street
{
get => this.street;
set => this.street = value;
}
/// <summary>
/// A catch-all element that captures any other information about the location
/// </summary>
public string Text
{
get => this.text;
set => this.text = value;
}
/// <summary>
/// UTC timestamp specifying the moment when the reading was taken.
/// </summary>
public DateTime? Timestamp
{
get => this.timestamp;
set => this.timestamp = value;
}
/// <summary>
/// The time zone offset from UTC for the current location
/// </summary>
public string TimeZone
{
get => this.tzo;
set => this.tzo = value;
}
/// <summary>
/// A URI or URL pointing to information about the location
/// </summary>
public Uri Uri
{
get => this.uri;
set => this.uri = value;
}
}
}