From d12f83c9c23544e87ff4fe325faa6118dac5dd88 Mon Sep 17 00:00:00 2001 From: dh1tw Date: Thu, 24 Apr 2014 15:06:28 +0200 Subject: [PATCH] added constants --- pyhamtools/consts.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pyhamtools/consts.py diff --git a/pyhamtools/consts.py b/pyhamtools/consts.py new file mode 100644 index 0000000..9210ada --- /dev/null +++ b/pyhamtools/consts.py @@ -0,0 +1,20 @@ + + +class LookupConventions: + """ This class defines the constants used within the pyhamtools package """ + + CALLSIGN = "callsign" + COUNTRY = "country" + PREFIX = "prefix" + ADIF = "adif" + CQZ = "cqz" + ITUZ = "ituz" + CONTINENT = "continent" + LATITUDE = "latitude" + LONGITUDE = "longitude" + START = "start" + END = "end" + WHITELIST = "whitelist" + WHITELIST_START = "whitelist_start" + WHITELIST_END = "whitelist_end" + DELETED = "deleted" \ No newline at end of file