Geolocation Data [Longitude Latitude]
Location Geodata [Longitude Latitude] in CSV.
@kaggle.liewyousheng_geolocation
Location Geodata [Longitude Latitude] in CSV.
@kaggle.liewyousheng_geolocation
Full Database of city state country available in CSV format. All Countries, States & Cities are Covered & Populated with Different Combinations & Versions.
Each CSV has the
of each location, alongside other miscellaneous country data such as
3. Currency
4. State code
5. Phone country code
Total Countries : 250
Total States/Regions/Municipalities : 4,963
Total Cities/Towns/Districts : 148,061
Last Updated On : 29th January 2022
CREATE TABLE cities (
"id" BIGINT,
"name" VARCHAR,
"state_id" BIGINT,
"state_code" VARCHAR,
"state_name" VARCHAR,
"country_id" BIGINT,
"country_code" VARCHAR,
"country_name" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"wikidataid" VARCHAR
);CREATE TABLE countries (
"id" BIGINT,
"name" VARCHAR,
"iso3" VARCHAR,
"iso2" VARCHAR,
"numeric_code" BIGINT,
"phone_code" VARCHAR,
"capital" VARCHAR,
"currency" VARCHAR,
"currency_name" VARCHAR,
"currency_symbol" VARCHAR,
"tld" VARCHAR,
"native" VARCHAR,
"region" VARCHAR,
"subregion" VARCHAR,
"timezones" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"emoji" VARCHAR,
"emojiu" VARCHAR
);CREATE TABLE states (
"id" BIGINT,
"name" VARCHAR,
"country_id" BIGINT,
"country_code" VARCHAR,
"country_name" VARCHAR,
"state_code" VARCHAR,
"type" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE
);Anyone who has the link will be able to view this.