forked from modrzew/pokeminer
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.py.example
More file actions
26 lines (21 loc) · 920 Bytes
/
Copy pathconfig.py.example
File metadata and controls
26 lines (21 loc) · 920 Bytes
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
DB_ENGINE = 'sqlite:///db.sqlite' # anything SQLAlchemy accepts
MAP_START = (31.51231, 16.31231) # top left corner
MAP_END = (33.61231, 17.51234) # bottom right corner
GRID = (1, 1) # row, column
# LAT_GAIN and LON_GAIN can be configured to tell how big a space between
# points visited by worker should be. LAT_GAIN should also compensate for
# differences in distance between degrees as you go north/south.
LAT_GAIN = 0.0015
LON_GAIN = 0.0025
ACCOUNTS = [
# username, password, service (google/ptc)
('account1', 'password', 'ptc'),
('account2', 'password', 'ptc'),
]
# Trash Pokemon won't be shown on the live map.
# Their data will still be collected to the database.
TRASH_IDS = [13, 16, 19, 41, 96, 21]
# List of stage 2 & rare evolutions to show in the report
STAGE2 = [
3, 6, 9, 26, 38, 40, 51, 76, 94, 95, 104, 107, 110, 115, 122, 123, 128, 132, 139, 141, 142, 143, 148, 149, 150, 151
]