Algeria 5G Coverage
@geoalgeria/telecom
3,598 5G coverage records from operator maps (3,580 mapped; Djezzy, Mobilis, Ooredoo) with wilaya/commune linkage.
Source: Djezzy, Mobilis, Ooredoo coverage maps
Install
npm install @geoalgeria/telecomQuick example
import telecom from "@geoalgeria/telecom";
const records = telecom.coverage(); // all 3,598 records; 3,580 mapped
const djezzy = telecom.coverageByOperator("djezzy"); // 1,001 records; 983 mapped
const techs = telecom.technologies(); // ["5G"]API reference
| Name | Signature | Description |
|---|---|---|
coverage | coverage(technology?: Technology): CoverageSite[] | All coverage sites for a technology (default "5G"). |
coverageByOperator | coverageByOperator(operator: Operator, technology?: Technology): CoverageSite[] | Coverage sites for a single operator. |
technologies | technologies(): Technology[] | Technologies present in this release. |
metadata | metadata(): Metadata | Dataset metadata. |
Record shape
| Field | Type | Nullable | Description |
|---|---|---|---|
id | string | no | Deterministic id (operator + coordinates + label). |
technology | Technology | no | Network technology (currently "5G"). |
operator | Operator | no | Operator that published this site. |
name | string | yes | Site label (locality/commune). |
address | string | yes | Street address. |
commune | string | yes | Commune name (French). |
commune_ar | string | yes | Commune name (Arabic). |
commune_code | string | yes | Commune code joining to geoalgeria communes. |
wilaya_code | string | no | Zero-padded current wilaya code ("01".."69"). |
source_wilaya_code | string | yes | Original operator wilaya when it differs from the current linkage. |
lat | number | yes | Latitude; null when a published coordinate fails review. |
lng | number | yes | Longitude; null when a published coordinate fails review. |
geo_precision | "exact" | "approximate" | null | no | Coordinate precision; null when no publishable coordinate remains. |
geo_method | "operator_map" | "operator_commune_point" | null | no | How the point was placed, or null when no coordinate remains. |
source | string | no | Key into metadata.sources[] identifying the operator map this record came from. |
review_status | "corrected" | yes | Present when an evidence-backed correction was applied. |
reviewed_at | string | yes | ISO date of the correction review. |
reviewed_by | string | yes | Maintainer or team that performed the review. |
review_evidence | string[] | yes | Public evidence URLs supporting the correction. |
Formats
JSONCSVGEOJSONTS
The npm package ships JSON. Other formats are available in each GitHub Release.