Olaroti commited on
Commit
81573f4
·
verified ·
1 Parent(s): 031db66

Standardize Electric Sheep Africa dataset card

Browse files
Files changed (1) hide show
  1. README.md +110 -88
README.md CHANGED
@@ -1,119 +1,141 @@
1
  ---
2
- license: gpl
3
- task_categories:
4
- - text-classification
5
  language:
6
  - en
7
- tags:
8
- - telecom
9
- - coverage
10
- - map
11
- - signal
12
- - strength
13
  size_categories:
14
  - 100K<n<1M
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  ---
16
- # Coverage Maps and Signal Strength Data
17
-
18
- ## Dataset Description
19
-
20
- Geo-tagged network quality measurements across Nigeria
21
-
22
- ## Dataset Information
23
-
24
- - **Category**: Geospatial and Mobility
25
- - **Format**: CSV, Parquet
26
- - **Rows**: 200,000
27
- - **Columns**: 14
28
- - **Date Generated**: 2025-10-05
29
- - **Location**: `data/coverage_maps_and_signal_strength_data/`
30
-
31
- ## Schema
32
-
33
- | Column | Type | Sample Values |
34
- |--------|------|---------------|
35
- | `measurement_id` | String | COV00000001 |
36
- | `latitude` | Float | 8.993513 |
37
- | `longitude` | Float | 7.380306 |
38
- | `city` | String | Abuja |
39
- | `operator` | String | MTN |
40
- | `network_type` | String | 4G |
41
- | `signal_strength_dbm` | Integer | -84 |
42
- | `coverage_quality` | String | excellent |
43
- | `download_speed_mbps` | Float | 31.58 |
44
- | `upload_speed_mbps` | Float | 8.09 |
45
- | `latency_ms` | Integer | 12 |
46
- | `tower_id` | String | ABU-4797 |
47
- | `distance_to_tower_km` | Float | 0.36 |
48
- | `indoor_outdoor` | String | indoor |
49
-
50
- ## Sample Data
51
 
52
- ```
53
- 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
54
- COV00000001 8.993513 7.380306 Abuja MTN 4G -84 excellent 31.58 8.09 12 ABU-4797 0.36 indoor
55
- COV00000002 9.928355 8.894921 Jos MTN 3G -90 good 1.62 0.24 107 JOS-4195 9.20 outdoor
56
- COV00000003 9.906466 8.954852 Jos 9mobile 4G -87 good 86.46 9.92 11 JOS-8986 0.44 indoor
57
- ```
58
 
59
- ## Nigerian Context
60
 
61
- This dataset incorporates authentic Nigerian telecommunications characteristics:
 
 
 
62
 
63
- - **Geographic Coverage**: Major Nigerian cities including Lagos, Abuja, Kano, Port Harcourt, Ibadan
64
- - **Operators**: MTN, Airtel, Glo, 9mobile with realistic market shares
65
- - **Phone Numbers**: Nigerian format (+234 prefixes)
66
- - **Currency**: Nigerian Naira (NGN)
67
- - **Time Zone**: West Africa Time (WAT, UTC+1)
68
- - **Network Types**: 2G, 3G, 4G, 5G distribution
69
 
70
- ## File Formats
71
 
72
- ### CSV
73
- ```
74
- data/coverage_maps_and_signal_strength_data/coverage_maps_and_signal_strength_data.csv
75
- ```
76
 
77
- ### Parquet (Recommended)
78
- ```
79
- data/coverage_maps_and_signal_strength_data/coverage_maps_and_signal_strength_data.parquet
80
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
 
82
- ## Loading the Dataset
83
 
84
- ### Python (Pandas)
85
  ```python
86
- import pandas as pd
87
 
88
- # Load CSV
89
- df = pd.read_csv('data/coverage_maps_and_signal_strength_data/coverage_maps_and_signal_strength_data.csv')
90
 
91
- # Load Parquet (recommended for large datasets)
92
- df = pd.read_parquet('data/coverage_maps_and_signal_strength_data/coverage_maps_and_signal_strength_data.parquet')
 
 
93
  ```
94
 
95
- ### Python (PyArrow)
 
96
  ```python
