update verson and add PSC to analytics
Browse files- Changelog.md +25 -0
- app.py +1 -1
- apps/dump_analysis.py +7 -0
- queries/process_wcdma.py +1 -0
- utils/utils_vars.py +1 -0
Changelog.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
# CHANGELOGS
|
| 3 |
+
|
| 4 |
+
## [0.2] - 2024-09-29
|
| 5 |
+
|
| 6 |
+
- Adding Analytics dashboard
|
| 7 |
+
|
| 8 |
+
## [0.1] - 2024-08-10
|
| 9 |
+
|
| 10 |
+
- Add 2G and 3G database generation
|
| 11 |
+
- Add option to select columns to download
|
| 12 |
+
- Add option to download Neighbors database
|
| 13 |
+
- Add option to download TRX database
|
| 14 |
+
- Add option to download LNBTS with code
|
| 15 |
+
- Add option to download MRBTS with code
|
| 16 |
+
- Add option to download WCEL with code
|
| 17 |
+
- Add option to download LNCEL with code
|
| 18 |
+
- Add option to download LNCEL_FDD with code
|
| 19 |
+
- Add option to download LNCEL_TDD with code
|
| 20 |
+
- Add option to download LNBTS with code and band
|
| 21 |
+
- Add option to download MRBTS with code and band
|
| 22 |
+
- Add option to download WCEL with code and band
|
| 23 |
+
- Add option to download LNCEL with code and band
|
| 24 |
+
- Add option to download LNCEL_FDD with code and band
|
| 25 |
+
- Add option to download LNCEL_TDD with code and band
|
app.py
CHANGED
|
@@ -6,7 +6,7 @@ st.set_page_config(
|
|
| 6 |
layout="centered",
|
| 7 |
initial_sidebar_state="expanded",
|
| 8 |
menu_items={
|
| 9 |
-
"About": "**📡 NPO DB Query v0.
|
| 10 |
},
|
| 11 |
)
|
| 12 |
|
|
|
|
| 6 |
layout="centered",
|
| 7 |
initial_sidebar_state="expanded",
|
| 8 |
menu_items={
|
| 9 |
+
"About": "**📡 NPO DB Query v0.2**",
|
| 10 |
},
|
| 11 |
)
|
| 12 |
|
apps/dump_analysis.py
CHANGED
|
@@ -150,6 +150,13 @@ def dump_analysis_space():
|
|
| 150 |
with wcel_administate_distribution_plot_col:
|
| 151 |
st.bar_chart(WcdmaAnalysisData.wcel_administate_distribution)
|
| 152 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 153 |
####################### LTE FDD ANALYTICS DATA #######################################
|
| 154 |
st.subheader(":red[LTE FDD ANALYTICS DATA]")
|
| 155 |
|
|
|
|
| 150 |
with wcel_administate_distribution_plot_col:
|
| 151 |
st.bar_chart(WcdmaAnalysisData.wcel_administate_distribution)
|
| 152 |
|
| 153 |
+
st.markdown("***")
|
| 154 |
+
st.markdown(":green[**Primary Scrambling Code Distribution**]")
|
| 155 |
+
psc_distribution_data_col, psc_distribution_plot_col = st.columns(2)
|
| 156 |
+
with psc_distribution_data_col:
|
| 157 |
+
st.write(WcdmaAnalysisData.psc_distribution)
|
| 158 |
+
with psc_distribution_plot_col:
|
| 159 |
+
st.bar_chart(WcdmaAnalysisData.psc_distribution)
|
| 160 |
####################### LTE FDD ANALYTICS DATA #######################################
|
| 161 |
st.subheader(":red[LTE FDD ANALYTICS DATA]")
|
| 162 |
|
queries/process_wcdma.py
CHANGED
|
@@ -187,3 +187,4 @@ def wcdma_analaysis(filepath: str):
|
|
| 187 |
"AdminCellState"
|
| 188 |
].value_counts()
|
| 189 |
WcdmaAnalysisData.number_of_cell_per_lac = wcdma_df["LAC"].value_counts()
|
|
|
|
|
|
| 187 |
"AdminCellState"
|
| 188 |
].value_counts()
|
| 189 |
WcdmaAnalysisData.number_of_cell_per_lac = wcdma_df["LAC"].value_counts()
|
| 190 |
+
WcdmaAnalysisData.psc_distribution = wcdma_df["PriScrCode"].value_counts()
|
utils/utils_vars.py
CHANGED
|
@@ -105,6 +105,7 @@ class WcdmaAnalysisData:
|
|
| 105 |
number_of_empty_wbts_name = 0
|
| 106 |
number_of_empty_wcel_name = 0
|
| 107 |
wcel_administate_distribution = pd.DataFrame()
|
|
|
|
| 108 |
number_of_cell_per_lac = pd.DataFrame()
|
| 109 |
|
| 110 |
|
|
|
|
| 105 |
number_of_empty_wbts_name = 0
|
| 106 |
number_of_empty_wcel_name = 0
|
| 107 |
wcel_administate_distribution = pd.DataFrame()
|
| 108 |
+
psc_distribution = pd.DataFrame()
|
| 109 |
number_of_cell_per_lac = pd.DataFrame()
|
| 110 |
|
| 111 |
|