-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgui_settings.py
91 lines (81 loc) · 2.23 KB
/
gui_settings.py
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
import os
import platform
WIDTH = 1280
HEIGHT = 720
TASK_NAME = "openALPRHotlistImporter"
if platform.system() == 'Windows':
# Windows
ROOT_DIR = os.path.join(os.path.expanduser('~'), '.alpr')
os.makedirs(ROOT_DIR, exist_ok=True)
CONFIG_FILE = os.path.join(ROOT_DIR, 'hotlist.yaml')
LOG_FILE = os.path.join(ROOT_DIR, 'openalpr_hotlist_import.log')
#os.path.expanduser('~/.alpr/alpr_hotlist_importer.log')
BAT_FILE = os.path.join(ROOT_DIR, 'alpr.bat')
else:
# Linux
CONFIG_FILE = '/etc/openalpr/hotlist.yaml'
LOG_FILE = '/var/log/openalpr_hotlist_import.log'
LINUX_CRON_FILE = '/etc/cron.d/openalpr-hotlist'
US_STATES = {
'AK': 'Alaska',
'AL': 'Alabama',
'AR': 'Arkansas',
'AS': 'American Samoa',
'AZ': 'Arizona',
'CA': 'California',
'CO': 'Colorado',
'CT': 'Connecticut',
'DC': 'District of Columbia',
'DE': 'Delaware',
'FL': 'Florida',
'GA': 'Georgia',
'GU': 'Guam',
'HI': 'Hawaii',
'IA': 'Iowa',
'ID': 'Idaho',
'IL': 'Illinois',
'IN': 'Indiana',
'KS': 'Kansas',
'KY': 'Kentucky',
'LA': 'Louisiana',
'MA': 'Massachusetts',
'MD': 'Maryland',
'ME': 'Maine',
'MI': 'Michigan',
'MN': 'Minnesota',
'MO': 'Missouri',
'MP': 'Northern Mariana Islands',
'MS': 'Mississippi',
'MT': 'Montana',
'NA': 'National',
'NC': 'North Carolina',
'ND': 'North Dakota',
'NE': 'Nebraska',
'NH': 'New Hampshire',
'NJ': 'New Jersey',
'NM': 'New Mexico',
'NV': 'Nevada',
'NY': 'New York',
'OH': 'Ohio',
'OK': 'Oklahoma',
'OR': 'Oregon',
'PA': 'Pennsylvania',
'PR': 'Puerto Rico',
'RI': 'Rhode Island',
'SC': 'South Carolina',
'SD': 'South Dakota',
'TN': 'Tennessee',
'TX': 'Texas',
'UT': 'Utah',
'VA': 'Virginia',
'VI': 'Virgin Islands',
'VT': 'Vermont',
'WA': 'Washington',
'WI': 'Wisconsin',
'WV': 'West Virginia',
'WY': 'Wyoming'
}
try:
from local_settings import *
except ImportError:
pass