-
Notifications
You must be signed in to change notification settings - Fork 0
/
CallSignAlloc.cs
41 lines (37 loc) · 1.16 KB
/
CallSignAlloc.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
using System;
using System.Collections.Generic;
using System.Text;
namespace shvAlert
{
class CallSignAlloc
{
public string strPrefix { get; set; } //AA 2 CHAR
public string strPrefix3 { get; set; } // * or A-Z
public string strName { get; set; } //United States of America
/*
SNA-SRZ Poland (Republic of)
SSA-SSM Egypt (Arab Republic of)
SSN-STZ Sudan (Republic of the)
SUA-SUZ Egypt (Arab Republic of)
SR* Poland (Republic of)
SSA Egypt (Arab Republic of)
... Egypt (Arab Republic of)
SSM Egypt (Arab Republic of)
SSN Sudan (Republic of the)
... Sudan (Republic of the)
SSZ Sudan (Republic of the)
ST* Sudan (Republic of the)
SU* Egypt (Arab Republic of)
Call Sign Series Allocated to
AAA-ALZ United States of America
AMA-AOZ Spain
APA-ASZ Pakistan(Islamic Republic of)
ATA-AWZ India(Republic of)
AXA-AXZ Australia
AYA-AZZ Argentine Republic
A2A-A2Z Botswana(Republic of)
A3A-A3Z Tonga(Kingdom of)
A4A-A4Z Oman(Sultanate of)
*/
}
}