forked from M4d40/nestwatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add bash script for easier use of different custom configs
- Loading branch information
1 parent
c7f6644
commit 2d51f3c
Showing
3 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[Nest Config] | ||
MIN_POKEMON_NEST_COUNT = 7 | ||
DELETE_OLD_NESTS = True | ||
POKESTOP_POKEMON = True | ||
|
||
[Area] | ||
POINT1_LAT = 0.360852 | ||
POINT1_LON = 0.925244 | ||
POINT2_LAT = 0.446112 | ||
POINT2_LON = 0.061136 | ||
|
||
[Geojson] | ||
GEOJSON_EXTEND = False | ||
|
||
[Other] | ||
VERBOSE = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[Nest Config] | ||
MIN_POKEMON_NEST_COUNT = 7 | ||
DELETE_OLD_NESTS = False | ||
POKESTOP_POKEMON = True | ||
|
||
[Area] | ||
POINT1_LAT = 0.360852 | ||
POINT1_LON = 0.925244 | ||
POINT2_LAT = 0.446112 | ||
POINT2_LON = 0.061136 | ||
|
||
[Geojson] | ||
GEOJSON_EXTEND = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# the comments only needed if you use a virtual environment | ||
#. /path/to/your/venv/bin/activate | ||
|
||
nest_conf_folder="custom_configs" | ||
|
||
for nest_conf in "$nest_conf_folder"/* | ||
do | ||
echo $nest_conf | ||
python analyze_nests.py -c $nest_conf | ||
done | ||
#deactivate |