Disable priorities compression by default

Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
Konstantin Pastbin 2023-07-22 00:57:30 +03:00 committed by Viktor Govako
parent 9c914f097b
commit 8c5e152621

View file

@ -92,9 +92,7 @@ Priorities ranges' rendering order overview:
- BG-by-size: landcover areas sorted by their size
'''
OVERLAYS_MAX_PRIORITY = 200000
CASING_OBJECT_ID = '_casing'
OVERLAYS_MAX_PRIORITY = 100000
def to_boolean(s):
s = s.lower()
@ -347,7 +345,7 @@ def komap_mapswithme(options):
output = ''
for prio_range in prio_ranges.keys():
load_priorities(prio_range, options.priorities_path, unique_types_check, compress = True)
load_priorities(prio_range, options.priorities_path, unique_types_check, compress = False)
output += f'{"" if not output else ", "}{len(prio_ranges[prio_range]["priorities"])} {prio_range}'
print(f'Loaded priorities: {output}.')