v0ctor / countries

Implementation of countries in the world in SQL, JSON and PHP complying ISO 3166-1, ITU-T E.123 and ITU-T E.164 standards. It includes ISO 3166-1 numeric codes, ISO 3166-1 alpha-2 codes, ITU-T calling codes and names in natural language (English, Spanish and Catalan).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Countries in the world

The repo contains the ISO 3166-1 numeric code, ISO 3166-1 alpha-2 code, ITU-T calling code and name (English, Spanish and Catalan) in natural language for all the sovereign countries in the world recognized by the International Organization for Standardization (ISO) 3166 standard.

The task of obtaining the correct name for each country is costly and repetitive, so this repo contains names only for English, Spanish and Catalan. If you feel like contributing to add more languages, please do it.

Box contents

Data is available in the following formats:

  • JSON
  • PHP
  • SQL

Examples

associative_alpha.json

	"es": {
		"numeric": 724,
		"calling": 34,
		"name": {
			"en": "Spain",
			"es": "Espa\u00f1a",
			"ca": "Espanya"
		}
	},
	// ...

associative_numeric.json

	"28": {
		"alpha": "ag",
		"calling": 1,
		"name": {
			"en": "Antigua and Barbuda",
			"es": "Antigua y Barbuda",
			"ca": "Antigua i Barbuda"
		}
	},
	// ...

Disclaimer

I do NOT take responsibility for the validity of any data. It is true that I checked it several times, but we humans are imperfect.

Take the trouble to check the data if you are going to use it for something that compromises your business, your life, or the life of your pet.

References

Acknowledgements

About

Implementation of countries in the world in SQL, JSON and PHP complying ISO 3166-1, ITU-T E.123 and ITU-T E.164 standards. It includes ISO 3166-1 numeric codes, ISO 3166-1 alpha-2 codes, ITU-T calling codes and names in natural language (English, Spanish and Catalan).

License:Other


Languages

Language:PHP 100.0%