├── .gitignore ├── resources ├── states │ ├── GF.json │ ├── GP.json │ ├── MQ.json │ ├── RE.json │ ├── EH.json │ ├── MO.json │ ├── SJ.json │ ├── RS.json │ ├── ST.json │ ├── PM.json │ ├── TK.json │ ├── BQ.json │ ├── KM.json │ ├── BE.json │ ├── MS.json │ ├── NC.json │ ├── AX.json │ ├── KI.json │ ├── MW.json │ ├── SH.json │ ├── BA.json │ ├── WF.json │ ├── VI.json │ ├── FM.json │ ├── MP.json │ ├── SZ.json │ ├── BN.json │ ├── GL.json │ ├── TJ.json │ ├── SL.json │ ├── TW.json │ ├── IE.json │ ├── GB.json │ ├── UG.json │ ├── FJ.json │ ├── TG.json │ ├── TF.json │ ├── NP.json │ ├── AS.json │ ├── FO.json │ ├── SG.json │ ├── DK.json │ ├── PF.json │ ├── BH.json │ ├── RW.json │ ├── TM.json │ ├── TO.json │ ├── DJ.json │ ├── CY.json │ ├── BZ.json │ ├── GM.json │ ├── KY.json │ ├── ER.json │ ├── MG.json │ ├── KW.json │ ├── IL.json │ ├── VU.json │ ├── BD.json │ ├── CR.json │ ├── GQ.json │ ├── QA.json │ ├── AE.json │ ├── AD.json │ ├── BY.json │ ├── VC.json │ ├── GD.json │ ├── XK.json │ ├── NE.json │ ├── GN.json │ ├── LB.json │ ├── AG.json │ ├── SK.json │ ├── IS.json │ ├── PK.json │ ├── ML.json │ ├── GW.json │ ├── KG.json │ ├── BO.json │ ├── TV.json │ ├── AT.json │ ├── GA.json │ ├── LK.json │ ├── SM.json │ └── GG.json └── cities │ ├── BB.json │ ├── BT.json │ ├── DJ.json │ ├── GF.json │ ├── LU.json │ ├── MO.json │ ├── MV.json │ ├── NC.json │ ├── SB.json │ ├── ST.json │ ├── TL.json │ ├── BS.json │ ├── BZ.json │ ├── CW.json │ ├── GM.json │ ├── GP.json │ ├── GW.json │ ├── GY.json │ ├── IS.json │ ├── LR.json │ ├── SG.json │ ├── SR.json │ ├── VI.json │ ├── YT.json │ ├── MQ.json │ ├── BN.json │ ├── BI.json │ ├── ER.json │ ├── GQ.json │ ├── LS.json │ ├── QA.json │ ├── SZ.json │ ├── CV.json │ ├── FJ.json │ ├── ME.json │ ├── PG.json │ ├── SI.json │ ├── GA.json │ ├── EH.json │ ├── SS.json │ ├── CY.json │ ├── EE.json │ ├── CR.json │ ├── LA.json │ ├── MN.json │ ├── NA.json │ ├── AM.json │ ├── MW.json │ ├── TD.json │ ├── MU.json │ ├── BW.json │ ├── MR.json │ ├── CG.json │ ├── RE.json │ ├── TT.json │ ├── HK.json │ ├── MD.json │ ├── SL.json │ ├── BH.json │ ├── CF.json │ ├── BF.json │ ├── JM.json │ ├── LV.json │ ├── NE.json │ ├── BA.json │ ├── IE.json │ ├── TJ.json │ ├── TG.json │ ├── RW.json │ ├── AE.json │ ├── HN.json │ ├── GE.json │ ├── LT.json │ ├── ML.json │ ├── KG.json │ ├── TM.json │ └── AT.json ├── helpers └── WhereAmI.php ├── README.md ├── package.json ├── composer.json └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | .idea 3 | -------------------------------------------------------------------------------- /resources/states/GF.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "GF", 4 | "ids": { 5 | "fips": "GF", 6 | "geonames": 6690605, 7 | "iso_3166_2": false 8 | }, 9 | "long": { 10 | "default": "Guyane" 11 | } 12 | } 13 | ] -------------------------------------------------------------------------------- /resources/states/GP.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "GP", 4 | "ids": { 5 | "fips": false, 6 | "geonames": 6690363, 7 | "iso_3166_2": false 8 | }, 9 | "long": { 10 | "default": "Guadeloupe" 11 | } 12 | } 13 | ] -------------------------------------------------------------------------------- /resources/states/MQ.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "MQ", 4 | "ids": { 5 | "fips": false, 6 | "geonames": 6690603, 7 | "iso_3166_2": false 8 | }, 9 | "long": { 10 | "default": "Martinique" 11 | } 12 | } 13 | ] -------------------------------------------------------------------------------- /resources/states/RE.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "RE", 4 | "ids": { 5 | "fips": false, 6 | "geonames": 6690283, 7 | "iso_3166_2": false 8 | }, 9 | "long": { 10 | "default": "Réunion" 11 | } 12 | } 13 | ] -------------------------------------------------------------------------------- /resources/states/EH.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "EH", 4 | "ids": { 5 | "fips": false, 6 | "geonames": 6547304, 7 | "iso_3166_2": false 8 | }, 9 | "long": { 10 | "default": "Oued Ed-Dahab-Lagouira" 11 | } 12 | } 13 | ] -------------------------------------------------------------------------------- /resources/cities/BB.json: -------------------------------------------------------------------------------- 1 | { 2 | "3374036": { 3 | "ids": { 4 | "geonames": 3374036 5 | }, 6 | "long": { 7 | "default": "Bridgetown" 8 | }, 9 | "parent": 3373557, 10 | "lat": 13.1, 11 | "lng": -59.61667, 12 | "country": "BB", 13 | "population": 98511 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/BT.json: -------------------------------------------------------------------------------- 1 | { 2 | "1252416": { 3 | "ids": { 4 | "geonames": 1252416 5 | }, 6 | "long": { 7 | "default": "Thimphu" 8 | }, 9 | "parent": 1337293, 10 | "lat": 27.46609, 11 | "lng": 89.64191, 12 | "country": "BT", 13 | "population": 98676 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/DJ.json: -------------------------------------------------------------------------------- 1 | { 2 | "223817": { 3 | "ids": { 4 | "geonames": 223817 5 | }, 6 | "long": { 7 | "default": "Djibouti" 8 | }, 9 | "parent": 223818, 10 | "lat": 11.58901, 11 | "lng": 43.14503, 12 | "country": "DJ", 13 | "population": 623891 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/GF.json: -------------------------------------------------------------------------------- 1 | { 2 | "3382160": { 3 | "ids": { 4 | "geonames": 3382160 5 | }, 6 | "long": { 7 | "default": "Cayenne" 8 | }, 9 | "parent": 6690605, 10 | "lat": 4.93333, 11 | "lng": -52.33333, 12 | "country": "GF", 13 | "population": 61550 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/LU.json: -------------------------------------------------------------------------------- 1 | { 2 | "2960316": { 3 | "ids": { 4 | "geonames": 2960316 5 | }, 6 | "long": { 7 | "default": "Luxembourg" 8 | }, 9 | "parent": 2960314, 10 | "lat": 49.61167, 11 | "lng": 6.13, 12 | "country": "LU", 13 | "population": 76684 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/MO.json: -------------------------------------------------------------------------------- 1 | { 2 | "1821274": { 3 | "ids": { 4 | "geonames": 1821274 5 | }, 6 | "long": { 7 | "default": "Macau" 8 | }, 9 | "parent": 1821273, 10 | "lat": 22.20056, 11 | "lng": 113.54611, 12 | "country": "MO", 13 | "population": 520400 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/MV.json: -------------------------------------------------------------------------------- 1 | { 2 | "1282027": { 3 | "ids": { 4 | "geonames": 1282027 5 | }, 6 | "long": { 7 | "default": "Male" 8 | }, 9 | "parent": 1282208, 10 | "lat": 4.1748, 11 | "lng": 73.50888, 12 | "country": "MV", 13 | "population": 103693 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/NC.json: -------------------------------------------------------------------------------- 1 | { 2 | "2139521": { 3 | "ids": { 4 | "geonames": 2139521 5 | }, 6 | "long": { 7 | "default": "Nouméa" 8 | }, 9 | "parent": 2140464, 10 | "lat": -22.27631, 11 | "lng": 166.4572, 12 | "country": "NC", 13 | "population": 93060 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/SB.json: -------------------------------------------------------------------------------- 1 | { 2 | "2108502": { 3 | "ids": { 4 | "geonames": 2108502 5 | }, 6 | "long": { 7 | "default": "Honiara" 8 | }, 9 | "parent": 2108831, 10 | "lat": -9.43333, 11 | "lng": 159.95, 12 | "country": "SB", 13 | "population": 56298 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/ST.json: -------------------------------------------------------------------------------- 1 | { 2 | "2410763": { 3 | "ids": { 4 | "geonames": 2410763 5 | }, 6 | "long": { 7 | "default": "São Tomé" 8 | }, 9 | "parent": 2410764, 10 | "lat": 0.33654, 11 | "lng": 6.72732, 12 | "country": "ST", 13 | "population": 53300 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/TL.json: -------------------------------------------------------------------------------- 1 | { 2 | "1645457": { 3 | "ids": { 4 | "geonames": 1645457 5 | }, 6 | "long": { 7 | "default": "Dili" 8 | }, 9 | "parent": 1645456, 10 | "lat": -8.55861, 11 | "lng": 125.57361, 12 | "country": "TL", 13 | "population": 150000 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/BS.json: -------------------------------------------------------------------------------- 1 | { 2 | "3571824": { 3 | "ids": { 4 | "geonames": 3571824 5 | }, 6 | "long": { 7 | "default": "Nassau" 8 | }, 9 | "parent": 3571815, 10 | "lat": 25.05823, 11 | "lng": -77.34306, 12 | "country": "BS", 13 | "population": 227940 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/BZ.json: -------------------------------------------------------------------------------- 1 | { 2 | "3582677": { 3 | "ids": { 4 | "geonames": 3582677 5 | }, 6 | "long": { 7 | "default": "Belize City" 8 | }, 9 | "parent": 3582676, 10 | "lat": 17.49952, 11 | "lng": -88.19756, 12 | "country": "BZ", 13 | "population": 61461 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/CW.json: -------------------------------------------------------------------------------- 1 | { 2 | "3513090": { 3 | "ids": { 4 | "geonames": 3513090 5 | }, 6 | "long": { 7 | "default": "Willemstad" 8 | }, 9 | "parent": false, 10 | "lat": 12.1084, 11 | "lng": -68.93354, 12 | "country": "CW", 13 | "population": 125000 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/GM.json: -------------------------------------------------------------------------------- 1 | { 2 | "2413753": { 3 | "ids": { 4 | "geonames": 2413753 5 | }, 6 | "long": { 7 | "default": "Brikama" 8 | }, 9 | "parent": 2411683, 10 | "lat": 13.27136, 11 | "lng": -16.64944, 12 | "country": "GM", 13 | "population": 77700 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/GP.json: -------------------------------------------------------------------------------- 1 | { 2 | "3578959": { 3 | "ids": { 4 | "geonames": 3578959 5 | }, 6 | "long": { 7 | "default": "Les Abymes" 8 | }, 9 | "parent": 6690363, 10 | "lat": 16.27095, 11 | "lng": -61.50451, 12 | "country": "GP", 13 | "population": 63058 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/GW.json: -------------------------------------------------------------------------------- 1 | { 2 | "2374775": { 3 | "ids": { 4 | "geonames": 2374775 5 | }, 6 | "long": { 7 | "default": "Bissau" 8 | }, 9 | "parent": 2374776, 10 | "lat": 11.86357, 11 | "lng": -15.59767, 12 | "country": "GW", 13 | "population": 388028 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/GY.json: -------------------------------------------------------------------------------- 1 | { 2 | "3378644": { 3 | "ids": { 4 | "geonames": 3378644 5 | }, 6 | "long": { 7 | "default": "Georgetown" 8 | }, 9 | "parent": 3378950, 10 | "lat": 6.80448, 11 | "lng": -58.15527, 12 | "country": "GY", 13 | "population": 235017 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/IS.json: -------------------------------------------------------------------------------- 1 | { 2 | "3413829": { 3 | "ids": { 4 | "geonames": 3413829 5 | }, 6 | "long": { 7 | "default": "Reykjavík" 8 | }, 9 | "parent": 3426182, 10 | "lat": 64.13548, 11 | "lng": -21.89541, 12 | "country": "IS", 13 | "population": 118918 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/LR.json: -------------------------------------------------------------------------------- 1 | { 2 | "2274895": { 3 | "ids": { 4 | "geonames": 2274895 5 | }, 6 | "long": { 7 | "default": "Monrovia" 8 | }, 9 | "parent": 2274890, 10 | "lat": 6.30054, 11 | "lng": -10.7969, 12 | "country": "LR", 13 | "population": 939524 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/SG.json: -------------------------------------------------------------------------------- 1 | { 2 | "1880252": { 3 | "ids": { 4 | "geonames": 1880252 5 | }, 6 | "long": { 7 | "default": "Singapore" 8 | }, 9 | "parent": 7535954, 10 | "lat": 1.28967, 11 | "lng": 103.85007, 12 | "country": "SG", 13 | "population": 3547809 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/SR.json: -------------------------------------------------------------------------------- 1 | { 2 | "3383330": { 3 | "ids": { 4 | "geonames": 3383330 5 | }, 6 | "long": { 7 | "default": "Paramaribo" 8 | }, 9 | "parent": 3383329, 10 | "lat": 5.86638, 11 | "lng": -55.16682, 12 | "country": "SR", 13 | "population": 223757 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/VI.json: -------------------------------------------------------------------------------- 1 | { 2 | "4796512": { 3 | "ids": { 4 | "geonames": 4796512 5 | }, 6 | "long": { 7 | "default": "Saint Croix" 8 | }, 9 | "parent": 7267902, 10 | "lat": 17.72751, 11 | "lng": -64.74698, 12 | "country": "VI", 13 | "population": 50601 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/YT.json: -------------------------------------------------------------------------------- 1 | { 2 | "921815": { 3 | "ids": { 4 | "geonames": 921815 5 | }, 6 | "long": { 7 | "default": "Mamoudzou" 8 | }, 9 | "parent": 7521431, 10 | "lat": -12.78234, 11 | "lng": 45.22878, 12 | "country": "YT", 13 | "population": 54831 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/MQ.json: -------------------------------------------------------------------------------- 1 | { 2 | "3570675": { 3 | "ids": { 4 | "geonames": 3570675 5 | }, 6 | "long": { 7 | "default": "Fort-de-France" 8 | }, 9 | "parent": 6690603, 10 | "lat": 14.60892, 11 | "lng": -61.07334, 12 | "country": "MQ", 13 | "population": 89995 14 | } 15 | } -------------------------------------------------------------------------------- /resources/cities/BN.json: -------------------------------------------------------------------------------- 1 | { 2 | "1820906": { 3 | "ids": { 4 | "geonames": 1820906 5 | }, 6 | "long": { 7 | "default": "Bandar Seri Begawan" 8 | }, 9 | "parent": 1820818, 10 | "lat": 4.94029, 11 | "lng": 114.94806, 12 | "country": "BN", 13 | "population": 64409 14 | } 15 | } -------------------------------------------------------------------------------- /helpers/WhereAmI.php: -------------------------------------------------------------------------------- 1 | ", 17 | "license": "MIT", 18 | "bugs": { 19 | "url": "https://github.com/MenaraSolutions/geographer-data/issues" 20 | }, 21 | "homepage": "https://github.com/MenaraSolutions/geographer-data#readme" 22 | } 23 | -------------------------------------------------------------------------------- /resources/cities/CV.json: -------------------------------------------------------------------------------- 1 | { 2 | "3374333": { 3 | "ids": { 4 | "geonames": 3374333 5 | }, 6 | "long": { 7 | "default": "Praia" 8 | }, 9 | "parent": 3374332, 10 | "lat": 14.93152, 11 | "lng": -23.51254, 12 | "country": "CV", 13 | "population": 113364 14 | }, 15 | "3374462": { 16 | "ids": { 17 | "geonames": 3374462 18 | }, 19 | "long": { 20 | "default": "Mindelo" 21 | }, 22 | "parent": 3374198, 23 | "lat": 16.89014, 24 | "lng": -24.98042, 25 | "country": "CV", 26 | "population": 70611 27 | } 28 | } -------------------------------------------------------------------------------- /resources/cities/FJ.json: -------------------------------------------------------------------------------- 1 | { 2 | "2198148": { 3 | "ids": { 4 | "geonames": 2198148 5 | }, 6 | "long": { 7 | "default": "Suva" 8 | }, 9 | "parent": 2205272, 10 | "lat": -18.14161, 11 | "lng": 178.44149, 12 | "country": "FJ", 13 | "population": 77366 14 | }, 15 | "2204506": { 16 | "ids": { 17 | "geonames": 2204506 18 | }, 19 | "long": { 20 | "default": "Lautoka" 21 | }, 22 | "parent": 2194371, 23 | "lat": -17.61667, 24 | "lng": 177.46667, 25 | "country": "FJ", 26 | "population": 52500 27 | } 28 | } -------------------------------------------------------------------------------- /resources/cities/ME.json: -------------------------------------------------------------------------------- 1 | { 2 | "3193044": { 3 | "ids": { 4 | "geonames": 3193044 5 | }, 6 | "long": { 7 | "default": "Podgorica" 8 | }, 9 | "parent": 3189077, 10 | "lat": 42.44111, 11 | "lng": 19.26361, 12 | "country": "ME", 13 | "population": 136473 14 | }, 15 | "3194494": { 16 | "ids": { 17 | "geonames": 3194494 18 | }, 19 | "long": { 20 | "default": "Nikšić" 21 | }, 22 | "parent": 3194493, 23 | "lat": 42.7731, 24 | "lng": 18.94446, 25 | "country": "ME", 26 | "population": 58212 27 | } 28 | } -------------------------------------------------------------------------------- /resources/cities/PG.json: -------------------------------------------------------------------------------- 1 | { 2 | "2088122": { 3 | "ids": { 4 | "geonames": 2088122 5 | }, 6 | "long": { 7 | "default": "Port Moresby" 8 | }, 9 | "parent": 2089856, 10 | "lat": -9.44314, 11 | "lng": 147.17972, 12 | "country": "PG", 13 | "population": 283733 14 | }, 15 | "2092740": { 16 | "ids": { 17 | "geonames": 2092740 18 | }, 19 | "long": { 20 | "default": "Lae" 21 | }, 22 | "parent": 2090468, 23 | "lat": -6.72208, 24 | "lng": 146.98469, 25 | "country": "PG", 26 | "population": 76255 27 | } 28 | } -------------------------------------------------------------------------------- /resources/cities/SI.json: -------------------------------------------------------------------------------- 1 | { 2 | "3195506": { 3 | "ids": { 4 | "geonames": 3195506 5 | }, 6 | "long": { 7 | "default": "Maribor" 8 | }, 9 | "parent": 3195505, 10 | "lat": 46.55472, 11 | "lng": 15.64667, 12 | "country": "SI", 13 | "population": 95171 14 | }, 15 | "3196359": { 16 | "ids": { 17 | "geonames": 3196359 18 | }, 19 | "long": { 20 | "default": "Ljubljana" 21 | }, 22 | "parent": 3239318, 23 | "lat": 46.05108, 24 | "lng": 14.50513, 25 | "country": "SI", 26 | "population": 272220 27 | } 28 | } -------------------------------------------------------------------------------- /resources/cities/GA.json: -------------------------------------------------------------------------------- 1 | { 2 | "2396518": { 3 | "ids": { 4 | "geonames": 2396518 5 | }, 6 | "long": { 7 | "default": "Port-Gentil" 8 | }, 9 | "parent": 2396924, 10 | "lat": -0.71933, 11 | "lng": 8.78151, 12 | "country": "GA", 13 | "population": 109163 14 | }, 15 | "2399697": { 16 | "ids": { 17 | "geonames": 2399697 18 | }, 19 | "long": { 20 | "default": "Libreville" 21 | }, 22 | "parent": 2400682, 23 | "lat": 0.39241, 24 | "lng": 9.45356, 25 | "country": "GA", 26 | "population": 578156 27 | } 28 | } -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "menarasolutions/geographer-data", 3 | "type": "library", 4 | "description": "Basic data package for Geographer - countries and their subdivisions", 5 | "keywords": ["geographer","geolocation","localization"], 6 | "homepage": "https://github.com/MenaraSolutions/geographer-data", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Denis Mysenko", 11 | "email": "denis@menara.com.au", 12 | "homepage": "https://www.menara.com.au" 13 | } 14 | ], 15 | "autoload": { 16 | "psr-4": { 17 | "MenaraSolutions\\Geographer\\Helpers\\": "helpers/" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /resources/cities/EH.json: -------------------------------------------------------------------------------- 1 | { 2 | "2462881": { 3 | "ids": { 4 | "geonames": 2462881 5 | }, 6 | "long": { 7 | "default": "Laâyoune \/ El Aaiún" 8 | }, 9 | "parent": 6547304, 10 | "lat": 27.1418, 11 | "lng": -13.18797, 12 | "country": "EH", 13 | "population": 196331 14 | }, 15 | "2463447": { 16 | "ids": { 17 | "geonames": 2463447 18 | }, 19 | "long": { 20 | "default": "Dakhla" 21 | }, 22 | "parent": 6547304, 23 | "lat": 23.68477, 24 | "lng": -15.95798, 25 | "country": "EH", 26 | "population": 75000 27 | } 28 | } -------------------------------------------------------------------------------- /resources/states/TK.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "TK", 4 | "ids": { 5 | "fips": "N", 6 | "geonames": 4031091, 7 | "iso_3166_2": false 8 | }, 9 | "long": { 10 | "default": "Nukunonu" 11 | } 12 | }, 13 | { 14 | "parent": "TK", 15 | "ids": { 16 | "fips": "F", 17 | "geonames": 4031112, 18 | "iso_3166_2": false 19 | }, 20 | "long": { 21 | "default": "Fakaofo" 22 | } 23 | }, 24 | { 25 | "parent": "TK", 26 | "ids": { 27 | "fips": "A", 28 | "geonames": 4031116, 29 | "iso_3166_2": false 30 | }, 31 | "long": { 32 | "default": "Atafu" 33 | } 34 | } 35 | ] -------------------------------------------------------------------------------- /resources/states/BQ.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "BQ", 4 | "ids": { 5 | "fips": false, 6 | "geonames": 7609816, 7 | "iso_3166_2": "BQ-BO" 8 | }, 9 | "long": { 10 | "default": "Bonaire" 11 | } 12 | }, 13 | { 14 | "parent": "BQ", 15 | "ids": { 16 | "fips": false, 17 | "geonames": 7610358, 18 | "iso_3166_2": "BQ-SA" 19 | }, 20 | "long": { 21 | "default": "Saba" 22 | } 23 | }, 24 | { 25 | "parent": "BQ", 26 | "ids": { 27 | "fips": false, 28 | "geonames": 7610359, 29 | "iso_3166_2": "BQ-SE" 30 | }, 31 | "long": { 32 | "default": "Sint Eustatius" 33 | } 34 | } 35 | ] -------------------------------------------------------------------------------- /resources/states/KM.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "KM", 4 | "ids": { 5 | "fips": "CN03", 6 | "geonames": 921780, 7 | "iso_3166_2": "KM-M" 8 | }, 9 | "long": { 10 | "default": "Mohéli" 11 | } 12 | }, 13 | { 14 | "parent": "KM", 15 | "ids": { 16 | "fips": "CN02", 17 | "geonames": 921882, 18 | "iso_3166_2": "KM-G" 19 | }, 20 | "long": { 21 | "default": "Grande Comore" 22 | } 23 | }, 24 | { 25 | "parent": "KM", 26 | "ids": { 27 | "fips": "CN01", 28 | "geonames": 922001, 29 | "iso_3166_2": "KM-A" 30 | }, 31 | "long": { 32 | "default": "Anjouan" 33 | } 34 | } 35 | ] -------------------------------------------------------------------------------- /resources/states/BE.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "BE", 4 | "ids": { 5 | "iso_3166_2": "BE-BRU", 6 | "fips": "BE11", 7 | "geonames": 2800867 8 | }, 9 | "long": { 10 | "default": "Brussels" 11 | } 12 | }, 13 | { 14 | "parent": "BE", 15 | "ids": { 16 | "iso_3166_2": "BE-WAL", 17 | "fips": "BE10", 18 | "geonames": 3337387 19 | }, 20 | "long": { 21 | "default": "Wallonia" 22 | } 23 | }, 24 | { 25 | "parent": "BE", 26 | "ids": { 27 | "iso_3166_2": "BE-VLG", 28 | "fips": "BE12", 29 | "geonames": 3337388 30 | }, 31 | "long": { 32 | "default": "Flanders" 33 | } 34 | } 35 | ] -------------------------------------------------------------------------------- /resources/states/MS.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "MS", 4 | "ids": { 5 | "fips": "MH03", 6 | "geonames": 3578039, 7 | "iso_3166_2": false 8 | }, 9 | "long": { 10 | "default": "Saint Peter" 11 | } 12 | }, 13 | { 14 | "parent": "MS", 15 | "ids": { 16 | "fips": "MH02", 17 | "geonames": 3578044, 18 | "iso_3166_2": false 19 | }, 20 | "long": { 21 | "default": "Saint Georges" 22 | } 23 | }, 24 | { 25 | "parent": "MS", 26 | "ids": { 27 | "fips": "MH01", 28 | "geonames": 3578045, 29 | "iso_3166_2": false 30 | }, 31 | "long": { 32 | "default": "Saint Anthony" 33 | } 34 | } 35 | ] -------------------------------------------------------------------------------- /resources/states/NC.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "NC", 4 | "ids": { 5 | "fips": false, 6 | "geonames": 2140464, 7 | "iso_3166_2": false 8 | }, 9 | "long": { 10 | "default": "South Province" 11 | } 12 | }, 13 | { 14 | "parent": "NC", 15 | "ids": { 16 | "fips": false, 17 | "geonames": 2140685, 18 | "iso_3166_2": false 19 | }, 20 | "long": { 21 | "default": "North Province" 22 | } 23 | }, 24 | { 25 | "parent": "NC", 26 | "ids": { 27 | "fips": false, 28 | "geonames": 7521415, 29 | "iso_3166_2": false 30 | }, 31 | "long": { 32 | "default": "Loyalty Islands" 33 | } 34 | } 35 | ] -------------------------------------------------------------------------------- /resources/states/AX.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "AX", 4 | "ids": { 5 | "fips": false, 6 | "geonames": 9611689, 7 | "iso_3166_2": false 8 | }, 9 | "long": { 10 | "default": "Mariehamns stad" 11 | } 12 | }, 13 | { 14 | "parent": "AX", 15 | "ids": { 16 | "fips": false, 17 | "geonames": 9611692, 18 | "iso_3166_2": false 19 | }, 20 | "long": { 21 | "default": "Ålands landsbygd" 22 | } 23 | }, 24 | { 25 | "parent": "AX", 26 | "ids": { 27 | "fips": false, 28 | "geonames": 9611694, 29 | "iso_3166_2": false 30 | }, 31 | "long": { 32 | "default": "Ålands skärgård" 33 | } 34 | } 35 | ] -------------------------------------------------------------------------------- /resources/states/KI.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "KI", 4 | "ids": { 5 | "fips": "KR01", 6 | "geonames": 2110215, 7 | "iso_3166_2": "KI-G" 8 | }, 9 | "long": { 10 | "default": "Gilbert Islands" 11 | } 12 | }, 13 | { 14 | "parent": "KI", 15 | "ids": { 16 | "fips": "KR02", 17 | "geonames": 4030940, 18 | "iso_3166_2": "KI-L" 19 | }, 20 | "long": { 21 | "default": "Line Islands" 22 | } 23 | }, 24 | { 25 | "parent": "KI", 26 | "ids": { 27 | "fips": "KR03", 28 | "geonames": 7521379, 29 | "iso_3166_2": "KI-P" 30 | }, 31 | "long": { 32 | "default": "Phoenix Islands" 33 | } 34 | } 35 | ] -------------------------------------------------------------------------------- /resources/states/MW.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "MW", 4 | "ids": { 5 | "fips": false, 6 | "geonames": 923817, 7 | "iso_3166_2": "MW-S" 8 | }, 9 | "long": { 10 | "default": "Southern Region" 11 | } 12 | }, 13 | { 14 | "parent": "MW", 15 | "ids": { 16 | "fips": false, 17 | "geonames": 924591, 18 | "iso_3166_2": "MW-N" 19 | }, 20 | "long": { 21 | "default": "Northern Region" 22 | } 23 | }, 24 | { 25 | "parent": "MW", 26 | "ids": { 27 | "fips": false, 28 | "geonames": 931597, 29 | "iso_3166_2": "MW-C" 30 | }, 31 | "long": { 32 | "default": "Central Region" 33 | } 34 | } 35 | ] -------------------------------------------------------------------------------- /resources/states/SH.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "SH", 4 | "ids": { 5 | "fips": "SH01", 6 | "geonames": 2411430, 7 | "iso_3166_2": "SH-AC" 8 | }, 9 | "long": { 10 | "default": "Ascension" 11 | } 12 | }, 13 | { 14 | "parent": "SH", 15 | "ids": { 16 | "fips": "SH03", 17 | "geonames": 3370684, 18 | "iso_3166_2": "SH-TA" 19 | }, 20 | "long": { 21 | "default": "Tristan da Cunha" 22 | } 23 | }, 24 | { 25 | "parent": "SH", 26 | "ids": { 27 | "fips": "SH02", 28 | "geonames": 6930057, 29 | "iso_3166_2": "SH-HL" 30 | }, 31 | "long": { 32 | "default": "Saint Helena" 33 | } 34 | } 35 | ] -------------------------------------------------------------------------------- /resources/states/BA.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "BA", 4 | "ids": { 5 | "fips": "BK01", 6 | "geonames": 3229999, 7 | "iso_3166_2": "BA-BIH" 8 | }, 9 | "long": { 10 | "default": "Federation of Bosnia and Herzegovina" 11 | } 12 | }, 13 | { 14 | "parent": "BA", 15 | "ids": { 16 | "fips": "BK02", 17 | "geonames": 3230000, 18 | "iso_3166_2": "BA-SRP" 19 | }, 20 | "long": { 21 | "default": "Republika Srpska" 22 | } 23 | }, 24 | { 25 | "parent": "BA", 26 | "ids": { 27 | "fips": false, 28 | "geonames": 3294903, 29 | "iso_3166_2": "BA-BRC" 30 | }, 31 | "long": { 32 | "default": "Brčko" 33 | } 34 | } 35 | ] -------------------------------------------------------------------------------- /resources/states/WF.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "WF", 4 | "ids": { 5 | "fips": false, 6 | "geonames": 4034759, 7 | "iso_3166_2": "WF-UV" 8 | }, 9 | "long": { 10 | "default": "Uvéa" 11 | }, 12 | "timezone": "Pacific/Wallis" 13 | }, 14 | { 15 | "parent": "WF", 16 | "ids": { 17 | "fips": false, 18 | "geonames": 4034776, 19 | "iso_3166_2": "WF-SG" 20 | }, 21 | "long": { 22 | "default": "Sigavé" 23 | }, 24 | "timezone": "Pacific/Wallis" 25 | }, 26 | { 27 | "parent": "WF", 28 | "ids": { 29 | "fips": false, 30 | "geonames": 4034884, 31 | "iso_3166_2": "WF-AL" 32 | }, 33 | "long": { 34 | "default": "'Alo" 35 | }, 36 | "timezone": "Pacific/Wallis" 37 | } 38 | ] 39 | -------------------------------------------------------------------------------- /resources/states/VI.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "VI", 4 | "ids": { 5 | "fips": false, 6 | "geonames": 7267902, 7 | "iso_3166_2": false 8 | }, 9 | "long": { 10 | "default": "Saint Croix Island" 11 | }, 12 | "timezone": "America/St_Thomas" 13 | }, 14 | { 15 | "parent": "VI", 16 | "ids": { 17 | "fips": false, 18 | "geonames": 7267903, 19 | "iso_3166_2": false 20 | }, 21 | "long": { 22 | "default": "Saint John Island" 23 | }, 24 | "timezone": "America/St_Thomas" 25 | }, 26 | { 27 | "parent": "VI", 28 | "ids": { 29 | "fips": false, 30 | "geonames": 7267904, 31 | "iso_3166_2": false 32 | }, 33 | "long": { 34 | "default": "Saint Thomas Island" 35 | }, 36 | "timezone": "America/St_Thomas" 37 | } 38 | ] 39 | -------------------------------------------------------------------------------- /resources/cities/SS.json: -------------------------------------------------------------------------------- 1 | { 2 | "363885": { 3 | "ids": { 4 | "geonames": 363885 5 | }, 6 | "long": { 7 | "default": "Wau" 8 | }, 9 | "parent": 408657, 10 | "lat": 7.70286, 11 | "lng": 27.9953, 12 | "country": "SS", 13 | "population": 127384 14 | }, 15 | "370737": { 16 | "ids": { 17 | "geonames": 370737 18 | }, 19 | "long": { 20 | "default": "Malakal" 21 | }, 22 | "parent": 381229, 23 | "lat": 9.53342, 24 | "lng": 31.66049, 25 | "country": "SS", 26 | "population": 160765 27 | }, 28 | "373303": { 29 | "ids": { 30 | "geonames": 373303 31 | }, 32 | "long": { 33 | "default": "Juba" 34 | }, 35 | "parent": 408655, 36 | "lat": 4.85165, 37 | "lng": 31.58247, 38 | "country": "SS", 39 | "population": 300000 40 | } 41 | } -------------------------------------------------------------------------------- /resources/cities/CY.json: -------------------------------------------------------------------------------- 1 | { 2 | "146268": { 3 | "ids": { 4 | "geonames": 146268 5 | }, 6 | "long": { 7 | "default": "Nicosia" 8 | }, 9 | "parent": 146267, 10 | "lat": 35.17531, 11 | "lng": 33.3642, 12 | "country": "CY", 13 | "population": 200452 14 | }, 15 | "146384": { 16 | "ids": { 17 | "geonames": 146384 18 | }, 19 | "long": { 20 | "default": "Limassol" 21 | }, 22 | "parent": 146383, 23 | "lat": 34.68406, 24 | "lng": 33.03794, 25 | "country": "CY", 26 | "population": 154000 27 | }, 28 | "146400": { 29 | "ids": { 30 | "geonames": 146400 31 | }, 32 | "long": { 33 | "default": "Larnaca" 34 | }, 35 | "parent": 146398, 36 | "lat": 34.92291, 37 | "lng": 33.6233, 38 | "country": "CY", 39 | "population": 72000 40 | } 41 | } -------------------------------------------------------------------------------- /resources/cities/EE.json: -------------------------------------------------------------------------------- 1 | { 2 | "588335": { 3 | "ids": { 4 | "geonames": 588335 5 | }, 6 | "long": { 7 | "default": "Tartu" 8 | }, 9 | "parent": 588334, 10 | "lat": 58.38062, 11 | "lng": 26.72509, 12 | "country": "EE", 13 | "population": 101092 14 | }, 15 | "588409": { 16 | "ids": { 17 | "geonames": 588409 18 | }, 19 | "long": { 20 | "default": "Tallinn" 21 | }, 22 | "parent": 592170, 23 | "lat": 59.43696, 24 | "lng": 24.75353, 25 | "country": "EE", 26 | "population": 394024 27 | }, 28 | "590031": { 29 | "ids": { 30 | "geonames": 590031 31 | }, 32 | "long": { 33 | "default": "Narva" 34 | }, 35 | "parent": 592075, 36 | "lat": 59.37722, 37 | "lng": 28.19028, 38 | "country": "EE", 39 | "population": 66980 40 | } 41 | } -------------------------------------------------------------------------------- /resources/cities/CR.json: -------------------------------------------------------------------------------- 1 | { 2 | "3621849": { 3 | "ids": { 4 | "geonames": 3621849 5 | }, 6 | "long": { 7 | "default": "San José" 8 | }, 9 | "parent": 3621837, 10 | "lat": 9.93333, 11 | "lng": -84.08333, 12 | "country": "CR", 13 | "population": 335007 14 | }, 15 | "3621911": { 16 | "ids": { 17 | "geonames": 3621911 18 | }, 19 | "long": { 20 | "default": "San Francisco" 21 | }, 22 | "parent": 3623484, 23 | "lat": 9.99299, 24 | "lng": -84.12934, 25 | "country": "CR", 26 | "population": 55923 27 | }, 28 | "3622247": { 29 | "ids": { 30 | "geonames": 3622247 31 | }, 32 | "long": { 33 | "default": "Limón" 34 | }, 35 | "parent": 3623064, 36 | "lat": 9.99074, 37 | "lng": -83.03596, 38 | "country": "CR", 39 | "population": 63081 40 | } 41 | } -------------------------------------------------------------------------------- /resources/cities/LA.json: -------------------------------------------------------------------------------- 1 | { 2 | "1651944": { 3 | "ids": { 4 | "geonames": 1651944 5 | }, 6 | "long": { 7 | "default": "Vientiane" 8 | }, 9 | "parent": 1904618, 10 | "lat": 17.96667, 11 | "lng": 102.6, 12 | "country": "LA", 13 | "population": 196731 14 | }, 15 | "1653316": { 16 | "ids": { 17 | "geonames": 1653316 18 | }, 19 | "long": { 20 | "default": "Savannakhét" 21 | }, 22 | "parent": 1653315, 23 | "lat": 16.56505, 24 | "lng": 104.75273, 25 | "country": "LA", 26 | "population": 66553 27 | }, 28 | "1654379": { 29 | "ids": { 30 | "geonames": 1654379 31 | }, 32 | "long": { 33 | "default": "Pakse" 34 | }, 35 | "parent": 1657818, 36 | "lat": 15.12022, 37 | "lng": 105.79898, 38 | "country": "LA", 39 | "population": 88332 40 | } 41 | } -------------------------------------------------------------------------------- /resources/cities/MN.json: -------------------------------------------------------------------------------- 1 | { 2 | "2028462": { 3 | "ids": { 4 | "geonames": 2028462 5 | }, 6 | "long": { 7 | "default": "Ulan Bator" 8 | }, 9 | "parent": 2028461, 10 | "lat": 47.90771, 11 | "lng": 106.88324, 12 | "country": "MN", 13 | "population": 844818 14 | }, 15 | "2031405": { 16 | "ids": { 17 | "geonames": 2031405 18 | }, 19 | "long": { 20 | "default": "Erdenet" 21 | }, 22 | "parent": 2055113, 23 | "lat": 49.03333, 24 | "lng": 104.08333, 25 | "country": "MN", 26 | "population": 79647 27 | }, 28 | "2031964": { 29 | "ids": { 30 | "geonames": 2031964 31 | }, 32 | "long": { 33 | "default": "Darhan" 34 | }, 35 | "parent": 2055111, 36 | "lat": 49.48667, 37 | "lng": 105.92278, 38 | "country": "MN", 39 | "population": 74300 40 | } 41 | } -------------------------------------------------------------------------------- /resources/cities/NA.json: -------------------------------------------------------------------------------- 1 | { 2 | "3352136": { 3 | "ids": { 4 | "geonames": 3352136 5 | }, 6 | "long": { 7 | "default": "Windhoek" 8 | }, 9 | "parent": 3352137, 10 | "lat": -22.55941, 11 | "lng": 17.08323, 12 | "country": "NA", 13 | "population": 268132 14 | }, 15 | "3353383": { 16 | "ids": { 17 | "geonames": 3353383 18 | }, 19 | "long": { 20 | "default": "Rundu" 21 | }, 22 | "parent": 8693188, 23 | "lat": -17.93333, 24 | "lng": 19.76667, 25 | "country": "NA", 26 | "population": 58172 27 | }, 28 | "3359638": { 29 | "ids": { 30 | "geonames": 3359638 31 | }, 32 | "long": { 33 | "default": "Walvis Bay" 34 | }, 35 | "parent": 3371199, 36 | "lat": -22.9575, 37 | "lng": 14.50528, 38 | "country": "NA", 39 | "population": 52058 40 | } 41 | } -------------------------------------------------------------------------------- /resources/cities/AM.json: -------------------------------------------------------------------------------- 1 | { 2 | "616052": { 3 | "ids": { 4 | "geonames": 616052 5 | }, 6 | "long": { 7 | "default": "Yerevan" 8 | }, 9 | "capital": true, 10 | "parent": 616051, 11 | "lat": 40.18111, 12 | "lng": 44.51361, 13 | "country": "AM", 14 | "population": 1093485 15 | }, 16 | "616530": { 17 | "ids": { 18 | "geonames": 616530 19 | }, 20 | "long": { 21 | "default": "Vanadzor" 22 | }, 23 | "parent": 828263, 24 | "lat": 40.80456, 25 | "lng": 44.4939, 26 | "country": "AM", 27 | "population": 101098 28 | }, 29 | "616635": { 30 | "ids": { 31 | "geonames": 616635 32 | }, 33 | "long": { 34 | "default": "Gyumri" 35 | }, 36 | "parent": 828264, 37 | "lat": 40.7942, 38 | "lng": 43.84528, 39 | "country": "AM", 40 | "population": 148381 41 | } 42 | } -------------------------------------------------------------------------------- /resources/states/FM.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "FM", 4 | "ids": { 5 | "fips": "FM04", 6 | "geonames": 2081175, 7 | "iso_3166_2": "FM-YAP" 8 | }, 9 | "long": { 10 | "default": "Yap" 11 | } 12 | }, 13 | { 14 | "parent": "FM", 15 | "ids": { 16 | "fips": "FM02", 17 | "geonames": 2081550, 18 | "iso_3166_2": "FM-PNI" 19 | }, 20 | "long": { 21 | "default": "Pohnpei" 22 | } 23 | }, 24 | { 25 | "parent": "FM", 26 | "ids": { 27 | "fips": "FM01", 28 | "geonames": 2082036, 29 | "iso_3166_2": "FM-KSA" 30 | }, 31 | "long": { 32 | "default": "Kosrae" 33 | } 34 | }, 35 | { 36 | "parent": "FM", 37 | "ids": { 38 | "fips": "FM03", 39 | "geonames": 2082282, 40 | "iso_3166_2": "FM-TRK" 41 | }, 42 | "long": { 43 | "default": "Chuuk" 44 | } 45 | } 46 | ] -------------------------------------------------------------------------------- /resources/states/MP.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "MP", 4 | "ids": { 5 | "fips": "CQ100", 6 | "geonames": 4041530, 7 | "iso_3166_2": false 8 | }, 9 | "long": { 10 | "default": "Rota" 11 | } 12 | }, 13 | { 14 | "parent": "MP", 15 | "ids": { 16 | "fips": "CQ110", 17 | "geonames": 4041552, 18 | "iso_3166_2": false 19 | }, 20 | "long": { 21 | "default": "Saipan" 22 | } 23 | }, 24 | { 25 | "parent": "MP", 26 | "ids": { 27 | "fips": "CQ120", 28 | "geonames": 4041650, 29 | "iso_3166_2": false 30 | }, 31 | "long": { 32 | "default": "Tinian" 33 | } 34 | }, 35 | { 36 | "parent": "MP", 37 | "ids": { 38 | "fips": "CQ085", 39 | "geonames": 7733156, 40 | "iso_3166_2": false 41 | }, 42 | "long": { 43 | "default": "Northern Islands" 44 | } 45 | } 46 | ] -------------------------------------------------------------------------------- /resources/states/SZ.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "SZ", 4 | "ids": { 5 | "fips": "WZ04", 6 | "geonames": 934867, 7 | "iso_3166_2": "SZ-SH" 8 | }, 9 | "long": { 10 | "default": "Shiselweni" 11 | } 12 | }, 13 | { 14 | "parent": "SZ", 15 | "ids": { 16 | "fips": "WZ03", 17 | "geonames": 934994, 18 | "iso_3166_2": "SZ-MA" 19 | }, 20 | "long": { 21 | "default": "Manzini" 22 | } 23 | }, 24 | { 25 | "parent": "SZ", 26 | "ids": { 27 | "fips": "WZ02", 28 | "geonames": 935042, 29 | "iso_3166_2": "SZ-LU" 30 | }, 31 | "long": { 32 | "default": "Lubombo" 33 | } 34 | }, 35 | { 36 | "parent": "SZ", 37 | "ids": { 38 | "fips": "WZ01", 39 | "geonames": 935085, 40 | "iso_3166_2": "SZ-HH" 41 | }, 42 | "long": { 43 | "default": "Hhohho" 44 | } 45 | } 46 | ] -------------------------------------------------------------------------------- /resources/states/BN.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "BN", 4 | "ids": { 5 | "fips": "BX04", 6 | "geonames": 1820068, 7 | "iso_3166_2": "BN-TU" 8 | }, 9 | "long": { 10 | "default": "Tutong" 11 | } 12 | }, 13 | { 14 | "parent": "BN", 15 | "ids": { 16 | "fips": "BX03", 17 | "geonames": 1820106, 18 | "iso_3166_2": "BN-TE" 19 | }, 20 | "long": { 21 | "default": "Temburong" 22 | } 23 | }, 24 | { 25 | "parent": "BN", 26 | "ids": { 27 | "fips": "BX02", 28 | "geonames": 1820818, 29 | "iso_3166_2": "BN-BM" 30 | }, 31 | "long": { 32 | "default": "Brunei-Muara" 33 | } 34 | }, 35 | { 36 | "parent": "BN", 37 | "ids": { 38 | "fips": "BX01", 39 | "geonames": 1820869, 40 | "iso_3166_2": "BN-BE" 41 | }, 42 | "long": { 43 | "default": "Belait" 44 | } 45 | } 46 | ] -------------------------------------------------------------------------------- /resources/states/GL.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "GL", 4 | "ids": { 5 | "fips": "GL05", 6 | "geonames": 7602003, 7 | "iso_3166_2": "GL-QA" 8 | }, 9 | "long": { 10 | "default": "Qaasuitsup" 11 | } 12 | }, 13 | { 14 | "parent": "GL", 15 | "ids": { 16 | "fips": "GL04", 17 | "geonames": 7602005, 18 | "iso_3166_2": "GL-KU" 19 | }, 20 | "long": { 21 | "default": "Kujalleq" 22 | } 23 | }, 24 | { 25 | "parent": "GL", 26 | "ids": { 27 | "fips": "GL06", 28 | "geonames": 7602006, 29 | "iso_3166_2": "GL-QE" 30 | }, 31 | "long": { 32 | "default": "Qeqqata" 33 | } 34 | }, 35 | { 36 | "parent": "GL", 37 | "ids": { 38 | "fips": "GL07", 39 | "geonames": 7602007, 40 | "iso_3166_2": "GL-SM" 41 | }, 42 | "long": { 43 | "default": "Sermersooq" 44 | } 45 | } 46 | ] -------------------------------------------------------------------------------- /resources/states/TJ.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "TJ", 4 | "ids": { 5 | "fips": "TI03", 6 | "geonames": 1221092, 7 | "iso_3166_2": "TJ-SU" 8 | }, 9 | "long": { 10 | "default": "Sughd" 11 | } 12 | }, 13 | { 14 | "parent": "TJ", 15 | "ids": { 16 | "fips": "TI01", 17 | "geonames": 1221692, 18 | "iso_3166_2": "TJ-GB" 19 | }, 20 | "long": { 21 | "default": "Gorno-Badakhshan" 22 | } 23 | }, 24 | { 25 | "parent": "TJ", 26 | "ids": { 27 | "fips": "TI02", 28 | "geonames": 1347488, 29 | "iso_3166_2": "TJ-KT" 30 | }, 31 | "long": { 32 | "default": "Khatlon" 33 | } 34 | }, 35 | { 36 | "parent": "TJ", 37 | "ids": { 38 | "fips": false, 39 | "geonames": 7280679, 40 | "iso_3166_2": "TJ-DU" 41 | }, 42 | "long": { 43 | "default": "Dushanbe" 44 | } 45 | } 46 | ] -------------------------------------------------------------------------------- /resources/states/SL.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "SL", 4 | "ids": { 5 | "fips": "SL04", 6 | "geonames": 2403068, 7 | "iso_3166_2": "SL-W" 8 | }, 9 | "long": { 10 | "default": "Western Area" 11 | } 12 | }, 13 | { 14 | "parent": "SL", 15 | "ids": { 16 | "fips": "SL03", 17 | "geonames": 2403745, 18 | "iso_3166_2": "SL-S" 19 | }, 20 | "long": { 21 | "default": "Southern Province" 22 | } 23 | }, 24 | { 25 | "parent": "SL", 26 | "ids": { 27 | "fips": "SL02", 28 | "geonames": 2404798, 29 | "iso_3166_2": "SL-N" 30 | }, 31 | "long": { 32 | "default": "Northern Province" 33 | } 34 | }, 35 | { 36 | "parent": "SL", 37 | "ids": { 38 | "fips": "SL01", 39 | "geonames": 2409543, 40 | "iso_3166_2": "SL-E" 41 | }, 42 | "long": { 43 | "default": "Eastern Province" 44 | } 45 | } 46 | ] -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Menara Solutions 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /resources/states/TW.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "TW", 4 | "ids": { 5 | "fips": "TW01", 6 | "geonames": 7280288, 7 | "iso_3166_2": "TW-KIN" 8 | }, 9 | "long": { 10 | "default": "Kinmen" 11 | }, 12 | "timezone": "Asia/Taipei" 13 | }, 14 | { 15 | "parent": "TW", 16 | "ids": { 17 | "fips": "TW02", 18 | "geonames": 7280289, 19 | "iso_3166_2": "TW-KHH" 20 | }, 21 | "long": { 22 | "default": "Kaohsiung" 23 | }, 24 | "timezone": "Asia/Taipei" 25 | }, 26 | { 27 | "parent": "TW", 28 | "ids": { 29 | "fips": "TW03", 30 | "geonames": 7280290, 31 | "iso_3166_2": "TW-TPE" 32 | }, 33 | "long": { 34 | "default": "Taipei" 35 | }, 36 | "timezone": "Asia/Taipei" 37 | }, 38 | { 39 | "parent": "TW", 40 | "ids": { 41 | "fips": "TW04", 42 | "geonames": 7280291, 43 | "iso_3166_2": false 44 | }, 45 | "long": { 46 | "default": "Taiwan" 47 | }, 48 | "timezone": "Asia/Taipei" 49 | } 50 | ] 51 | -------------------------------------------------------------------------------- /resources/states/IE.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "IE", 4 | "ids": { 5 | "fips": false, 6 | "geonames": 7521313, 7 | "iso_3166_2": "IE-C" 8 | }, 9 | "long": { 10 | "default": "Connaught" 11 | }, 12 | "timezone": "Europe/Dublin" 13 | }, 14 | { 15 | "parent": "IE", 16 | "ids": { 17 | "fips": false, 18 | "geonames": 7521314, 19 | "iso_3166_2": "IE-L" 20 | }, 21 | "long": { 22 | "default": "Leinster" 23 | }, 24 | "timezone": "Europe/Dublin" 25 | }, 26 | { 27 | "parent": "IE", 28 | "ids": { 29 | "fips": false, 30 | "geonames": 7521315, 31 | "iso_3166_2": "IE-M" 32 | }, 33 | "long": { 34 | "default": "Munster" 35 | }, 36 | "timezone": "Europe/Dublin" 37 | }, 38 | { 39 | "parent": "IE", 40 | "ids": { 41 | "fips": false, 42 | "geonames": 7521316, 43 | "iso_3166_2": "IE-U" 44 | }, 45 | "long": { 46 | "default": "Ulster" 47 | }, 48 | "timezone": "Europe/Dublin" 49 | } 50 | ] 51 | -------------------------------------------------------------------------------- /resources/states/GB.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "GB", 4 | "ids": { 5 | "fips": "WLS", 6 | "geonames": 2634895, 7 | "iso_3166_2": "GB-WLS" 8 | }, 9 | "long": { 10 | "default": "Wales" 11 | }, 12 | "timezone": "Europe/London" 13 | }, 14 | { 15 | "parent": "GB", 16 | "ids": { 17 | "fips": "SCT", 18 | "geonames": 2638360, 19 | "iso_3166_2": "GB-SCT" 20 | }, 21 | "long": { 22 | "default": "Scotland" 23 | }, 24 | "timezone": "Europe/London" 25 | }, 26 | { 27 | "parent": "GB", 28 | "ids": { 29 | "fips": "NIR", 30 | "geonames": 2641364, 31 | "iso_3166_2": "GB-NIR" 32 | }, 33 | "long": { 34 | "default": "Northern Ireland" 35 | }, 36 | "timezone": "Europe/London" 37 | }, 38 | { 39 | "parent": "GB", 40 | "ids": { 41 | "fips": "ENG", 42 | "geonames": 6269131, 43 | "iso_3166_2": "GB-ENG" 44 | }, 45 | "long": { 46 | "default": "England" 47 | }, 48 | "timezone": "Europe/London" 49 | } 50 | ] -------------------------------------------------------------------------------- /resources/states/UG.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "UG", 4 | "ids": { 5 | "fips": false, 6 | "geonames": 234594, 7 | "iso_3166_2": "UG-C" 8 | }, 9 | "long": { 10 | "default": "Central Region" 11 | }, 12 | "timezone": "Africa/Kampala" 13 | }, 14 | { 15 | "parent": "UG", 16 | "ids": { 17 | "fips": false, 18 | "geonames": 8260673, 19 | "iso_3166_2": "UG-E" 20 | }, 21 | "long": { 22 | "default": "Eastern Region" 23 | }, 24 | "timezone": "Africa/Kampala" 25 | }, 26 | { 27 | "parent": "UG", 28 | "ids": { 29 | "fips": false, 30 | "geonames": 8260674, 31 | "iso_3166_2": "UG-N" 32 | }, 33 | "long": { 34 | "default": "Northern Region" 35 | }, 36 | "timezone": "Africa/Kampala" 37 | }, 38 | { 39 | "parent": "UG", 40 | "ids": { 41 | "fips": false, 42 | "geonames": 8260675, 43 | "iso_3166_2": "UG-W" 44 | }, 45 | "long": { 46 | "default": "Western Region" 47 | }, 48 | "timezone": "Africa/Kampala" 49 | } 50 | ] 51 | -------------------------------------------------------------------------------- /resources/cities/MW.json: -------------------------------------------------------------------------------- 1 | { 2 | "923295": { 3 | "ids": { 4 | "geonames": 923295 5 | }, 6 | "long": { 7 | "default": "Zomba" 8 | }, 9 | "parent": 923817, 10 | "lat": -15.38596, 11 | "lng": 35.3188, 12 | "country": "MW", 13 | "population": 80932 14 | }, 15 | "925475": { 16 | "ids": { 17 | "geonames": 925475 18 | }, 19 | "long": { 20 | "default": "Mzuzu" 21 | }, 22 | "parent": 924591, 23 | "lat": -11.46556, 24 | "lng": 34.02071, 25 | "country": "MW", 26 | "population": 175345 27 | }, 28 | "927967": { 29 | "ids": { 30 | "geonames": 927967 31 | }, 32 | "long": { 33 | "default": "Lilongwe" 34 | }, 35 | "parent": 931597, 36 | "lat": -13.96692, 37 | "lng": 33.78725, 38 | "country": "MW", 39 | "population": 646750 40 | }, 41 | "931755": { 42 | "ids": { 43 | "geonames": 931755 44 | }, 45 | "long": { 46 | "default": "Blantyre" 47 | }, 48 | "parent": 923817, 49 | "lat": -15.78499, 50 | "lng": 35.00854, 51 | "country": "MW", 52 | "population": 584877 53 | } 54 | } -------------------------------------------------------------------------------- /resources/cities/TD.json: -------------------------------------------------------------------------------- 1 | { 2 | "245785": { 3 | "ids": { 4 | "geonames": 245785 5 | }, 6 | "long": { 7 | "default": "Abéché" 8 | }, 9 | "parent": 242246, 10 | "lat": 13.82916, 11 | "lng": 20.8324, 12 | "country": "TD", 13 | "population": 74188 14 | }, 15 | "2425791": { 16 | "ids": { 17 | "geonames": 2425791 18 | }, 19 | "long": { 20 | "default": "Sagh" 21 | }, 22 | "parent": 2427315, 23 | "lat": 9.1429, 24 | "lng": 18.3923, 25 | "country": "TD", 26 | "population": 102528 27 | }, 28 | "2427123": { 29 | "ids": { 30 | "geonames": 2427123 31 | }, 32 | "long": { 33 | "default": "N'Djamena" 34 | }, 35 | "parent": 2434478, 36 | "lat": 12.10672, 37 | "lng": 15.0444, 38 | "country": "TD", 39 | "population": 721081 40 | }, 41 | "2427455": { 42 | "ids": { 43 | "geonames": 2427455 44 | }, 45 | "long": { 46 | "default": "Moundou" 47 | }, 48 | "parent": 2429060, 49 | "lat": 8.56667, 50 | "lng": 16.08333, 51 | "country": "TD", 52 | "population": 135167 53 | } 54 | } -------------------------------------------------------------------------------- /resources/cities/MU.json: -------------------------------------------------------------------------------- 1 | { 2 | "933945": { 3 | "ids": { 4 | "geonames": 933945 5 | }, 6 | "long": { 7 | "default": "Vacoas" 8 | }, 9 | "parent": 934166, 10 | "lat": -20.29806, 11 | "lng": 57.47833, 12 | "country": "MU", 13 | "population": 110000 14 | }, 15 | "934131": { 16 | "ids": { 17 | "geonames": 934131 18 | }, 19 | "long": { 20 | "default": "Quatre Bornes" 21 | }, 22 | "parent": 934166, 23 | "lat": -20.26381, 24 | "lng": 57.4791, 25 | "country": "MU", 26 | "population": 80961 27 | }, 28 | "934154": { 29 | "ids": { 30 | "geonames": 934154 31 | }, 32 | "long": { 33 | "default": "Port Louis" 34 | }, 35 | "parent": 934153, 36 | "lat": -20.16194, 37 | "lng": 57.49889, 38 | "country": "MU", 39 | "population": 155226 40 | }, 41 | "934570": { 42 | "ids": { 43 | "geonames": 934570 44 | }, 45 | "long": { 46 | "default": "Curepipe" 47 | }, 48 | "parent": 934166, 49 | "lat": -20.31472, 50 | "lng": 57.52028, 51 | "country": "MU", 52 | "population": 84200 53 | } 54 | } -------------------------------------------------------------------------------- /resources/cities/BW.json: -------------------------------------------------------------------------------- 1 | { 2 | "933099": { 3 | "ids": { 4 | "geonames": 933099 5 | }, 6 | "long": { 7 | "default": "Selebi-Phikwe" 8 | }, 9 | "parent": 933851, 10 | "lat": -21.97895, 11 | "lng": 27.84296, 12 | "country": "BW", 13 | "population": 53727 14 | }, 15 | "933305": { 16 | "ids": { 17 | "geonames": 933305 18 | }, 19 | "long": { 20 | "default": "Molepolole" 21 | }, 22 | "parent": 933562, 23 | "lat": -24.40659, 24 | "lng": 25.49508, 25 | "country": "BW", 26 | "population": 63248 27 | }, 28 | "933773": { 29 | "ids": { 30 | "geonames": 933773 31 | }, 32 | "long": { 33 | "default": "Gaborone" 34 | }, 35 | "parent": 933044, 36 | "lat": -24.65451, 37 | "lng": 25.90859, 38 | "country": "BW", 39 | "population": 208411 40 | }, 41 | "933778": { 42 | "ids": { 43 | "geonames": 933778 44 | }, 45 | "long": { 46 | "default": "Francistown" 47 | }, 48 | "parent": 933210, 49 | "lat": -21.16995, 50 | "lng": 27.50787, 51 | "country": "BW", 52 | "population": 89979 53 | } 54 | } -------------------------------------------------------------------------------- /resources/cities/MR.json: -------------------------------------------------------------------------------- 1 | { 2 | "2377450": { 3 | "ids": { 4 | "geonames": 2377450 5 | }, 6 | "long": { 7 | "default": "Nouakchott" 8 | }, 9 | "parent": 2377449, 10 | "lat": 18.08581, 11 | "lng": -15.9785, 12 | "country": "MR", 13 | "population": 661400 14 | }, 15 | "2377457": { 16 | "ids": { 17 | "geonames": 2377457 18 | }, 19 | "long": { 20 | "default": "Nouâdhibou" 21 | }, 22 | "parent": 2380426, 23 | "lat": 20.93098, 24 | "lng": -17.03465, 25 | "country": "MR", 26 | "population": 72337 27 | }, 28 | "2377539": { 29 | "ids": { 30 | "geonames": 2377539 31 | }, 32 | "long": { 33 | "default": "Néma" 34 | }, 35 | "parent": 2379025, 36 | "lat": 16.61702, 37 | "lng": -7.25649, 38 | "country": "MR", 39 | "population": 60000 40 | }, 41 | "2378736": { 42 | "ids": { 43 | "geonames": 2378736 44 | }, 45 | "long": { 46 | "default": "Kaédi" 47 | }, 48 | "parent": 2379384, 49 | "lat": 16.15027, 50 | "lng": -13.5037, 51 | "country": "MR", 52 | "population": 55374 53 | } 54 | } -------------------------------------------------------------------------------- /resources/cities/CG.json: -------------------------------------------------------------------------------- 1 | { 2 | "2255414": { 3 | "ids": { 4 | "geonames": 2255414 5 | }, 6 | "long": { 7 | "default": "Pointe-Noire" 8 | }, 9 | "parent": 7280295, 10 | "lat": -4.77609, 11 | "lng": 11.86352, 12 | "country": "CG", 13 | "population": 659084 14 | }, 15 | "2258261": { 16 | "ids": { 17 | "geonames": 2258261 18 | }, 19 | "long": { 20 | "default": "Dolisie" 21 | }, 22 | "parent": 2256175, 23 | "lat": -4.19834, 24 | "lng": 12.66664, 25 | "country": "CG", 26 | "population": 103894 27 | }, 28 | "2259383": { 29 | "ids": { 30 | "geonames": 2259383 31 | }, 32 | "long": { 33 | "default": "Kayes" 34 | }, 35 | "parent": 2260668, 36 | "lat": -4.20493, 37 | "lng": 13.28608, 38 | "country": "CG", 39 | "population": 58737 40 | }, 41 | "2260535": { 42 | "ids": { 43 | "geonames": 2260535 44 | }, 45 | "long": { 46 | "default": "Brazzaville" 47 | }, 48 | "parent": 2572183, 49 | "lat": -4.26613, 50 | "lng": 15.28318, 51 | "country": "CG", 52 | "population": 1284609 53 | } 54 | } -------------------------------------------------------------------------------- /resources/cities/RE.json: -------------------------------------------------------------------------------- 1 | { 2 | "935214": { 3 | "ids": { 4 | "geonames": 935214 5 | }, 6 | "long": { 7 | "default": "Saint-Pierre" 8 | }, 9 | "parent": 6690283, 10 | "lat": -21.3393, 11 | "lng": 55.47811, 12 | "country": "RE", 13 | "population": 76655 14 | }, 15 | "935221": { 16 | "ids": { 17 | "geonames": 935221 18 | }, 19 | "long": { 20 | "default": "Saint-Paul" 21 | }, 22 | "parent": 6690283, 23 | "lat": -21.00963, 24 | "lng": 55.27071, 25 | "country": "RE", 26 | "population": 99307 27 | }, 28 | "935264": { 29 | "ids": { 30 | "geonames": 935264 31 | }, 32 | "long": { 33 | "default": "Saint-Denis" 34 | }, 35 | "parent": 6690283, 36 | "lat": -20.88231, 37 | "lng": 55.4504, 38 | "country": "RE", 39 | "population": 137195 40 | }, 41 | "935582": { 42 | "ids": { 43 | "geonames": 935582 44 | }, 45 | "long": { 46 | "default": "Le Tampon" 47 | }, 48 | "parent": 6690283, 49 | "lat": -21.28309, 50 | "lng": 55.51802, 51 | "country": "RE", 52 | "population": 69986 53 | } 54 | } -------------------------------------------------------------------------------- /resources/states/FJ.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "FJ", 4 | "ids": { 5 | "fips": "FJ05", 6 | "geonames": 2194371, 7 | "iso_3166_2": "FJ-W" 8 | }, 9 | "long": { 10 | "default": "Western" 11 | } 12 | }, 13 | { 14 | "parent": "FJ", 15 | "ids": { 16 | "fips": "FJ03", 17 | "geonames": 2199295, 18 | "iso_3166_2": "FJ-N" 19 | }, 20 | "long": { 21 | "default": "Northern" 22 | } 23 | }, 24 | { 25 | "parent": "FJ", 26 | "ids": { 27 | "fips": "FJ01", 28 | "geonames": 2205272, 29 | "iso_3166_2": "FJ-C" 30 | }, 31 | "long": { 32 | "default": "Central" 33 | } 34 | }, 35 | { 36 | "parent": "FJ", 37 | "ids": { 38 | "fips": "FJ02", 39 | "geonames": 4036647, 40 | "iso_3166_2": "FJ-E" 41 | }, 42 | "long": { 43 | "default": "Eastern" 44 | } 45 | }, 46 | { 47 | "parent": "FJ", 48 | "ids": { 49 | "fips": "FJ04", 50 | "geonames": 6324593, 51 | "iso_3166_2": "FJ-R" 52 | }, 53 | "long": { 54 | "default": "Rotuma" 55 | } 56 | } 57 | ] -------------------------------------------------------------------------------- /resources/states/TG.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "TG", 4 | "ids": { 5 | "fips": "TO26", 6 | "geonames": 2364205, 7 | "iso_3166_2": "TG-S" 8 | }, 9 | "long": { 10 | "default": "Savanes" 11 | } 12 | }, 13 | { 14 | "parent": "TG", 15 | "ids": { 16 | "fips": "TO25", 17 | "geonames": 2364370, 18 | "iso_3166_2": "TG-P" 19 | }, 20 | "long": { 21 | "default": "Plateaux" 22 | } 23 | }, 24 | { 25 | "parent": "TG", 26 | "ids": { 27 | "fips": "TO24", 28 | "geonames": 2365173, 29 | "iso_3166_2": "TG-M" 30 | }, 31 | "long": { 32 | "default": "Maritime" 33 | } 34 | }, 35 | { 36 | "parent": "TG", 37 | "ids": { 38 | "fips": "TO22", 39 | "geonames": 2367237, 40 | "iso_3166_2": "TG-C" 41 | }, 42 | "long": { 43 | "default": "Centrale" 44 | } 45 | }, 46 | { 47 | "parent": "TG", 48 | "ids": { 49 | "fips": "TO23", 50 | "geonames": 2597439, 51 | "iso_3166_2": "TG-K" 52 | }, 53 | "long": { 54 | "default": "Kara" 55 | } 56 | } 57 | ] -------------------------------------------------------------------------------- /resources/cities/TT.json: -------------------------------------------------------------------------------- 1 | { 2 | "3573738": { 3 | "ids": { 4 | "geonames": 3573738 5 | }, 6 | "long": { 7 | "default": "San Fernando" 8 | }, 9 | "parent": 3573739, 10 | "lat": 10.28333, 11 | "lng": -61.46667, 12 | "country": "TT", 13 | "population": 55419 14 | }, 15 | "3574116": { 16 | "ids": { 17 | "geonames": 3574116 18 | }, 19 | "long": { 20 | "default": "Mon Repos" 21 | }, 22 | "parent": 3573739, 23 | "lat": 10.27979, 24 | "lng": -61.4459, 25 | "country": "TT", 26 | "population": 56380 27 | }, 28 | "3574309": { 29 | "ids": { 30 | "geonames": 3574309 31 | }, 32 | "long": { 33 | "default": "Laventille" 34 | }, 35 | "parent": 7521946, 36 | "lat": 10.64917, 37 | "lng": -61.49889, 38 | "country": "TT", 39 | "population": 157258 40 | }, 41 | "3574810": { 42 | "ids": { 43 | "geonames": 3574810 44 | }, 45 | "long": { 46 | "default": "Chaguanas" 47 | }, 48 | "parent": 7521937, 49 | "lat": 10.51667, 50 | "lng": -61.41667, 51 | "country": "TT", 52 | "population": 67433 53 | } 54 | } -------------------------------------------------------------------------------- /resources/cities/HK.json: -------------------------------------------------------------------------------- 1 | { 2 | "1818209": { 3 | "ids": { 4 | "geonames": 1818209 5 | }, 6 | "long": { 7 | "default": "Tsuen Wan" 8 | }, 9 | "parent": 1818458, 10 | "lat": 22.37066, 11 | "lng": 114.10479, 12 | "country": "HK", 13 | "population": 288728 14 | }, 15 | "1818223": { 16 | "ids": { 17 | "geonames": 1818223 18 | }, 19 | "long": { 20 | "default": "Yuen Long Kau Hui" 21 | }, 22 | "parent": 1818224, 23 | "lat": 22.45, 24 | "lng": 114.03333, 25 | "country": "HK", 26 | "population": 141900 27 | }, 28 | "1819609": { 29 | "ids": { 30 | "geonames": 1819609 31 | }, 32 | "long": { 33 | "default": "Kowloon" 34 | }, 35 | "parent": 7533612, 36 | "lat": 22.31667, 37 | "lng": 114.18333, 38 | "country": "HK", 39 | "population": 2019533 40 | }, 41 | "1819729": { 42 | "ids": { 43 | "geonames": 1819729 44 | }, 45 | "long": { 46 | "default": "Hong Kong" 47 | }, 48 | "parent": 7533598, 49 | "lat": 22.28552, 50 | "lng": 114.15769, 51 | "country": "HK", 52 | "population": 7012738 53 | } 54 | } -------------------------------------------------------------------------------- /resources/states/TF.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "TF", 4 | "ids": { 5 | "fips": "FS02", 6 | "geonames": 936339, 7 | "iso_3166_2": false 8 | }, 9 | "long": { 10 | "default": "Crozet" 11 | } 12 | }, 13 | { 14 | "parent": "TF", 15 | "ids": { 16 | "fips": "FS03", 17 | "geonames": 1546558, 18 | "iso_3166_2": false 19 | }, 20 | "long": { 21 | "default": "Kerguelen" 22 | } 23 | }, 24 | { 25 | "parent": "TF", 26 | "ids": { 27 | "fips": "FS01", 28 | "geonames": 1547221, 29 | "iso_3166_2": false 30 | }, 31 | "long": { 32 | "default": "Saint-Paul-et-Amsterdam" 33 | } 34 | }, 35 | { 36 | "parent": "TF", 37 | "ids": { 38 | "fips": "FS05", 39 | "geonames": 6690916, 40 | "iso_3166_2": false 41 | }, 42 | "long": { 43 | "default": "Îles Éparses" 44 | } 45 | }, 46 | { 47 | "parent": "TF", 48 | "ids": { 49 | "fips": "FS04", 50 | "geonames": 6690917, 51 | "iso_3166_2": false 52 | }, 53 | "long": { 54 | "default": "Terre-Adélie" 55 | } 56 | } 57 | ] -------------------------------------------------------------------------------- /resources/states/NP.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "NP", 4 | "ids": { 5 | "fips": false, 6 | "geonames": 7289705, 7 | "iso_3166_2": "NP-5" 8 | }, 9 | "long": { 10 | "default": "Far Western" 11 | } 12 | }, 13 | { 14 | "parent": "NP", 15 | "ids": { 16 | "fips": false, 17 | "geonames": 7289706, 18 | "iso_3166_2": "NP-2" 19 | }, 20 | "long": { 21 | "default": "Mid Western" 22 | } 23 | }, 24 | { 25 | "parent": "NP", 26 | "ids": { 27 | "fips": false, 28 | "geonames": 7289707, 29 | "iso_3166_2": "NP-1" 30 | }, 31 | "long": { 32 | "default": "Central Region" 33 | } 34 | }, 35 | { 36 | "parent": "NP", 37 | "ids": { 38 | "fips": "ER", 39 | "geonames": 7289708, 40 | "iso_3166_2": "NP-4" 41 | }, 42 | "long": { 43 | "default": "Eastern Region" 44 | } 45 | }, 46 | { 47 | "parent": "NP", 48 | "ids": { 49 | "fips": false, 50 | "geonames": 7289709, 51 | "iso_3166_2": "NP-3" 52 | }, 53 | "long": { 54 | "default": "Western Region" 55 | } 56 | } 57 | ] -------------------------------------------------------------------------------- /resources/states/AS.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "AS", 4 | "ids": { 5 | "fips": "AQ050", 6 | "geonames": 5880873, 7 | "iso_3166_2": false 8 | }, 9 | "long": { 10 | "default": "Western District" 11 | } 12 | }, 13 | { 14 | "parent": "AS", 15 | "ids": { 16 | "fips": "AQ040", 17 | "geonames": 5881199, 18 | "iso_3166_2": false 19 | }, 20 | "long": { 21 | "default": "Swains Island" 22 | } 23 | }, 24 | { 25 | "parent": "AS", 26 | "ids": { 27 | "fips": "AQ010", 28 | "geonames": 5881219, 29 | "iso_3166_2": false 30 | }, 31 | "long": { 32 | "default": "Eastern District" 33 | } 34 | }, 35 | { 36 | "parent": "AS", 37 | "ids": { 38 | "fips": "AQ020", 39 | "geonames": 5881436, 40 | "iso_3166_2": false 41 | }, 42 | "long": { 43 | "default": "Manu'a" 44 | } 45 | }, 46 | { 47 | "parent": "AS", 48 | "ids": { 49 | "fips": "AQ030", 50 | "geonames": 7309441, 51 | "iso_3166_2": false 52 | }, 53 | "long": { 54 | "default": "Rose Island" 55 | } 56 | } 57 | ] -------------------------------------------------------------------------------- /resources/states/FO.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "FO", 4 | "ids": { 5 | "fips": "VG", 6 | "geonames": 2610816 7 | }, 8 | "long": { 9 | "default": "Vágar" 10 | } 11 | }, 12 | { 13 | "parent": "FO", 14 | "ids": { 15 | "fips": "SU", 16 | "geonames": 2612137 17 | }, 18 | "long": { 19 | "default": "Suðuroy" 20 | } 21 | }, 22 | { 23 | "parent": "FO", 24 | "ids": { 25 | "fips": "ST", 26 | "geonames": 2612225 27 | }, 28 | "long": { 29 | "default": "Streymoy" 30 | } 31 | }, 32 | { 33 | "parent": "FO", 34 | "ids": { 35 | "fips": "SA", 36 | "geonames": 2614219 37 | }, 38 | "long": { 39 | "default": "Sandoy" 40 | } 41 | }, 42 | { 43 | "parent": "FO", 44 | "ids": { 45 | "fips": "NO", 46 | "geonames": 2616145 47 | }, 48 | "long": { 49 | "default": "Norðoyar" 50 | } 51 | }, 52 | { 53 | "parent": "FO", 54 | "ids": { 55 | "fips": "OS", 56 | "geonames": 2622387 57 | }, 58 | "long": { 59 | "default": "Eysturoy" 60 | } 61 | } 62 | ] -------------------------------------------------------------------------------- /resources/states/SG.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "SG", 4 | "ids": { 5 | "fips": "SN01", 6 | "geonames": 7535954, 7 | "iso_3166_2": "SG-01" 8 | }, 9 | "long": { 10 | "default": "Central Singapore" 11 | } 12 | }, 13 | { 14 | "parent": "SG", 15 | "ids": { 16 | "fips": "SN02", 17 | "geonames": 7535955, 18 | "iso_3166_2": "SG-02" 19 | }, 20 | "long": { 21 | "default": "North East" 22 | } 23 | }, 24 | { 25 | "parent": "SG", 26 | "ids": { 27 | "fips": "SN04", 28 | "geonames": 7535956, 29 | "iso_3166_2": "SG-04" 30 | }, 31 | "long": { 32 | "default": "South East" 33 | } 34 | }, 35 | { 36 | "parent": "SG", 37 | "ids": { 38 | "fips": "SN05", 39 | "geonames": 7535957, 40 | "iso_3166_2": "SG-05" 41 | }, 42 | "long": { 43 | "default": "South West" 44 | } 45 | }, 46 | { 47 | "parent": "SG", 48 | "ids": { 49 | "fips": "SN03", 50 | "geonames": 7535958, 51 | "iso_3166_2": "SG-03" 52 | }, 53 | "long": { 54 | "default": "North West" 55 | } 56 | } 57 | ] -------------------------------------------------------------------------------- /resources/states/DK.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "DK", 4 | "ids": { 5 | "fips": "DA17", 6 | "geonames": 6418538, 7 | "iso_3166_2": "DK-84" 8 | }, 9 | "long": { 10 | "default": "Capital Region" 11 | } 12 | }, 13 | { 14 | "parent": "DK", 15 | "ids": { 16 | "fips": "DA18", 17 | "geonames": 6418539, 18 | "iso_3166_2": "DK-82" 19 | }, 20 | "long": { 21 | "default": "Central Denmark" 22 | } 23 | }, 24 | { 25 | "parent": "DK", 26 | "ids": { 27 | "fips": "DA19", 28 | "geonames": 6418540, 29 | "iso_3166_2": "DK-81" 30 | }, 31 | "long": { 32 | "default": "North Denmark" 33 | } 34 | }, 35 | { 36 | "parent": "DK", 37 | "ids": { 38 | "fips": "DA20", 39 | "geonames": 6418541, 40 | "iso_3166_2": "DK-85" 41 | }, 42 | "long": { 43 | "default": "Zealand" 44 | } 45 | }, 46 | { 47 | "parent": "DK", 48 | "ids": { 49 | "fips": "DA21", 50 | "geonames": 6418542, 51 | "iso_3166_2": "DK-83" 52 | }, 53 | "long": { 54 | "default": "South Denmark" 55 | } 56 | } 57 | ] -------------------------------------------------------------------------------- /resources/states/PF.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "PF", 4 | "ids": { 5 | "fips": "FP04", 6 | "geonames": 4019991, 7 | "iso_3166_2": false 8 | }, 9 | "long": { 10 | "default": "Îles Marquises" 11 | } 12 | }, 13 | { 14 | "parent": "PF", 15 | "ids": { 16 | "fips": "FP03", 17 | "geonames": 4030621, 18 | "iso_3166_2": false 19 | }, 20 | "long": { 21 | "default": "Îles Tuamotu-Gambier" 22 | } 23 | }, 24 | { 25 | "parent": "PF", 26 | "ids": { 27 | "fips": "FP02", 28 | "geonames": 4034364, 29 | "iso_3166_2": false 30 | }, 31 | "long": { 32 | "default": "Leeward Islands" 33 | } 34 | }, 35 | { 36 | "parent": "PF", 37 | "ids": { 38 | "fips": "FP01", 39 | "geonames": 4034365, 40 | "iso_3166_2": false 41 | }, 42 | "long": { 43 | "default": "Îles du Vent" 44 | } 45 | }, 46 | { 47 | "parent": "PF", 48 | "ids": { 49 | "fips": "FP05", 50 | "geonames": 4034366, 51 | "iso_3166_2": false 52 | }, 53 | "long": { 54 | "default": "Îles Australes" 55 | } 56 | } 57 | ] -------------------------------------------------------------------------------- /resources/states/BH.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "BH", 4 | "ids": { 5 | "fips": "BA15", 6 | "geonames": 290333, 7 | "iso_3166_2": "BH-15" 8 | }, 9 | "long": { 10 | "default": "Muharraq" 11 | } 12 | }, 13 | { 14 | "parent": "BH", 15 | "ids": { 16 | "fips": "BA16", 17 | "geonames": 7090954, 18 | "iso_3166_2": "BH-13" 19 | }, 20 | "long": { 21 | "default": "Capital Governorate" 22 | } 23 | }, 24 | { 25 | "parent": "BH", 26 | "ids": { 27 | "fips": "BA17", 28 | "geonames": 7090972, 29 | "iso_3166_2": "BH-14" 30 | }, 31 | "long": { 32 | "default": "Southern Governorate" 33 | } 34 | }, 35 | { 36 | "parent": "BH", 37 | "ids": { 38 | "fips": "BA18", 39 | "geonames": 7090973, 40 | "iso_3166_2": false 41 | }, 42 | "long": { 43 | "default": "Central Governorate" 44 | } 45 | }, 46 | { 47 | "parent": "BH", 48 | "ids": { 49 | "fips": "BA19", 50 | "geonames": 7090974, 51 | "iso_3166_2": "BH-17" 52 | }, 53 | "long": { 54 | "default": "Northern" 55 | } 56 | } 57 | ] -------------------------------------------------------------------------------- /resources/states/RW.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "RW", 4 | "ids": { 5 | "fips": "RW11", 6 | "geonames": 6413337, 7 | "iso_3166_2": "RW-02" 8 | }, 9 | "long": { 10 | "default": "Eastern Province" 11 | } 12 | }, 13 | { 14 | "parent": "RW", 15 | "ids": { 16 | "fips": "RW12", 17 | "geonames": 6413338, 18 | "iso_3166_2": "RW-01" 19 | }, 20 | "long": { 21 | "default": "Kigali" 22 | } 23 | }, 24 | { 25 | "parent": "RW", 26 | "ids": { 27 | "fips": "RW13", 28 | "geonames": 6413339, 29 | "iso_3166_2": "RW-03" 30 | }, 31 | "long": { 32 | "default": "Northern Province" 33 | } 34 | }, 35 | { 36 | "parent": "RW", 37 | "ids": { 38 | "fips": "RW14", 39 | "geonames": 6413340, 40 | "iso_3166_2": "RW-04" 41 | }, 42 | "long": { 43 | "default": "Western Province" 44 | } 45 | }, 46 | { 47 | "parent": "RW", 48 | "ids": { 49 | "fips": "RW15", 50 | "geonames": 6413341, 51 | "iso_3166_2": "RW-05" 52 | }, 53 | "long": { 54 | "default": "Southern Province" 55 | } 56 | } 57 | ] -------------------------------------------------------------------------------- /resources/states/TM.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "TM", 4 | "ids": { 5 | "fips": "TX02", 6 | "geonames": 162152, 7 | "iso_3166_2": "TM-B" 8 | }, 9 | "long": { 10 | "default": "Balkan" 11 | }, 12 | "timezone": "Asia/Ashgabat" 13 | }, 14 | { 15 | "parent": "TM", 16 | "ids": { 17 | "fips": "TX01", 18 | "geonames": 162181, 19 | "iso_3166_2": "TM-A" 20 | }, 21 | "long": { 22 | "default": "Ahal" 23 | }, 24 | "timezone": "Asia/Ashgabat" 25 | }, 26 | { 27 | "parent": "TM", 28 | "ids": { 29 | "fips": "TX03", 30 | "geonames": 601465, 31 | "iso_3166_2": "TM-D" 32 | }, 33 | "long": { 34 | "default": "Daşoguz" 35 | }, 36 | "timezone": "Asia/Ashgabat" 37 | }, 38 | { 39 | "parent": "TM", 40 | "ids": { 41 | "fips": "TX05", 42 | "geonames": 1218666, 43 | "iso_3166_2": "TM-M" 44 | }, 45 | "long": { 46 | "default": "Mary" 47 | }, 48 | "timezone": "Asia/Ashgabat" 49 | }, 50 | { 51 | "parent": "TM", 52 | "ids": { 53 | "fips": "TX04", 54 | "geonames": 1219651, 55 | "iso_3166_2": "TM-L" 56 | }, 57 | "long": { 58 | "default": "Lebap" 59 | }, 60 | "timezone": "Asia/Ashgabat" 61 | } 62 | ] 63 | -------------------------------------------------------------------------------- /resources/states/TO.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "TO", 4 | "ids": { 5 | "fips": "TN03", 6 | "geonames": 4032231, 7 | "iso_3166_2": "TO-05" 8 | }, 9 | "long": { 10 | "default": "Vava‘u" 11 | }, 12 | "timezone": "Pacific/Tongatapu" 13 | }, 14 | { 15 | "parent": "TO", 16 | "ids": { 17 | "fips": "TN02", 18 | "geonames": 4032279, 19 | "iso_3166_2": "TO-04" 20 | }, 21 | "long": { 22 | "default": "Tongatapu" 23 | }, 24 | "timezone": "Pacific/Tongatapu" 25 | }, 26 | { 27 | "parent": "TO", 28 | "ids": { 29 | "fips": "TN01", 30 | "geonames": 4032637, 31 | "iso_3166_2": "TO-02" 32 | }, 33 | "long": { 34 | "default": "Ha‘apai" 35 | }, 36 | "timezone": "Pacific/Tongatapu" 37 | }, 38 | { 39 | "parent": "TO", 40 | "ids": { 41 | "fips": "EU", 42 | "geonames": 7668021, 43 | "iso_3166_2": "TO-01" 44 | }, 45 | "long": { 46 | "default": "ʻEua" 47 | }, 48 | "timezone": "Pacific/Tongatapu" 49 | }, 50 | { 51 | "parent": "TO", 52 | "ids": { 53 | "fips": "NI", 54 | "geonames": 7668055, 55 | "iso_3166_2": "TO-03" 56 | }, 57 | "long": { 58 | "default": "Niuas" 59 | }, 60 | "timezone": "Pacific/Tongatapu" 61 | } 62 | ] 63 | -------------------------------------------------------------------------------- /resources/states/DJ.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "DJ", 4 | "ids": { 5 | "fips": "DJ05", 6 | "geonames": 220781, 7 | "iso_3166_2": "DJ-TA" 8 | }, 9 | "long": { 10 | "default": "Tadjourah" 11 | } 12 | }, 13 | { 14 | "parent": "DJ", 15 | "ids": { 16 | "fips": "DJ04", 17 | "geonames": 221525, 18 | "iso_3166_2": "DJ-OB" 19 | }, 20 | "long": { 21 | "default": "Obock" 22 | } 23 | }, 24 | { 25 | "parent": "DJ", 26 | "ids": { 27 | "fips": "DJ07", 28 | "geonames": 223818, 29 | "iso_3166_2": "DJ-DJ" 30 | }, 31 | "long": { 32 | "default": "Djibouti" 33 | } 34 | }, 35 | { 36 | "parent": "DJ", 37 | "ids": { 38 | "fips": "DJ06", 39 | "geonames": 223889, 40 | "iso_3166_2": "DJ-DI" 41 | }, 42 | "long": { 43 | "default": "Dikhil" 44 | } 45 | }, 46 | { 47 | "parent": "DJ", 48 | "ids": { 49 | "fips": "DJ01", 50 | "geonames": 225282, 51 | "iso_3166_2": "DJ-AS" 52 | }, 53 | "long": { 54 | "default": "Ali Sabieh" 55 | } 56 | }, 57 | { 58 | "parent": "DJ", 59 | "ids": { 60 | "fips": "DJ08", 61 | "geonames": 449265, 62 | "iso_3166_2": "DJ-AR" 63 | }, 64 | "long": { 65 | "default": "Arta" 66 | } 67 | } 68 | ] -------------------------------------------------------------------------------- /resources/states/CY.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "CY", 4 | "ids": { 5 | "fips": "CY06", 6 | "geonames": 146213, 7 | "iso_3166_2": "CY-05" 8 | }, 9 | "long": { 10 | "default": "Pafos" 11 | } 12 | }, 13 | { 14 | "parent": "CY", 15 | "ids": { 16 | "fips": "CY04", 17 | "geonames": 146267, 18 | "iso_3166_2": "CY-01" 19 | }, 20 | "long": { 21 | "default": "Nicosia" 22 | } 23 | }, 24 | { 25 | "parent": "CY", 26 | "ids": { 27 | "fips": "CY05", 28 | "geonames": 146383, 29 | "iso_3166_2": "CY-02" 30 | }, 31 | "long": { 32 | "default": "Limassol" 33 | } 34 | }, 35 | { 36 | "parent": "CY", 37 | "ids": { 38 | "fips": "CY03", 39 | "geonames": 146398, 40 | "iso_3166_2": "CY-03" 41 | }, 42 | "long": { 43 | "default": "Larnaka" 44 | } 45 | }, 46 | { 47 | "parent": "CY", 48 | "ids": { 49 | "fips": "CY02", 50 | "geonames": 146411, 51 | "iso_3166_2": "CY-06" 52 | }, 53 | "long": { 54 | "default": "Keryneia" 55 | } 56 | }, 57 | { 58 | "parent": "CY", 59 | "ids": { 60 | "fips": "CY01", 61 | "geonames": 146615, 62 | "iso_3166_2": "CY-04" 63 | }, 64 | "long": { 65 | "default": "Ammochostos" 66 | } 67 | } 68 | ] -------------------------------------------------------------------------------- /resources/states/BZ.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "BZ", 4 | "ids": { 5 | "fips": "BH06", 6 | "geonames": 3580913, 7 | "iso_3166_2": "BZ-TOL" 8 | }, 9 | "long": { 10 | "default": "Toledo" 11 | } 12 | }, 13 | { 14 | "parent": "BZ", 15 | "ids": { 16 | "fips": "BH05", 17 | "geonames": 3580975, 18 | "iso_3166_2": "BZ-SC" 19 | }, 20 | "long": { 21 | "default": "Stann Creek" 22 | } 23 | }, 24 | { 25 | "parent": "BZ", 26 | "ids": { 27 | "fips": "BH04", 28 | "geonames": 3581511, 29 | "iso_3166_2": "BZ-OW" 30 | }, 31 | "long": { 32 | "default": "Orange Walk" 33 | } 34 | }, 35 | { 36 | "parent": "BZ", 37 | "ids": { 38 | "fips": "BH03", 39 | "geonames": 3582302, 40 | "iso_3166_2": "BZ-CZL" 41 | }, 42 | "long": { 43 | "default": "Corozal" 44 | } 45 | }, 46 | { 47 | "parent": "BZ", 48 | "ids": { 49 | "fips": "BH02", 50 | "geonames": 3582429, 51 | "iso_3166_2": "BZ-CY" 52 | }, 53 | "long": { 54 | "default": "Cayo" 55 | } 56 | }, 57 | { 58 | "parent": "BZ", 59 | "ids": { 60 | "fips": "BH01", 61 | "geonames": 3582676, 62 | "iso_3166_2": "BZ-BZ" 63 | }, 64 | "long": { 65 | "default": "Belize" 66 | } 67 | } 68 | ] -------------------------------------------------------------------------------- /resources/states/GM.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "GM", 4 | "ids": { 5 | "fips": "GA05", 6 | "geonames": 2411683, 7 | "iso_3166_2": "GM-W" 8 | }, 9 | "long": { 10 | "default": "Western" 11 | } 12 | }, 13 | { 14 | "parent": "GM", 15 | "ids": { 16 | "fips": "GA04", 17 | "geonames": 2411711, 18 | "iso_3166_2": "GM-U" 19 | }, 20 | "long": { 21 | "default": "Upper River" 22 | } 23 | }, 24 | { 25 | "parent": "GM", 26 | "ids": { 27 | "fips": "GA07", 28 | "geonames": 2412353, 29 | "iso_3166_2": "GM-N" 30 | }, 31 | "long": { 32 | "default": "North Bank" 33 | } 34 | }, 35 | { 36 | "parent": "GM", 37 | "ids": { 38 | "fips": "GA03", 39 | "geonames": 2412707, 40 | "iso_3166_2": "GM-M" 41 | }, 42 | "long": { 43 | "default": "Central River" 44 | } 45 | }, 46 | { 47 | "parent": "GM", 48 | "ids": { 49 | "fips": "GA02", 50 | "geonames": 2412716, 51 | "iso_3166_2": "GM-L" 52 | }, 53 | "long": { 54 | "default": "Lower River" 55 | } 56 | }, 57 | { 58 | "parent": "GM", 59 | "ids": { 60 | "fips": "GA01", 61 | "geonames": 2413875, 62 | "iso_3166_2": "GM-B" 63 | }, 64 | "long": { 65 | "default": "Banjul" 66 | } 67 | } 68 | ] -------------------------------------------------------------------------------- /resources/states/KY.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "KY", 4 | "ids": { 5 | "fips": false, 6 | "geonames": 10346796, 7 | "iso_3166_2": false 8 | }, 9 | "long": { 10 | "default": "George Town" 11 | } 12 | }, 13 | { 14 | "parent": "KY", 15 | "ids": { 16 | "fips": false, 17 | "geonames": 10375968, 18 | "iso_3166_2": false 19 | }, 20 | "long": { 21 | "default": "West Bay" 22 | } 23 | }, 24 | { 25 | "parent": "KY", 26 | "ids": { 27 | "fips": false, 28 | "geonames": 10375969, 29 | "iso_3166_2": false 30 | }, 31 | "long": { 32 | "default": "Bodden Town" 33 | } 34 | }, 35 | { 36 | "parent": "KY", 37 | "ids": { 38 | "fips": false, 39 | "geonames": 10375970, 40 | "iso_3166_2": false 41 | }, 42 | "long": { 43 | "default": "North Side" 44 | } 45 | }, 46 | { 47 | "parent": "KY", 48 | "ids": { 49 | "fips": false, 50 | "geonames": 10375971, 51 | "iso_3166_2": false 52 | }, 53 | "long": { 54 | "default": "East End" 55 | } 56 | }, 57 | { 58 | "parent": "KY", 59 | "ids": { 60 | "fips": false, 61 | "geonames": 10375972, 62 | "iso_3166_2": false 63 | }, 64 | "long": { 65 | "default": "Sister Island" 66 | } 67 | } 68 | ] -------------------------------------------------------------------------------- /resources/states/ER.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "ER", 4 | "ids": { 5 | "fips": "ER01", 6 | "geonames": 448497, 7 | "iso_3166_2": "ER-AN" 8 | }, 9 | "long": { 10 | "default": "Anseba" 11 | } 12 | }, 13 | { 14 | "parent": "ER", 15 | "ids": { 16 | "fips": "ER02", 17 | "geonames": 448498, 18 | "iso_3166_2": "ER-DU" 19 | }, 20 | "long": { 21 | "default": "Debub" 22 | } 23 | }, 24 | { 25 | "parent": "ER", 26 | "ids": { 27 | "fips": "ER03", 28 | "geonames": 448499, 29 | "iso_3166_2": "ER-DK" 30 | }, 31 | "long": { 32 | "default": "Southern Red Sea" 33 | } 34 | }, 35 | { 36 | "parent": "ER", 37 | "ids": { 38 | "fips": "ER04", 39 | "geonames": 448500, 40 | "iso_3166_2": "ER-GB" 41 | }, 42 | "long": { 43 | "default": "Gash-Barka" 44 | } 45 | }, 46 | { 47 | "parent": "ER", 48 | "ids": { 49 | "fips": "ER05", 50 | "geonames": 448501, 51 | "iso_3166_2": "ER-MA" 52 | }, 53 | "long": { 54 | "default": "Maekel" 55 | } 56 | }, 57 | { 58 | "parent": "ER", 59 | "ids": { 60 | "fips": "ER06", 61 | "geonames": 448502, 62 | "iso_3166_2": "ER-SK" 63 | }, 64 | "long": { 65 | "default": "Northern Red Sea" 66 | } 67 | } 68 | ] -------------------------------------------------------------------------------- /resources/states/MG.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "MG", 4 | "ids": { 5 | "fips": "MA05", 6 | "geonames": 7670856, 7 | "iso_3166_2": "MG-T" 8 | }, 9 | "long": { 10 | "default": "Antananarivo" 11 | } 12 | }, 13 | { 14 | "parent": "MG", 15 | "ids": { 16 | "fips": "MA01", 17 | "geonames": 7670842, 18 | "iso_3166_2": "MG-D" 19 | }, 20 | "long": { 21 | "default": "Antsiranana" 22 | } 23 | }, 24 | { 25 | "parent": "MG", 26 | "ids": { 27 | "fips": "MA02", 28 | "geonames": 7670905, 29 | "iso_3166_2": "MG-F" 30 | }, 31 | "long": { 32 | "default": "Fianarantsoa" 33 | } 34 | }, 35 | { 36 | "parent": "MG", 37 | "ids": { 38 | "fips": "MA03", 39 | "geonames": 7670849, 40 | "iso_3166_2": "MG-M" 41 | }, 42 | "long": { 43 | "default": "Mahajanga" 44 | } 45 | }, 46 | { 47 | "parent": "MG", 48 | "ids": { 49 | "fips": "MA04", 50 | "geonames": 7670857, 51 | "iso_3166_2": "MG-A" 52 | }, 53 | "long": { 54 | "default": "Toamasina" 55 | } 56 | }, 57 | { 58 | "parent": "MG", 59 | "ids": { 60 | "fips": "MA06", 61 | "geonames": 7670913, 62 | "iso_3166_2": "MG-U" 63 | }, 64 | "long": { 65 | "default": "Toliara" 66 | } 67 | } 68 | ] -------------------------------------------------------------------------------- /resources/states/KW.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "KW", 4 | "ids": { 5 | "fips": "KU08", 6 | "geonames": 285628, 7 | "iso_3166_2": "KW-HA" 8 | }, 9 | "long": { 10 | "default": "Ḩawallī" 11 | } 12 | }, 13 | { 14 | "parent": "KW", 15 | "ids": { 16 | "fips": "KU02", 17 | "geonames": 285788, 18 | "iso_3166_2": "KW-KU" 19 | }, 20 | "long": { 21 | "default": "Al Asimah" 22 | } 23 | }, 24 | { 25 | "parent": "KW", 26 | "ids": { 27 | "fips": "KU05", 28 | "geonames": 285798, 29 | "iso_3166_2": "KW-JA" 30 | }, 31 | "long": { 32 | "default": "Al Jahrāʼ" 33 | } 34 | }, 35 | { 36 | "parent": "KW", 37 | "ids": { 38 | "fips": "KU07", 39 | "geonames": 285816, 40 | "iso_3166_2": "KW-FA" 41 | }, 42 | "long": { 43 | "default": "Al Farwaniyah" 44 | } 45 | }, 46 | { 47 | "parent": "KW", 48 | "ids": { 49 | "fips": "KU04", 50 | "geonames": 285841, 51 | "iso_3166_2": "KW-AH" 52 | }, 53 | "long": { 54 | "default": "Al Aḩmadī" 55 | } 56 | }, 57 | { 58 | "parent": "KW", 59 | "ids": { 60 | "fips": "KU09", 61 | "geonames": 7733358, 62 | "iso_3166_2": "KW-MU" 63 | }, 64 | "long": { 65 | "default": "Mubārak al Kabīr" 66 | } 67 | } 68 | ] -------------------------------------------------------------------------------- /resources/states/IL.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "IL", 4 | "ids": { 5 | "fips": "IS06", 6 | "geonames": 293198, 7 | "iso_3166_2": "IL-JM" 8 | }, 9 | "long": { 10 | "default": "Jerusalem" 11 | } 12 | }, 13 | { 14 | "parent": "IL", 15 | "ids": { 16 | "fips": "IS05", 17 | "geonames": 293396, 18 | "iso_3166_2": "IL-TA" 19 | }, 20 | "long": { 21 | "default": "Tel Aviv" 22 | } 23 | }, 24 | { 25 | "parent": "IL", 26 | "ids": { 27 | "fips": "IS04", 28 | "geonames": 294800, 29 | "iso_3166_2": "IL-HA" 30 | }, 31 | "long": { 32 | "default": "Haifa" 33 | } 34 | }, 35 | { 36 | "parent": "IL", 37 | "ids": { 38 | "fips": "IS03", 39 | "geonames": 294824, 40 | "iso_3166_2": "IL-Z" 41 | }, 42 | "long": { 43 | "default": "Northern District" 44 | } 45 | }, 46 | { 47 | "parent": "IL", 48 | "ids": { 49 | "fips": "IS02", 50 | "geonames": 294904, 51 | "iso_3166_2": "IL-M" 52 | }, 53 | "long": { 54 | "default": "Central District" 55 | } 56 | }, 57 | { 58 | "parent": "IL", 59 | "ids": { 60 | "fips": "IS01", 61 | "geonames": 294952, 62 | "iso_3166_2": "IL-D" 63 | }, 64 | "long": { 65 | "default": "Southern District" 66 | } 67 | } 68 | ] -------------------------------------------------------------------------------- /resources/cities/MD.json: -------------------------------------------------------------------------------- 1 | { 2 | "617239": { 3 | "ids": { 4 | "geonames": 617239 5 | }, 6 | "long": { 7 | "default": "Tiraspolul" 8 | }, 9 | "parent": 858889, 10 | "lat": 46.84274, 11 | "lng": 29.62909, 12 | "country": "MD", 13 | "population": 157000 14 | }, 15 | "617486": { 16 | "ids": { 17 | "geonames": 617486 18 | }, 19 | "long": { 20 | "default": "Rîbniţa" 21 | }, 22 | "parent": 858889, 23 | "lat": 47.76817, 24 | "lng": 29.01, 25 | "country": "MD", 26 | "population": 55455 27 | }, 28 | "618426": { 29 | "ids": { 30 | "geonames": 618426 31 | }, 32 | "long": { 33 | "default": "Chişinău" 34 | }, 35 | "parent": 618069, 36 | "lat": 47.00556, 37 | "lng": 28.8575, 38 | "country": "MD", 39 | "population": 635994 40 | }, 41 | "618577": { 42 | "ids": { 43 | "geonames": 618577 44 | }, 45 | "long": { 46 | "default": "Bender" 47 | }, 48 | "parent": 861487, 49 | "lat": 46.83156, 50 | "lng": 29.47769, 51 | "country": "MD", 52 | "population": 110175 53 | }, 54 | "618605": { 55 | "ids": { 56 | "geonames": 618605 57 | }, 58 | "long": { 59 | "default": "Bălţi" 60 | }, 61 | "parent": 873909, 62 | "lat": 47.76314, 63 | "lng": 27.92932, 64 | "country": "MD", 65 | "population": 125000 66 | } 67 | } -------------------------------------------------------------------------------- /resources/cities/SL.json: -------------------------------------------------------------------------------- 1 | { 2 | "2406407": { 3 | "ids": { 4 | "geonames": 2406407 5 | }, 6 | "long": { 7 | "default": "Makeni" 8 | }, 9 | "parent": 2404798, 10 | "lat": 8.88605, 11 | "lng": -12.04417, 12 | "country": "SL", 13 | "population": 87679 14 | }, 15 | "2407656": { 16 | "ids": { 17 | "geonames": 2407656 18 | }, 19 | "long": { 20 | "default": "Koidu" 21 | }, 22 | "parent": 2409543, 23 | "lat": 8.64387, 24 | "lng": -10.9714, 25 | "country": "SL", 26 | "population": 88000 27 | }, 28 | "2407790": { 29 | "ids": { 30 | "geonames": 2407790 31 | }, 32 | "long": { 33 | "default": "Kenema" 34 | }, 35 | "parent": 2409543, 36 | "lat": 7.87687, 37 | "lng": -11.19025, 38 | "country": "SL", 39 | "population": 143137 40 | }, 41 | "2409306": { 42 | "ids": { 43 | "geonames": 2409306 44 | }, 45 | "long": { 46 | "default": "Freetown" 47 | }, 48 | "parent": 2403068, 49 | "lat": 8.484, 50 | "lng": -13.22994, 51 | "country": "SL", 52 | "population": 802639 53 | }, 54 | "2410048": { 55 | "ids": { 56 | "geonames": 2410048 57 | }, 58 | "long": { 59 | "default": "Bo" 60 | }, 61 | "parent": 2403745, 62 | "lat": 7.96472, 63 | "lng": -11.73833, 64 | "country": "SL", 65 | "population": 174354 66 | } 67 | } -------------------------------------------------------------------------------- /resources/cities/BH.json: -------------------------------------------------------------------------------- 1 | { 2 | "290247": { 3 | "ids": { 4 | "geonames": 290247 5 | }, 6 | "long": { 7 | "default": "Madīnat Ḩamad" 8 | }, 9 | "parent": 7090973, 10 | "lat": 26.11528, 11 | "lng": 50.50694, 12 | "country": "BH", 13 | "population": 52718 14 | }, 15 | "290269": { 16 | "ids": { 17 | "geonames": 290269 18 | }, 19 | "long": { 20 | "default": "Dār Kulayb" 21 | }, 22 | "parent": 7090972, 23 | "lat": 26.06861, 24 | "lng": 50.50389, 25 | "country": "BH", 26 | "population": 65466 27 | }, 28 | "290332": { 29 | "ids": { 30 | "geonames": 290332 31 | }, 32 | "long": { 33 | "default": "Al Muharraq" 34 | }, 35 | "parent": 290333, 36 | "lat": 26.25722, 37 | "lng": 50.61194, 38 | "country": "BH", 39 | "population": 97458 40 | }, 41 | "290340": { 42 | "ids": { 43 | "geonames": 290340 44 | }, 45 | "long": { 46 | "default": "Manama" 47 | }, 48 | "parent": 7090954, 49 | "lat": 26.22787, 50 | "lng": 50.58565, 51 | "country": "BH", 52 | "population": 147074 53 | }, 54 | "385038": { 55 | "ids": { 56 | "geonames": 385038 57 | }, 58 | "long": { 59 | "default": "Ar Rifā‘" 60 | }, 61 | "parent": 7090972, 62 | "lat": 26.13, 63 | "lng": 50.555, 64 | "country": "BH", 65 | "population": 79550 66 | } 67 | } -------------------------------------------------------------------------------- /resources/cities/CF.json: -------------------------------------------------------------------------------- 1 | { 2 | "2384770": { 3 | "ids": { 4 | "geonames": 2384770 5 | }, 6 | "long": { 7 | "default": "Mbaïki" 8 | }, 9 | "parent": 2385105, 10 | "lat": 3.86781, 11 | "lng": 17.98923, 12 | "country": "CF", 13 | "population": 67132 14 | }, 15 | "2386012": { 16 | "ids": { 17 | "geonames": 2386012 18 | }, 19 | "long": { 20 | "default": "Kaga Bandoro" 21 | }, 22 | "parent": 2386243, 23 | "lat": 6.98961, 24 | "lng": 19.18744, 25 | "country": "CF", 26 | "population": 56520 27 | }, 28 | "2388873": { 29 | "ids": { 30 | "geonames": 2388873 31 | }, 32 | "long": { 33 | "default": "Bimbo" 34 | }, 35 | "parent": 2383765, 36 | "lat": 4.25671, 37 | "lng": 18.41583, 38 | "country": "CF", 39 | "population": 129655 40 | }, 41 | "2389086": { 42 | "ids": { 43 | "geonames": 2389086 44 | }, 45 | "long": { 46 | "default": "Berbérati" 47 | }, 48 | "parent": 2386161, 49 | "lat": 4.26116, 50 | "lng": 15.79216, 51 | "country": "CF", 52 | "population": 61815 53 | }, 54 | "2389853": { 55 | "ids": { 56 | "geonames": 2389853 57 | }, 58 | "long": { 59 | "default": "Bangui" 60 | }, 61 | "parent": 2596686, 62 | "lat": 4.36122, 63 | "lng": 18.55496, 64 | "country": "CF", 65 | "population": 542393 66 | } 67 | } -------------------------------------------------------------------------------- /resources/cities/BF.json: -------------------------------------------------------------------------------- 1 | { 2 | "2357043": { 3 | "ids": { 4 | "geonames": 2357043 5 | }, 6 | "long": { 7 | "default": "Ouahigouya" 8 | }, 9 | "parent": 6930711, 10 | "lat": 13.58278, 11 | "lng": -2.42158, 12 | "country": "BF", 13 | "population": 61096 14 | }, 15 | "2357048": { 16 | "ids": { 17 | "geonames": 2357048 18 | }, 19 | "long": { 20 | "default": "Ouagadougou" 21 | }, 22 | "parent": 6930704, 23 | "lat": 12.36566, 24 | "lng": -1.53388, 25 | "country": "BF", 26 | "population": 1086505 27 | }, 28 | "2358946": { 29 | "ids": { 30 | "geonames": 2358946 31 | }, 32 | "long": { 33 | "default": "Koudougou" 34 | }, 35 | "parent": 6930707, 36 | "lat": 12.25263, 37 | "lng": -2.36272, 38 | "country": "BF", 39 | "population": 87347 40 | }, 41 | "2362344": { 42 | "ids": { 43 | "geonames": 2362344 44 | }, 45 | "long": { 46 | "default": "Bobo-Dioulasso" 47 | }, 48 | "parent": 6930710, 49 | "lat": 11.17715, 50 | "lng": -4.2979, 51 | "country": "BF", 52 | "population": 360106 53 | }, 54 | "2362909": { 55 | "ids": { 56 | "geonames": 2362909 57 | }, 58 | "long": { 59 | "default": "Banfora" 60 | }, 61 | "parent": 6930703, 62 | "lat": 10.63333, 63 | "lng": -4.76667, 64 | "country": "BF", 65 | "population": 60288 66 | } 67 | } -------------------------------------------------------------------------------- /resources/cities/JM.json: -------------------------------------------------------------------------------- 1 | { 2 | "3488465": { 3 | "ids": { 4 | "geonames": 3488465 5 | }, 6 | "long": { 7 | "default": "Spanish Town" 8 | }, 9 | "parent": 3488711, 10 | "lat": 17.99107, 11 | "lng": -76.95742, 12 | "country": "JM", 13 | "population": 145018 14 | }, 15 | "3488981": { 16 | "ids": { 17 | "geonames": 3488981 18 | }, 19 | "long": { 20 | "default": "Portmore" 21 | }, 22 | "parent": 3488711, 23 | "lat": 17.95032, 24 | "lng": -76.88215, 25 | "country": "JM", 26 | "population": 102861 27 | }, 28 | "3489297": { 29 | "ids": { 30 | "geonames": 3489297 31 | }, 32 | "long": { 33 | "default": "New Kingston" 34 | }, 35 | "parent": 3488716, 36 | "lat": 18.00747, 37 | "lng": -76.78319, 38 | "country": "JM", 39 | "population": 583958 40 | }, 41 | "3489460": { 42 | "ids": { 43 | "geonames": 3489460 44 | }, 45 | "long": { 46 | "default": "Montego Bay" 47 | }, 48 | "parent": 3488700, 49 | "lat": 18.47116, 50 | "lng": -77.91883, 51 | "country": "JM", 52 | "population": 82867 53 | }, 54 | "3489854": { 55 | "ids": { 56 | "geonames": 3489854 57 | }, 58 | "long": { 59 | "default": "Kingston" 60 | }, 61 | "parent": 3489853, 62 | "lat": 17.99702, 63 | "lng": -76.79358, 64 | "country": "JM", 65 | "population": 937700 66 | } 67 | } -------------------------------------------------------------------------------- /resources/states/VU.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "VU", 4 | "ids": { 5 | "fips": "NH15", 6 | "geonames": 2134739, 7 | "iso_3166_2": "VU-TAE" 8 | }, 9 | "long": { 10 | "default": "Tafea" 11 | }, 12 | "timezone": "Pacific/Efate" 13 | }, 14 | { 15 | "parent": "VU", 16 | "ids": { 17 | "fips": "NH13", 18 | "geonames": 2134898, 19 | "iso_3166_2": "VU-SAM" 20 | }, 21 | "long": { 22 | "default": "Sanma" 23 | }, 24 | "timezone": "Pacific/Efate" 25 | }, 26 | { 27 | "parent": "VU", 28 | "ids": { 29 | "fips": "NH07", 30 | "geonames": 2137421, 31 | "iso_3166_2": "VU-TOB" 32 | }, 33 | "long": { 34 | "default": "Torba" 35 | }, 36 | "timezone": "Pacific/Efate" 37 | }, 38 | { 39 | "parent": "VU", 40 | "ids": { 41 | "fips": "NH16", 42 | "geonames": 2208265, 43 | "iso_3166_2": "VU-MAP" 44 | }, 45 | "long": { 46 | "default": "Malampa" 47 | }, 48 | "timezone": "Pacific/Efate" 49 | }, 50 | { 51 | "parent": "VU", 52 | "ids": { 53 | "fips": "NH17", 54 | "geonames": 2208266, 55 | "iso_3166_2": "VU-PAM" 56 | }, 57 | "long": { 58 | "default": "Penama" 59 | }, 60 | "timezone": "Pacific/Efate" 61 | }, 62 | { 63 | "parent": "VU", 64 | "ids": { 65 | "fips": "NH18", 66 | "geonames": 2208267, 67 | "iso_3166_2": "VU-SEE" 68 | }, 69 | "long": { 70 | "default": "Shefa" 71 | }, 72 | "timezone": "Pacific/Efate" 73 | } 74 | ] 75 | -------------------------------------------------------------------------------- /resources/states/BD.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "BD", 4 | "ids": { 5 | "fips": "BG83", 6 | "geonames": 1337166, 7 | "iso_3166_2": "BD-E" 8 | }, 9 | "long": { 10 | "default": "Rajshahi" 11 | } 12 | }, 13 | { 14 | "parent": "BD", 15 | "ids": { 16 | "fips": "BG81", 17 | "geonames": 1337179, 18 | "iso_3166_2": "BD-C" 19 | }, 20 | "long": { 21 | "default": "Dhaka" 22 | } 23 | }, 24 | { 25 | "parent": "BD", 26 | "ids": { 27 | "fips": "BG84", 28 | "geonames": 1337200, 29 | "iso_3166_2": "BD-B" 30 | }, 31 | "long": { 32 | "default": "Chittagong" 33 | } 34 | }, 35 | { 36 | "parent": "BD", 37 | "ids": { 38 | "fips": "BG82", 39 | "geonames": 1337210, 40 | "iso_3166_2": "BD-D" 41 | }, 42 | "long": { 43 | "default": "Khulna" 44 | } 45 | }, 46 | { 47 | "parent": "BD", 48 | "ids": { 49 | "fips": "BG85", 50 | "geonames": 1337229, 51 | "iso_3166_2": "BD-A" 52 | }, 53 | "long": { 54 | "default": "Barisal" 55 | } 56 | }, 57 | { 58 | "parent": "BD", 59 | "ids": { 60 | "fips": "BG86", 61 | "geonames": 1477362, 62 | "iso_3166_2": "BD-G" 63 | }, 64 | "long": { 65 | "default": "Sylhet" 66 | } 67 | }, 68 | { 69 | "parent": "BD", 70 | "ids": { 71 | "fips": "BG87", 72 | "geonames": 7671048, 73 | "iso_3166_2": "BD-F" 74 | }, 75 | "long": { 76 | "default": "Rangpur" 77 | } 78 | } 79 | ] -------------------------------------------------------------------------------- /resources/states/CR.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "CR", 4 | "ids": { 5 | "fips": "CS08", 6 | "geonames": 3621837, 7 | "iso_3166_2": "CR-SJ" 8 | }, 9 | "long": { 10 | "default": "San José" 11 | } 12 | }, 13 | { 14 | "parent": "CR", 15 | "ids": { 16 | "fips": "CS07", 17 | "geonames": 3622226, 18 | "iso_3166_2": "CR-P" 19 | }, 20 | "long": { 21 | "default": "Puntarenas" 22 | } 23 | }, 24 | { 25 | "parent": "CR", 26 | "ids": { 27 | "fips": "CS06", 28 | "geonames": 3623064, 29 | "iso_3166_2": "CR-L" 30 | }, 31 | "long": { 32 | "default": "Limón" 33 | } 34 | }, 35 | { 36 | "parent": "CR", 37 | "ids": { 38 | "fips": "CS04", 39 | "geonames": 3623484, 40 | "iso_3166_2": "CR-H" 41 | }, 42 | "long": { 43 | "default": "Heredia" 44 | } 45 | }, 46 | { 47 | "parent": "CR", 48 | "ids": { 49 | "fips": "CS03", 50 | "geonames": 3623582, 51 | "iso_3166_2": "CR-G" 52 | }, 53 | "long": { 54 | "default": "Guanacaste" 55 | } 56 | }, 57 | { 58 | "parent": "CR", 59 | "ids": { 60 | "fips": "CS02", 61 | "geonames": 3624368, 62 | "iso_3166_2": "CR-C" 63 | }, 64 | "long": { 65 | "default": "Cartago" 66 | } 67 | }, 68 | { 69 | "parent": "CR", 70 | "ids": { 71 | "fips": "CS01", 72 | "geonames": 3624953, 73 | "iso_3166_2": "CR-A" 74 | }, 75 | "long": { 76 | "default": "Alajuela" 77 | } 78 | } 79 | ] -------------------------------------------------------------------------------- /resources/states/GQ.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "GQ", 4 | "ids": { 5 | "fips": "EK03", 6 | "geonames": 2310307, 7 | "iso_3166_2": "GQ-AN" 8 | }, 9 | "long": { 10 | "default": "Annobón" 11 | } 12 | }, 13 | { 14 | "parent": "GQ", 15 | "ids": { 16 | "fips": "EK04", 17 | "geonames": 2566978, 18 | "iso_3166_2": "GQ-BN" 19 | }, 20 | "long": { 21 | "default": "Bioko Norte" 22 | } 23 | }, 24 | { 25 | "parent": "GQ", 26 | "ids": { 27 | "fips": "EK05", 28 | "geonames": 2566979, 29 | "iso_3166_2": "GQ-BS" 30 | }, 31 | "long": { 32 | "default": "Bioko Sur" 33 | } 34 | }, 35 | { 36 | "parent": "GQ", 37 | "ids": { 38 | "fips": "EK06", 39 | "geonames": 2566980, 40 | "iso_3166_2": "GQ-CS" 41 | }, 42 | "long": { 43 | "default": "Centro Sur" 44 | } 45 | }, 46 | { 47 | "parent": "GQ", 48 | "ids": { 49 | "fips": "EK07", 50 | "geonames": 2566981, 51 | "iso_3166_2": "GQ-KN" 52 | }, 53 | "long": { 54 | "default": "Kié-Ntem" 55 | } 56 | }, 57 | { 58 | "parent": "GQ", 59 | "ids": { 60 | "fips": "EK08", 61 | "geonames": 2566982, 62 | "iso_3166_2": "GQ-LI" 63 | }, 64 | "long": { 65 | "default": "Litoral" 66 | } 67 | }, 68 | { 69 | "parent": "GQ", 70 | "ids": { 71 | "fips": "EK09", 72 | "geonames": 2566983, 73 | "iso_3166_2": "GQ-WN" 74 | }, 75 | "long": { 76 | "default": "Wele-Nzas" 77 | } 78 | } 79 | ] -------------------------------------------------------------------------------- /resources/states/QA.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "QA", 4 | "ids": { 5 | "fips": "QA08", 6 | "geonames": 389462, 7 | "iso_3166_2": "QA-MS" 8 | }, 9 | "long": { 10 | "default": "Ash Shamāl" 11 | } 12 | }, 13 | { 14 | "parent": "QA", 15 | "ids": { 16 | "fips": "QA04", 17 | "geonames": 389465, 18 | "iso_3166_2": "QA-KH" 19 | }, 20 | "long": { 21 | "default": "Al Khawr" 22 | } 23 | }, 24 | { 25 | "parent": "QA", 26 | "ids": { 27 | "fips": "QA09", 28 | "geonames": 389467, 29 | "iso_3166_2": "QA-US" 30 | }, 31 | "long": { 32 | "default": "Umm Şalāl" 33 | } 34 | }, 35 | { 36 | "parent": "QA", 37 | "ids": { 38 | "fips": "QA06", 39 | "geonames": 389469, 40 | "iso_3166_2": "QA-RA" 41 | }, 42 | "long": { 43 | "default": "Ar Rayyān" 44 | } 45 | }, 46 | { 47 | "parent": "QA", 48 | "ids": { 49 | "fips": "QA01", 50 | "geonames": 389470, 51 | "iso_3166_2": "QA-DA" 52 | }, 53 | "long": { 54 | "default": "Ad Dawḩah" 55 | } 56 | }, 57 | { 58 | "parent": "QA", 59 | "ids": { 60 | "fips": "QA10", 61 | "geonames": 389472, 62 | "iso_3166_2": "QA-WA" 63 | }, 64 | "long": { 65 | "default": "Al Wakrah" 66 | } 67 | }, 68 | { 69 | "parent": "QA", 70 | "ids": { 71 | "fips": "QA13", 72 | "geonames": 8030540, 73 | "iso_3166_2": "QA-ZA" 74 | }, 75 | "long": { 76 | "default": "Az̧ Z̧a‘āyin" 77 | } 78 | } 79 | ] -------------------------------------------------------------------------------- /resources/states/AE.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "AE", 4 | "ids": { 5 | "fips": "AE07", 6 | "geonames": 290595, 7 | "iso_3166_2": "AE-UQ" 8 | }, 9 | "long": { 10 | "default": "Umm al Qaywayn" 11 | } 12 | }, 13 | { 14 | "parent": "AE", 15 | "ids": { 16 | "fips": "AE05", 17 | "geonames": 291075, 18 | "iso_3166_2": "AE-RK" 19 | }, 20 | "long": { 21 | "default": "Raʼs al Khaymah" 22 | } 23 | }, 24 | { 25 | "parent": "AE", 26 | "ids": { 27 | "fips": "AE03", 28 | "geonames": 292224, 29 | "iso_3166_2": "AE-DU" 30 | }, 31 | "long": { 32 | "default": "Dubai" 33 | } 34 | }, 35 | { 36 | "parent": "AE", 37 | "ids": { 38 | "fips": "AE06", 39 | "geonames": 292673, 40 | "iso_3166_2": "AE-SH" 41 | }, 42 | "long": { 43 | "default": "Ash Shāriqah" 44 | } 45 | }, 46 | { 47 | "parent": "AE", 48 | "ids": { 49 | "fips": "AE04", 50 | "geonames": 292879, 51 | "iso_3166_2": "AE-FU" 52 | }, 53 | "long": { 54 | "default": "Al Fujayrah" 55 | } 56 | }, 57 | { 58 | "parent": "AE", 59 | "ids": { 60 | "fips": "AE02", 61 | "geonames": 292933, 62 | "iso_3166_2": "AE-AJ" 63 | }, 64 | "long": { 65 | "default": "Ajman" 66 | } 67 | }, 68 | { 69 | "parent": "AE", 70 | "ids": { 71 | "fips": "AE01", 72 | "geonames": 292969, 73 | "iso_3166_2": "AE-AZ" 74 | }, 75 | "long": { 76 | "default": "Abu Dhabi" 77 | } 78 | } 79 | ] -------------------------------------------------------------------------------- /resources/states/AD.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "AD", 4 | "ids": { 5 | "fips": "AN06", 6 | "geonames": 3039162, 7 | "iso_3166_2": "AD-06" 8 | }, 9 | "long": { 10 | "default": "Sant Julià de Loria" 11 | } 12 | }, 13 | { 14 | "parent": "AD", 15 | "ids": { 16 | "fips": "AN05", 17 | "geonames": 3039676, 18 | "iso_3166_2": "AD-05" 19 | }, 20 | "long": { 21 | "default": "Ordino" 22 | } 23 | }, 24 | { 25 | "parent": "AD", 26 | "ids": { 27 | "fips": "AN04", 28 | "geonames": 3040131, 29 | "iso_3166_2": "AD-04" 30 | }, 31 | "long": { 32 | "default": "La Massana" 33 | } 34 | }, 35 | { 36 | "parent": "AD", 37 | "ids": { 38 | "fips": "AN03", 39 | "geonames": 3040684, 40 | "iso_3166_2": "AD-03" 41 | }, 42 | "long": { 43 | "default": "Encamp" 44 | } 45 | }, 46 | { 47 | "parent": "AD", 48 | "ids": { 49 | "fips": "AN02", 50 | "geonames": 3041203, 51 | "iso_3166_2": "AD-02" 52 | }, 53 | "long": { 54 | "default": "Canillo" 55 | } 56 | }, 57 | { 58 | "parent": "AD", 59 | "ids": { 60 | "fips": "AN07", 61 | "geonames": 3041566, 62 | "iso_3166_2": "AD-07" 63 | }, 64 | "long": { 65 | "default": "Andorra la Vella" 66 | } 67 | }, 68 | { 69 | "parent": "AD", 70 | "ids": { 71 | "fips": "AN08", 72 | "geonames": 3338529, 73 | "iso_3166_2": "AD-08" 74 | }, 75 | "long": { 76 | "default": "Escaldes-Engordany" 77 | } 78 | } 79 | ] -------------------------------------------------------------------------------- /resources/states/BY.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "BY", 4 | "ids": { 5 | "fips": "BO07", 6 | "geonames": 620134, 7 | "iso_3166_2": "BY-VI" 8 | }, 9 | "long": { 10 | "default": "Vitebsk region" 11 | } 12 | }, 13 | { 14 | "parent": "BY", 15 | "ids": { 16 | "fips": "BO06", 17 | "geonames": 625073, 18 | "iso_3166_2": "BY-MA" 19 | }, 20 | "long": { 21 | "default": "Mogilev region" 22 | } 23 | }, 24 | { 25 | "parent": "BY", 26 | "ids": { 27 | "fips": "BO05", 28 | "geonames": 625142, 29 | "iso_3166_2": "BY-MI" 30 | }, 31 | "long": { 32 | "default": "Minsk region" 33 | } 34 | }, 35 | { 36 | "parent": "BY", 37 | "ids": { 38 | "fips": "BO04", 39 | "geonames": 625143, 40 | "iso_3166_2": "BY-HM" 41 | }, 42 | "long": { 43 | "default": "Minsk City" 44 | } 45 | }, 46 | { 47 | "parent": "BY", 48 | "ids": { 49 | "fips": "BO03", 50 | "geonames": 628035, 51 | "iso_3166_2": "BY-HR" 52 | }, 53 | "long": { 54 | "default": "Grodno region" 55 | } 56 | }, 57 | { 58 | "parent": "BY", 59 | "ids": { 60 | "fips": "BO02", 61 | "geonames": 628281, 62 | "iso_3166_2": "BY-HO" 63 | }, 64 | "long": { 65 | "default": "Gomel region" 66 | } 67 | }, 68 | { 69 | "parent": "BY", 70 | "ids": { 71 | "fips": "BO01", 72 | "geonames": 629631, 73 | "iso_3166_2": "BY-BR" 74 | }, 75 | "long": { 76 | "default": "Brest region" 77 | } 78 | } 79 | ] -------------------------------------------------------------------------------- /resources/states/VC.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "VC", 4 | "ids": { 5 | "fips": "VC05", 6 | "geonames": 3577818, 7 | "iso_3166_2": "VC-05" 8 | }, 9 | "long": { 10 | "default": "Saint Patrick" 11 | }, 12 | "timezone": "America/St_Vincent" 13 | }, 14 | { 15 | "parent": "VC", 16 | "ids": { 17 | "fips": "VC04", 18 | "geonames": 3577819, 19 | "iso_3166_2": "VC-04" 20 | }, 21 | "long": { 22 | "default": "Saint George" 23 | }, 24 | "timezone": "America/St_Vincent" 25 | }, 26 | { 27 | "parent": "VC", 28 | "ids": { 29 | "fips": "VC03", 30 | "geonames": 3577821, 31 | "iso_3166_2": "VC-03" 32 | }, 33 | "long": { 34 | "default": "Saint David" 35 | }, 36 | "timezone": "America/St_Vincent" 37 | }, 38 | { 39 | "parent": "VC", 40 | "ids": { 41 | "fips": "VC02", 42 | "geonames": 3577822, 43 | "iso_3166_2": "VC-02" 44 | }, 45 | "long": { 46 | "default": "Saint Andrew" 47 | }, 48 | "timezone": "America/St_Vincent" 49 | }, 50 | { 51 | "parent": "VC", 52 | "ids": { 53 | "fips": "VC06", 54 | "geonames": 3577892, 55 | "iso_3166_2": "VC-06" 56 | }, 57 | "long": { 58 | "default": "Grenadines" 59 | }, 60 | "timezone": "America/St_Vincent" 61 | }, 62 | { 63 | "parent": "VC", 64 | "ids": { 65 | "fips": "VC01", 66 | "geonames": 3577934, 67 | "iso_3166_2": "VC-01" 68 | }, 69 | "long": { 70 | "default": "Charlotte" 71 | }, 72 | "timezone": "America/St_Vincent" 73 | } 74 | ] 75 | -------------------------------------------------------------------------------- /resources/states/GD.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "GD", 4 | "ids": { 5 | "fips": "GJ06", 6 | "geonames": 3579907, 7 | "iso_3166_2": "GD-06" 8 | }, 9 | "long": { 10 | "default": "Saint Patrick" 11 | } 12 | }, 13 | { 14 | "parent": "GD", 15 | "ids": { 16 | "fips": "GJ05", 17 | "geonames": 3579913, 18 | "iso_3166_2": "GD-05" 19 | }, 20 | "long": { 21 | "default": "Saint Mark" 22 | } 23 | }, 24 | { 25 | "parent": "GD", 26 | "ids": { 27 | "fips": "GJ04", 28 | "geonames": 3579919, 29 | "iso_3166_2": "GD-04" 30 | }, 31 | "long": { 32 | "default": "Saint John" 33 | } 34 | }, 35 | { 36 | "parent": "GD", 37 | "ids": { 38 | "fips": "GJ03", 39 | "geonames": 3579926, 40 | "iso_3166_2": "GD-03" 41 | }, 42 | "long": { 43 | "default": "Saint George" 44 | } 45 | }, 46 | { 47 | "parent": "GD", 48 | "ids": { 49 | "fips": "GJ02", 50 | "geonames": 3579932, 51 | "iso_3166_2": "GD-02" 52 | }, 53 | "long": { 54 | "default": "Saint David" 55 | } 56 | }, 57 | { 58 | "parent": "GD", 59 | "ids": { 60 | "fips": "GJ01", 61 | "geonames": 3579938, 62 | "iso_3166_2": "GD-01" 63 | }, 64 | "long": { 65 | "default": "Saint Andrew" 66 | } 67 | }, 68 | { 69 | "parent": "GD", 70 | "ids": { 71 | "fips": "GJ10", 72 | "geonames": 7303836, 73 | "iso_3166_2": "GD-10" 74 | }, 75 | "long": { 76 | "default": "Southern Grenadine Islands" 77 | } 78 | } 79 | ] -------------------------------------------------------------------------------- /resources/states/XK.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "XK", 4 | "ids": { 5 | "fips": "10096138", 6 | "geonames": 10096138 7 | }, 8 | "long": { 9 | "default": "Ferizaj" 10 | }, 11 | "timezone": "Europe/Belgrade" 12 | }, 13 | { 14 | "parent": "XK", 15 | "ids": { 16 | "fips": "10096859", 17 | "geonames": 10096859 18 | }, 19 | "long": { 20 | "default": "Gjakova" 21 | }, 22 | "timezone": "Europe/Belgrade" 23 | }, 24 | { 25 | "parent": "XK", 26 | "ids": { 27 | "fips": "10097357", 28 | "geonames": 10097357 29 | }, 30 | "long": { 31 | "default": "Gjilan" 32 | }, 33 | "timezone": "Europe/Belgrade" 34 | }, 35 | { 36 | "parent": "XK", 37 | "ids": { 38 | "fips": "10097358", 39 | "geonames": 10097358 40 | }, 41 | "long": { 42 | "default": "Mitrovica" 43 | }, 44 | "timezone": "Europe/Belgrade" 45 | }, 46 | { 47 | "parent": "XK", 48 | "ids": { 49 | "fips": "10097359", 50 | "geonames": 10097359 51 | }, 52 | "long": { 53 | "default": "Pec" 54 | }, 55 | "timezone": "Europe/Belgrade" 56 | }, 57 | { 58 | "parent": "XK", 59 | "ids": { 60 | "fips": "10097360", 61 | "geonames": 10097360 62 | }, 63 | "long": { 64 | "default": "Pristina" 65 | }, 66 | "timezone": "Europe/Belgrade" 67 | }, 68 | { 69 | "parent": "XK", 70 | "ids": { 71 | "fips": "10097361", 72 | "geonames": 10097361 73 | }, 74 | "long": { 75 | "default": "Prizren" 76 | }, 77 | "timezone": "Europe/Belgrade" 78 | } 79 | ] 80 | -------------------------------------------------------------------------------- /resources/cities/LV.json: -------------------------------------------------------------------------------- 1 | { 2 | "454432": { 3 | "ids": { 4 | "geonames": 454432 5 | }, 6 | "long": { 7 | "default": "Vec-Liepāja" 8 | }, 9 | "parent": 457955, 10 | "lat": 56.53333, 11 | "lng": 21.01667, 12 | "country": "LV", 13 | "population": 85260 14 | }, 15 | "456172": { 16 | "ids": { 17 | "geonames": 456172 18 | }, 19 | "long": { 20 | "default": "Riga" 21 | }, 22 | "parent": 456173, 23 | "lat": 56.946, 24 | "lng": 24.10589, 25 | "country": "LV", 26 | "population": 742572 27 | }, 28 | "457954": { 29 | "ids": { 30 | "geonames": 457954 31 | }, 32 | "long": { 33 | "default": "Liepāja" 34 | }, 35 | "parent": 457955, 36 | "lat": 56.51667, 37 | "lng": 21.01667, 38 | "country": "LV", 39 | "population": 85132 40 | }, 41 | "459201": { 42 | "ids": { 43 | "geonames": 459201 44 | }, 45 | "long": { 46 | "default": "Jūrmala" 47 | }, 48 | "parent": 459202, 49 | "lat": 56.968, 50 | "lng": 23.77038, 51 | "country": "LV", 52 | "population": 54088 53 | }, 54 | "459279": { 55 | "ids": { 56 | "geonames": 459279 57 | }, 58 | "long": { 59 | "default": "Jelgava" 60 | }, 61 | "parent": 459281, 62 | "lat": 56.65, 63 | "lng": 23.71278, 64 | "country": "LV", 65 | "population": 61791 66 | }, 67 | "460413": { 68 | "ids": { 69 | "geonames": 460413 70 | }, 71 | "long": { 72 | "default": "Daugavpils" 73 | }, 74 | "parent": 460410, 75 | "lat": 55.88333, 76 | "lng": 26.53333, 77 | "country": "LV", 78 | "population": 111564 79 | } 80 | } -------------------------------------------------------------------------------- /resources/cities/NE.json: -------------------------------------------------------------------------------- 1 | { 2 | "2437798": { 3 | "ids": { 4 | "geonames": 2437798 5 | }, 6 | "long": { 7 | "default": "Zinder" 8 | }, 9 | "parent": 2437797, 10 | "lat": 13.80716, 11 | "lng": 8.9881, 12 | "country": "NE", 13 | "population": 191424 14 | }, 15 | "2439376": { 16 | "ids": { 17 | "geonames": 2439376 18 | }, 19 | "long": { 20 | "default": "Tahoua" 21 | }, 22 | "parent": 2439374, 23 | "lat": 14.8888, 24 | "lng": 5.2692, 25 | "country": "NE", 26 | "population": 80425 27 | }, 28 | "2440485": { 29 | "ids": { 30 | "geonames": 2440485 31 | }, 32 | "long": { 33 | "default": "Niamey" 34 | }, 35 | "parent": 2595294, 36 | "lat": 13.51366, 37 | "lng": 2.1098, 38 | "country": "NE", 39 | "population": 774235 40 | }, 41 | "2441291": { 42 | "ids": { 43 | "geonames": 2441291 44 | }, 45 | "long": { 46 | "default": "Maradi" 47 | }, 48 | "parent": 2441289, 49 | "lat": 13.5, 50 | "lng": 7.10174, 51 | "country": "NE", 52 | "population": 163487 53 | }, 54 | "2447938": { 55 | "ids": { 56 | "geonames": 2447938 57 | }, 58 | "long": { 59 | "default": "Alaghsas" 60 | }, 61 | "parent": 2448083, 62 | "lat": 17.0187, 63 | "lng": 8.0168, 64 | "country": "NE", 65 | "population": 88561 66 | }, 67 | "2448085": { 68 | "ids": { 69 | "geonames": 2448085 70 | }, 71 | "long": { 72 | "default": "Agadez" 73 | }, 74 | "parent": 2448083, 75 | "lat": 16.97333, 76 | "lng": 7.99111, 77 | "country": "NE", 78 | "population": 124324 79 | } 80 | } -------------------------------------------------------------------------------- /resources/cities/BA.json: -------------------------------------------------------------------------------- 1 | { 2 | "3186573": { 3 | "ids": { 4 | "geonames": 3186573 5 | }, 6 | "long": { 7 | "default": "Zenica" 8 | }, 9 | "parent": 3229999, 10 | "lat": 44.20169, 11 | "lng": 17.90397, 12 | "country": "BA", 13 | "population": 164423 14 | }, 15 | "3188582": { 16 | "ids": { 17 | "geonames": 3188582 18 | }, 19 | "long": { 20 | "default": "Tuzla" 21 | }, 22 | "parent": 3229999, 23 | "lat": 44.53842, 24 | "lng": 18.66709, 25 | "country": "BA", 26 | "population": 142486 27 | }, 28 | "3191281": { 29 | "ids": { 30 | "geonames": 3191281 31 | }, 32 | "long": { 33 | "default": "Sarajevo" 34 | }, 35 | "parent": 3229999, 36 | "lat": 43.84864, 37 | "lng": 18.35644, 38 | "country": "BA", 39 | "population": 696731 40 | }, 41 | "3194828": { 42 | "ids": { 43 | "geonames": 3194828 44 | }, 45 | "long": { 46 | "default": "Mostar" 47 | }, 48 | "parent": 3229999, 49 | "lat": 43.34333, 50 | "lng": 17.80806, 51 | "country": "BA", 52 | "population": 104518 53 | }, 54 | "3204222": { 55 | "ids": { 56 | "geonames": 3204222 57 | }, 58 | "long": { 59 | "default": "Bihać" 60 | }, 61 | "parent": 3229999, 62 | "lat": 44.81694, 63 | "lng": 15.87083, 64 | "country": "BA", 65 | "population": 75641 66 | }, 67 | "3204541": { 68 | "ids": { 69 | "geonames": 3204541 70 | }, 71 | "long": { 72 | "default": "Banja Luka" 73 | }, 74 | "parent": 3230000, 75 | "lat": 44.77583, 76 | "lng": 17.18556, 77 | "country": "BA", 78 | "population": 221106 79 | } 80 | } -------------------------------------------------------------------------------- /resources/cities/IE.json: -------------------------------------------------------------------------------- 1 | { 2 | "2961284": { 3 | "ids": { 4 | "geonames": 2961284 5 | }, 6 | "long": { 7 | "default": "Tallaght" 8 | }, 9 | "parent": 7521314, 10 | "lat": 53.2859, 11 | "lng": -6.37344, 12 | "country": "IE", 13 | "population": 64282 14 | }, 15 | "2962943": { 16 | "ids": { 17 | "geonames": 2962943 18 | }, 19 | "long": { 20 | "default": "Luimneach" 21 | }, 22 | "parent": 7521315, 23 | "lat": 52.66472, 24 | "lng": -8.62306, 25 | "country": "IE", 26 | "population": 90054 27 | }, 28 | "2964180": { 29 | "ids": { 30 | "geonames": 2964180 31 | }, 32 | "long": { 33 | "default": "Gaillimh" 34 | }, 35 | "parent": 7521313, 36 | "lat": 53.27194, 37 | "lng": -9.04889, 38 | "country": "IE", 39 | "population": 70686 40 | }, 41 | "2964506": { 42 | "ids": { 43 | "geonames": 2964506 44 | }, 45 | "long": { 46 | "default": "Dún Laoghaire" 47 | }, 48 | "parent": 7521314, 49 | "lat": 53.29395, 50 | "lng": -6.13586, 51 | "country": "IE", 52 | "population": 185400 53 | }, 54 | "2964574": { 55 | "ids": { 56 | "geonames": 2964574 57 | }, 58 | "long": { 59 | "default": "Dublin" 60 | }, 61 | "parent": 7521314, 62 | "lat": 53.33306, 63 | "lng": -6.24889, 64 | "country": "IE", 65 | "population": 1024027 66 | }, 67 | "2965140": { 68 | "ids": { 69 | "geonames": 2965140 70 | }, 71 | "long": { 72 | "default": "Cork" 73 | }, 74 | "parent": 7521315, 75 | "lat": 51.89797, 76 | "lng": -8.47061, 77 | "country": "IE", 78 | "population": 190384 79 | } 80 | } -------------------------------------------------------------------------------- /resources/cities/TJ.json: -------------------------------------------------------------------------------- 1 | { 2 | "1220253": { 3 | "ids": { 4 | "geonames": 1220253 5 | }, 6 | "long": { 7 | "default": "Istaravshan" 8 | }, 9 | "parent": 1221092, 10 | "lat": 39.9142, 11 | "lng": 69.00328, 12 | "country": "TJ", 13 | "population": 52851 14 | }, 15 | "1220747": { 16 | "ids": { 17 | "geonames": 1220747 18 | }, 19 | "long": { 20 | "default": "Qŭrghonteppa" 21 | }, 22 | "parent": 1347488, 23 | "lat": 37.83399, 24 | "lng": 68.78186, 25 | "country": "TJ", 26 | "population": 65000 27 | }, 28 | "1221194": { 29 | "ids": { 30 | "geonames": 1221194 31 | }, 32 | "long": { 33 | "default": "Kŭlob" 34 | }, 35 | "parent": 1347488, 36 | "lat": 37.91459, 37 | "lng": 69.78454, 38 | "country": "TJ", 39 | "population": 78786 40 | }, 41 | "1221874": { 42 | "ids": { 43 | "geonames": 1221874 44 | }, 45 | "long": { 46 | "default": "Dushanbe" 47 | }, 48 | "parent": 7280679, 49 | "lat": 38.53575, 50 | "lng": 68.77905, 51 | "country": "TJ", 52 | "population": 679400 53 | }, 54 | "1514879": { 55 | "ids": { 56 | "geonames": 1514879 57 | }, 58 | "long": { 59 | "default": "Khŭjand" 60 | }, 61 | "parent": 1221092, 62 | "lat": 40.28256, 63 | "lng": 69.62216, 64 | "country": "TJ", 65 | "population": 144865 66 | }, 67 | "1514891": { 68 | "ids": { 69 | "geonames": 1514891 70 | }, 71 | "long": { 72 | "default": "Konibodom" 73 | }, 74 | "parent": 1221092, 75 | "lat": 40.29414, 76 | "lng": 70.43122, 77 | "country": "TJ", 78 | "population": 50359 79 | } 80 | } -------------------------------------------------------------------------------- /resources/states/NE.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "NE", 4 | "ids": { 5 | "fips": "NG07", 6 | "geonames": 2437797, 7 | "iso_3166_2": "NE-7" 8 | }, 9 | "long": { 10 | "default": "Zinder" 11 | } 12 | }, 13 | { 14 | "parent": "NE", 15 | "ids": { 16 | "fips": "NG06", 17 | "geonames": 2439374, 18 | "iso_3166_2": "NE-5" 19 | }, 20 | "long": { 21 | "default": "Tahoua" 22 | } 23 | }, 24 | { 25 | "parent": "NE", 26 | "ids": { 27 | "fips": "NG04", 28 | "geonames": 2441289, 29 | "iso_3166_2": "NE-4" 30 | }, 31 | "long": { 32 | "default": "Maradi" 33 | } 34 | }, 35 | { 36 | "parent": "NE", 37 | "ids": { 38 | "fips": "NG03", 39 | "geonames": 2445486, 40 | "iso_3166_2": "NE-3" 41 | }, 42 | "long": { 43 | "default": "Dosso" 44 | } 45 | }, 46 | { 47 | "parent": "NE", 48 | "ids": { 49 | "fips": "NG02", 50 | "geonames": 2445702, 51 | "iso_3166_2": "NE-2" 52 | }, 53 | "long": { 54 | "default": "Diffa" 55 | } 56 | }, 57 | { 58 | "parent": "NE", 59 | "ids": { 60 | "fips": "NG01", 61 | "geonames": 2448083, 62 | "iso_3166_2": "NE-1" 63 | }, 64 | "long": { 65 | "default": "Agadez" 66 | } 67 | }, 68 | { 69 | "parent": "NE", 70 | "ids": { 71 | "fips": "NG09", 72 | "geonames": 2595293 73 | }, 74 | "long": { 75 | "default": "Tillabéri" 76 | } 77 | }, 78 | { 79 | "parent": "NE", 80 | "ids": { 81 | "fips": "NG08", 82 | "geonames": 2595294, 83 | "iso_3166_2": "NE-8" 84 | }, 85 | "long": { 86 | "default": "Niamey" 87 | } 88 | } 89 | ] -------------------------------------------------------------------------------- /resources/states/GN.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "GN", 4 | "ids": { 5 | "fips": "GV04", 6 | "geonames": 2422464, 7 | "iso_3166_2": "GN-C" 8 | }, 9 | "long": { 10 | "default": "Conakry" 11 | } 12 | }, 13 | { 14 | "parent": "GN", 15 | "ids": { 16 | "fips": "B", 17 | "geonames": 8335085, 18 | "iso_3166_2": "GN-BK" 19 | }, 20 | "long": { 21 | "default": "Boke" 22 | } 23 | }, 24 | { 25 | "parent": "GN", 26 | "ids": { 27 | "fips": "F", 28 | "geonames": 8335086, 29 | "iso_3166_2": "GN-FA" 30 | }, 31 | "long": { 32 | "default": "Faranah" 33 | } 34 | }, 35 | { 36 | "parent": "GN", 37 | "ids": { 38 | "fips": "K", 39 | "geonames": 8335087, 40 | "iso_3166_2": "GN-KA" 41 | }, 42 | "long": { 43 | "default": "Kankan" 44 | } 45 | }, 46 | { 47 | "parent": "GN", 48 | "ids": { 49 | "fips": "D", 50 | "geonames": 8335088, 51 | "iso_3166_2": "GN-KD" 52 | }, 53 | "long": { 54 | "default": "Kindia" 55 | } 56 | }, 57 | { 58 | "parent": "GN", 59 | "ids": { 60 | "fips": "L", 61 | "geonames": 8335089, 62 | "iso_3166_2": "GN-LA" 63 | }, 64 | "long": { 65 | "default": "Labe" 66 | } 67 | }, 68 | { 69 | "parent": "GN", 70 | "ids": { 71 | "fips": "M", 72 | "geonames": 8335090, 73 | "iso_3166_2": "GN-MM" 74 | }, 75 | "long": { 76 | "default": "Mamou" 77 | } 78 | }, 79 | { 80 | "parent": "GN", 81 | "ids": { 82 | "fips": "N", 83 | "geonames": 8335091, 84 | "iso_3166_2": "GN-NZ" 85 | }, 86 | "long": { 87 | "default": "Nzerekore" 88 | } 89 | } 90 | ] -------------------------------------------------------------------------------- /resources/states/LB.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "LB", 4 | "ids": { 5 | "fips": "LE05", 6 | "geonames": 273607, 7 | "iso_3166_2": "LB-JL" 8 | }, 9 | "long": { 10 | "default": "Mont-Liban" 11 | } 12 | }, 13 | { 14 | "parent": "LB", 15 | "ids": { 16 | "fips": "LE04", 17 | "geonames": 276780, 18 | "iso_3166_2": "LB-BA" 19 | }, 20 | "long": { 21 | "default": "Beyrouth" 22 | } 23 | }, 24 | { 25 | "parent": "LB", 26 | "ids": { 27 | "fips": "LE09", 28 | "geonames": 278297, 29 | "iso_3166_2": "LB-AS" 30 | }, 31 | "long": { 32 | "default": "Liban-Nord" 33 | } 34 | }, 35 | { 36 | "parent": "LB", 37 | "ids": { 38 | "fips": "LE06", 39 | "geonames": 279894, 40 | "iso_3166_2": "LB-JA" 41 | }, 42 | "long": { 43 | "default": "Liban-Sud" 44 | } 45 | }, 46 | { 47 | "parent": "LB", 48 | "ids": { 49 | "fips": "LE08", 50 | "geonames": 280282, 51 | "iso_3166_2": "LB-BI" 52 | }, 53 | "long": { 54 | "default": "Béqaa" 55 | } 56 | }, 57 | { 58 | "parent": "LB", 59 | "ids": { 60 | "fips": "LE07", 61 | "geonames": 444191, 62 | "iso_3166_2": "LB-NA" 63 | }, 64 | "long": { 65 | "default": "Nabatîyé" 66 | } 67 | }, 68 | { 69 | "parent": "LB", 70 | "ids": { 71 | "fips": "LE10", 72 | "geonames": 6201370, 73 | "iso_3166_2": "LB-AK" 74 | }, 75 | "long": { 76 | "default": "Aakkâr" 77 | } 78 | }, 79 | { 80 | "parent": "LB", 81 | "ids": { 82 | "fips": "LE11", 83 | "geonames": 6201371, 84 | "iso_3166_2": "LB-BH" 85 | }, 86 | "long": { 87 | "default": "Baalbek-Hermel" 88 | } 89 | } 90 | ] -------------------------------------------------------------------------------- /resources/states/AG.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "AG", 4 | "ids": { 5 | "fips": "AC08", 6 | "geonames": 3576015, 7 | "iso_3166_2": "AG-08" 8 | }, 9 | "long": { 10 | "default": "Saint Philip" 11 | } 12 | }, 13 | { 14 | "parent": "AG", 15 | "ids": { 16 | "fips": "AC07", 17 | "geonames": 3576016, 18 | "iso_3166_2": "AG-07" 19 | }, 20 | "long": { 21 | "default": "Saint Peter" 22 | } 23 | }, 24 | { 25 | "parent": "AG", 26 | "ids": { 27 | "fips": "AC06", 28 | "geonames": 3576017, 29 | "iso_3166_2": "AG-06" 30 | }, 31 | "long": { 32 | "default": "Saint Paul" 33 | } 34 | }, 35 | { 36 | "parent": "AG", 37 | "ids": { 38 | "fips": "AC05", 39 | "geonames": 3576018, 40 | "iso_3166_2": "AG-05" 41 | }, 42 | "long": { 43 | "default": "Saint Mary" 44 | } 45 | }, 46 | { 47 | "parent": "AG", 48 | "ids": { 49 | "fips": "AC04", 50 | "geonames": 3576023, 51 | "iso_3166_2": "AG-04" 52 | }, 53 | "long": { 54 | "default": "Saint John" 55 | } 56 | }, 57 | { 58 | "parent": "AG", 59 | "ids": { 60 | "fips": "AC03", 61 | "geonames": 3576024, 62 | "iso_3166_2": "AG-03" 63 | }, 64 | "long": { 65 | "default": "Saint George" 66 | } 67 | }, 68 | { 69 | "parent": "AG", 70 | "ids": { 71 | "fips": "AC09", 72 | "geonames": 3576037, 73 | "iso_3166_2": "AG-11" 74 | }, 75 | "long": { 76 | "default": "Redonda" 77 | } 78 | }, 79 | { 80 | "parent": "AG", 81 | "ids": { 82 | "fips": "AC01", 83 | "geonames": 3576390, 84 | "iso_3166_2": "AG-10" 85 | }, 86 | "long": { 87 | "default": "Barbuda" 88 | } 89 | } 90 | ] -------------------------------------------------------------------------------- /resources/states/SK.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "SK", 4 | "ids": { 5 | "fips": "LO03", 6 | "geonames": 865084, 7 | "iso_3166_2": "SK-KI" 8 | }, 9 | "long": { 10 | "default": "Košický" 11 | } 12 | }, 13 | { 14 | "parent": "SK", 15 | "ids": { 16 | "fips": "LO05", 17 | "geonames": 865085, 18 | "iso_3166_2": "SK-PV" 19 | }, 20 | "long": { 21 | "default": "Prešovský" 22 | } 23 | }, 24 | { 25 | "parent": "SK", 26 | "ids": { 27 | "fips": "LO08", 28 | "geonames": 3056506, 29 | "iso_3166_2": "SK-ZI" 30 | }, 31 | "long": { 32 | "default": "Žilinský" 33 | } 34 | }, 35 | { 36 | "parent": "SK", 37 | "ids": { 38 | "fips": "LO01", 39 | "geonames": 3343954, 40 | "iso_3166_2": "SK-BC" 41 | }, 42 | "long": { 43 | "default": "Banskobystrický" 44 | } 45 | }, 46 | { 47 | "parent": "SK", 48 | "ids": { 49 | "fips": "LO02", 50 | "geonames": 3343955, 51 | "iso_3166_2": "SK-BL" 52 | }, 53 | "long": { 54 | "default": "Bratislavský" 55 | } 56 | }, 57 | { 58 | "parent": "SK", 59 | "ids": { 60 | "fips": "LO04", 61 | "geonames": 3343956, 62 | "iso_3166_2": "SK-NI" 63 | }, 64 | "long": { 65 | "default": "Nitriansky" 66 | } 67 | }, 68 | { 69 | "parent": "SK", 70 | "ids": { 71 | "fips": "LO06", 72 | "geonames": 3343957, 73 | "iso_3166_2": "SK-TC" 74 | }, 75 | "long": { 76 | "default": "Trenčiansky" 77 | } 78 | }, 79 | { 80 | "parent": "SK", 81 | "ids": { 82 | "fips": "LO07", 83 | "geonames": 3343958, 84 | "iso_3166_2": "SK-TA" 85 | }, 86 | "long": { 87 | "default": "Trnavský" 88 | } 89 | } 90 | ] -------------------------------------------------------------------------------- /resources/states/IS.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "IS", 4 | "ids": { 5 | "fips": "IC41", 6 | "geonames": 3337403, 7 | "iso_3166_2": "IS-5" 8 | }, 9 | "long": { 10 | "default": "Northwest Region" 11 | } 12 | }, 13 | { 14 | "parent": "IS", 15 | "ids": { 16 | "fips": "IC40", 17 | "geonames": 3337404, 18 | "iso_3166_2": "IS-6" 19 | }, 20 | "long": { 21 | "default": "Northeast Region" 22 | } 23 | }, 24 | { 25 | "parent": "IS", 26 | "ids": { 27 | "fips": "IC38", 28 | "geonames": 3337405, 29 | "iso_3166_2": "IS-7" 30 | }, 31 | "long": { 32 | "default": "East Region" 33 | } 34 | }, 35 | { 36 | "parent": "IS", 37 | "ids": { 38 | "fips": "IC42", 39 | "geonames": 3337406, 40 | "iso_3166_2": "IS-8" 41 | }, 42 | "long": { 43 | "default": "South Region" 44 | } 45 | }, 46 | { 47 | "parent": "IS", 48 | "ids": { 49 | "fips": "IC39", 50 | "geonames": 3426182, 51 | "iso_3166_2": "IS-1" 52 | }, 53 | "long": { 54 | "default": "Greater Reykjavík" 55 | } 56 | }, 57 | { 58 | "parent": "IS", 59 | "ids": { 60 | "fips": "IC43", 61 | "geonames": 3426183, 62 | "iso_3166_2": "IS-2" 63 | }, 64 | "long": { 65 | "default": "Southern Peninsula" 66 | } 67 | }, 68 | { 69 | "parent": "IS", 70 | "ids": { 71 | "fips": "IC45", 72 | "geonames": 3426184, 73 | "iso_3166_2": "IS-3" 74 | }, 75 | "long": { 76 | "default": "West Region" 77 | } 78 | }, 79 | { 80 | "parent": "IS", 81 | "ids": { 82 | "fips": "IC44", 83 | "geonames": 3426185, 84 | "iso_3166_2": "IS-4" 85 | }, 86 | "long": { 87 | "default": "Westfjords" 88 | } 89 | } 90 | ] -------------------------------------------------------------------------------- /resources/states/PK.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "PK", 4 | "ids": { 5 | "fips": "PK08", 6 | "geonames": 1162015, 7 | "iso_3166_2": "PK-IS" 8 | }, 9 | "long": { 10 | "default": "Islāmābād" 11 | } 12 | }, 13 | { 14 | "parent": "PK", 15 | "ids": { 16 | "fips": "PK05", 17 | "geonames": 1164807, 18 | "iso_3166_2": "PK-SD" 19 | }, 20 | "long": { 21 | "default": "Sindh" 22 | } 23 | }, 24 | { 25 | "parent": "PK", 26 | "ids": { 27 | "fips": "PK04", 28 | "geonames": 1167710, 29 | "iso_3166_2": "PK-PB" 30 | }, 31 | "long": { 32 | "default": "Punjab" 33 | } 34 | }, 35 | { 36 | "parent": "PK", 37 | "ids": { 38 | "fips": "PK03", 39 | "geonames": 1168873, 40 | "iso_3166_2": "PK-KP" 41 | }, 42 | "long": { 43 | "default": "Khyber Pakhtunkhwa" 44 | } 45 | }, 46 | { 47 | "parent": "PK", 48 | "ids": { 49 | "fips": "PK07", 50 | "geonames": 1168878, 51 | "iso_3166_2": "PK-GB" 52 | }, 53 | "long": { 54 | "default": "Gilgit-Baltistan" 55 | } 56 | }, 57 | { 58 | "parent": "PK", 59 | "ids": { 60 | "fips": "PK01", 61 | "geonames": 1179245, 62 | "iso_3166_2": "PK-TA" 63 | }, 64 | "long": { 65 | "default": "Federally Administered Tribal Areas" 66 | } 67 | }, 68 | { 69 | "parent": "PK", 70 | "ids": { 71 | "fips": "PK02", 72 | "geonames": 1183606, 73 | "iso_3166_2": "PK-BA" 74 | }, 75 | "long": { 76 | "default": "Balochistān" 77 | } 78 | }, 79 | { 80 | "parent": "PK", 81 | "ids": { 82 | "fips": "PK06", 83 | "geonames": 1184196, 84 | "iso_3166_2": "PK-JK" 85 | }, 86 | "long": { 87 | "default": "Azad Kashmir" 88 | } 89 | } 90 | ] -------------------------------------------------------------------------------- /resources/cities/TG.json: -------------------------------------------------------------------------------- 1 | { 2 | "2363534": { 3 | "ids": { 4 | "geonames": 2363534 5 | }, 6 | "long": { 7 | "default": "Tsévié" 8 | }, 9 | "parent": 2365173, 10 | "lat": 6.42611, 11 | "lng": 1.21333, 12 | "country": "TG", 13 | "population": 55775 14 | }, 15 | "2364104": { 16 | "ids": { 17 | "geonames": 2364104 18 | }, 19 | "long": { 20 | "default": "Sokodé" 21 | }, 22 | "parent": 2367237, 23 | "lat": 8.98333, 24 | "lng": 1.13333, 25 | "country": "TG", 26 | "population": 117811 27 | }, 28 | "2365267": { 29 | "ids": { 30 | "geonames": 2365267 31 | }, 32 | "long": { 33 | "default": "Lomé" 34 | }, 35 | "parent": 2365173, 36 | "lat": 6.13748, 37 | "lng": 1.21227, 38 | "country": "TG", 39 | "population": 749700 40 | }, 41 | "2365560": { 42 | "ids": { 43 | "geonames": 2365560 44 | }, 45 | "long": { 46 | "default": "Kpalimé" 47 | }, 48 | "parent": 2364370, 49 | "lat": 6.9, 50 | "lng": 0.63333, 51 | "country": "TG", 52 | "population": 75084 53 | }, 54 | "2366152": { 55 | "ids": { 56 | "geonames": 2366152 57 | }, 58 | "long": { 59 | "default": "Kara" 60 | }, 61 | "parent": 2597439, 62 | "lat": 9.55111, 63 | "lng": 1.18611, 64 | "country": "TG", 65 | "population": 104207 66 | }, 67 | "2367568": { 68 | "ids": { 69 | "geonames": 2367568 70 | }, 71 | "long": { 72 | "default": "Bassar" 73 | }, 74 | "parent": 2597439, 75 | "lat": 9.25025, 76 | "lng": 0.78213, 77 | "country": "TG", 78 | "population": 61845 79 | }, 80 | "2367886": { 81 | "ids": { 82 | "geonames": 2367886 83 | }, 84 | "long": { 85 | "default": "Atakpamé" 86 | }, 87 | "parent": 2364370, 88 | "lat": 7.53333, 89 | "lng": 1.13333, 90 | "country": "TG", 91 | "population": 80683 92 | } 93 | } -------------------------------------------------------------------------------- /resources/cities/RW.json: -------------------------------------------------------------------------------- 1 | { 2 | "201521": { 3 | "ids": { 4 | "geonames": 201521 5 | }, 6 | "long": { 7 | "default": "Musanze" 8 | }, 9 | "parent": 6413339, 10 | "lat": -1.49984, 11 | "lng": 29.63497, 12 | "country": "RW", 13 | "population": 86685 14 | }, 15 | "202061": { 16 | "ids": { 17 | "geonames": 202061 18 | }, 19 | "long": { 20 | "default": "Kigali" 21 | }, 22 | "parent": 6413338, 23 | "lat": -1.94995, 24 | "lng": 30.05885, 25 | "country": "RW", 26 | "population": 745261 27 | }, 28 | "202217": { 29 | "ids": { 30 | "geonames": 202217 31 | }, 32 | "long": { 33 | "default": "Gitarama" 34 | }, 35 | "parent": 6413341, 36 | "lat": -2.07444, 37 | "lng": 29.75667, 38 | "country": "RW", 39 | "population": 87613 40 | }, 41 | "202326": { 42 | "ids": { 43 | "geonames": 202326 44 | }, 45 | "long": { 46 | "default": "Cyangugu" 47 | }, 48 | "parent": 6413340, 49 | "lat": -2.4846, 50 | "lng": 28.9075, 51 | "country": "RW", 52 | "population": 63883 53 | }, 54 | "202905": { 55 | "ids": { 56 | "geonames": 202905 57 | }, 58 | "long": { 59 | "default": "Gisenyi" 60 | }, 61 | "parent": 6413340, 62 | "lat": -1.70278, 63 | "lng": 29.25639, 64 | "country": "RW", 65 | "population": 83623 66 | }, 67 | "203104": { 68 | "ids": { 69 | "geonames": 203104 70 | }, 71 | "long": { 72 | "default": "Byumba" 73 | }, 74 | "parent": 6413339, 75 | "lat": -1.5763, 76 | "lng": 30.0675, 77 | "country": "RW", 78 | "population": 70593 79 | }, 80 | "203112": { 81 | "ids": { 82 | "geonames": 203112 83 | }, 84 | "long": { 85 | "default": "Butare" 86 | }, 87 | "parent": 6413341, 88 | "lat": -2.59667, 89 | "lng": 29.73944, 90 | "country": "RW", 91 | "population": 89600 92 | } 93 | } -------------------------------------------------------------------------------- /resources/cities/AE.json: -------------------------------------------------------------------------------- 1 | { 2 | "291074": { 3 | "ids": { 4 | "geonames": 291074 5 | }, 6 | "long": { 7 | "default": "Ras al-Khaimah" 8 | }, 9 | "parent": 291075, 10 | "lat": 25.78953, 11 | "lng": 55.9432, 12 | "country": "AE", 13 | "population": 115949 14 | }, 15 | "292223": { 16 | "ids": { 17 | "geonames": 292223 18 | }, 19 | "long": { 20 | "default": "Dubai" 21 | }, 22 | "parent": 292224, 23 | "lat": 25.0657, 24 | "lng": 55.17128, 25 | "country": "AE", 26 | "population": 1137347 27 | }, 28 | "292672": { 29 | "ids": { 30 | "geonames": 292672 31 | }, 32 | "long": { 33 | "default": "Sharjah" 34 | }, 35 | "parent": 292673, 36 | "lat": 25.33737, 37 | "lng": 55.41206, 38 | "country": "AE", 39 | "population": 543733 40 | }, 41 | "292878": { 42 | "ids": { 43 | "geonames": 292878 44 | }, 45 | "long": { 46 | "default": "Al Fujayrah" 47 | }, 48 | "parent": 292879, 49 | "lat": 25.11641, 50 | "lng": 56.34141, 51 | "country": "AE", 52 | "population": 62415 53 | }, 54 | "292913": { 55 | "ids": { 56 | "geonames": 292913 57 | }, 58 | "long": { 59 | "default": "Al Ain" 60 | }, 61 | "parent": 292969, 62 | "lat": 24.19167, 63 | "lng": 55.76056, 64 | "country": "AE", 65 | "population": 408733 66 | }, 67 | "292932": { 68 | "ids": { 69 | "geonames": 292932 70 | }, 71 | "long": { 72 | "default": "Ajman" 73 | }, 74 | "parent": 292933, 75 | "lat": 25.41111, 76 | "lng": 55.43504, 77 | "country": "AE", 78 | "population": 226172 79 | }, 80 | "292968": { 81 | "ids": { 82 | "geonames": 292968 83 | }, 84 | "long": { 85 | "default": "Abu Dhabi" 86 | }, 87 | "capital": true, 88 | "parent": 292969, 89 | "lat": 24.46667, 90 | "lng": 54.36667, 91 | "country": "AE", 92 | "population": 603492 93 | } 94 | } -------------------------------------------------------------------------------- /resources/cities/HN.json: -------------------------------------------------------------------------------- 1 | { 2 | "3600949": { 3 | "ids": { 4 | "geonames": 3600949 5 | }, 6 | "long": { 7 | "default": "Tegucigalpa" 8 | }, 9 | "parent": 3609672, 10 | "lat": 14.0818, 11 | "lng": -87.20681, 12 | "country": "HN", 13 | "population": 850848 14 | }, 15 | "3601782": { 16 | "ids": { 17 | "geonames": 3601782 18 | }, 19 | "long": { 20 | "default": "San Pedro Sula" 21 | }, 22 | "parent": 3613140, 23 | "lat": 15.50417, 24 | "lng": -88.025, 25 | "country": "HN", 26 | "population": 489466 27 | }, 28 | "3608248": { 29 | "ids": { 30 | "geonames": 3608248 31 | }, 32 | "long": { 33 | "default": "La Ceiba" 34 | }, 35 | "parent": 3615027, 36 | "lat": 15.75971, 37 | "lng": -86.78221, 38 | "country": "HN", 39 | "population": 130218 40 | }, 41 | "3610613": { 42 | "ids": { 43 | "geonames": 3610613 44 | }, 45 | "long": { 46 | "default": "El Progreso" 47 | }, 48 | "parent": 3600193, 49 | "lat": 15.4, 50 | "lng": -87.8, 51 | "country": "HN", 52 | "population": 100810 53 | }, 54 | "3613321": { 55 | "ids": { 56 | "geonames": 3613321 57 | }, 58 | "long": { 59 | "default": "Comayagua" 60 | }, 61 | "parent": 3613319, 62 | "lat": 14.45139, 63 | "lng": -87.6375, 64 | "country": "HN", 65 | "population": 58784 66 | }, 67 | "3613528": { 68 | "ids": { 69 | "geonames": 3613528 70 | }, 71 | "long": { 72 | "default": "Ciudad Choluteca" 73 | }, 74 | "parent": 3613527, 75 | "lat": 13.30028, 76 | "lng": -87.19083, 77 | "country": "HN", 78 | "population": 75872 79 | }, 80 | "3613533": { 81 | "ids": { 82 | "geonames": 3613533 83 | }, 84 | "long": { 85 | "default": "Choloma" 86 | }, 87 | "parent": 3613140, 88 | "lat": 15.61444, 89 | "lng": -87.95302, 90 | "country": "HN", 91 | "population": 139100 92 | } 93 | } -------------------------------------------------------------------------------- /resources/cities/GE.json: -------------------------------------------------------------------------------- 1 | { 2 | "610824": { 3 | "ids": { 4 | "geonames": 610824 5 | }, 6 | "long": { 7 | "default": "Zugdidi" 8 | }, 9 | "parent": 865543, 10 | "lat": 42.5088, 11 | "lng": 41.87088, 12 | "country": "GE", 13 | "population": 73006 14 | }, 15 | "611717": { 16 | "ids": { 17 | "geonames": 611717 18 | }, 19 | "long": { 20 | "default": "Tbilisi" 21 | }, 22 | "parent": 611716, 23 | "lat": 41.69411, 24 | "lng": 44.83368, 25 | "country": "GE", 26 | "population": 1108717 27 | }, 28 | "611847": { 29 | "ids": { 30 | "geonames": 611847 31 | }, 32 | "long": { 33 | "default": "Sokhumi" 34 | }, 35 | "parent": 6643410, 36 | "lat": 43.00697, 37 | "lng": 40.9893, 38 | "country": "GE", 39 | "population": 81546 40 | }, 41 | "613607": { 42 | "ids": { 43 | "geonames": 613607 44 | }, 45 | "long": { 46 | "default": "Kutaisi" 47 | }, 48 | "parent": 865539, 49 | "lat": 42.26791, 50 | "lng": 42.69459, 51 | "country": "GE", 52 | "population": 147635 53 | }, 54 | "615532": { 55 | "ids": { 56 | "geonames": 615532 57 | }, 58 | "long": { 59 | "default": "Batumi" 60 | }, 61 | "parent": 615929, 62 | "lat": 41.64228, 63 | "lng": 41.63392, 64 | "country": "GE", 65 | "population": 152839 66 | }, 67 | "612287": { 68 | "ids": { 69 | "geonames": 612287 70 | }, 71 | "long": { 72 | "default": "Rustavi" 73 | }, 74 | "parent": 865536, 75 | "lat": 41.51667, 76 | "lng": 44.51667, 77 | "country": "GE", 78 | "population": 125103 79 | }, 80 | "610864": { 81 | "ids": { 82 | "geonames": 610864 83 | }, 84 | "long": { 85 | "default": "Zestaponi" 86 | }, 87 | "parent": 865539, 88 | "lat": 42.11, 89 | "lng": 43.0525, 90 | "country": "GE", 91 | "population": 57628 92 | }, 93 | "613762": { 94 | "ids": { 95 | "geonames": 613762 96 | }, 97 | "long": { 98 | "default": "Kobuleti" 99 | }, 100 | "parent": 615929, 101 | "lat": 41.82, 102 | "lng": 41.77528, 103 | "country": "GE", 104 | "population": 74794 105 | }, 106 | "824288": { 107 | "ids": { 108 | "geonames": 824288 109 | }, 110 | "long": { 111 | "default": "Kobuleti" 112 | }, 113 | "parent": 615929, 114 | "lat": 42.34129, 115 | "lng": 42.5976, 116 | "country": "GE", 117 | "population": 56883 118 | } 119 | } 120 | -------------------------------------------------------------------------------- /resources/states/ML.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "ML", 4 | "ids": { 5 | "fips": "ML08", 6 | "geonames": 2449066, 7 | "iso_3166_2": "ML-6" 8 | }, 9 | "long": { 10 | "default": "Tombouctou" 11 | } 12 | }, 13 | { 14 | "parent": "ML", 15 | "ids": { 16 | "fips": "ML06", 17 | "geonames": 2451184, 18 | "iso_3166_2": "ML-3" 19 | }, 20 | "long": { 21 | "default": "Sikasso" 22 | } 23 | }, 24 | { 25 | "parent": "ML", 26 | "ids": { 27 | "fips": "ML05", 28 | "geonames": 2451477 29 | }, 30 | "long": { 31 | "default": "Ségou" 32 | } 33 | }, 34 | { 35 | "parent": "ML", 36 | "ids": { 37 | "fips": "ML04", 38 | "geonames": 2453347, 39 | "iso_3166_2": "ML-5" 40 | }, 41 | "long": { 42 | "default": "Mopti" 43 | } 44 | }, 45 | { 46 | "parent": "ML", 47 | "ids": { 48 | "fips": "ML07", 49 | "geonames": 2454532, 50 | "iso_3166_2": "ML-2" 51 | }, 52 | "long": { 53 | "default": "Koulikoro" 54 | } 55 | }, 56 | { 57 | "parent": "ML", 58 | "ids": { 59 | "fips": "ML03", 60 | "geonames": 2455517, 61 | "iso_3166_2": "ML-1" 62 | }, 63 | "long": { 64 | "default": "Kayes" 65 | } 66 | }, 67 | { 68 | "parent": "ML", 69 | "ids": { 70 | "fips": "ML09", 71 | "geonames": 2457161, 72 | "iso_3166_2": "ML-7" 73 | }, 74 | "long": { 75 | "default": "Gao" 76 | } 77 | }, 78 | { 79 | "parent": "ML", 80 | "ids": { 81 | "fips": "ML01", 82 | "geonames": 2460594, 83 | "iso_3166_2": "ML-BKO" 84 | }, 85 | "long": { 86 | "default": "Bamako" 87 | } 88 | }, 89 | { 90 | "parent": "ML", 91 | "ids": { 92 | "fips": "ML10", 93 | "geonames": 2597449, 94 | "iso_3166_2": "ML-8" 95 | }, 96 | "long": { 97 | "default": "Kidal" 98 | } 99 | } 100 | ] -------------------------------------------------------------------------------- /resources/states/GW.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "GW", 4 | "ids": { 5 | "fips": "PU07", 6 | "geonames": 2368955, 7 | "iso_3166_2": "GW-TO" 8 | }, 9 | "long": { 10 | "default": "Tombali" 11 | } 12 | }, 13 | { 14 | "parent": "GW", 15 | "ids": { 16 | "fips": "PU02", 17 | "geonames": 2370360, 18 | "iso_3166_2": "GW-QU" 19 | }, 20 | "long": { 21 | "default": "Quinara" 22 | } 23 | }, 24 | { 25 | "parent": "GW", 26 | "ids": { 27 | "fips": "PU04", 28 | "geonames": 2371071, 29 | "iso_3166_2": "GW-OI" 30 | }, 31 | "long": { 32 | "default": "Oio" 33 | } 34 | }, 35 | { 36 | "parent": "GW", 37 | "ids": { 38 | "fips": "PU10", 39 | "geonames": 2372533, 40 | "iso_3166_2": "GW-GA" 41 | }, 42 | "long": { 43 | "default": "Gabú" 44 | } 45 | }, 46 | { 47 | "parent": "GW", 48 | "ids": { 49 | "fips": "PU06", 50 | "geonames": 2374312, 51 | "iso_3166_2": "GW-CA" 52 | }, 53 | "long": { 54 | "default": "Cacheu" 55 | } 56 | }, 57 | { 58 | "parent": "GW", 59 | "ids": { 60 | "fips": "PU05", 61 | "geonames": 2374689, 62 | "iso_3166_2": "GW-BL" 63 | }, 64 | "long": { 65 | "default": "Bolama" 66 | } 67 | }, 68 | { 69 | "parent": "GW", 70 | "ids": { 71 | "fips": "PU11", 72 | "geonames": 2374776, 73 | "iso_3166_2": "GW-BS" 74 | }, 75 | "long": { 76 | "default": "Bissau" 77 | } 78 | }, 79 | { 80 | "parent": "GW", 81 | "ids": { 82 | "fips": "PU12", 83 | "geonames": 2374820, 84 | "iso_3166_2": "GW-BM" 85 | }, 86 | "long": { 87 | "default": "Biombo" 88 | } 89 | }, 90 | { 91 | "parent": "GW", 92 | "ids": { 93 | "fips": "PU01", 94 | "geonames": 2375255, 95 | "iso_3166_2": "GW-BA" 96 | }, 97 | "long": { 98 | "default": "Bafatá" 99 | } 100 | } 101 | ] -------------------------------------------------------------------------------- /resources/states/KG.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "KG", 4 | "ids": { 5 | "fips": "KG08", 6 | "geonames": 1346798, 7 | "iso_3166_2": "KG-O" 8 | }, 9 | "long": { 10 | "default": "Osh" 11 | } 12 | }, 13 | { 14 | "parent": "KG", 15 | "ids": { 16 | "fips": "KG09", 17 | "geonames": 1463580, 18 | "iso_3166_2": "KG-B" 19 | }, 20 | "long": { 21 | "default": "Batken" 22 | } 23 | }, 24 | { 25 | "parent": "KG", 26 | "ids": { 27 | "fips": "KG06", 28 | "geonames": 1527297, 29 | "iso_3166_2": "KG-T" 30 | }, 31 | "long": { 32 | "default": "Talas" 33 | } 34 | }, 35 | { 36 | "parent": "KG", 37 | "ids": { 38 | "fips": "KG04", 39 | "geonames": 1527590, 40 | "iso_3166_2": "KG-N" 41 | }, 42 | "long": { 43 | "default": "Naryn" 44 | } 45 | }, 46 | { 47 | "parent": "KG", 48 | "ids": { 49 | "fips": "KG07", 50 | "geonames": 1528260, 51 | "iso_3166_2": "KG-Y" 52 | }, 53 | "long": { 54 | "default": "Ysyk-Köl" 55 | } 56 | }, 57 | { 58 | "parent": "KG", 59 | "ids": { 60 | "fips": "KG01", 61 | "geonames": 1528334, 62 | "iso_3166_2": "KG-GB" 63 | }, 64 | "long": { 65 | "default": "Bishkek" 66 | } 67 | }, 68 | { 69 | "parent": "KG", 70 | "ids": { 71 | "fips": "KG03", 72 | "geonames": 1529778, 73 | "iso_3166_2": "KG-J" 74 | }, 75 | "long": { 76 | "default": "Jalal-Abad" 77 | } 78 | }, 79 | { 80 | "parent": "KG", 81 | "ids": { 82 | "fips": "KG02", 83 | "geonames": 1538652, 84 | "iso_3166_2": "KG-C" 85 | }, 86 | "long": { 87 | "default": "Chüy" 88 | } 89 | }, 90 | { 91 | "parent": "KG", 92 | "ids": { 93 | "fips": "KG10", 94 | "geonames": 10300944, 95 | "iso_3166_2": "KG-GO" 96 | }, 97 | "long": { 98 | "default": "Osh City" 99 | } 100 | } 101 | ] -------------------------------------------------------------------------------- /resources/states/BO.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "BO", 4 | "ids": { 5 | "fips": "BL09", 6 | "geonames": 3903319, 7 | "iso_3166_2": "BO-T" 8 | }, 9 | "long": { 10 | "default": "Tarija" 11 | } 12 | }, 13 | { 14 | "parent": "BO", 15 | "ids": { 16 | "fips": "BL08", 17 | "geonames": 3904907, 18 | "iso_3166_2": "BO-S" 19 | }, 20 | "long": { 21 | "default": "Santa Cruz" 22 | } 23 | }, 24 | { 25 | "parent": "BO", 26 | "ids": { 27 | "fips": "BL07", 28 | "geonames": 3907580, 29 | "iso_3166_2": "BO-P" 30 | }, 31 | "long": { 32 | "default": "Potosí" 33 | } 34 | }, 35 | { 36 | "parent": "BO", 37 | "ids": { 38 | "fips": "BL06", 39 | "geonames": 3908600, 40 | "iso_3166_2": "BO-N" 41 | }, 42 | "long": { 43 | "default": "Pando" 44 | } 45 | }, 46 | { 47 | "parent": "BO", 48 | "ids": { 49 | "fips": "BL05", 50 | "geonames": 3909233, 51 | "iso_3166_2": "BO-O" 52 | }, 53 | "long": { 54 | "default": "Oruro" 55 | } 56 | }, 57 | { 58 | "parent": "BO", 59 | "ids": { 60 | "fips": "BL04", 61 | "geonames": 3911924, 62 | "iso_3166_2": "BO-L" 63 | }, 64 | "long": { 65 | "default": "La Paz" 66 | } 67 | }, 68 | { 69 | "parent": "BO", 70 | "ids": { 71 | "fips": "BL02", 72 | "geonames": 3919966, 73 | "iso_3166_2": "BO-C" 74 | }, 75 | "long": { 76 | "default": "Cochabamba" 77 | } 78 | }, 79 | { 80 | "parent": "BO", 81 | "ids": { 82 | "fips": "BL01", 83 | "geonames": 3920177, 84 | "iso_3166_2": "BO-H" 85 | }, 86 | "long": { 87 | "default": "Chuquisaca" 88 | } 89 | }, 90 | { 91 | "parent": "BO", 92 | "ids": { 93 | "fips": "BL03", 94 | "geonames": 3923172, 95 | "iso_3166_2": "BO-B" 96 | }, 97 | "long": { 98 | "default": "El Beni" 99 | } 100 | } 101 | ] -------------------------------------------------------------------------------- /resources/states/TV.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "TV", 4 | "ids": { 5 | "fips": false, 6 | "geonames": 2110341, 7 | "iso_3166_2": "TV-NUI" 8 | }, 9 | "long": { 10 | "default": "Nui" 11 | }, 12 | "timezone": "Pacific/Funafuti" 13 | }, 14 | { 15 | "parent": "TV", 16 | "ids": { 17 | "fips": false, 18 | "geonames": 2110345, 19 | "iso_3166_2": "TV-NMA" 20 | }, 21 | "long": { 22 | "default": "Nanumea" 23 | }, 24 | "timezone": "Pacific/Funafuti" 25 | }, 26 | { 27 | "parent": "TV", 28 | "ids": { 29 | "fips": false, 30 | "geonames": 2110384, 31 | "iso_3166_2": "TV-FUN" 32 | }, 33 | "long": { 34 | "default": "Funafuti" 35 | }, 36 | "timezone": "Pacific/Funafuti" 37 | }, 38 | { 39 | "parent": "TV", 40 | "ids": { 41 | "fips": false, 42 | "geonames": 7601979, 43 | "iso_3166_2": "TV-NIT" 44 | }, 45 | "long": { 46 | "default": "Niutao" 47 | }, 48 | "timezone": "Pacific/Funafuti" 49 | }, 50 | { 51 | "parent": "TV", 52 | "ids": { 53 | "fips": false, 54 | "geonames": 7601980, 55 | "iso_3166_2": "TV-NMG" 56 | }, 57 | "long": { 58 | "default": "Nanumanga" 59 | }, 60 | "timezone": "Pacific/Funafuti" 61 | }, 62 | { 63 | "parent": "TV", 64 | "ids": { 65 | "fips": false, 66 | "geonames": 7601981, 67 | "iso_3166_2": "TV-VAI" 68 | }, 69 | "long": { 70 | "default": "Vaitupu" 71 | }, 72 | "timezone": "Pacific/Funafuti" 73 | }, 74 | { 75 | "parent": "TV", 76 | "ids": { 77 | "fips": false, 78 | "geonames": 7601982, 79 | "iso_3166_2": "TV-NKF" 80 | }, 81 | "long": { 82 | "default": "Nukufetau" 83 | }, 84 | "timezone": "Pacific/Funafuti" 85 | }, 86 | { 87 | "parent": "TV", 88 | "ids": { 89 | "fips": false, 90 | "geonames": 7601983, 91 | "iso_3166_2": "TV-NKL" 92 | }, 93 | "long": { 94 | "default": "Nukulaelae" 95 | }, 96 | "timezone": "Pacific/Funafuti" 97 | } 98 | ] 99 | -------------------------------------------------------------------------------- /resources/states/AT.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "AT", 4 | "ids": { 5 | "fips": "AU09", 6 | "geonames": 2761367, 7 | "iso_3166_2": "AT-9" 8 | }, 9 | "long": { 10 | "default": "Vienna" 11 | } 12 | }, 13 | { 14 | "parent": "AT", 15 | "ids": { 16 | "fips": "AU08", 17 | "geonames": 2762300, 18 | "iso_3166_2": "AT-8" 19 | }, 20 | "long": { 21 | "default": "Vorarlberg" 22 | } 23 | }, 24 | { 25 | "parent": "AT", 26 | "ids": { 27 | "fips": "AU07", 28 | "geonames": 2763586, 29 | "iso_3166_2": "AT-7" 30 | }, 31 | "long": { 32 | "default": "Tyrol" 33 | } 34 | }, 35 | { 36 | "parent": "AT", 37 | "ids": { 38 | "fips": "AU06", 39 | "geonames": 2764581, 40 | "iso_3166_2": "AT-6" 41 | }, 42 | "long": { 43 | "default": "Styria" 44 | } 45 | }, 46 | { 47 | "parent": "AT", 48 | "ids": { 49 | "fips": "AU05", 50 | "geonames": 2766823, 51 | "iso_3166_2": "AT-5" 52 | }, 53 | "long": { 54 | "default": "Salzburg" 55 | } 56 | }, 57 | { 58 | "parent": "AT", 59 | "ids": { 60 | "fips": "AU04", 61 | "geonames": 2769848, 62 | "iso_3166_2": "AT-4" 63 | }, 64 | "long": { 65 | "default": "Upper Austria" 66 | } 67 | }, 68 | { 69 | "parent": "AT", 70 | "ids": { 71 | "fips": "AU03", 72 | "geonames": 2770542, 73 | "iso_3166_2": "AT-3" 74 | }, 75 | "long": { 76 | "default": "Lower Austria" 77 | } 78 | }, 79 | { 80 | "parent": "AT", 81 | "ids": { 82 | "fips": "AU02", 83 | "geonames": 2774686, 84 | "iso_3166_2": "AT-2" 85 | }, 86 | "long": { 87 | "default": "Carinthia" 88 | } 89 | }, 90 | { 91 | "parent": "AT", 92 | "ids": { 93 | "fips": "AU01", 94 | "geonames": 2781194, 95 | "iso_3166_2": "AT-1" 96 | }, 97 | "long": { 98 | "default": "Burgenland" 99 | } 100 | } 101 | ] -------------------------------------------------------------------------------- /resources/states/GA.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "GA", 4 | "ids": { 5 | "fips": "GB09", 6 | "geonames": 2396076, 7 | "iso_3166_2": "GA-9" 8 | }, 9 | "long": { 10 | "default": "Woleu-Ntem" 11 | } 12 | }, 13 | { 14 | "parent": "GA", 15 | "ids": { 16 | "fips": "GB08", 17 | "geonames": 2396924, 18 | "iso_3166_2": "GA-8" 19 | }, 20 | "long": { 21 | "default": "Ogooué-Maritime" 22 | } 23 | }, 24 | { 25 | "parent": "GA", 26 | "ids": { 27 | "fips": "GB07", 28 | "geonames": 2396925, 29 | "iso_3166_2": "GA-7" 30 | }, 31 | "long": { 32 | "default": "Ogooué-Lolo" 33 | } 34 | }, 35 | { 36 | "parent": "GA", 37 | "ids": { 38 | "fips": "GB06", 39 | "geonames": 2396926, 40 | "iso_3166_2": "GA-6" 41 | }, 42 | "long": { 43 | "default": "Ogooué-Ivindo" 44 | } 45 | }, 46 | { 47 | "parent": "GA", 48 | "ids": { 49 | "fips": "GB05", 50 | "geonames": 2397141, 51 | "iso_3166_2": "GA-5" 52 | }, 53 | "long": { 54 | "default": "Nyanga" 55 | } 56 | }, 57 | { 58 | "parent": "GA", 59 | "ids": { 60 | "fips": "GB04", 61 | "geonames": 2397466, 62 | "iso_3166_2": "GA-4" 63 | }, 64 | "long": { 65 | "default": "Ngouni" 66 | } 67 | }, 68 | { 69 | "parent": "GA", 70 | "ids": { 71 | "fips": "GB03", 72 | "geonames": 2397842, 73 | "iso_3166_2": "GA-3" 74 | }, 75 | "long": { 76 | "default": "Moyen-Ogooué" 77 | } 78 | }, 79 | { 80 | "parent": "GA", 81 | "ids": { 82 | "fips": "GB02", 83 | "geonames": 2400454, 84 | "iso_3166_2": "GA-2" 85 | }, 86 | "long": { 87 | "default": "Haut-Ogooué" 88 | } 89 | }, 90 | { 91 | "parent": "GA", 92 | "ids": { 93 | "fips": "GB01", 94 | "geonames": 2400682, 95 | "iso_3166_2": "GA-1" 96 | }, 97 | "long": { 98 | "default": "Estuaire" 99 | } 100 | } 101 | ] -------------------------------------------------------------------------------- /resources/states/LK.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "LK", 4 | "ids": { 5 | "fips": "CE36", 6 | "geonames": 1223421, 7 | "iso_3166_2": "LK-1" 8 | }, 9 | "long": { 10 | "default": "Western" 11 | } 12 | }, 13 | { 14 | "parent": "LK", 15 | "ids": { 16 | "fips": "CE35", 17 | "geonames": 1225265, 18 | "iso_3166_2": "LK-8" 19 | }, 20 | "long": { 21 | "default": "Uva" 22 | } 23 | }, 24 | { 25 | "parent": "LK", 26 | "ids": { 27 | "fips": "CE34", 28 | "geonames": 1227618, 29 | "iso_3166_2": "LK-3" 30 | }, 31 | "long": { 32 | "default": "Southern" 33 | } 34 | }, 35 | { 36 | "parent": "LK", 37 | "ids": { 38 | "fips": "CE33", 39 | "geonames": 1228435, 40 | "iso_3166_2": "LK-9" 41 | }, 42 | "long": { 43 | "default": "Sabaragamuwa" 44 | } 45 | }, 46 | { 47 | "parent": "LK", 48 | "ids": { 49 | "fips": "CE32", 50 | "geonames": 1232860, 51 | "iso_3166_2": "LK-6" 52 | }, 53 | "long": { 54 | "default": "North Western" 55 | } 56 | }, 57 | { 58 | "parent": "LK", 59 | "ids": { 60 | "fips": "CE30", 61 | "geonames": 1232870, 62 | "iso_3166_2": "LK-7" 63 | }, 64 | "long": { 65 | "default": "North Central" 66 | } 67 | }, 68 | { 69 | "parent": "LK", 70 | "ids": { 71 | "fips": "CE29", 72 | "geonames": 1249296, 73 | "iso_3166_2": "LK-2" 74 | }, 75 | "long": { 76 | "default": "Central" 77 | } 78 | }, 79 | { 80 | "parent": "LK", 81 | "ids": { 82 | "fips": "CE38", 83 | "geonames": 7671049, 84 | "iso_3166_2": "LK-4" 85 | }, 86 | "long": { 87 | "default": "Northern Province" 88 | } 89 | }, 90 | { 91 | "parent": "LK", 92 | "ids": { 93 | "fips": "CE37", 94 | "geonames": 8133521, 95 | "iso_3166_2": "LK-5" 96 | }, 97 | "long": { 98 | "default": "Eastern Province" 99 | } 100 | } 101 | ] -------------------------------------------------------------------------------- /resources/states/SM.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "SM", 4 | "ids": { 5 | "fips": "SM09", 6 | "geonames": 3166650, 7 | "iso_3166_2": "SM-09" 8 | }, 9 | "long": { 10 | "default": "Serravalle" 11 | } 12 | }, 13 | { 14 | "parent": "SM", 15 | "ids": { 16 | "fips": "SM02", 17 | "geonames": 3178807, 18 | "iso_3166_2": "SM-02" 19 | }, 20 | "long": { 21 | "default": "Chiesanuova" 22 | } 23 | }, 24 | { 25 | "parent": "SM", 26 | "ids": { 27 | "fips": "SM07", 28 | "geonames": 3345302, 29 | "iso_3166_2": "SM-07" 30 | }, 31 | "long": { 32 | "default": "San Marino" 33 | } 34 | }, 35 | { 36 | "parent": "SM", 37 | "ids": { 38 | "fips": "SM01", 39 | "geonames": 3345303, 40 | "iso_3166_2": "SM-01" 41 | }, 42 | "long": { 43 | "default": "Acquaviva" 44 | } 45 | }, 46 | { 47 | "parent": "SM", 48 | "ids": { 49 | "fips": "SM06", 50 | "geonames": 3345304, 51 | "iso_3166_2": "SM-06" 52 | }, 53 | "long": { 54 | "default": "Borgo Maggiore" 55 | } 56 | }, 57 | { 58 | "parent": "SM", 59 | "ids": { 60 | "fips": "SM03", 61 | "geonames": 3345305, 62 | "iso_3166_2": "SM-03" 63 | }, 64 | "long": { 65 | "default": "Domagnano" 66 | } 67 | }, 68 | { 69 | "parent": "SM", 70 | "ids": { 71 | "fips": "SM04", 72 | "geonames": 3345306, 73 | "iso_3166_2": "SM-04" 74 | }, 75 | "long": { 76 | "default": "Faetano" 77 | } 78 | }, 79 | { 80 | "parent": "SM", 81 | "ids": { 82 | "fips": "SM05", 83 | "geonames": 3345307, 84 | "iso_3166_2": "SM-05" 85 | }, 86 | "long": { 87 | "default": "Fiorentino" 88 | } 89 | }, 90 | { 91 | "parent": "SM", 92 | "ids": { 93 | "fips": "SM08", 94 | "geonames": 3345308, 95 | "iso_3166_2": "SM-08" 96 | }, 97 | "long": { 98 | "default": "Montegiardino" 99 | } 100 | } 101 | ] -------------------------------------------------------------------------------- /resources/states/GG.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "parent": "GG", 4 | "ids": { 5 | "fips": "GK6417213", 6 | "geonames": 6417213 7 | }, 8 | "long": { 9 | "default": "St Pierre du Bois" 10 | } 11 | }, 12 | { 13 | "parent": "GG", 14 | "ids": { 15 | "fips": "GK6417214", 16 | "geonames": 6417214 17 | }, 18 | "long": { 19 | "default": "Torteval" 20 | } 21 | }, 22 | { 23 | "parent": "GG", 24 | "ids": { 25 | "fips": "GK6417215", 26 | "geonames": 6417215 27 | }, 28 | "long": { 29 | "default": "Saint Saviour" 30 | } 31 | }, 32 | { 33 | "parent": "GG", 34 | "ids": { 35 | "fips": "GK6417223", 36 | "geonames": 6417223 37 | }, 38 | "long": { 39 | "default": "Forest" 40 | } 41 | }, 42 | { 43 | "parent": "GG", 44 | "ids": { 45 | "fips": "GK6417224", 46 | "geonames": 6417224 47 | }, 48 | "long": { 49 | "default": "St Martin" 50 | } 51 | }, 52 | { 53 | "parent": "GG", 54 | "ids": { 55 | "fips": "GK6417226", 56 | "geonames": 6417226 57 | }, 58 | "long": { 59 | "default": "Saint Andrew" 60 | } 61 | }, 62 | { 63 | "parent": "GG", 64 | "ids": { 65 | "fips": "GK6417228", 66 | "geonames": 6417228 67 | }, 68 | "long": { 69 | "default": "St Peter Port" 70 | } 71 | }, 72 | { 73 | "parent": "GG", 74 | "ids": { 75 | "fips": "GK6417229", 76 | "geonames": 6417229 77 | }, 78 | "long": { 79 | "default": "Castel" 80 | } 81 | }, 82 | { 83 | "parent": "GG", 84 | "ids": { 85 | "fips": "GK6417230", 86 | "geonames": 6417230 87 | }, 88 | "long": { 89 | "default": "Vale" 90 | } 91 | }, 92 | { 93 | "parent": "GG", 94 | "ids": { 95 | "fips": "GK6417233", 96 | "geonames": 6417233 97 | }, 98 | "long": { 99 | "default": "St Sampson" 100 | } 101 | }, 102 | { 103 | "parent": "GG", 104 | "ids": { 105 | "fips": "GK8989934", 106 | "geonames": 8989934 107 | }, 108 | "long": { 109 | "default": "Alderney" 110 | } 111 | } 112 | ] -------------------------------------------------------------------------------- /resources/cities/LT.json: -------------------------------------------------------------------------------- 1 | { 2 | "593116": { 3 | "ids": { 4 | "geonames": 593116 5 | }, 6 | "long": { 7 | "default": "Vilnius" 8 | }, 9 | "parent": 864485, 10 | "lat": 54.68916, 11 | "lng": 25.2798, 12 | "country": "LT", 13 | "population": 542366 14 | }, 15 | "594739": { 16 | "ids": { 17 | "geonames": 594739 18 | }, 19 | "long": { 20 | "default": "Šiauliai" 21 | }, 22 | "parent": 864481, 23 | "lat": 55.93333, 24 | "lng": 23.31667, 25 | "country": "LT", 26 | "population": 130587 27 | }, 28 | "596128": { 29 | "ids": { 30 | "geonames": 596128 31 | }, 32 | "long": { 33 | "default": "Panevėžys" 34 | }, 35 | "parent": 864480, 36 | "lat": 55.73333, 37 | "lng": 24.35, 38 | "country": "LT", 39 | "population": 117395 40 | }, 41 | "598098": { 42 | "ids": { 43 | "geonames": 598098 44 | }, 45 | "long": { 46 | "default": "Klaipėda" 47 | }, 48 | "parent": 864478, 49 | "lat": 55.71722, 50 | "lng": 21.1175, 51 | "country": "LT", 52 | "population": 192307 53 | }, 54 | "598316": { 55 | "ids": { 56 | "geonames": 598316 57 | }, 58 | "long": { 59 | "default": "Kaunas" 60 | }, 61 | "parent": 864477, 62 | "lat": 54.9, 63 | "lng": 23.9, 64 | "country": "LT", 65 | "population": 374643 66 | }, 67 | "601084": { 68 | "ids": { 69 | "geonames": 601084 70 | }, 71 | "long": { 72 | "default": "Alytus" 73 | }, 74 | "parent": 864389, 75 | "lat": 54.4, 76 | "lng": 24.05, 77 | "country": "LT", 78 | "population": 70747 79 | }, 80 | "6618486": { 81 | "ids": { 82 | "geonames": 6618486 83 | }, 84 | "long": { 85 | "default": "Dainava (Kaunas)" 86 | }, 87 | "parent": 864477, 88 | "lat": 54.91525, 89 | "lng": 23.96831, 90 | "country": "LT", 91 | "population": 70000 92 | }, 93 | "9610008": { 94 | "ids": { 95 | "geonames": 9610008 96 | }, 97 | "long": { 98 | "default": "Eiguliai" 99 | }, 100 | "parent": 864477, 101 | "lat": 54.93133, 102 | "lng": 23.93243, 103 | "country": "LT", 104 | "population": 61700 105 | } 106 | } -------------------------------------------------------------------------------- /resources/cities/ML.json: -------------------------------------------------------------------------------- 1 | { 2 | "2451185": { 3 | "ids": { 4 | "geonames": 2451185 5 | }, 6 | "long": { 7 | "default": "Sikasso" 8 | }, 9 | "parent": 2451184, 10 | "lat": 11.31755, 11 | "lng": -5.66654, 12 | "country": "ML", 13 | "population": 144786 14 | }, 15 | "2451478": { 16 | "ids": { 17 | "geonames": 2451478 18 | }, 19 | "long": { 20 | "default": "Ségou" 21 | }, 22 | "parent": 2451477, 23 | "lat": 13.4317, 24 | "lng": -6.2157, 25 | "country": "ML", 26 | "population": 92552 27 | }, 28 | "2453348": { 29 | "ids": { 30 | "geonames": 2453348 31 | }, 32 | "long": { 33 | "default": "Mopti" 34 | }, 35 | "parent": 2453347, 36 | "lat": 14.4843, 37 | "lng": -4.18296, 38 | "country": "ML", 39 | "population": 108456 40 | }, 41 | "2453662": { 42 | "ids": { 43 | "geonames": 2453662 44 | }, 45 | "long": { 46 | "default": "Markala" 47 | }, 48 | "parent": 2451477, 49 | "lat": 13.7021, 50 | "lng": -6.0659, 51 | "country": "ML", 52 | "population": 53738 53 | }, 54 | "2454268": { 55 | "ids": { 56 | "geonames": 2454268 57 | }, 58 | "long": { 59 | "default": "Koutiala" 60 | }, 61 | "parent": 2451184, 62 | "lat": 12.39173, 63 | "lng": -5.46421, 64 | "country": "ML", 65 | "population": 99353 66 | }, 67 | "2455518": { 68 | "ids": { 69 | "geonames": 2455518 70 | }, 71 | "long": { 72 | "default": "Kayes" 73 | }, 74 | "parent": 2455517, 75 | "lat": 14.44693, 76 | "lng": -11.44448, 77 | "country": "ML", 78 | "population": 78406 79 | }, 80 | "2457163": { 81 | "ids": { 82 | "geonames": 2457163 83 | }, 84 | "long": { 85 | "default": "Gao" 86 | }, 87 | "parent": 2457161, 88 | "lat": 16.27167, 89 | "lng": -0.04472, 90 | "country": "ML", 91 | "population": 87000 92 | }, 93 | "2460596": { 94 | "ids": { 95 | "geonames": 2460596 96 | }, 97 | "long": { 98 | "default": "Bamako" 99 | }, 100 | "parent": 2460594, 101 | "lat": 12.65, 102 | "lng": -8, 103 | "country": "ML", 104 | "population": 1297281 105 | } 106 | } -------------------------------------------------------------------------------- /resources/cities/KG.json: -------------------------------------------------------------------------------- 1 | { 2 | "1527199": { 3 | "ids": { 4 | "geonames": 1527199 5 | }, 6 | "long": { 7 | "default": "Tokmok" 8 | }, 9 | "parent": 1538652, 10 | "lat": 42.84194, 11 | "lng": 75.30149, 12 | "country": "KG", 13 | "population": 63047 14 | }, 15 | "1527534": { 16 | "ids": { 17 | "geonames": 1527534 18 | }, 19 | "long": { 20 | "default": "Osh" 21 | }, 22 | "parent": 1346798, 23 | "lat": 40.52828, 24 | "lng": 72.7985, 25 | "country": "KG", 26 | "population": 200000 27 | }, 28 | "1527592": { 29 | "ids": { 30 | "geonames": 1527592 31 | }, 32 | "long": { 33 | "default": "Naryn" 34 | }, 35 | "parent": 1527590, 36 | "lat": 41.42866, 37 | "lng": 75.99111, 38 | "country": "KG", 39 | "population": 52300 40 | }, 41 | "1528121": { 42 | "ids": { 43 | "geonames": 1528121 44 | }, 45 | "long": { 46 | "default": "Karakol" 47 | }, 48 | "parent": 1528260, 49 | "lat": 42.49068, 50 | "lng": 78.39362, 51 | "country": "KG", 52 | "population": 70171 53 | }, 54 | "1528182": { 55 | "ids": { 56 | "geonames": 1528182 57 | }, 58 | "long": { 59 | "default": "Kara-Balta" 60 | }, 61 | "parent": 1538652, 62 | "lat": 42.81423, 63 | "lng": 73.84813, 64 | "country": "KG", 65 | "population": 62796 66 | }, 67 | "1528249": { 68 | "ids": { 69 | "geonames": 1528249 70 | }, 71 | "long": { 72 | "default": "Jalal-Abad" 73 | }, 74 | "parent": 1529778, 75 | "lat": 40.93333, 76 | "lng": 73, 77 | "country": "KG", 78 | "population": 75700 79 | }, 80 | "1528675": { 81 | "ids": { 82 | "geonames": 1528675 83 | }, 84 | "long": { 85 | "default": "Bishkek" 86 | }, 87 | "parent": 1528334, 88 | "lat": 42.87, 89 | "lng": 74.59, 90 | "country": "KG", 91 | "population": 900000 92 | }, 93 | "11054823": { 94 | "ids": { 95 | "geonames": 11054823 96 | }, 97 | "long": { 98 | "default": "Osh City" 99 | }, 100 | "parent": 10300944, 101 | "lat": 40.53957, 102 | "lng": 72.81034, 103 | "country": "KG", 104 | "population": 255900 105 | } 106 | } -------------------------------------------------------------------------------- /resources/cities/TM.json: -------------------------------------------------------------------------------- 1 | { 2 | "161616": { 3 | "ids": { 4 | "geonames": 161616 5 | }, 6 | "long": { 7 | "default": "Balkanabat" 8 | }, 9 | "parent": 162152, 10 | "lat": 39.51075, 11 | "lng": 54.36713, 12 | "country": "TM", 13 | "population": 87822 14 | }, 15 | "162183": { 16 | "ids": { 17 | "geonames": 162183 18 | }, 19 | "long": { 20 | "default": "Ashgabat" 21 | }, 22 | "parent": 162181, 23 | "lat": 37.95, 24 | "lng": 58.38333, 25 | "country": "TM", 26 | "population": 727700 27 | }, 28 | "601594": { 29 | "ids": { 30 | "geonames": 601594 31 | }, 32 | "long": { 33 | "default": "Türkmenbaşy" 34 | }, 35 | "parent": 162152, 36 | "lat": 40.02216, 37 | "lng": 52.95517, 38 | "country": "TM", 39 | "population": 68292 40 | }, 41 | "601734": { 42 | "ids": { 43 | "geonames": 601734 44 | }, 45 | "long": { 46 | "default": "Daşoguz" 47 | }, 48 | "parent": 601465, 49 | "lat": 41.83625, 50 | "lng": 59.96661, 51 | "country": "TM", 52 | "population": 166500 53 | }, 54 | "1218239": { 55 | "ids": { 56 | "geonames": 1218239 57 | }, 58 | "long": { 59 | "default": "Tejen" 60 | }, 61 | "parent": 162181, 62 | "lat": 37.38338, 63 | "lng": 60.50545, 64 | "country": "TM", 65 | "population": 67294 66 | }, 67 | "1218667": { 68 | "ids": { 69 | "geonames": 1218667 70 | }, 71 | "long": { 72 | "default": "Mary" 73 | }, 74 | "parent": 1218666, 75 | "lat": 37.59378, 76 | "lng": 61.83031, 77 | "country": "TM", 78 | "population": 114680 79 | }, 80 | "1219649": { 81 | "ids": { 82 | "geonames": 1219649 83 | }, 84 | "long": { 85 | "default": "Türkmenabat" 86 | }, 87 | "parent": 1219651, 88 | "lat": 39.07328, 89 | "lng": 63.57861, 90 | "country": "TM", 91 | "population": 234817 92 | }, 93 | "1219762": { 94 | "ids": { 95 | "geonames": 1219762 96 | }, 97 | "long": { 98 | "default": "Bayramaly" 99 | }, 100 | "parent": 1218666, 101 | "lat": 37.61852, 102 | "lng": 62.16715, 103 | "country": "TM", 104 | "population": 75797 105 | } 106 | } -------------------------------------------------------------------------------- /resources/cities/AT.json: -------------------------------------------------------------------------------- 1 | { 2 | "2761369": { 3 | "ids": { 4 | "geonames": 2761369 5 | }, 6 | "long": { 7 | "default": "Vienna" 8 | }, 9 | "parent": 2761367, 10 | "lat": 48.20849, 11 | "lng": 16.37208, 12 | "country": "AT", 13 | "population": 1691468 14 | }, 15 | "2761524": { 16 | "ids": { 17 | "geonames": 2761524 18 | }, 19 | "long": { 20 | "default": "Wels" 21 | }, 22 | "parent": 2769848, 23 | "lat": 48.16667, 24 | "lng": 14.03333, 25 | "country": "AT", 26 | "population": 57946 27 | }, 28 | "2762372": { 29 | "ids": { 30 | "geonames": 2762372 31 | }, 32 | "long": { 33 | "default": "Villach" 34 | }, 35 | "parent": 2774686, 36 | "lat": 46.61028, 37 | "lng": 13.85583, 38 | "country": "AT", 39 | "population": 58882 40 | }, 41 | "2766824": { 42 | "ids": { 43 | "geonames": 2766824 44 | }, 45 | "long": { 46 | "default": "Salzburg" 47 | }, 48 | "parent": 2766823, 49 | "lat": 47.79941, 50 | "lng": 13.04399, 51 | "country": "AT", 52 | "population": 150269 53 | }, 54 | "2772400": { 55 | "ids": { 56 | "geonames": 2772400 57 | }, 58 | "long": { 59 | "default": "Linz" 60 | }, 61 | "parent": 2769848, 62 | "lat": 48.30639, 63 | "lng": 14.28611, 64 | "country": "AT", 65 | "population": 181162 66 | }, 67 | "2774326": { 68 | "ids": { 69 | "geonames": 2774326 70 | }, 71 | "long": { 72 | "default": "Klagenfurt am Wörthersee" 73 | }, 74 | "parent": 2774686, 75 | "lat": 46.62472, 76 | "lng": 14.30528, 77 | "country": "AT", 78 | "population": 90610 79 | }, 80 | "2775220": { 81 | "ids": { 82 | "geonames": 2775220 83 | }, 84 | "long": { 85 | "default": "Innsbruck" 86 | }, 87 | "parent": 2763586, 88 | "lat": 47.26266, 89 | "lng": 11.39454, 90 | "country": "AT", 91 | "population": 112467 92 | }, 93 | "2778067": { 94 | "ids": { 95 | "geonames": 2778067 96 | }, 97 | "long": { 98 | "default": "Graz" 99 | }, 100 | "parent": 2764581, 101 | "lat": 47.06667, 102 | "lng": 15.45, 103 | "country": "AT", 104 | "population": 222326 105 | } 106 | } --------------------------------------------------------------------------------