Kossisoroyce commited on
Commit
bd44b4f
·
verified ·
1 Parent(s): ea50ec4

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -57,3 +57,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
60
+ coverage_maps_and_signal_strength_data.csv filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Coverage Maps and Signal Strength Data
2
+
3
+ ## Dataset Description
4
+
5
+ Geo-tagged network quality measurements across Nigeria
6
+
7
+ ## Dataset Information
8
+
9
+ - **Category**: Geospatial and Mobility
10
+ - **Format**: CSV, Parquet
11
+ - **Rows**: 200,000
12
+ - **Columns**: 14
13
+ - **Date Generated**: 2025-10-05
14
+ - **Location**: `data/coverage_maps_and_signal_strength_data/`
15
+
16
+ ## Schema
17
+
18
+ | Column | Type | Sample Values |
19
+ |--------|------|---------------|
20
+ | `measurement_id` | String | COV00000001 |
21
+ | `latitude` | Float | 8.993513 |
22
+ | `longitude` | Float | 7.380306 |
23
+ | `city` | String | Abuja |
24
+ | `operator` | String | MTN |
25
+ | `network_type` | String | 4G |
26
+ | `signal_strength_dbm` | Integer | -84 |
27
+ | `coverage_quality` | String | excellent |
28
+ | `download_speed_mbps` | Float | 31.58 |
29
+ | `upload_speed_mbps` | Float | 8.09 |
30
+ | `latency_ms` | Integer | 12 |
31
+ | `tower_id` | String | ABU-4797 |
32
+ | `distance_to_tower_km` | Float | 0.36 |
33
+ | `indoor_outdoor` | String | indoor |
34
+
35
+ ## Sample Data
36
+
37
+ ```
38
+ measurement_id latitude longitude city operator network_type signal_strength_dbm coverage_quality download_speed_mbps upload_speed_mbps latency_ms tower_id distance_to_tower_km indoor_outdoor
39
+ COV00000001 8.993513 7.380306 Abuja MTN 4G -84 excellent 31.58 8.09 12 ABU-4797 0.36 indoor
40
+ COV00000002 9.928355 8.894921 Jos MTN 3G -90 good 1.62 0.24 107 JOS-4195 9.20 outdoor
41
+ COV00000003 9.906466 8.954852 Jos 9mobile 4G -87 good 86.46 9.92 11 JOS-8986 0.44 indoor
42
+ ```
43
+
44
+ ## Nigerian Context
45
+
46
+ This dataset incorporates authentic Nigerian telecommunications characteristics:
47
+
48
+ - **Geographic Coverage**: Major Nigerian cities including Lagos, Abuja, Kano, Port Harcourt, Ibadan
49
+ - **Operators**: MTN, Airtel, Glo, 9mobile with realistic market shares
50
+ - **Phone Numbers**: Nigerian format (+234 prefixes)
51
+ - **Currency**: Nigerian Naira (NGN)
52
+ - **Time Zone**: West Africa Time (WAT, UTC+1)
53
+ - **Network Types**: 2G, 3G, 4G, 5G distribution
54
+
55
+ ## File Formats
56
+
57
+ ### CSV
58
+ ```
59
+ data/coverage_maps_and_signal_strength_data/coverage_maps_and_signal_strength_data.csv
60
+ ```
61
+
62
+ ### Parquet (Recommended)
63
+ ```
64
+ data/coverage_maps_and_signal_strength_data/coverage_maps_and_signal_strength_data.parquet
65
+ ```
66
+
67
+ ## Loading the Dataset
68
+
69
+ ### Python (Pandas)
70
+ ```python
71
+ import pandas as pd
72
+
73
+ # Load CSV
74
+ df = pd.read_csv('data/coverage_maps_and_signal_strength_data/coverage_maps_and_signal_strength_data.csv')
75
+
76
+ # Load Parquet (recommended for large datasets)
77
+ df = pd.read_parquet('data/coverage_maps_and_signal_strength_data/coverage_maps_and_signal_strength_data.parquet')
78
+ ```
79
+
80
+ ### Python (PyArrow)
81
+ ```python
82
+ import pyarrow.parquet as pq
83
+
84
+ # Load Parquet
85
+ table = pq.read_table('data/coverage_maps_and_signal_strength_data/coverage_maps_and_signal_strength_data.parquet')
86
+ df = table.to_pandas()
87
+ ```
88
+
89
+ ## License
90
+
91
+ MIT License - For educational and research purposes
92
+
93
+ ## Citation
94
+
95
+ ```
96
+ Nigerian Telecom Datasets - Coverage Maps and Signal Strength Data
97
+ Generated: 2025-10-05
98
+ Category: Geospatial and Mobility
99
+ Rows: 200,000
100
+ ```
101
+
102
+ ## Related Datasets
103
+
104
+ This dataset is part of the Nigerian Telecom Datasets collection, which includes 34 datasets covering network performance, customer behavior, financial transactions, infrastructure, geospatial data, customer experience, and emerging technologies.
coverage_maps_and_signal_strength_data.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8cfb365fdf78a12633ae03d7740d2982b098b860ea3969ec64c3b5edfdb86c5f
3
+ size 18338353
coverage_maps_and_signal_strength_data.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6c1396e942d1aec3b6a6d72d4de62e553eb95c93fa9403dd0f51e512eb69c22
3
+ size 7758233