File size: 2,091 Bytes
123d5ff
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c58bec1
123d5ff
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c58bec1
 
 
 
123d5ff
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import streamlit as st

st.markdown(
    """
## Database Processing App Documentation
### Overview
This app is designed to process and generate databases from uploaded dump files. It provides a user-friendly interface for uploading files, selecting database types, and downloading processed databases.

### Getting Started
1. Upload a dump file: Click on the "Upload updated dump file" button to select a file in .xlsb format.
2. Select a database type: Choose a database type from the available options (2G, 3G, LTE, All, or NEI).
3. Download the processed database: Once the processing is complete, click on the "Download" button to save the processed database in .xlsx format.

### Required Sheets
The app requires the following sheets to be present in the uploaded file:

1. **2G :**
    - BTS
    - BCF
    - TRX
    - MAL
2. **3G :**
    - WCEL
    - WBTS
    - WNCEL
3. **LTE :**
    - LNBTS
    - LNCEL
    - LNCEL_FDD
    - LNCEL_TDD
4. **NEI :**
    - ADCE
    - ADJS
    - ADJI
    - ADJG
    - ADJW
    - BTS
    - WCEL
5. **MRBTS :**
    - MRBTS
6. **INVUNIT :**
    - INVUNIT

Please ensure that these sheets are present in the uploaded file to avoid any errors.

### Database Types
The app supports the following database types:

    - 2G: Process 2G database
    - 3G: Process 3G database
    - LTE: Process LTE database
    - All: Process all databases (2G, 3G, and LTE)
    - NEI: Process neighbors database
    
### Troubleshooting

- Error messages: If an error occurs during processing, an error message will be displayed. Please check the file format and required sheets before trying again.
- File format: Only .xlsb files are supported. Please convert your file to the correct format before uploading.



### FAQ
- What is the maximum file size allowed?: The maximum file size allowed is 200MB.
- How long does the processing take?: The processing time depends on the file size and complexity. Please wait for the processing to complete.


### Contact
If you have any questions or issues with the app, please contact [Dav Melchi] at [davmelchi@gmail.com].

    """
)