xiongzhongkun / Country-State-City-Database

Worlds All Countries , States and Cities in Single File (Less than 1.5 MB)

Home Page:http://sagarshirbhate.blogspot.in/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Open Source Love MIT Licence

Worlds All Countries , States and Cities in Single File (Less than 1.5 MB):

Names Of all Countries , States and cities are included in JSON , PLIST and XML Format

All data is present just you have to add file in your project and fetch it from file.

Their structure is like

  • Country -> States -> Cities.

Json Structure is As Follows,(Not Complete List Just Sample)

{
"Countries":[
			{
            "CountryName":"India",
			"States":[
						{
                        "StateName":"Maharashtra",
						"Cities":[
								"Pune",
								"Nagpur",
								"Mumbai"
                                  ]
                         },
                         {
                         "StateName":"Kerala",
                         "Cities":[
                         			"Kochi",
                                    "Munnar"
                                  ]
                          }
                       ]
             },
             {
              "CountryName":"Australia",
			  "States":[
						{
                        "StateName":"Aukland",
						"Cities":[
								"GlenField",
								"Henderson",
									"MilFord"
                                  ]
                         },
                         {
                         "StateName":"Melbourne",
                         "Cities":[
                         			"Melbourne",
                                    "South Oakleigh"
                                  ]
                          }
                       ]
              }
           ]
      }
             

XML Structure is As Follows,(Not Complete List Just Sample)

<?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
 <plist version="1.0">
 <dict>
	<key>Countries</key>
	<array>
        <dict>
            <key>CountryName</key>
            <string>India</string>
            <key>States</key>
                <array>
                    <dict>
                    <key>Cities</key>
                    <array>
                        <string>Pune</string>
                        <string>Nagpur</string>
                        <string>Mumbai</string>
                    </array>
                    <key>StateName</key>
                    <string>Maharashtra</string>
                    </dict>
                    <dict>
                    <key>Cities</key>
                    <array>
                        <string>Kochi</string>
                        <string>Munnar</string>
                    </array>
                    <key>StateName</key>
                    <string>Kerala</string>
                    </dict>
                </array>
        </dict>
        <dict>
            <key>CountryName</key>
            <string>India</string>
            <key>States</key>
            <array>
                <dict>
                <key>Cities</key>
                <array>
                    <string>Pune</string>
                    <string>Nagpur</string>
                    <string>Mumbai</string>
                </array>
                <key>StateName</key>
                <string>Maharashtra</string>
                </dict>
                <dict>
                <key>Cities</key>
                <array>
                    <string>Kochi</string>
                    <string>Munnar</string>
                </array>
                <key>StateName</key>
                <string>Kerala</string>
                </dict>
            </array>
        </dict>
    </array>
 </dict>
</plist>

Plist Structure is As Follows,(Not Complete List Just Sample)

ScreenShot

Note :

  • This Free database dose not guarantee for the complete list of world countries, states and cities
  • You can manually change the spelling mistakes, or add edit any records, which are not correct.

About

Worlds All Countries , States and Cities in Single File (Less than 1.5 MB)

http://sagarshirbhate.blogspot.in/

License:Apache License 2.0