mirror of
https://github.com/hyperknot/openfreemap.git
synced 2026-05-21 22:12:15 +00:00
22 lines
490 B
Python
22 lines
490 B
Python
from pathlib import Path
|
|
|
|
|
|
class Configuration:
|
|
areas = ['planet', 'monaco']
|
|
|
|
tile_gen_dir = Path('/data/ofm/tile_gen')
|
|
|
|
tile_gen_bin = tile_gen_dir / 'bin'
|
|
tile_gen_scripts_dir = tile_gen_bin / 'scripts'
|
|
|
|
planetiler_bin = tile_gen_dir / 'planetiler'
|
|
planetiler_path = planetiler_bin / 'planetiler.jar'
|
|
|
|
runs_dir = tile_gen_dir / 'runs'
|
|
|
|
ofm_config_dir = Path('/data/ofm/config')
|
|
rclone_config = ofm_config_dir / 'rclone.conf'
|
|
|
|
|
|
config = Configuration()
|