12 lines
369 B
Python
12 lines
369 B
Python
import json
|
|
import os
|
|
|
|
with open(os.path.join(os.path.dirname(__file__), 'locations.json'), 'r') as file:
|
|
location_table = json.loads(file.read())
|
|
|
|
lookup_id_to_name = {}
|
|
for item in location_table:
|
|
lookup_id_to_name[item["id"]] = item["name"]
|
|
|
|
lookup_id_to_name[None] = "Utopia Complete"
|
|
lookup_name_to_id = {name: id for id, name in lookup_id_to_name.items()} |