Skip to content

List of countries including regions and cities of the world, ***ISO based information***

Notifications You must be signed in to change notification settings

EfratIfergan/country-region-city-data

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

country-region-city-data

This repository contains a list of countries with their regions and cities. The data is based on the ISO database, and the codes are updated accordingly.

Data Structure

The data is structured in TypeScript interfaces, as follows:

 interface CountryWithCitiesAndRegions {
  countryName: string;
  countryShortCode: string;
  cities: Cities[];
  regions: Regions[];
}

interface Cities {
  cityName: string;
}

interface Regions {
  name: string;
  shortCode?: string;
}

Contributing

If you find any errors or have suggestions for improvements, please open an issue or submit a pull request. We welcome any feedback that can help make this data more accurate and useful.

About

List of countries including regions and cities of the world, ***ISO based information***

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published