97
- import pyarrow.parquet as pq
98
 
99
- # Load Parquet
100
- table = pq.read_table('data/coverage_maps_and_signal_strength_data/coverage_maps_and_signal_strength_data.parquet')
101
- df = table.to_pandas()
 
102
  ```
103
 
104
- ## License
 
 
 
 
 
 
 
105
 
106
- MIT License - For educational and research purposes
 
 
 
 
 
 
 
 
 
 
 
107
 
108
  ## Citation
109
 
110
- ```
111
- Nigerian Telecom Datasets - Coverage Maps and Signal Strength Data
112
- Generated: 2025-10-05
113
- Category: Geospatial and Mobility
114
- Rows: 200,000
 
 
 
 
115
  ```
116
 
117
- ## Related Datasets
 
 
 
 
 
 
 
 
 
 
118
 
119
- 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.
 
1
  ---
2
+ license: other
 
 
3
  language:
4
  - en
5
+ task_categories:
6
+ - tabular-classification
7
+ - tabular-regression
8
+ multilinguality: monolingual
 
 
9
  size_categories:
10
  - 100K<n<1M
11
+ tags:
12
+ - "africa"
13
+ - "electric-sheep-africa"
14
+ - "open-data"
15
+ - "metadata-backed"
16
+ - "technology-digital"
17
+ - "parquet"
18
+ - "tabular"
19
+ - "text"
20
+ - "telecom"
21
+ - "coverage"
22
+ - "map"
23
+ - "signal"
24
+ - "strength"
25
+ pretty_name: "Africa Synth Telecom Coverage Maps and Signal Strength Nigeria | Africa (Electric Sheep Africa metadata inventory)"
26
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
 
28
+ # Africa Synth Telecom Coverage Maps and Signal Strength Nigeria | Africa (Electric Sheep Africa metadata inventory)
 
 
 
 
 
29
 
30
+ **Size category:** `100K<n<1M` - **Formats:** `parquet` - **Sector:** technology_digital - *Engineered by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)*
31
 
32
+ ![size](https://img.shields.io/badge/size-100K%3Cn%3C1M-blue)
33
+ ![sector](https://img.shields.io/badge/sector-technology_digital-green)
34
+ ![downloads](https://img.shields.io/badge/HF_downloads-22-orange)
35
+ ![license](https://img.shields.io/badge/license-other-lightgrey)
36
 
37
+ ## TL;DR
 
 
 
 
 
38
 
39
+ This dataset is part of the Electric Sheep Africa catalog on Hugging Face. It is indexed for African data discovery with standardized metadata, loading guidance, provenance notes, and analyst-oriented context.
40
 
41
+ ## What This Dataset Covers
 
 
 
42
 
43
+ Public datasets help analysts inspect structured evidence, build reproducible workflows, and compare patterns across domains.
44
+
45
+ Dataset context from the existing Hugging Face card: Coverage Maps and Signal Strength Data Dataset Description Geo-tagged network quality measurements across Nigeria Dataset Information Category: Geospatial and Mobility Format: CSV, Parquet Rows: 200,000 Columns: 14 Date Generated: 2025-10-05 Location: data/coverage_maps_and_signal_strength_data/ Schema Column Type Sample Values measurement_id String COV00000001 latitude Float 8.993513 longitude Float 7.380306 city String Abuja… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepafrica/africa-synth-telecom-coverage-maps-and-signal-strength-nigeria.
46
+
47
+ ## Dataset Profile
48
+
49
+ | Field | Value |
50
+ |---|---|
51
+ | Hugging Face repo | [`electricsheepafrica/africa-synth-telecom-coverage-maps-and-signal-strength-nigeria`](https://huggingface.co/datasets/electricsheepafrica/africa-synth-telecom-coverage-maps-and-signal-strength-nigeria) |
52
+ | Sector | technology_digital |
53
+ | Topic tags | telecom, coverage, map, signal, strength |
54
+ | Modalities | `tabular`, `text` |
55
+ | Formats | `parquet` |
56
+ | Size category | `100K<n<1M` |
57
+ | Countries | Nigeria |
58
+ | ISO3 coverage | `NGA` |
59
+ | Last modified on HF | `2025-10-05 20:53:44+00:00` |
60
+ | Inventory snapshot | `2026-07-16T16:00:34Z` |
61
+
62
+ ## How To Read This Dataset
63
+
64
+ - Start from the repository files and the dataset viewer when available.
65
+ - Treat the README context as a fast orientation layer; confirm variable definitions and units in the data files before modeling.
66
+ - Use explicit country columns when present. When geography is only implied by the title or source metadata, document that assumption in downstream analysis.
67
+ - Preserve missing values until you have a defensible imputation rule.
68
 
69
+ ## Usage
70
 
 
71
  ```python
72
+ from datasets import load_dataset
73
 
74
+ ds = load_dataset("electricsheepafrica/africa-synth-telecom-coverage-maps-and-signal-strength-nigeria")
75
+ print(ds)
76
 
77
+ split_name = next(iter(ds))
78
+ table = ds[split_name]
79
+ print(table.features)
80
+ print(table[:3])
81
  ```
82
 
83
+ ### Convert To Pandas When Tabular
84
+
85
  ```python
86
+ from datasets import Dataset
87
 
88
+ first_split = ds[next(iter(ds))]
89
+ if isinstance(first_split, Dataset):
90
+ df = first_split.to_pandas()
91
+ print(df.head())
92
  ```
93
 
94
+ ## Data Quality Notes
95
+
96
+ - This card was standardized from the Electric Sheep Africa Hugging Face metadata inventory.
97
+ - Exact schema, row counts, and source files should be inspected in the repository data files.
98
+ - Metadata gaps from the inventory: upstream_publisher.
99
+ - Do not infer policy meaning from labels alone; confirm definitions, units, and methods in the source material.
100
+
101
+ ## Source And Provenance
102
 
103
+ - **Source context:** Electric Sheep Africa metadata inventory
104
+ - **Publisher/source attribution:** Public dataset metadata
105
+ - **License:** gpl
106
+ - **Hugging Face URL:** [https://huggingface.co/datasets/electricsheepafrica/africa-synth-telecom-coverage-maps-and-signal-strength-nigeria](https://huggingface.co/datasets/electricsheepafrica/africa-synth-telecom-coverage-maps-and-signal-strength-nigeria)
107
+ - **Inventory retrieved at:** `2026-07-16T16:00:34Z`
108
+
109
+ ## Suggested Analyses
110
+
111
+ - Inspect schema and missingness before modeling.
112
+ - Profile variables by geography, time, and subgroup columns where present.
113
+ - Join with other Electric Sheep Africa datasets using explicit country, year, and indicator fields when available.
114
+ - Build reproducible notebooks that cite both the original source context and the Electric Sheep Africa Hugging Face repo.
115
 
116
  ## Citation
117
 
118
+ ```bibtex
119
+ @misc{electric_sheep_africa_africa_synth_telecom_coverage_maps_and_signal_strength_nigeria_2026,
120
+ title = {Africa Synth Telecom Coverage Maps and Signal Strength Nigeria | Africa (Electric Sheep Africa metadata inventory)},
121
+ author = {Public dataset metadata},
122
+ year = {2026},
123
+ url = {https://huggingface.co/datasets/electricsheepafrica/africa-synth-telecom-coverage-maps-and-signal-strength-nigeria},
124
+ publisher = {Hugging Face Datasets, engineered by Electric Sheep Africa},
125
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-synth-telecom-coverage-maps-and-signal-strength-nigeria}}
126
+ }
127
  ```
128
 
129
+ ## License
130
+
131
+ Released under gpl.
132
+
133
+ Original source rights remain with the original publisher or data provider. Electric Sheep Africa engineering standardizes discovery metadata, documentation, and usage guidance for analysis on Hugging Face.
134
+
135
+ ## About Electric Sheep Africa
136
+
137
+ Electric Sheep Africa publishes ML-ready African public datasets on Hugging Face.
138
+
139
+ ---
140
 
141
+ Provenance: metadata-backed README standardized 2026-08-12 by the Electric Sheep Africa README system. Inventory source: `catalog/esa_metadata_inventory/master_metadata.jsonl`.