2016-01-12 21:17:06 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2016-01-12 22:51:36 +00:00
|
|
|
# Copyright 2016 Mike "KemoNine" Crosson
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2016-01-12 21:17:06 +00:00
|
|
|
import subprocess, sys, os, pprint, datetime, argparse, time
|
|
|
|
|
|
|
|
base_path = os.path.dirname(os.path.realpath(__file__))
|
2016-01-13 00:00:16 +00:00
|
|
|
env = os.environ.copy()
|
2016-01-12 21:17:06 +00:00
|
|
|
|
|
|
|
FNULL = open(os.devnull, 'w')
|
|
|
|
|
|
|
|
wget_cmd = '/usr/bin/wget'
|
|
|
|
bunzip2_cmd = '/usr/bin/bunzip2'
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
current_timestamp = datetime.datetime.now().strftime('%Y%m%d-%H%M')
|
|
|
|
|
|
|
|
parser = argparse.ArgumentParser()
|
2016-01-12 21:20:46 +00:00
|
|
|
parser.add_argument('--map-list', action='append')
|
2016-01-12 21:17:06 +00:00
|
|
|
#TODO: Add argument to pass path to osmosis
|
|
|
|
#TODO: Add argument to pass path to output dir
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
map_list = []
|
2016-01-12 21:20:46 +00:00
|
|
|
for alist in args.map_list:
|
|
|
|
with open(alist, 'r') as maps:
|
|
|
|
for line in maps:
|
|
|
|
map_list.append(line.strip())
|
2016-01-12 21:17:06 +00:00
|
|
|
|
|
|
|
print('Creating working directories')
|
2016-01-12 22:20:07 +00:00
|
|
|
if not os.path.exists('tmp'):
|
|
|
|
os.makedirs('tmp')
|
2016-01-12 21:17:06 +00:00
|
|
|
if not os.path.exists('out'):
|
|
|
|
os.makedirs('out')
|
|
|
|
os.chdir('out')
|
|
|
|
if not os.path.exists(current_timestamp):
|
|
|
|
os.makedirs(current_timestamp)
|
|
|
|
os.chdir(current_timestamp)
|
|
|
|
if not os.path.exists('dl'):
|
|
|
|
os.makedirs('dl')
|
|
|
|
|
|
|
|
print('Downloading maps')
|
|
|
|
for line in map_list:
|
|
|
|
print(' ', end='')
|
|
|
|
print(line)
|
|
|
|
subprocess.run([wget_cmd, '-P', 'dl', line.strip()], stdout=FNULL, stderr=subprocess.STDOUT)
|
2016-01-12 23:19:18 +00:00
|
|
|
print(' Sleeping to prevent throttle/blocking')
|
2016-01-12 21:17:06 +00:00
|
|
|
time.sleep(300) # Seconds
|
|
|
|
|
|
|
|
print('Decompressing maps (if necessary)')
|
|
|
|
for dirpath, dirnames, filenames in os.walk('dl'):
|
|
|
|
for file in filenames:
|
|
|
|
if file.endswith('bz2'):
|
|
|
|
print(' ', end='')
|
|
|
|
print(file)
|
|
|
|
subprocess.run([bunzip2_cmd, os.path.join(dirpath, file)])
|
|
|
|
|
2016-08-28 18:05:11 +00:00
|
|
|
# Setup various runtime aspects (going to do multiple osmosis runs (maps AND POIs)
|
2016-01-13 00:00:16 +00:00
|
|
|
env['JAVACMD_OPTIONS'] = '-Djava.io.tmpdir=' + os.path.join(base_path, 'tmp') # Setup java temp dir to something a bit more sane (tmpfs /tmp for the loss)
|
2016-01-12 21:17:06 +00:00
|
|
|
files_to_process = []
|
|
|
|
for dirpath, dirnames, filenames in os.walk('dl'):
|
|
|
|
for file in filenames:
|
|
|
|
print(' Found map: ', end='')
|
|
|
|
print(os.path.join(dirpath, file))
|
|
|
|
files_to_process.append(os.path.join(dirpath, file))
|
2016-08-28 18:05:11 +00:00
|
|
|
|
|
|
|
print('Processing maps using osmosis')
|
2016-01-13 00:00:16 +00:00
|
|
|
osmosis_cmd = [os.path.join(base_path, 'bin', 'osmosis', 'bin', 'osmosis')]
|
2016-01-12 21:17:06 +00:00
|
|
|
for file in files_to_process:
|
|
|
|
if file.endswith('osm'):
|
|
|
|
osmosis_cmd.extend(['--rx', 'file=' + file])
|
|
|
|
elif file.endswith('pbf'):
|
|
|
|
osmosis_cmd.extend(['--rb', 'file=' + file])
|
|
|
|
for x in range(0, len(files_to_process) - 1):
|
|
|
|
osmosis_cmd.append('--merge')
|
2016-01-12 22:20:07 +00:00
|
|
|
osmosis_cmd.extend(['--mapfile-writer', 'file=output.map', 'type=hd'])
|
2016-01-13 00:00:16 +00:00
|
|
|
cmd = subprocess.Popen(osmosis_cmd, env=env)
|
|
|
|
cmd.wait()
|
2016-01-12 21:17:06 +00:00
|
|
|
|
2016-08-28 18:05:11 +00:00
|
|
|
print('Processing POIs using osmosis')
|
|
|
|
osmosis_cmd = [os.path.join(base_path, 'bin', 'osmosis', 'bin', 'osmosis')]
|
|
|
|
for file in files_to_process:
|
|
|
|
if file.endswith('osm'):
|
|
|
|
osmosis_cmd.extend(['--rx', 'file=' + file])
|
|
|
|
elif file.endswith('pbf'):
|
|
|
|
osmosis_cmd.extend(['--rb', 'file=' + file])
|
|
|
|
for x in range(0, len(files_to_process) - 1):
|
|
|
|
osmosis_cmd.append('--merge')
|
|
|
|
osmosis_cmd.extend(['--poi-writer', 'file=output.poi', 'tag-conf-file=' + os.path.join(base_path, 'poi-mapping.xml')])
|
|
|
|
cmd = subprocess.Popen(osmosis_cmd, env=env)
|
|
|
|
cmd.wait()
|
|
|
|
|