DavMelchi commited on
Commit
b3fac76
·
1 Parent(s): 701ad60

correct TCH in TRX

Browse files
Files changed (1) hide show
  1. queries/process_trx.py +1 -1
queries/process_trx.py CHANGED
@@ -94,7 +94,7 @@ def process_trx_data(file_path: str):
94
  df_gsm_trx = process_brute_trx_data(file_path=file_path).copy()
95
 
96
  bcch = df_gsm_trx[df_gsm_trx["channel0Type"] == 4]
97
- tch = df_gsm_trx[df_gsm_trx["channel0Type"] == 3][["ID_BTS", "initialFrequency"]]
98
 
99
  tch = tch.pivot_table(
100
  index="ID_BTS",
 
94
  df_gsm_trx = process_brute_trx_data(file_path=file_path).copy()
95
 
96
  bcch = df_gsm_trx[df_gsm_trx["channel0Type"] == 4]
97
+ tch = df_gsm_trx[df_gsm_trx["channel0Type"] != 4][["ID_BTS", "initialFrequency"]]
98
 
99
  tch = tch.pivot_table(
100
  index="ID_BTS",