Skip to content

open-admin-data/georgia-administrative-divisions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Georgia Administrative Divisions / საქართველო

Overview

Item Details
Region 13
Municipality 70
Coordinates ✅ Included (all levels)
Formats JSON, NDJSON, CSV
License CC-BY-4.0
Last Updated 2026-06-17
Website openadmindata.org/ge
API openadmindata.org/api/ge

Browse by Region

# Region Municipalitys Link
1 აფხაზეთი (Autonomous Republic of Abkhazia) 0 Browse
2 აჭარის ავტონომიური რესპუბლიკა (Autonomous Republic of Adjara) 6 Browse
3 გურია (Guria) 4 Browse
4 იმერეთი (Imereti) 12 Browse
5 კახეთი (Kakheti) 9 Browse
6 ქვემო ქართლი (Kvemo Kartli) 7 Browse
7 მცხეთა-მთიანეთი (Mtskheta-Mtianeti) 5 Browse
8 დროებითი ადმინისტრაცია (Provisional Administration) 0 Browse
9 რაჭა-ლეჩხუმი და ქვემო სვანეთი (Racha-Lechkhumi and Kvemo Svaneti) 5 Browse
10 სამეგრელო-ზემო სვანეთი (Samegrelo-Zemo Svaneti) 10 Browse
11 სამცხე-ჯავახეთი (Samtskhe-Javakheti) 7 Browse
12 შიდა ქართლი (Shida Kartli) 5 Browse
13 ქ. თბილისი (Tbilisi) 0 Browse

Data Files

File Format Description
all-region.json JSON All 13 region records
all-municipality.json JSON All 70 municipality 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-region.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']['municipality']} municipalitys")

JavaScript

import { readFileSync } from "fs";

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

Schema

Field Type Description
id string Unique identifier
level integer 1=region, 2=municipality
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/{region-slug}/

Municipalitys are listed inline in each region's README.

AI Integration

Citation

Georgia Administrative Divisions Dataset (CC-BY-4.0)
URL: https://github.com/open-admin-data/georgia-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

Open dataset of Georgia's administrative divisions — 13 regions, 70 municipalities. Georgian + English. CC-BY-4.0

Topics

Resources

License

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors