28 lines
872 B
Python
28 lines
872 B
Python
# postgresql connection string
|
|
CONNECTION = 'dbname=borders user=borders password=borders host=dbhost port=5432'
|
|
# passed to flask.Debug
|
|
DEBUG = True
|
|
# if the main table is read-only
|
|
READONLY = False
|
|
# main table name
|
|
TABLE = 'borders'
|
|
# from where OSM borders are imported
|
|
OSM_TABLE = 'osm_borders'
|
|
# transit table for autosplitting results
|
|
AUTOSPLIT_TABLE = 'splitting'
|
|
## tables with borders for reference
|
|
OTHER_TABLES = {
|
|
#'old': 'old_borders'
|
|
}
|
|
# backup table
|
|
BACKUP = 'borders_backup'
|
|
## table with crossing lines
|
|
CROSSING_TABLE = 'crossing'
|
|
# area of an island for it to be considered small
|
|
SMALL_KM2 = 10
|
|
# force multipolygons in JOSM output
|
|
JOSM_FORCE_MULTI = True
|
|
# alert instead of json on import error
|
|
IMPORT_ERROR_ALERT = False
|
|
# file to which daemon writes the name of currently processed region
|
|
DAEMON_STATUS_PATH = '/var/tmp/borders-daemon-status.txt'
|