Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 611 Bytes

README.md

File metadata and controls

25 lines (23 loc) · 611 Bytes

#ISO_3166-2 World Regions This file pretends to merge data from several data sources (openweathermap, wikipedia, etc) to centralize all country-wide locations and miscellaneous data in one file.

The data structure looks like this:

{
  "country_code" (ISO_3166-1) : {
    "name": String,
    "currency" (ISO_4217): String,
    "regions" : [
        {
          "code" (ISO_3166-2) : String,
          "name"      : String,
          "latitude"  : Float,
          "longitude" : Float,
          "timezone"  : String,
          "openweathermap_city_id" : Integer
        },
        ...
    ]
  },
...
}