Logo Lanfrica

kengres/burundi.json

Domain:

geospatial

Record type:

dataset
Creator:
ken
Host:
Comprehensive JSON data about Burundi's administrative divisions, demographics, geography, and culture for developers # Burundi Data for Developers This repository contains comprehensive data about Burundi in JSON format, designed for developers building applications related to Burundi. ## Overview The `data.json` file contains structured information about Burundi's administrative divisions, demographics, geography, economy, education, holidays, and more. This data is particularly useful for: - Building location-based applications - Creating administrative forms and dropdowns - Developing educational or informational platforms - Building maps and geographic applications - Creating cultural or tourism applications ## Data Structure ### Administrative Divisions - **Current Provinces (5)**: Buhumuza, Bujumbura, Burunga, Butanyerera, Gitega - **Old Provinces (18)**: Historical administrative divisions from 2015-2025 - **Communes (42)**: Current administrative subdivisions within provinces - **Territorial Correspondence**: Mapping between current and former provinces ### Key Data Sections - **Demographics**: Population statistics, literacy rates, life expectancy - **Geography**: Area, borders, highest point, major lake, climate - **Economy**: Currency, GDP growth, major industries, natural resources - **Education**: School structure, academic calendar, literacy information - **Holidays**: National and religious holidays with dates - **Contact Formats**: Phone codes, postal codes, address formats - **Languages**: Official and local languages - **Timezones**: Africa/Bujumbura and Central Africa Time (CAT) ### Multilingual Support The data includes both English and French translations for: - Province descriptions - Major industries - Key attractions - Climate descriptions - Holiday names - Geography information - Education structure ## Usage Examples ### Get All Provinces ```javascript const provinces = data.provinces.map((province) => ({ name: province.name, capital: province.capital, population: province.population, })); ``` ### Get Communes by Province ```javascript con …