mirror of
https://github.com/samirsaci/picking-route.git
synced 2025-05-20 08:28:06 +08:00
update readme
This commit is contained in:
2
app.py
2
app.py
@ -56,7 +56,7 @@ origin_loc = [0, y_low]
|
||||
# Distance Threshold (m)
|
||||
distance_threshold = 35
|
||||
distance_list = [1] + [i for i in range(5, 100, 5)]
|
||||
IN = 'In/'
|
||||
IN = 'static/in/'
|
||||
# Store Results by WaveID
|
||||
list_wid, list_dst, list_route, list_ord, list_lines, list_pcs, list_monomult = [], [], [], [], [], [], []
|
||||
list_results = [list_wid, list_dst, list_route, list_ord, list_lines, list_pcs, list_monomult] # Group in list
|
||||
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
@ -144,7 +144,7 @@ def process_methods(df_reswave1, df_reswave2, df_reswave3, lines_number, distanc
|
||||
plt.title("Picking Route Distance for {:,} Order lines / {} m distance threshold".format(lines_number, distance_threshold))
|
||||
plt.ylabel('Walking Distance (m)')
|
||||
plt.xlabel('Orders per Wave (Orders/Wave)')
|
||||
plt.savefig("{}lines_{}m_3mpng".format(lines_number, distance_threshold))
|
||||
plt.savefig("static/out/{}lines_{}m_3m.png".format(lines_number, distance_threshold))
|
||||
plt.show()
|
||||
|
||||
return df_reswave
|
Reference in New Issue
Block a user