Initial commit

Signed-off-by: fly <merspieler@airmail.cc>
This commit is contained in:
fly 2020-01-13 17:02:11 +00:00
commit 686e98df42
172 changed files with 5665 additions and 0 deletions

8
README.md Normal file
View file

@ -0,0 +1,8 @@
# User scripts
**Note**: User scripts are not part of the easy-osm2city concept... use only if your know what you are doing.
* `split-world.py`: Splits the world into 10 by 10 degrees areas covering everything from 80 north to 80 south and the poles.
* `osmium-config`: Config files for osmium, used by the split-world script.
* `worldbuild.py`: Runs the worldbuild.
* `analyse-run-time.py` Shows a breakdown of the runtime. Depends on `tabulate`

111
analyse-run-time.py Executable file
View file

@ -0,0 +1,111 @@
#! /usr/bin/python
import sys
from tabulate import tabulate
import re
import os
import json
sortkey = []
ifile = ""
cache = True
argc = len(sys.argv)
first = 1
i = 1
while i < argc:
if sys.argv[i] == "-s" or sys.argv[i] == "--sort-by":
i += 1
if len(sortkey) <= 3:
if sys.argv[i] in ["max", "occ", "avg", "sum"]:
sortkey.append(sys.argv[i])
else:
print("ERROR: Unknown key " + sys.argv[i] + ": Aborting!")
sys.exit(1)
else:
print("WARNING: Too many sort criteria given! Will ignore last argument.")
elif sys.argv[i] == "-n" or sys.argv[i] == "--no-cache":
cache = False
elif sys.argv[i] == "-h" or sys.argv[i] == "--help":
print("usage: analyse-run-time.py <log-path> [OPTIONS]")
print("Showing, how long certain tasks took")
print("")
print("OPTIONS")
print(" -s, --sort-by Sort by key. Can be specified up to 3 times.")
print(" First key has highest priority")
print(" Valid keys are:")
print(" max (default) Maximum execution time")
print(" avg Average execution time")
print(" sum Total execution time")
print(" occ Occurrences in the log file")
print(" -n, --no-cache Doesn't read and write from/to cache file")
print(" -h, --help Shows this help and exit")
sys.exit(0)
else:
if first == 1:
first = 0
ifile = sys.argv[i]
else:
print("Unknown option " + sys.argv[i])
sys.exit(1)
i += 1
if len(sortkey) == 0:
sortkey.append("max")
from_cache = False
if os.path.isfile(ifile + ".cache") and cache:
read_src = False
from_cache = True
with open(ifile + ".cache") as json_data:
tasks = json.load(json_data)
else:
read_src = True
if read_src:
times = []
try:
with open(ifile) as f:
for line in f:
match = re.findall("SpawnPoolWorker-\d+ root INFO +Time used in seconds for (.*): (\d+\.\d+)", line)
if match != []:
times.append(match[0])
match = re.findall("SpawnPoolWorker-\d+ root INFO +(Reading OSM .* data for \['.*'\]) from db took (\d+\.\d+) seconds.", line)
if match != []:
times.append(match[0])
except:
print("err")
sys.exit(1)
tasks = []
for time in times:
found = False
for i in range(0, len(tasks)):
if tasks[i]['name'] == time[0]:
tasks[i]['occ'] += 1
tasks[i]['sum'] += float(time[1])
if float(time[1]) > tasks[i]['max']:
tasks[i]['max'] = float(time[1])
found = True
break
if not found:
tasks.append({})
tasks[len(tasks) -1]['name'] = time[0]
tasks[len(tasks) -1]['occ'] = 1
tasks[len(tasks) -1]['sum'] = float(time[1])
tasks[len(tasks) -1]['max'] = float(time[1])
for task in tasks:
task['avg'] = task['sum'] / task['occ']
if cache:
with open(ifile + ".cache", "w") as f:
f.write(json.dumps(tasks, default=lambda o: o.__dict__))
if from_cache:
print("Data from cache used")
i = len(sortkey) - 1
while i >= 0:
tasks.sort(key=lambda tasks: tasks[sortkey[i]], reverse=True)
i -= 1
print tabulate(tasks,headers="keys",floatfmt=".2f")

58
chunk-import.sh Executable file
View file

@ -0,0 +1,58 @@
#! /bin/bash
root_path="$( cd "$(dirname "$0")" ; pwd -P )/.."
which parallel > /dev/null
if [ $? == 1 ]; then
echo "Please install parallel"
exit 1
fi
num_jobs=4
prefix=""
first=1
while [[ $# -gt 0 ]]
do
key="$1"
case $key in
-j|--jobs)
num_jobs="$2"
shift # past argument
shift # past value
;;
-p|--prefix)
prefix="$2"
shift # past argument
shift # past value
;;
-h|--help)
echo "usage: chunk-import.sh <pbf-path> [OPTIONS]"
echo "Imports every chunk into own db"
echo ""
echo "OPTIONS"
echo " -j, --jobs Number of parallel jobs. Default: 4"
echo " -p, --prefix Database prefix to be used"
echo " -h, --help Shows this help and exit"
exit 0
;;
*)
if [ $first == "1" ]; then
pbf_path="$1"
shift # past pbf-path
first=0
else
echo "Unknown option $key"
exit 1
fi
;;
esac
done
if [ -z "$pbf_path" ]; then
echo "No pbf path was given. See chunk-import -h for details"
exit 1
fi
ls "$pbf_path"/*.osm.pbf | sed -e "s/.osm.pbf//" -e "s:^.*/::" | parallel -j$num_jobs --eta "$root_path/create-db $prefix{} && $root_path/read-pbf $prefix{} {}.osm.pbf"

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "ne.osm.pbf",
"output-format": "pbf",
"bbox": [0,0,180,80]
},
{
"output": "se.osm.pbf",
"output-forumat": "pbf",
"bbox": [0,-80,180,0]
},
{
"output": "nw.osm.pbf",
"output-format": "pbf",
"bbox": [-180,0,0,80]
},
{
"output": "sw.osm.pbf",
"output-format": "pbf",
"bbox": [-180,-80,0,0]
},
{
"output": "n-pole.osm.pbf",
"output_format": "pbf",
"bbox": [-180,80,180,90]
},
{
"output": "s-pole.osm.pbf",
"output_format": "pbf",
"bbox": [-180,-90,180,-80]
}
],
"directory": "."
}

