remove h/v as we will have orient in foldernames
This commit is contained in:
parent
6391d9f76c
commit
d8e5015daa
|
|
@ -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"
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue