Files
GDMC-2024/world_maker/world_maker.py
2024-06-13 03:51:25 +02:00

10 lines
333 B
Python

import World
from PIL import Image
from data_analysis import get_data, highway_map, filter_sobel, skeleton_highway_map
if __name__ == '__main__':
world = World.World()
heightmap, watermap, treemap = get_data(world)
filter_sobel("./data/heightmap.png").save('./data/sobelmap.png')
skeleton_highway_map(highway_map())