Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Malta Administrative Divisions / Malta

Overview

Item Details
District 6
Local Council 68
Coordinates ✅ Included (all levels)
Formats JSON, NDJSON, CSV
License CC-BY-4.0
Last Updated 2026-07-26
Website openadmindata.org/mt
API openadmindata.org/api/mt

Browse by District

# District Local Councils Link
1 Port il-Kbir (Southern Harbour) 16 Browse
2 Port ta'Fuq (Northern Harbour) 12 Browse
3 Xlokk (South Eastern) 9 Browse
4 Punent (Western) 11 Browse
5 Tramuntana (Northern) 6 Browse
6 Għawdex (Gozo) 14 Browse

Data Files

File Format Description
all-district.json JSON All 6 district records
all-council.json JSON All 68 local council records
all-flat.json JSON Levels 1-1 flat array
all-flat.ndjson NDJSON Streaming format
all-flat.csv CSV Spreadsheet format
hierarchy.json JSON Nested tree
schema.json JSON Schema Data schema

Quick Start

Python

import json

with open("data/all-district.json", "r", encoding="utf-8") as f:
    data = json.load(f)

for r in data:
    print(f"{r['name']['local']} ({r['name']['en']}) — {r['children_count']['council']} local councils")

JavaScript

import { readFileSync } from "fs";

const data = JSON.parse(readFileSync("data/all-district.json", "utf-8"));
console.log(`Total: ${data.length} districts`);

Schema

Field Type Description
id string Unique identifier
level integer 1=district, 2=local council
level_name object Level label (local + English)
name.local string Name in local script
name.en string English name
name.slug string URL-safe slug
parent object/null Parent division reference
ancestors array Full ancestor chain
children_count object Count of children per level
zip_codes array Postal codes (where available)
geo.lat string Latitude (WGS84)
geo.lon string Longitude (WGS84)

Full schema: data/schema.json

Hierarchy Browse

divisions/{district-slug}/

Local Councils are listed inline in each district's README.

AI Integration

Citation

Malta Administrative Divisions Dataset (CC-BY-4.0)
URL: https://github.com/open-admin-data/malta-administrative-divisions

See CITATION.cff for machine-readable citation.

License

Related

  • Open Admin Data — Browse, search and explore administrative divisions for every country
  • open-admin-data — GitHub organization with all country repos
  • ListBase — Structured reference data for every country

About

Malta: 6 districts, 68 local councils — Open Admin Data

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors