Skip to content

open-admin-data/seychelles-administrative-divisions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Seychelles Administrative Divisions / Seychelles

Overview

Item Details
Island Group 4
Region 8
District 27
Coordinates ✅ Included (all levels)
Formats JSON, NDJSON, CSV
License CC-BY-4.0
Last Updated 2026-06-01
Website openadmindata.org/sc
API openadmindata.org/api/sc

Browse by Island Group

# Island Group Regions Districts Link
1 Mahe 5 23 Browse
2 Praslin 1 2 Browse
3 La Digue 1 1 Browse
4 Other Islands 1 1 Browse

Data Files

File Format Description
all-island_group.json JSON All 4 island group records
all-region.json JSON All 8 region records
all-district.json JSON All 27 district records
all-flat.json JSON Levels 1-2 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-island_group.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']['region']} regions")

JavaScript

import { readFileSync } from "fs";

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

Schema

Field Type Description
id string Unique identifier
level integer 1=island group, 2=region, 3=district
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/{island_group-slug}/
divisions/{island_group-slug}/{region-slug}/

Districts are listed inline in each region's README.

AI Integration

Citation

Seychelles Administrative Divisions Dataset (CC-BY-4.0)
URL: https://github.com/open-admin-data/seychelles-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 Seychelles administrative divisions — 4 island groups, 8 regions, 27 districts with coordinates. CC-BY-4.0

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors