Ejemplo n.º 1
0
def maps_test():
    mea = MultiInstanceEAlgorithm()
    mea.load_multiple_points()
    x = []
    y = []
    z = []
    for _map in mea.maps:
        for d in _map.map:
            x.append(d["x"])
            y.append(d["y"])
            z.append(d["z"])
            print(".", end=" ")
        print("#")
        print(x)
        print(y)
        Plotter.scatter_plot(x, y)
        x = []
        y = []
        z = []