Cosmetics
Signed-off-by: fly <merspieler@airmail.cc>
This commit is contained in:
parent
1fe9b5ba14
commit
f4483e20ce
7 changed files with 72 additions and 11 deletions
|
@ -1,4 +1,20 @@
|
||||||
#! /usr/bin/python
|
#! /usr/bin/python
|
||||||
|
# Copyright (C) 2018-2020 Merspieler, merspieler _at_ airmail.cc
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or
|
||||||
|
# modify it under the terms of the GNU General Public License as
|
||||||
|
# published by the Free Software Foundation; either version 3 of the
|
||||||
|
# License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but
|
||||||
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
# General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
from tabulate import tabulate
|
from tabulate import tabulate
|
||||||
import re
|
import re
|
||||||
|
|
|
@ -1,4 +1,19 @@
|
||||||
#! /bin/bash
|
#! /bin/bash
|
||||||
|
# Copyright (C) 2018-2020 Merspieler, merspieler _at_ airmail.cc
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or
|
||||||
|
# modify it under the terms of the GNU General Public License as
|
||||||
|
# published by the Free Software Foundation; either version 3 of the
|
||||||
|
# License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but
|
||||||
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
# General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
root_path="$( cd "$(dirname "$0")" ; pwd -P )/.."
|
root_path="$( cd "$(dirname "$0")" ; pwd -P )/.."
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#! /usr/bin/python3
|
#! /usr/bin/python3
|
||||||
# Copyright (C) 2018-2019 Merspieler, merspieler _at_ airmail.cc
|
# Copyright (C) 2018-2020 Merspieler, merspieler _at_ airmail.cc
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or
|
# This program is free software; you can redistribute it and/or
|
||||||
# modify it under the terms of the GNU General Public License as
|
# modify it under the terms of the GNU General Public License as
|
||||||
|
@ -34,11 +34,6 @@ while i < argc:
|
||||||
elif sys.argv[i] == "--host":
|
elif sys.argv[i] == "--host":
|
||||||
i += 1
|
i += 1
|
||||||
host = sys.argv[i]
|
host = sys.argv[i]
|
||||||
elif sys.argv[i] == "-v":
|
|
||||||
verbose = True
|
|
||||||
elif sys.argv[i] == "-f" or sys.argv[i] == "--file":
|
|
||||||
i += 1
|
|
||||||
sfile = sys.argv[i]
|
|
||||||
elif sys.argv[i] == "-h" or sys.argv[i] == "--help":
|
elif sys.argv[i] == "-h" or sys.argv[i] == "--help":
|
||||||
print("usage: set-status.py <tile> <status> [OPTIONS]")
|
print("usage: set-status.py <tile> <status> [OPTIONS]")
|
||||||
print("Manually set a tile status")
|
print("Manually set a tile status")
|
||||||
|
|
|
@ -1,10 +1,45 @@
|
||||||
#! /usr/bin/python
|
#! /usr/bin/python
|
||||||
|
# Copyright (C) 2018-2020 Merspieler, merspieler _at_ airmail.cc
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or
|
||||||
|
# modify it under the terms of the GNU General Public License as
|
||||||
|
# published by the Free Software Foundation; either version 3 of the
|
||||||
|
# License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but
|
||||||
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
# General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
argc = len(sys.argv)
|
||||||
|
i = 1
|
||||||
|
first = True
|
||||||
|
while i < argc:
|
||||||
|
if sys.argv[i] == "-h" or sys.argv[i] == "--help":
|
||||||
|
print("usage: split-world.py <file> [OPTIONS]")
|
||||||
|
print("Handles job asignments and keeps track of the status")
|
||||||
|
print("")
|
||||||
|
print(" <file> Is the worldwide osm file")
|
||||||
|
print("OPTIONS")
|
||||||
|
print(" -h, --help Shows this help and exit")
|
||||||
|
sys.exit(0)
|
||||||
|
else:
|
||||||
|
if first:
|
||||||
|
world_file = sys.argv[i]
|
||||||
|
else:
|
||||||
|
print("Unknown option " + sys.argv[i])
|
||||||
|
sys.exit(1)
|
||||||
|
i += 1
|
||||||
|
|
||||||
config_path = os.path.dirname(os.path.realpath(__file__)) + "/osmium-config/"
|
config_path = os.path.dirname(os.path.realpath(__file__)) + "/osmium-config/"
|
||||||
prefix = "osmium-cut-world-step-"
|
prefix = "osmium-cut-world-step-"
|
||||||
world_file = sys.argv[1]
|
|
||||||
state4 = ['nw', 'ne', 'sw', 'se']
|
state4 = ['nw', 'ne', 'sw', 'se']
|
||||||
state2 = ['s', 'n']
|
state2 = ['s', 'n']
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#! /usr/bin/python3
|
#! /usr/bin/python3
|
||||||
# Copyright (C) 2018-2019 Merspieler, merspieler _at_ airmail.cc
|
# Copyright (C) 2018-2020 Merspieler, merspieler _at_ airmail.cc
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or
|
# This program is free software; you can redistribute it and/or
|
||||||
# modify it under the terms of the GNU General Public License as
|
# modify it under the terms of the GNU General Public License as
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#! /usr/bin/python3
|
#! /usr/bin/python3
|
||||||
# Copyright (C) 2018-2019 Merspieler, merspieler _at_ airmail.cc
|
# Copyright (C) 2018-2020 Merspieler, merspieler _at_ airmail.cc
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or
|
# This program is free software; you can redistribute it and/or
|
||||||
# modify it under the terms of the GNU General Public License as
|
# modify it under the terms of the GNU General Public License as
|
||||||
|
@ -59,7 +59,7 @@ while i < argc:
|
||||||
print(" started: Run tiles marked as started. CAUTION, use with care.")
|
print(" started: Run tiles marked as started. CAUTION, use with care.")
|
||||||
print(" rebuild: Build tiles flaged for rebuild")
|
print(" rebuild: Build tiles flaged for rebuild")
|
||||||
print(" skip: Force building tile that are marked for being skipped")
|
print(" skip: Force building tile that are marked for being skipped")
|
||||||
print(" -h, --help Shows this help and exit")
|
print(" -h, --help Shows this help and exit")
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
else:
|
else:
|
||||||
if first == 1:
|
if first == 1:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#! /usr/bin/python3
|
#! /usr/bin/python3
|
||||||
# Copyright (C) 2018-2019 Merspieler, merspieler _at_ airmail.cc
|
# Copyright (C) 2018-2020 Merspieler, merspieler _at_ airmail.cc
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or
|
# This program is free software; you can redistribute it and/or
|
||||||
# modify it under the terms of the GNU General Public License as
|
# modify it under the terms of the GNU General Public License as
|
||||||
|
|
Loading…
Reference in a new issue