View file

@ -0,0 +1,26 @@
{
"extracts":
[
{
"output": "ne-ne.osm.pbf",
"output-format": "pbf",
"bbox": [90,40,180,80]
},
{
"output": "ne-nw.osm.pbf",
"output-forumat": "pbf",
"bbox": [0,40,90,80]
},
{
"output": "ne-se.osm.pbf",
"output-format": "pbf",
"bbox": [90,0,180,40]
},
{
"output": "ne-sw.osm.pbf",
"output-format": "pbf",
"bbox": [0,0,90,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,26 @@
{
"extracts":
[
{
"output": "nw-ne.osm.pbf",
"output-format": "pbf",
"bbox": [-90,40,0,80]
},
{
"output": "nw-nw.osm.pbf",
"output-forumat": "pbf",
"bbox": [-180,40,-90,80]
},
{
"output": "nw-se.osm.pbf",
"output-format": "pbf",
"bbox": [-90,0,0,40]
},
{
"output": "nw-sw.osm.pbf",
"output-format": "pbf",
"bbox": [-180,0,-90,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,26 @@
{
"extracts":
[
{
"output": "se-ne.osm.pbf",
"output-format": "pbf",
"bbox": [90,-40,180,0]
},
{
"output": "se-nw.osm.pbf",
"output-forumat": "pbf",
"bbox": [0,-40,90,0]
},
{
"output": "se-se.osm.pbf",
"output-format": "pbf",
"bbox": [90,-80,180,-40]
},
{
"output": "se-sw.osm.pbf",
"output-format": "pbf",
"bbox": [0,-80,90,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,26 @@
{
"extracts":
[
{
"output": "sw-ne.osm.pbf",
"output-format": "pbf",
"bbox": [-90,-40,0,0]
},
{
"output": "sw-nw.osm.pbf",
"output-forumat": "pbf",
"bbox": [-180,-40,-90,0]
},
{
"output": "sw-se.osm.pbf",
"output-format": "pbf",
"bbox": [-90,-80,0,-40]
},
{
"output": "sw-sw.osm.pbf",
"output-format": "pbf",
"bbox": [-180,-80,-90,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,21 @@
{
"extracts":
[
{
"output": "ne-ne-1.osm.pbf",
"output-format": "pbf",
"bbox": [90,40,120,80]
},
{
"output": "ne-ne-2.osm.pbf",
"output-format": "pbf",
"bbox": [120,40,150,80]
},
{
"output": "ne-ne-3.osm.pbf",
"output-format": "pbf",
"bbox": [150,40,180,80]
},
],
"directory": "."
}

View file

@ -0,0 +1,21 @@
{
"extracts":
[
{
"output": "ne-nw-1.osm.pbf",
"output-format": "pbf",
"bbox": [0,40,30,80]
},
{
"output": "ne-nw-2.osm.pbf",
"output-format": "pbf",
"bbox": [30,40,60,80]
},
{
"output": "ne-nw-3.osm.pbf",
"output-format": "pbf",
"bbox": [60,40,90,80]
},
],
"directory": "."
}

View file

@ -0,0 +1,21 @@
{
"extracts":
[
{
"output": "ne-se-1.osm.pbf",
"output-format": "pbf",
"bbox": [90,0,120,40]
},
{
"output": "ne-se-2.osm.pbf",
"output-format": "pbf",
"bbox": [120,0,150,40]
},
{
"output": "ne-se-3.osm.pbf",
"output-format": "pbf",
"bbox": [150,0,180,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,21 @@
{
"extracts":
[
{
"output": "ne-sw-1.osm.pbf",
"output-format": "pbf",
"bbox": [0,0,30,40]
},
{
"output": "ne-sw-2.osm.pbf",
"output-format": "pbf",
"bbox": [30,0,60,40]
},
{
"output": "ne-sw-3.osm.pbf",
"output-format": "pbf",
"bbox": [60,0,90,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,21 @@
{
"extracts":
[
{
"output": "nw-ne-1.osm.pbf",
"output-format": "pbf",
"bbox": [-90,40,-60,80]
},
{
"output": "nw-ne-2.osm.pbf",
"output-format": "pbf",
"bbox": [-60,40,-30,80]
},
{
"output": "nw-ne-3.osm.pbf",
"output-format": "pbf",
"bbox": [-30,40,0,80]
},
],
"directory": "."
}

View file

@ -0,0 +1,21 @@
{
"extracts":
[
{
"output": "nw-nw-1.osm.pbf",
"output-format": "pbf",
"bbox": [-180,40,-150,80]
},
{
"output": "nw-nw-2.osm.pbf",
"output-format": "pbf",
"bbox": [-150,40,-120,80]
},
{
"output": "nw-nw-3.osm.pbf",
"output-format": "pbf",
"bbox": [-120,40,-90,80]
},
],
"directory": "."
}

View file

@ -0,0 +1,21 @@
{
"extracts":
[
{
"output": "nw-se-1.osm.pbf",
"output-format": "pbf",
"bbox": [-90,0,-60,40]
},
{
"output": "nw-se-2.osm.pbf",
"output-format": "pbf",
"bbox": [-60,0,-30,40]
},
{
"output": "nw-se-3.osm.pbf",
"output-format": "pbf",
"bbox": [-30,0,0,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,21 @@
{
"extracts":
[
{
"output": "nw-sw-1.osm.pbf",
"output-format": "pbf",
"bbox": [-180,0,-150,40]
},
{
"output": "nw-sw-2.osm.pbf",
"output-format": "pbf",
"bbox": [-150,0,-120,40]
},
{
"output": "nw-sw-3.osm.pbf",
"output-format": "pbf",
"bbox": [-120,0,-90,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,21 @@
{
"extracts":
[
{
"output": "se-ne-1.osm.pbf",
"output-format": "pbf",
"bbox": [90,-40,120,0]
},
{
"output": "se-ne-2.osm.pbf",
"output-format": "pbf",
"bbox": [120,-40,150,0]
},
{
"output": "se-ne-3.osm.pbf",
"output-format": "pbf",
"bbox": [150,-40,180,0]
},
],
"directory": "."
}

View file

@ -0,0 +1,21 @@
{
"extracts":
[
{
"output": "se-nw-1.osm.pbf",
"output-format": "pbf",
"bbox": [0,-40,30,0]
},
{
"output": "se-nw-2.osm.pbf",
"output-format": "pbf",
"bbox": [30,-40,60,0]
},
{
"output": "se-nw-3.osm.pbf",
"output-format": "pbf",
"bbox": [60,-40,90,0]
},
],
"directory": "."
}

View file

@ -0,0 +1,21 @@
{
"extracts":
[
{
"output": "se-se-1.osm.pbf",
"output-format": "pbf",
"bbox": [90,-80,120,-40]
},
{
"output": "se-se-2.osm.pbf",
"output-format": "pbf",
"bbox": [120,-80,150,-40]
},
{
"output": "se-se-3.osm.pbf",
"output-format": "pbf",
"bbox": [150,-80,180,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,21 @@
{
"extracts":
[
{
"output": "se-sw-1.osm.pbf",
"output-format": "pbf",
"bbox": [0,-80,30,-40]
},
{
"output": "se-sw-2.osm.pbf",
"output-format": "pbf",
"bbox": [30,-80,60,-40]
},
{
"output": "se-sw-3.osm.pbf",
"output-format": "pbf",
"bbox": [60,-80,90,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,21 @@
{
"extracts":
[
{
"output": "sw-ne-1.osm.pbf",
"output-format": "pbf",
"bbox": [-90,-40,-60,0]
},
{
"output": "sw-ne-2.osm.pbf",
"output-format": "pbf",
"bbox": [-60,-40,-30,0]
},
{
"output": "sw-ne-3.osm.pbf",
"output-format": "pbf",
"bbox": [-30,-40,0,0]
},
],
"directory": "."
}

View file

@ -0,0 +1,21 @@
{
"extracts":
[
{
"output": "sw-nw-1.osm.pbf",
"output-format": "pbf",
"bbox": [-180,-40,-150,0]
},
{
"output": "sw-nw-2.osm.pbf",
"output-format": "pbf",
"bbox": [-150,-40,-120,0]
},
{
"output": "sw-nw-3.osm.pbf",
"output-format": "pbf",
"bbox": [-120,-40,-90,0]
},
],
"directory": "."
}

View file

@ -0,0 +1,21 @@
{
"extracts":
[
{
"output": "sw-se-1.osm.pbf",
"output-format": "pbf",
"bbox": [-90,-80,-60,-40]
},
{
"output": "sw-se-2.osm.pbf",
"output-format": "pbf",
"bbox": [-60,-80,-30,-40]
},
{
"output": "sw-se-3.osm.pbf",
"output-format": "pbf",
"bbox": [-30,-80,0,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,21 @@
{
"extracts":
[
{
"output": "sw-sw-1.osm.pbf",
"output-format": "pbf",
"bbox": [-180,-80,-150,-40]
},
{
"output": "sw-sw-2.osm.pbf",
"output-format": "pbf",
"bbox": [-150,-80,-120,-40]
},
{
"output": "sw-sw-3.osm.pbf",
"output-format": "pbf",
"bbox": [-120,-80,-90,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "ne-ne-1-s.osm.pbf",
"output-format": "pbf",
"bbox": [90,40,120,60]
},
{
"output": "ne-ne-1-n.osm.pbf",
"output-format": "pbf",
"bbox": [90,60,120,80]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "ne-ne-2-s.osm.pbf",
"output-format": "pbf",
"bbox": [120,40,150,60]
},
{
"output": "ne-ne-2-n.osm.pbf",
"output-format": "pbf",
"bbox": [120,60,150,80]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "ne-ne-3-s.osm.pbf",
"output-format": "pbf",
"bbox": [150,40,180,60]
},
{
"output": "ne-ne-3-n.osm.pbf",
"output-format": "pbf",
"bbox": [150,60,180,80]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "ne-nw-1-s.osm.pbf",
"output-format": "pbf",
"bbox": [0,40,30,60]
},
{
"output": "ne-nw-1-n.osm.pbf",
"output-format": "pbf",
"bbox": [0,60,30,80]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "ne-nw-2-s.osm.pbf",
"output-format": "pbf",
"bbox": [30,40,60,60]
},
{
"output": "ne-nw-2-n.osm.pbf",
"output-format": "pbf",
"bbox": [30,60,60,80]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "ne-nw-3-s.osm.pbf",
"output-format": "pbf",
"bbox": [60,40,90,60]
},
{
"output": "ne-nw-3-n.osm.pbf",
"output-format": "pbf",
"bbox": [60,60,90,80]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "ne-se-1-s.osm.pbf",
"output-format": "pbf",
"bbox": [90,0,120,20]
},
{
"output": "ne-se-1-n.osm.pbf",
"output-format": "pbf",
"bbox": [90,20,120,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "ne-se-2-s.osm.pbf",
"output-format": "pbf",
"bbox": [120,0,150,20]
},
{
"output": "ne-se-2-n.osm.pbf",
"output-format": "pbf",
"bbox": [120,20,150,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "ne-se-3-s.osm.pbf",
"output-format": "pbf",
"bbox": [150,0,180,20]
},
{
"output": "ne-se-3-n.osm.pbf",
"output-format": "pbf",
"bbox": [150,20,180,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "ne-sw-1-s.osm.pbf",
"output-format": "pbf",
"bbox": [0,0,30,20]
},
{
"output": "ne-sw-1-n.osm.pbf",
"output-format": "pbf",
"bbox": [0,20,30,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "ne-sw-2-s.osm.pbf",
"output-format": "pbf",
"bbox": [30,0,60,20]
},
{
"output": "ne-sw-2-n.osm.pbf",
"output-format": "pbf",
"bbox": [30,20,60,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "ne-sw-3-s.osm.pbf",
"output-format": "pbf",
"bbox": [60,0,90,20]
},
{
"output": "ne-sw-3-n.osm.pbf",
"output-format": "pbf",
"bbox": [60,20,90,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "nw-ne-1-s.osm.pbf",
"output-format": "pbf",
"bbox": [-90,40,-60,60]
},
{
"output": "nw-ne-1-n.osm.pbf",
"output-format": "pbf",
"bbox": [-90,60,-60,80]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "nw-ne-2-s.osm.pbf",
"output-format": "pbf",
"bbox": [-60,40,-30,60]
},
{
"output": "nw-ne-2-n.osm.pbf",
"output-format": "pbf",
"bbox": [-60,60,-30,80]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "nw-ne-3-s.osm.pbf",
"output-format": "pbf",
"bbox": [-30,40,0,60]
},
{
"output": "nw-ne-3-n.osm.pbf",
"output-format": "pbf",
"bbox": [-30,60,0,80]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "nw-nw-1-s.osm.pbf",
"output-format": "pbf",
"bbox": [-180,40,-150,60]
},
{
"output": "nw-nw-1-n.osm.pbf",
"output-format": "pbf",
"bbox": [-180,60,-150,80]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "nw-nw-2-s.osm.pbf",
"output-format": "pbf",
"bbox": [-150,40,-120,60]
},
{
"output": "nw-nw-2-n.osm.pbf",
"output-format": "pbf",
"bbox": [-150,60,-120,80]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "nw-nw-3-s.osm.pbf",
"output-format": "pbf",
"bbox": [-120,40,-90,60]
},
{
"output": "nw-nw-3-n.osm.pbf",
"output-format": "pbf",
"bbox": [-120,60,-90,80]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "nw-se-1-s.osm.pbf",
"output-format": "pbf",
"bbox": [-90,0,-60,20]
},
{
"output": "nw-se-1-n.osm.pbf",
"output-format": "pbf",
"bbox": [-90,20,-60,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "nw-se-2-s.osm.pbf",
"output-format": "pbf",
"bbox": [-60,0,-30,20]
},
{
"output": "nw-se-2-n.osm.pbf",
"output-format": "pbf",
"bbox": [-60,20,-30,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "nw-se-3-s.osm.pbf",
"output-format": "pbf",
"bbox": [-30,0,0,20]
},
{
"output": "nw-se-3-n.osm.pbf",
"output-format": "pbf",
"bbox": [-30,20,0,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "nw-sw-1-s.osm.pbf",
"output-format": "pbf",
"bbox": [-180,0,-150,20]
},
{
"output": "nw-sw-1-n.osm.pbf",
"output-format": "pbf",
"bbox": [-180,20,-150,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "nw-sw-2-s.osm.pbf",
"output-format": "pbf",
"bbox": [-150,0,-120,20]
},
{
"output": "nw-sw-2-n.osm.pbf",
"output-format": "pbf",
"bbox": [-150,20,-120,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "nw-sw-3-s.osm.pbf",
"output-format": "pbf",
"bbox": [-120,0,-90,20]
},
{
"output": "nw-sw-3-n.osm.pbf",
"output-format": "pbf",
"bbox": [-120,20,-90,40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "se-ne-1-s.osm.pbf",
"output-format": "pbf",
"bbox": [90,-40,120,-20]
},
{
"output": "se-ne-1-n.osm.pbf",
"output-format": "pbf",
"bbox": [90,-20,120,0]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "se-ne-2-s.osm.pbf",
"output-format": "pbf",
"bbox": [120,-40,150,-20]
},
{
"output": "se-ne-2-n.osm.pbf",
"output-format": "pbf",
"bbox": [120,-20,150,0]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "se-ne-3-s.osm.pbf",
"output-format": "pbf",
"bbox": [150,-40,180,-20]
},
{
"output": "se-ne-3-n.osm.pbf",
"output-format": "pbf",
"bbox": [150,-20,180,0]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "se-nw-1-s.osm.pbf",
"output-format": "pbf",
"bbox": [0,-40,30,-20]
},
{
"output": "se-nw-1-n.osm.pbf",
"output-format": "pbf",
"bbox": [0,-20,30,0]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "se-nw-2-s.osm.pbf",
"output-format": "pbf",
"bbox": [30,-40,60,-20]
},
{
"output": "se-nw-2-n.osm.pbf",
"output-format": "pbf",
"bbox": [30,-20,60,0]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "se-nw-3-s.osm.pbf",
"output-format": "pbf",
"bbox": [60,-40,90,-20]
},
{
"output": "se-nw-3-n.osm.pbf",
"output-format": "pbf",
"bbox": [60,-20,90,0]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "se-se-1-s.osm.pbf",
"output-format": "pbf",
"bbox": [90,-80,120,-60]
},
{
"output": "se-se-1-n.osm.pbf",
"output-format": "pbf",
"bbox": [90,-60,120,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "se-se-2-s.osm.pbf",
"output-format": "pbf",
"bbox": [120,-80,150,-60]
},
{
"output": "se-se-2-n.osm.pbf",
"output-format": "pbf",
"bbox": [120,-60,150,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "se-se-3-s.osm.pbf",
"output-format": "pbf",
"bbox": [150,-80,180,-60]
},
{
"output": "se-se-3-n.osm.pbf",
"output-format": "pbf",
"bbox": [150,-60,180,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "se-sw-1-s.osm.pbf",
"output-format": "pbf",
"bbox": [0,-80,30,-60]
},
{
"output": "se-sw-1-n.osm.pbf",
"output-format": "pbf",
"bbox": [0,-60,30,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "se-sw-2-s.osm.pbf",
"output-format": "pbf",
"bbox": [30,-80,60,-60]
},
{
"output": "se-sw-2-n.osm.pbf",
"output-format": "pbf",
"bbox": [30,-60,60,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "se-sw-3-s.osm.pbf",
"output-format": "pbf",
"bbox": [60,-80,90,-60]
},
{
"output": "se-sw-3-n.osm.pbf",
"output-format": "pbf",
"bbox": [60,-60,90,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "sw-ne-1-s.osm.pbf",
"output-format": "pbf",
"bbox": [-90,-40,-60,-20]
},
{
"output": "sw-ne-1-n.osm.pbf",
"output-format": "pbf",
"bbox": [-90,-20,-60,0]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "sw-ne-2-s.osm.pbf",
"output-format": "pbf",
"bbox": [-60,-40,-30,-20]
},
{
"output": "sw-ne-2-n.osm.pbf",
"output-format": "pbf",
"bbox": [-60,-20,-30,0]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "sw-ne-3-s.osm.pbf",
"output-format": "pbf",
"bbox": [-30,-40,0,-20]
},
{
"output": "sw-ne-3-n.osm.pbf",
"output-format": "pbf",
"bbox": [-30,-20,0,0]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "sw-nw-1-s.osm.pbf",
"output-format": "pbf",
"bbox": [-180,-40,-150,-20]
},
{
"output": "sw-nw-1-n.osm.pbf",
"output-format": "pbf",
"bbox": [-180,-20,-150,0]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "sw-nw-2-s.osm.pbf",
"output-format": "pbf",
"bbox": [-150,-40,-120,-20]
},
{
"output": "sw-nw-2-n.osm.pbf",
"output-format": "pbf",
"bbox": [-150,-20,-120,0]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "sw-nw-3-s.osm.pbf",
"output-format": "pbf",
"bbox": [-120,-40,-90,-20]
},
{
"output": "sw-nw-3-n.osm.pbf",
"output-format": "pbf",
"bbox": [-120,-20,-90,0]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "sw-se-1-s.osm.pbf",
"output-format": "pbf",
"bbox": [-90,-80,-60,-60]
},
{
"output": "sw-se-1-n.osm.pbf",
"output-format": "pbf",
"bbox": [-90,-60,-60,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "sw-se-2-s.osm.pbf",
"output-format": "pbf",
"bbox": [-60,-80,-30,-60]
},
{
"output": "sw-se-2-n.osm.pbf",
"output-format": "pbf",
"bbox": [-60,-60,-30,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "sw-se-3-s.osm.pbf",
"output-format": "pbf",
"bbox": [-30,-80,0,-60]
},
{
"output": "sw-se-3-n.osm.pbf",
"output-format": "pbf",
"bbox": [-30,-60,0,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "sw-sw-1-s.osm.pbf",
"output-format": "pbf",
"bbox": [-180,-80,-150,-60]
},
{
"output": "sw-sw-1-n.osm.pbf",
"output-format": "pbf",
"bbox": [-180,-60,-150,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "sw-sw-2-s.osm.pbf",
"output-format": "pbf",
"bbox": [-150,-80,-120,-60]
},
{
"output": "sw-sw-2-n.osm.pbf",
"output-format": "pbf",
"bbox": [-150,-60,-120,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,16 @@
{
"extracts":
[
{
"output": "sw-sw-3-s.osm.pbf",
"output-format": "pbf",
"bbox": [-120,-80,-90,-60]
},
{
"output": "sw-sw-3-n.osm.pbf",
"output-format": "pbf",
"bbox": [-120,-60,-90,-40]
},
],
"directory": "."
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e090n70.osm.pbf",
"output-format": "pbf",
"bbox": [90,70,100,80]
},
{
"output": "e100n70.osm.pbf",
"output-format": "pbf",
"bbox": [100,70,110,80]
},
{
"output": "e110n70.osm.pbf",
"output-format": "pbf",
"bbox": [110,70,120,80]
},
{
"output": "e090n60.osm.pbf",
"output-format": "pbf",
"bbox": [90,60,100,70]
},
{
"output": "e100n60.osm.pbf",
"output-format": "pbf",
"bbox": [100,60,110,70]
},
{
"output": "e110n60.osm.pbf",
"output-format": "pbf",
"bbox": [110,60,120,70]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e090n50.osm.pbf",
"output-format": "pbf",
"bbox": [90,50,100,60]
},
{
"output": "e100n50.osm.pbf",
"output-format": "pbf",
"bbox": [100,50,110,60]
},
{
"output": "e110n50.osm.pbf",
"output-format": "pbf",
"bbox": [110,50,120,60]
},
{
"output": "e090n40.osm.pbf",
"output-format": "pbf",
"bbox": [90,40,100,50]
},
{
"output": "e100n40.osm.pbf",
"output-format": "pbf",
"bbox": [100,40,110,50]
},
{
"output": "e110n40.osm.pbf",
"output-format": "pbf",
"bbox": [110,40,120,50]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e120n70.osm.pbf",
"output-format": "pbf",
"bbox": [120,70,130,80]
},
{
"output": "e130n70.osm.pbf",
"output-format": "pbf",
"bbox": [130,70,140,80]
},
{
"output": "e140n70.osm.pbf",
"output-format": "pbf",
"bbox": [140,70,150,80]
},
{
"output": "e120n60.osm.pbf",
"output-format": "pbf",
"bbox": [120,60,130,70]
},
{
"output": "e130n60.osm.pbf",
"output-format": "pbf",
"bbox": [130,60,140,70]
},
{
"output": "e140n60.osm.pbf",
"output-format": "pbf",
"bbox": [140,60,150,70]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e120n50.osm.pbf",
"output-format": "pbf",
"bbox": [120,50,130,60]
},
{
"output": "e130n50.osm.pbf",
"output-format": "pbf",
"bbox": [130,50,140,60]
},
{
"output": "e140n50.osm.pbf",
"output-format": "pbf",
"bbox": [140,50,150,60]
},
{
"output": "e120n40.osm.pbf",
"output-format": "pbf",
"bbox": [120,40,130,50]
},
{
"output": "e130n40.osm.pbf",
"output-format": "pbf",
"bbox": [130,40,140,50]
},
{
"output": "e140n40.osm.pbf",
"output-format": "pbf",
"bbox": [140,40,150,50]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e150n70.osm.pbf",
"output-format": "pbf",
"bbox": [150,70,160,80]
},
{
"output": "e160n70.osm.pbf",
"output-format": "pbf",
"bbox": [160,70,170,80]
},
{
"output": "e170n70.osm.pbf",
"output-format": "pbf",
"bbox": [170,70,180,80]
},
{
"output": "e150n60.osm.pbf",
"output-format": "pbf",
"bbox": [150,60,160,70]
},
{
"output": "e160n60.osm.pbf",
"output-format": "pbf",
"bbox": [160,60,170,70]
},
{
"output": "e170n60.osm.pbf",
"output-format": "pbf",
"bbox": [170,60,180,70]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e150n50.osm.pbf",
"output-format": "pbf",
"bbox": [150,50,160,60]
},
{
"output": "e160n50.osm.pbf",
"output-format": "pbf",
"bbox": [160,50,170,60]
},
{
"output": "e170n50.osm.pbf",
"output-format": "pbf",
"bbox": [170,50,180,60]
},
{
"output": "e150n40.osm.pbf",
"output-format": "pbf",
"bbox": [150,40,160,50]
},
{
"output": "e160n40.osm.pbf",
"output-format": "pbf",
"bbox": [160,40,170,50]
},
{
"output": "e170n40.osm.pbf",
"output-format": "pbf",
"bbox": [170,40,180,50]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e000n70.osm.pbf",
"output-format": "pbf",
"bbox": [0,70,10,80]
},
{
"output": "e010n70.osm.pbf",
"output-format": "pbf",
"bbox": [10,70,20,80]
},
{
"output": "e020n70.osm.pbf",
"output-format": "pbf",
"bbox": [20,70,30,80]
},
{
"output": "e000n60.osm.pbf",
"output-format": "pbf",
"bbox": [0,60,10,70]
},
{
"output": "e010n60.osm.pbf",
"output-format": "pbf",
"bbox": [10,60,20,70]
},
{
"output": "e020n60.osm.pbf",
"output-format": "pbf",
"bbox": [20,60,30,70]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e000n50.osm.pbf",
"output-format": "pbf",
"bbox": [0,50,10,60]
},
{
"output": "e010n50.osm.pbf",
"output-format": "pbf",
"bbox": [10,50,20,60]
},
{
"output": "e020n50.osm.pbf",
"output-format": "pbf",
"bbox": [20,50,30,60]
},
{
"output": "e000n40.osm.pbf",
"output-format": "pbf",
"bbox": [0,40,10,50]
},
{
"output": "e010n40.osm.pbf",
"output-format": "pbf",
"bbox": [10,40,20,50]
},
{
"output": "e020n40.osm.pbf",
"output-format": "pbf",
"bbox": [20,40,30,50]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e030n70.osm.pbf",
"output-format": "pbf",
"bbox": [30,70,40,80]
},
{
"output": "e040n70.osm.pbf",
"output-format": "pbf",
"bbox": [40,70,50,80]
},
{
"output": "e050n70.osm.pbf",
"output-format": "pbf",
"bbox": [50,70,60,80]
},
{
"output": "e030n60.osm.pbf",
"output-format": "pbf",
"bbox": [30,60,40,70]
},
{
"output": "e040n60.osm.pbf",
"output-format": "pbf",
"bbox": [40,60,50,70]
},
{
"output": "e050n60.osm.pbf",
"output-format": "pbf",
"bbox": [50,60,60,70]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e030n50.osm.pbf",
"output-format": "pbf",
"bbox": [30,50,40,60]
},
{
"output": "e040n50.osm.pbf",
"output-format": "pbf",
"bbox": [40,50,50,60]
},
{
"output": "e050n50.osm.pbf",
"output-format": "pbf",
"bbox": [50,50,60,60]
},
{
"output": "e030n40.osm.pbf",
"output-format": "pbf",
"bbox": [30,40,40,50]
},
{
"output": "e040n40.osm.pbf",
"output-format": "pbf",
"bbox": [40,40,50,50]
},
{
"output": "e050n40.osm.pbf",
"output-format": "pbf",
"bbox": [50,40,60,50]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e060n70.osm.pbf",
"output-format": "pbf",
"bbox": [60,70,70,80]
},
{
"output": "e070n70.osm.pbf",
"output-format": "pbf",
"bbox": [70,70,80,80]
},
{
"output": "e080n70.osm.pbf",
"output-format": "pbf",
"bbox": [80,70,90,80]
},
{
"output": "e060n60.osm.pbf",
"output-format": "pbf",
"bbox": [60,60,70,70]
},
{
"output": "e070n60.osm.pbf",
"output-format": "pbf",
"bbox": [70,60,80,70]
},
{
"output": "e080n60.osm.pbf",
"output-format": "pbf",
"bbox": [80,60,90,70]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e060n50.osm.pbf",
"output-format": "pbf",
"bbox": [60,50,70,60]
},
{
"output": "e070n50.osm.pbf",
"output-format": "pbf",
"bbox": [70,50,80,60]
},
{
"output": "e080n50.osm.pbf",
"output-format": "pbf",
"bbox": [80,50,90,60]
},
{
"output": "e060n40.osm.pbf",
"output-format": "pbf",
"bbox": [60,40,70,50]
},
{
"output": "e070n40.osm.pbf",
"output-format": "pbf",
"bbox": [70,40,80,50]
},
{
"output": "e080n40.osm.pbf",
"output-format": "pbf",
"bbox": [80,40,90,50]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e090n30.osm.pbf",
"output-format": "pbf",
"bbox": [90,30,100,40]
},
{
"output": "e100n30.osm.pbf",
"output-format": "pbf",
"bbox": [100,30,110,40]
},
{
"output": "e110n30.osm.pbf",
"output-format": "pbf",
"bbox": [110,30,120,40]
},
{
"output": "e090n20.osm.pbf",
"output-format": "pbf",
"bbox": [90,20,100,30]
},
{
"output": "e100n20.osm.pbf",
"output-format": "pbf",
"bbox": [100,20,110,30]
},
{
"output": "e110n20.osm.pbf",
"output-format": "pbf",
"bbox": [110,20,120,30]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e090n10.osm.pbf",
"output-format": "pbf",
"bbox": [90,10,100,20]
},
{
"output": "e100n10.osm.pbf",
"output-format": "pbf",
"bbox": [100,10,110,20]
},
{
"output": "e110n10.osm.pbf",
"output-format": "pbf",
"bbox": [110,10,120,20]
},
{
"output": "e090n00.osm.pbf",
"output-format": "pbf",
"bbox": [90,0,100,10]
},
{
"output": "e100n00.osm.pbf",
"output-format": "pbf",
"bbox": [100,0,110,10]
},
{
"output": "e110n00.osm.pbf",
"output-format": "pbf",
"bbox": [110,0,120,10]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e120n30.osm.pbf",
"output-format": "pbf",
"bbox": [120,30,130,40]
},
{
"output": "e130n30.osm.pbf",
"output-format": "pbf",
"bbox": [130,30,140,40]
},
{
"output": "e140n30.osm.pbf",
"output-format": "pbf",
"bbox": [140,30,150,40]
},
{
"output": "e120n20.osm.pbf",
"output-format": "pbf",
"bbox": [120,20,130,30]
},
{
"output": "e130n20.osm.pbf",
"output-format": "pbf",
"bbox": [130,20,140,30]
},
{
"output": "e140n20.osm.pbf",
"output-format": "pbf",
"bbox": [140,20,150,30]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e120n10.osm.pbf",
"output-format": "pbf",
"bbox": [120,10,130,20]
},
{
"output": "e130n10.osm.pbf",
"output-format": "pbf",
"bbox": [130,10,140,20]
},
{
"output": "e140n10.osm.pbf",
"output-format": "pbf",
"bbox": [140,10,150,20]
},
{
"output": "e120n00.osm.pbf",
"output-format": "pbf",
"bbox": [120,0,130,10]
},
{
"output": "e130n00.osm.pbf",
"output-format": "pbf",
"bbox": [130,0,140,10]
},
{
"output": "e140n00.osm.pbf",
"output-format": "pbf",
"bbox": [140,0,150,10]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e150n30.osm.pbf",
"output-format": "pbf",
"bbox": [150,30,160,40]
},
{
"output": "e160n30.osm.pbf",
"output-format": "pbf",
"bbox": [160,30,170,40]
},
{
"output": "e170n30.osm.pbf",
"output-format": "pbf",
"bbox": [170,30,180,40]
},
{
"output": "e150n20.osm.pbf",
"output-format": "pbf",
"bbox": [150,20,160,30]
},
{
"output": "e160n20.osm.pbf",
"output-format": "pbf",
"bbox": [160,20,170,30]
},
{
"output": "e170n20.osm.pbf",
"output-format": "pbf",
"bbox": [170,20,180,30]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e150n10.osm.pbf",
"output-format": "pbf",
"bbox": [150,10,160,20]
},
{
"output": "e160n10.osm.pbf",
"output-format": "pbf",
"bbox": [160,10,170,20]
},
{
"output": "e170n10.osm.pbf",
"output-format": "pbf",
"bbox": [170,10,180,20]
},
{
"output": "e150n00.osm.pbf",
"output-format": "pbf",
"bbox": [150,0,160,10]
},
{
"output": "e160n00.osm.pbf",
"output-format": "pbf",
"bbox": [160,0,170,10]
},
{
"output": "e170n00.osm.pbf",
"output-format": "pbf",
"bbox": [170,0,180,10]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e000n30.osm.pbf",
"output-format": "pbf",
"bbox": [0,30,10,40]
},
{
"output": "e010n30.osm.pbf",
"output-format": "pbf",
"bbox": [10,30,20,40]
},
{
"output": "e020n30.osm.pbf",
"output-format": "pbf",
"bbox": [20,30,30,40]
},
{
"output": "e000n20.osm.pbf",
"output-format": "pbf",
"bbox": [0,20,10,30]
},
{
"output": "e010n20.osm.pbf",
"output-format": "pbf",
"bbox": [10,20,20,30]
},
{
"output": "e020n20.osm.pbf",
"output-format": "pbf",
"bbox": [20,20,30,30]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e000n10.osm.pbf",
"output-format": "pbf",
"bbox": [0,10,10,20]
},
{
"output": "e010n10.osm.pbf",
"output-format": "pbf",
"bbox": [10,10,20,20]
},
{
"output": "e020n10.osm.pbf",
"output-format": "pbf",
"bbox": [20,10,30,20]
},
{
"output": "e000n00.osm.pbf",
"output-format": "pbf",
"bbox": [0,0,10,10]
},
{
"output": "e010n00.osm.pbf",
"output-format": "pbf",
"bbox": [10,0,20,10]
},
{
"output": "e020n00.osm.pbf",
"output-format": "pbf",
"bbox": [20,0,30,10]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e030n30.osm.pbf",
"output-format": "pbf",
"bbox": [30,30,40,40]
},
{
"output": "e040n30.osm.pbf",
"output-format": "pbf",
"bbox": [40,30,50,40]
},
{
"output": "e050n30.osm.pbf",
"output-format": "pbf",
"bbox": [50,30,60,40]
},
{
"output": "e030n20.osm.pbf",
"output-format": "pbf",
"bbox": [30,20,40,30]
},
{
"output": "e040n20.osm.pbf",
"output-format": "pbf",
"bbox": [40,20,50,30]
},
{
"output": "e050n20.osm.pbf",
"output-format": "pbf",
"bbox": [50,20,60,30]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e030n10.osm.pbf",
"output-format": "pbf",
"bbox": [30,10,40,20]
},
{
"output": "e040n10.osm.pbf",
"output-format": "pbf",
"bbox": [40,10,50,20]
},
{
"output": "e050n10.osm.pbf",
"output-format": "pbf",
"bbox": [50,10,60,20]
},
{
"output": "e030n00.osm.pbf",
"output-format": "pbf",
"bbox": [30,0,40,10]
},
{
"output": "e040n00.osm.pbf",
"output-format": "pbf",
"bbox": [40,0,50,10]
},
{
"output": "e050n00.osm.pbf",
"output-format": "pbf",
"bbox": [50,0,60,10]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e060n30.osm.pbf",
"output-format": "pbf",
"bbox": [60,30,70,40]
},
{
"output": "e070n30.osm.pbf",
"output-format": "pbf",
"bbox": [70,30,80,40]
},
{
"output": "e080n30.osm.pbf",
"output-format": "pbf",
"bbox": [80,30,90,40]
},
{
"output": "e060n20.osm.pbf",
"output-format": "pbf",
"bbox": [60,20,70,30]
},
{
"output": "e070n20.osm.pbf",
"output-format": "pbf",
"bbox": [70,20,80,30]
},
{
"output": "e080n20.osm.pbf",
"output-format": "pbf",
"bbox": [80,20,90,30]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "e060n10.osm.pbf",
"output-format": "pbf",
"bbox": [60,10,70,20]
},
{
"output": "e070n10.osm.pbf",
"output-format": "pbf",
"bbox": [70,10,80,20]
},
{
"output": "e080n10.osm.pbf",
"output-format": "pbf",
"bbox": [80,10,90,20]
},
{
"output": "e060n00.osm.pbf",
"output-format": "pbf",
"bbox": [60,0,70,10]
},
{
"output": "e070n00.osm.pbf",
"output-format": "pbf",
"bbox": [70,0,80,10]
},
{
"output": "e080n00.osm.pbf",
"output-format": "pbf",
"bbox": [80,0,90,10]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "w070n70.osm.pbf",
"output-format": "pbf",
"bbox": [-70,70,-60,80]
},
{
"output": "w080n70.osm.pbf",
"output-format": "pbf",
"bbox": [-80,70,-70,80]
},
{
"output": "w090n70.osm.pbf",
"output-format": "pbf",
"bbox": [-90,70,-80,80]
},
{
"output": "w070n60.osm.pbf",
"output-format": "pbf",
"bbox": [-70,60,-60,70]
},
{
"output": "w080n60.osm.pbf",
"output-format": "pbf",
"bbox": [-80,60,-70,70]
},
{
"output": "w090n60.osm.pbf",
"output-format": "pbf",
"bbox": [-90,60,-80,70]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "w070n50.osm.pbf",
"output-format": "pbf",
"bbox": [-70,50,-60,60]
},
{
"output": "w080n50.osm.pbf",
"output-format": "pbf",
"bbox": [-80,50,-70,60]
},
{
"output": "w090n50.osm.pbf",
"output-format": "pbf",
"bbox": [-90,50,-80,60]
},
{
"output": "w070n40.osm.pbf",
"output-format": "pbf",
"bbox": [-70,40,-60,50]
},
{
"output": "w080n40.osm.pbf",
"output-format": "pbf",
"bbox": [-80,40,-70,50]
},
{
"output": "w090n40.osm.pbf",
"output-format": "pbf",
"bbox": [-90,40,-80,50]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "w040n70.osm.pbf",
"output-format": "pbf",
"bbox": [-40,70,-30,80]
},
{
"output": "w050n70.osm.pbf",
"output-format": "pbf",
"bbox": [-50,70,-40,80]
},
{
"output": "w060n70.osm.pbf",
"output-format": "pbf",
"bbox": [-60,70,-50,80]
},
{
"output": "w040n60.osm.pbf",
"output-format": "pbf",
"bbox": [-40,60,-30,70]
},
{
"output": "w050n60.osm.pbf",
"output-format": "pbf",
"bbox": [-50,60,-40,70]
},
{
"output": "w060n60.osm.pbf",
"output-format": "pbf",
"bbox": [-60,60,-50,70]
},
],
"directory": "./output"
}

View file

@ -0,0 +1,36 @@
{
"extracts":
[
{
"output": "w040n50.osm.pbf",
"output-format": "pbf",
"bbox": [-40,50,-30,60]
},
{
"output": "w050n50.osm.pbf",
"output-format": "pbf",
"bbox": [-50,50,-40,60]
},
{
"output": "w060n50.osm.pbf",
"output-format": "pbf",
"bbox": [-60,50,-50,60]
},
{
"output": "w040n40.osm.pbf",
"output-format": "pbf",
"bbox": [-40,40,-30,50]
},
{
"output": "w050n40.osm.pbf",
"output-format": "pbf",
"bbox": [-50,40,-40,50]
},
{
"output": "w060n40.osm.pbf",
"output-format": "pbf",
"bbox": [-60,40,-50,50]
},
],
"directory": "./output"
}

Some files were not shown because too many files have changed in this diff Show more