remove h/v as we will have orient in foldernames

This commit is contained in:
HappyZ 2019-06-05 13:03:01 -05:00
parent 6391d9f76c
commit d8e5015daa
1 changed files with 2 additions and 3 deletions

View File

@ -184,12 +184,11 @@ def convert_to_pickle_rss(
rss_map[i, j] = max(np.median(data_fullfilled), -85.0) rss_map[i, j] = max(np.median(data_fullfilled), -85.0)
filepath = fp.replace( filepath = fp.replace(
".csv", "{}_pkttype_{}_map{}_{}" ".csv", "{}_pkttype_{}_map{}"
.format( .format(
"_s{}".format(np.random.randint(0, 999999)) if sampling else "", "_s{}".format(np.random.randint(0, 999999)) if sampling else "",
pkt_types[0][0], pkt_types[0][0],
"" if filters is None else "_{}".format(filters), "" if filters is None else "_{}".format(filters)
"h" if (orientation % 2) is 0 else "v"
) )
) )